:root{
    --bg:#15171B; --bg2:#1B1E24; --bg3:#22262E;
    --line:rgba(255,255,255,.08); --line2:rgba(255,255,255,.15);
    --text:#FFFFFF; --muted:#C2C9D2; --muted2:#828B96;
    --lime:#BFF747; --lime-dim:rgba(191,247,71,.13); --lime-line:rgba(191,247,71,.4);
    --acc:var(--lime);
    --cyan:#5BD6FF; --ink:#0E0F12;
    --r:16px; --rs:11px;
    --max:1280px;
  }
  *{box-sizing:border-box}
  html{scroll-behavior:smooth}
  body{
    margin:0; background:var(--bg); color:var(--text);
    font-family:'Open Sans',system-ui,sans-serif; font-size:17px; line-height:1.6;
    -webkit-font-smoothing:antialiased;
  }
  h1,h2,h3,h4{font-family:'Montserrat',sans-serif; margin:0; line-height:1.12; letter-spacing:-.01em}
  a{color:inherit; text-decoration:none}
  .wrap{max-width:var(--max); margin:0 auto; padding:0 24px}
  .mono{font-family:'JetBrains Mono',monospace}
  .eyebrow{
    font-family:'JetBrains Mono',monospace; font-size:12px; letter-spacing:.18em;
    text-transform:uppercase; color:var(--acc); display:inline-block; margin-bottom:18px;
  }
  .lime{color:var(--acc)}
  .muted{color:var(--muted)}
  section{position:relative}
  .sec-pad{padding:96px 0}

  /* Buttons */
  .btn{display:inline-flex; align-items:center; gap:9px; font-family:'Montserrat',sans-serif;
    font-weight:700; font-size:15px; padding:14px 24px; border-radius:999px; cursor:pointer;
    border:1px solid transparent; transition:transform .15s ease, background .2s ease, border-color .2s ease}
  .btn-primary{background:var(--lime); color:var(--ink)}
  .btn-primary:hover{transform:translateY(-2px); background:#cfff63}
  .btn-ghost{background:transparent; color:var(--text); border-color:var(--line2)}
  .btn-ghost:hover{border-color:var(--lime-line); color:var(--acc)}

  /* Nav */
  header.nav{position:sticky; top:0; z-index:50; background:rgba(21,23,27,.78);
    backdrop-filter:blur(14px); border-bottom:1px solid var(--line)}
  .nav-inner{display:flex; align-items:center; justify-content:space-between; height:86px}
  .brand{display:flex; align-items:center; gap:11px; font-family:'Montserrat',sans-serif; font-weight:800; font-size:19px; letter-spacing:-.02em}
  .brand .dot{width:11px; height:11px; border-radius:3px; background:var(--lime); box-shadow:0 0 16px var(--lime-line)}
  .brand small{font-family:'JetBrains Mono',monospace; font-weight:500; font-size:10.5px; color:var(--text);
    letter-spacing:.12em; text-transform:uppercase; display:block; margin-top:-1px}
  .nav-links{display:flex; align-items:center; gap:30px}
  .nav-links a{font-family:'Montserrat',sans-serif; font-weight:600; font-size:16px; color:var(--text); transition:color .15s}
  .nav-links a:hover{color:var(--acc)}
  .nav-cta{display:flex; align-items:center; gap:14px}
  .menu-btn{display:none; background:none; border:0; color:var(--text); cursor:pointer}

  /* Hero */
  .hero{padding:74px 0 90px; position:relative}
  .hero::before{content:''; position:absolute; inset:0;
    background:
      radial-gradient(660px 460px at 80% 6%, rgba(91,214,255,.13), transparent 70%),
      radial-gradient(720px 500px at 10% 32%, rgba(191,247,71,.13), transparent 66%);
    pointer-events:none}
  .hero-grid{display:grid; grid-template-columns:1.05fr .95fr; gap:56px; align-items:center; position:relative}
  .hero h1{font-size:clamp(34px,4.6vw,56px); font-weight:800}
  .hero h1 .hl{color:var(--acc)}
  .hero p.lead{font-size:19px; color:var(--muted); margin:22px 0 32px; max-width:520px}
  .hero-cta{display:flex; gap:14px; flex-wrap:wrap; align-items:center}
  .hero-note{margin-top:22px; font-family:'JetBrains Mono',monospace; font-size:12.5px; color:var(--muted2)}
  .hero-note b{color:var(--text); font-weight:500}

  /* AI answer card (signature) */
  .answer{background:linear-gradient(180deg,#1E222A,#191C22); border:1px solid var(--line2);
    border-radius:var(--r); padding:22px; box-shadow:0 30px 70px -30px rgba(0,0,0,.7); position:relative}
  .answer .qbar{display:flex; align-items:center; gap:9px; padding-bottom:14px; border-bottom:1px solid var(--line); margin-bottom:16px}
  .answer .qbar .eng{font-family:'JetBrains Mono',monospace; font-size:11px; color:var(--muted2); letter-spacing:.1em}
  .answer .qbar .live{margin-left:auto; font-family:'JetBrains Mono',monospace; font-size:10px; color:var(--acc);
    display:flex; align-items:center; gap:6px}
  .answer .qbar .live::before{content:''; width:7px; height:7px; border-radius:50%; background:var(--lime); box-shadow:0 0 10px var(--lime)}
  .answer .prompt{font-size:14px; color:var(--muted); margin-bottom:16px}
  .answer .prompt span{color:var(--text)}
  .answer .resp{font-size:15.5px; line-height:1.7}
  .answer .resp .name{background:var(--lime-dim); color:var(--acc); border:1px solid var(--lime-line);
    border-radius:6px; padding:1px 7px; font-weight:600; font-family:'Montserrat',sans-serif; font-size:14px; white-space:nowrap}
  .answer .resp .other{color:var(--muted)}
  .answer .foot{margin-top:18px; padding-top:14px; border-top:1px solid var(--line);
    display:flex; align-items:center; gap:8px; font-family:'JetBrains Mono',monospace; font-size:11px; color:var(--muted2)}
  .answer .foot .tag{color:var(--acc)}

  /* Engine strip */
  .engines{border-top:1px solid var(--line); border-bottom:1px solid var(--line); background:var(--bg2)}
  .engines .wrap{padding:30px 24px; display:flex; align-items:center; gap:14px 34px; flex-wrap:wrap; justify-content:center}
  .engines .lbl{font-family:'JetBrains Mono',monospace; font-size:11.5px; letter-spacing:.14em;
    text-transform:uppercase; color:var(--acc); margin-right:6px}
  .engines .e{font-family:'Montserrat',sans-serif; font-weight:600; font-size:16px; color:var(--muted);
    display:flex; align-items:center; gap:8px; transition:color .2s}
  .engines .e::before{content:''; width:6px; height:6px; border-radius:50%; background:var(--line2)}
  .engines .e:hover{color:var(--text)}

  /* Section heading */
  .sec-head{max-width:680px; margin-bottom:52px}
  .sec-head.center{margin-left:auto; margin-right:auto; text-align:center}
  .sec-head h2{font-size:clamp(28px,3.4vw,40px); font-weight:800}
  .sec-head p{color:var(--muted); font-size:18px; margin-top:16px}

  /* The shift / before-after */
  .shift{background:var(--bg2); border-top:1px solid var(--line); border-bottom:1px solid var(--line)}
  .ba{display:grid; grid-template-columns:1fr auto 1fr; gap:28px; align-items:stretch}
  .ba .card{background:var(--bg); border:1px solid var(--line); border-radius:var(--r); padding:26px}
  .ba .card .yr{font-family:'JetBrains Mono',monospace; font-size:12px; letter-spacing:.12em; color:var(--muted2); margin-bottom:16px}
  .ba .card.now{border-color:var(--lime-line); background:linear-gradient(180deg,rgba(191,247,71,.05),var(--bg))}
  .ba .card.now .yr{color:var(--acc)}
  .links10{display:flex; flex-direction:column; gap:9px}
  .links10 .ln{height:9px; border-radius:4px; background:var(--bg3)}
  .links10 .ln:nth-child(1){width:90%} .links10 .ln:nth-child(2){width:78%}
  .links10 .ln:nth-child(3){width:84%} .links10 .ln:nth-child(4){width:70%}
  .links10 .ln:nth-child(5){width:80%} .links10 .ln:nth-child(6){width:64%}
  .ba .now .ans{font-size:15.5px; line-height:1.7}
  .ba .now .ans .name{background:var(--lime-dim); color:var(--acc); border:1px solid var(--lime-line);
    border-radius:6px; padding:1px 7px; font-weight:600; font-family:'Montserrat',sans-serif; font-size:14px}
  .ba .now .ans .other{color:var(--muted)}
  .ba .meta{font-family:'JetBrains Mono',monospace; font-size:11px; color:var(--muted2); margin-top:16px}
  .ba .arrow{display:flex; align-items:center; justify-content:center; color:var(--muted2); font-size:26px}

  /* Steps / how it works */
  .steps{display:grid; grid-template-columns:repeat(4,1fr); gap:20px}
  .step{background:var(--bg2); border:1px solid var(--line); border-radius:var(--r); padding:26px; position:relative; transition:border-color .2s, transform .2s}
  .step:hover{border-color:var(--lime-line); transform:translateY(-3px)}
  .step .n{font-family:'JetBrains Mono',monospace; font-size:13px; color:var(--acc); margin-bottom:18px}
  .step h3{font-size:19px; margin-bottom:10px}
  .step p{font-size:14.5px; color:var(--muted); margin:0}
  .step .day{position:absolute; top:24px; right:24px; font-family:'JetBrains Mono',monospace; font-size:11px; color:var(--muted2)}

  /* Niche */
  .niche-grid{display:grid; grid-template-columns:1.1fr .9fr; gap:48px; align-items:center}
  .niche-list{list-style:none; padding:0; margin:24px 0 0; display:flex; flex-direction:column; gap:16px}
  .niche-list li{display:flex; gap:14px; align-items:flex-start; font-size:16px; color:var(--muted)}
  .niche-list li b{color:var(--text); font-weight:600}
  .niche-list .ic{flex:0 0 auto; width:24px; height:24px; border-radius:7px; background:var(--lime-dim);
    border:1px solid var(--lime-line); color:var(--acc); display:flex; align-items:center; justify-content:center; font-size:13px; margin-top:2px}
  .statbox{background:var(--bg2); border:1px solid var(--line); border-radius:var(--r); padding:30px; display:grid; gap:24px}
  .statbox .s .num{font-family:'Montserrat',sans-serif; font-weight:800; font-size:38px; color:var(--acc); line-height:1}
  .statbox .s .lab{font-size:14px; color:var(--muted); margin-top:8px}
  .statbox .s:not(:last-child){padding-bottom:24px; border-bottom:1px solid var(--line)}

  /* Dashboard mock */
  .dash{background:var(--bg2); border-top:1px solid var(--line); border-bottom:1px solid var(--line)}
  .dash-card{background:linear-gradient(180deg,#1E222A,#191C22); border:1px solid var(--line2); border-radius:var(--r);
    overflow:hidden; box-shadow:0 30px 70px -34px rgba(0,0,0,.7)}
  .dash-top{display:flex; align-items:center; gap:10px; padding:16px 20px; border-bottom:1px solid var(--line); background:rgba(0,0,0,.18)}
  .dash-top .dotrow{display:flex; gap:7px}
  .dash-top .dotrow i{width:11px; height:11px; border-radius:50%; background:var(--bg3); display:block}
  .dash-top .ttl{font-family:'JetBrains Mono',monospace; font-size:12px; color:var(--muted2); margin-left:8px}
  .dash-body{display:grid; grid-template-columns:1.3fr 1fr; gap:0}
  .dash-l{padding:24px; border-right:1px solid var(--line)}
  .dash-r{padding:24px}
  .dash-score{display:flex; align-items:flex-end; gap:14px; margin-bottom:6px}
  .dash-score .big{font-family:'Montserrat',sans-serif; font-weight:800; font-size:52px; color:var(--text); line-height:.9}
  .dash-score .up{font-family:'JetBrains Mono',monospace; font-size:13px; color:var(--acc); padding-bottom:8px}
  .dash-sub{font-family:'JetBrains Mono',monospace; font-size:11px; color:var(--muted2); letter-spacing:.1em; text-transform:uppercase; margin-bottom:22px}
  .eng-row{display:flex; flex-direction:column; gap:13px}
  .eng-row .er{display:flex; align-items:center; gap:12px}
  .eng-row .er .en{width:78px; font-size:13px; color:var(--muted)}
  .eng-row .er .bar{flex:1; height:8px; background:var(--bg3); border-radius:5px; overflow:hidden}
  .eng-row .er .bar i{display:block; height:100%; background:linear-gradient(90deg,#7fae2e,var(--lime)); border-radius:5px}
  .eng-row .er .pct{width:38px; text-align:right; font-family:'JetBrains Mono',monospace; font-size:12px; color:var(--text)}
  .dash-r h4{font-size:13px; font-family:'JetBrains Mono',monospace; color:var(--muted2); letter-spacing:.1em; text-transform:uppercase; margin-bottom:16px}
  .sov{display:flex; flex-direction:column; gap:12px}
  .sov .row{display:flex; align-items:center; gap:10px; font-size:14px}
  .sov .row .sw{width:11px; height:11px; border-radius:3px}
  .sov .row.me{color:var(--text); font-weight:600}
  .sov .row .v{margin-left:auto; font-family:'JetBrains Mono',monospace; font-size:12px; color:var(--muted)}

  /* Tiers / autopilot */
  .tiers{display:grid; grid-template-columns:repeat(3,1fr); gap:22px; align-items:stretch}
  .tier{background:var(--bg2); border:1px solid var(--line); border-radius:var(--r); padding:30px; display:flex; flex-direction:column}
  .tier.feat{border-color:var(--lime-line); background:linear-gradient(180deg,rgba(191,247,71,.06),var(--bg2))}
  .tier .badge{align-self:flex-start; font-family:'JetBrains Mono',monospace; font-size:10px; letter-spacing:.12em; text-transform:uppercase;
    color:var(--ink); background:var(--lime); padding:4px 10px; border-radius:999px; margin-bottom:16px}
  .tier h3{font-size:22px; margin-bottom:6px}
  .tier .pitch{font-size:14px; color:var(--muted); min-height:42px}
  .tier .price{font-family:'Montserrat',sans-serif; font-weight:800; font-size:30px; margin:18px 0 4px}
  .tier .price small{font-size:14px; color:var(--muted2); font-weight:500}
  .tier .auto{font-family:'JetBrains Mono',monospace; font-size:11px; color:var(--acc); margin-bottom:18px}
  .tier ul{list-style:none; padding:0; margin:0 0 24px; display:flex; flex-direction:column; gap:11px}
  .tier ul li{font-size:14.5px; color:var(--muted); display:flex; gap:10px; align-items:flex-start}
  .tier ul li::before{content:'✓'; color:var(--acc); font-weight:700}
  .tier .btn{margin-top:auto; justify-content:center}

  /* Platform strip */
  .platform{background:var(--bg2); border:1px solid var(--line); border-radius:var(--r); padding:40px; display:grid; grid-template-columns:1fr auto 1fr; gap:28px; align-items:center}
  .platform .p{background:var(--bg); border:1px solid var(--line); border-radius:var(--rs); padding:24px}
  .platform .p .k{font-family:'JetBrains Mono',monospace; font-size:11px; letter-spacing:.1em; text-transform:uppercase; color:var(--muted2)}
  .platform .p h4{font-size:21px; margin:8px 0 8px}
  .platform .p p{font-size:14px; color:var(--muted); margin:0}
  .platform .p .k.lime{color:var(--acc)}
  .platform .plus{font-size:30px; color:var(--acc); text-align:center; font-family:'Montserrat'; font-weight:800}
  .platform-cap{text-align:center; color:var(--muted); margin-top:22px; font-size:15px}

  /* FAQ */
  .faq{max-width:820px; margin:0 auto}
  .qa{border-bottom:1px solid var(--line)}
  .qa summary{cursor:pointer; list-style:none; padding:22px 0; font-family:'Montserrat',sans-serif; font-weight:600; font-size:18px;
    display:flex; align-items:center; gap:16px}
  .qa summary::-webkit-details-marker{display:none}
  .qa summary .pm{margin-left:auto; color:var(--acc); font-size:22px; transition:transform .2s; flex:0 0 auto}
  .qa[open] summary .pm{transform:rotate(45deg)}
  .qa .a{padding:0 0 22px; color:var(--text); font-size:15.5px; max-width:720px}

  /* Final CTA */
  .final{background:linear-gradient(180deg,var(--bg2),var(--bg)); border-top:1px solid var(--line)}
  .final-card{background:linear-gradient(135deg,#1E222A,#181B21); border:1px solid var(--lime-line); border-radius:24px;
    padding:54px 44px; text-align:center; position:relative; overflow:hidden}
  .final-card::before{content:''; position:absolute; inset:0; background:radial-gradient(500px 260px at 50% -10%, rgba(191,247,71,.12), transparent 70%)}
  .final-card h2{font-size:clamp(28px,3.6vw,40px); font-weight:800; position:relative}
  .final-card p{color:var(--muted); font-size:18px; margin:16px auto 30px; max-width:540px; position:relative}
  .scan-form{display:flex; gap:12px; max-width:560px; margin:0 auto; position:relative; flex-wrap:wrap; justify-content:center}
  .scan-form input{flex:1; min-width:180px; background:var(--bg); border:1px solid var(--line2); border-radius:999px;
    padding:14px 20px; color:var(--text); font-family:'Open Sans'; font-size:15px}
  .scan-form input:focus{outline:none; border-color:var(--lime-line)}
  .scan-note{margin-top:16px; font-family:'JetBrains Mono',monospace; font-size:12px; color:var(--muted2); position:relative}
  .scan-done{display:none; position:relative; font-size:17px; color:var(--text)}
  .scan-done .lime{font-weight:700}

  /* Footer */
  footer{border-top:1px solid var(--line); padding:56px 0 36px; background:var(--bg)}
  .foot-grid{display:grid; grid-template-columns:1.6fr 1fr 1fr 1fr; gap:36px; margin-bottom:40px}
  .foot-grid h5{font-family:'Montserrat',sans-serif; font-size:15px; letter-spacing:.04em; text-transform:uppercase; color:var(--acc); margin:0 0 16px; font-weight:700}
  .foot-grid a:not(.brand){display:block; color:#DCE0E6; font-size:14.5px; margin-bottom:11px; transition:color .15s}
  .foot-grid a:not(.brand):hover{color:var(--acc)}
  .foot-about{color:var(--muted); font-size:13px; line-height:1.7; max-width:340px}
  .foot-bottom{border-top:1px solid var(--line); padding-top:26px; display:flex; justify-content:space-between; gap:20px; flex-wrap:wrap;
    font-size:13px; color:var(--muted)}
  .disc{max-width:var(--max); margin:22px auto 0; padding:0 24px; font-size:11.5px; color:#8C95A0}

  /* Ambient background glows */
  .sec-pad>.wrap{position:relative; z-index:1}
  #how, #voor-wie, .dash, #pakketten{overflow:hidden}
  .hero::before{animation:glowPulse 10s ease-in-out infinite}
  #how::before{content:''; position:absolute; top:-40px; left:-140px; width:560px; height:560px; border-radius:50%;
    background:radial-gradient(circle, rgba(191,247,71,.15), transparent 62%); filter:blur(26px); pointer-events:none; z-index:0;
    animation:glowPulse 11s ease-in-out infinite}
  #voor-wie::before{content:''; position:absolute; top:6%; right:-180px; width:620px; height:620px; border-radius:50%;
    background:radial-gradient(circle, rgba(91,214,255,.10), transparent 62%); filter:blur(28px); pointer-events:none; z-index:0}
  .dash::before{content:''; position:absolute; bottom:-90px; left:6%; width:540px; height:540px; border-radius:50%;
    background:radial-gradient(circle, rgba(191,247,71,.09), transparent 62%); filter:blur(28px); pointer-events:none; z-index:0}
  #pakketten::before{content:''; position:absolute; top:24%; left:50%; transform:translateX(-50%); width:820px; height:560px; border-radius:50%;
    background:radial-gradient(circle, rgba(191,247,71,.14), transparent 60%); filter:blur(36px); pointer-events:none; z-index:0;
    animation:glowPulse 13s ease-in-out infinite}
  @keyframes glowPulse{0%,100%{opacity:.6} 50%{opacity:1}}

  /* reveal */
  .rv{opacity:0; transform:translateY(18px); transition:opacity .6s ease, transform .6s ease}
  .rv.in{opacity:1; transform:none}
  @media (prefers-reduced-motion:reduce){.rv{opacity:1; transform:none; transition:none} .hero::before,#how::before,#pakketten::before{animation:none}}

  /* Responsive */
  @media (max-width:980px){
    .hero-grid{grid-template-columns:1fr; gap:42px}
    .niche-grid{grid-template-columns:1fr; gap:32px}
    .dash-body{grid-template-columns:1fr}
    .dash-l{border-right:0; border-bottom:1px solid var(--line)}
    .steps{grid-template-columns:repeat(2,1fr)}
    .tiers{grid-template-columns:1fr; max-width:440px; margin:0 auto}
    .platform{grid-template-columns:1fr; text-align:center}
    .platform .plus{transform:rotate(90deg)}
    .ba{grid-template-columns:1fr; gap:18px}
    .ba .arrow{transform:rotate(90deg)}
    .foot-grid{grid-template-columns:1fr 1fr; gap:28px}
  }
  @media (max-width:640px){
    .sec-pad{padding:64px 0}
    .nav-links{display:none}
    .menu-btn{display:block}
    .steps{grid-template-columns:1fr}
    .foot-grid{grid-template-columns:1fr}
    .hero{padding:48px 0 64px}
    .final-card{padding:40px 22px}
  }

/* ====== Mobile menu dropdown ====== */
@media (max-width:640px){
  .nav-links.open{display:flex; position:absolute; top:100%; left:0; right:0; flex-direction:column; gap:0;
    background:var(--bg2); border-bottom:1px solid var(--line); padding:6px 24px 14px; z-index:60}
  .nav-links.open a{padding:13px 0; border-bottom:1px solid var(--line); font-size:17px}
}

/* ====== Subpage components ====== */
.subhero{padding:56px 0 40px; position:relative; overflow:hidden; border-bottom:1px solid var(--line)}
.subhero::before{content:''; position:absolute; top:-120px; left:-120px; width:520px; height:520px; border-radius:50%;
  background:radial-gradient(circle, rgba(191,247,71,.12), transparent 62%); filter:blur(28px); pointer-events:none; z-index:0}
.subhero .wrap{position:relative; z-index:1}
.subhero h1{font-size:clamp(30px,4vw,46px); font-weight:800; max-width:820px}
.subhero p.lead{color:var(--muted); font-size:19px; margin-top:18px; max-width:640px}
.crumbs{font-family:'JetBrains Mono',monospace; font-size:12px; color:var(--muted2); margin-bottom:18px}
.crumbs a{color:var(--muted2)} .crumbs a:hover{color:var(--acc)}

.prose{max-width:760px; margin:0 auto}
.prose h2{font-size:26px; font-weight:800; color:var(--text); margin:40px 0 14px}
.prose h3{font-size:19px; font-weight:700; color:var(--acc); margin:28px 0 10px}
.prose p{color:var(--muted); font-size:16.5px; margin:0 0 16px}
.prose ul{list-style:none; padding:0; margin:0 0 18px; display:flex; flex-direction:column; gap:11px}
.prose ul li{color:var(--muted); font-size:16px; display:flex; gap:12px; align-items:flex-start}
.prose ul li::before{content:'✓'; color:var(--acc); font-weight:700; flex:0 0 auto}
.prose strong{color:var(--text); font-weight:600}
.prose .first{font-size:18px; color:var(--text)}

/* feature cards row */
.cards3{display:grid; grid-template-columns:repeat(3,1fr); gap:20px}
.card-b{background:var(--bg2); border:1px solid var(--line); border-radius:var(--r); padding:26px; transition:border-color .2s, transform .2s}
.card-b:hover{border-color:var(--lime-line); transform:translateY(-3px)}
.card-b .n{font-family:'JetBrains Mono',monospace; font-size:13px; color:var(--acc); margin-bottom:14px}
.card-b h3{font-size:19px; margin-bottom:9px; color:var(--text)}
.card-b p{font-size:14.5px; color:var(--muted); margin:0}
@media (max-width:880px){ .cards3{grid-template-columns:1fr} }

/* Pricing comparison table */
.ptable{width:100%; border-collapse:collapse; background:var(--bg2); border:1px solid var(--line); border-radius:var(--r); overflow:hidden}
.ptable th, .ptable td{padding:16px 18px; text-align:left; border-bottom:1px solid var(--line); font-size:15px}
.ptable thead th{font-family:'Montserrat',sans-serif; font-weight:700; color:var(--text); background:rgba(0,0,0,.2)}
.ptable thead th.feat{color:var(--acc)}
.ptable td.c{text-align:center}
.ptable .yes{color:var(--acc); font-weight:700}
.ptable .no{color:var(--muted2)}
.ptable tbody tr:hover{background:rgba(255,255,255,.02)}
.ptable td:first-child{color:var(--muted)}
.ptable-wrap{overflow-x:auto}

/* Contact */
.contact-grid{display:grid; grid-template-columns:1fr 1fr; gap:40px; align-items:start}
.field{display:flex; flex-direction:column; gap:7px; margin-bottom:16px}
.field label{font-size:13px; color:var(--muted); font-family:'JetBrains Mono',monospace; letter-spacing:.04em}
.field input, .field textarea{background:var(--bg2); border:1px solid var(--line2); border-radius:var(--rs);
  padding:13px 16px; color:var(--text); font-family:'Open Sans'; font-size:15px}
.field input:focus, .field textarea:focus{outline:none; border-color:var(--lime-line)}
.field textarea{min-height:130px; resize:vertical}
.contact-info{background:var(--bg2); border:1px solid var(--line); border-radius:var(--r); padding:28px}
.contact-info .ci{margin-bottom:22px}
.contact-info .ci .k{font-family:'JetBrains Mono',monospace; font-size:11px; letter-spacing:.1em; text-transform:uppercase; color:var(--acc); margin-bottom:6px}
.contact-info .ci .v{color:var(--text); font-size:16px}
.contact-info .ci a{color:var(--text)} .contact-info .ci a:hover{color:var(--acc)}
.form-done{display:none; background:var(--bg2); border:1px solid var(--lime-line); border-radius:var(--r); padding:24px; color:var(--text); font-size:16px}
.form-done .lime{font-weight:700}
@media (max-width:780px){ .contact-grid{grid-template-columns:1fr; gap:28px} }

/* CTA band reusable */
.ctaband{background:linear-gradient(135deg,#1E222A,#181B21); border:1px solid var(--lime-line); border-radius:24px;
  padding:48px 40px; text-align:center; position:relative; overflow:hidden}
.ctaband::before{content:''; position:absolute; inset:0; background:radial-gradient(500px 240px at 50% -10%, rgba(191,247,71,.12), transparent 70%)}
.ctaband h2{font-size:clamp(26px,3.2vw,36px); font-weight:800; position:relative}
.ctaband p{color:var(--muted); font-size:17px; margin:14px auto 26px; max-width:520px; position:relative}
.ctaband .btn{position:relative}


/* ====== Light sections (alternating layout) ====== */
.light{
  --bg:#FFFFFF; --bg2:#F4F6FA; --bg3:#E6EBF1;
  --line:rgba(16,18,22,.10); --line2:rgba(16,18,22,.18);
  --text:#14161A; --muted:#4F5A66; --muted2:#79838F;
  --acc:#3C7A12;
  --lime-line:rgba(118,158,40,.45);
  --lime-dim:rgba(191,247,71,.32);
  background:var(--bg); color:var(--text);
}
.light::before{content:none !important}

/* Dark cards keep their dark styling + light text on ANY section background */
.darkcard{
  --bg:#15171B; --bg2:#1B1E24; --bg3:#22262E;
  --line:rgba(255,255,255,.08); --line2:rgba(255,255,255,.15);
  --text:#FFFFFF; --muted:#C2C9D2; --muted2:#828B96;
  --acc:#BFF747; --lime-line:rgba(191,247,71,.40); --lime-dim:rgba(191,247,71,.13);
  color:var(--text);
}
.light .card-b, .light .step, .light .tier, .light .statbox,
.light .ba .card, .light .ptable, .light .contact-info{
  box-shadow:0 1px 2px rgba(16,18,22,.05), 0 12px 28px -20px rgba(16,18,22,.18);
}
/* The CTA card stays dark on white, so force light text inside it */
.ctaband h2{color:#FFFFFF}
.ctaband p{color:#C2C9D2}

/* ============================================================
   VOLLEDIG WITTE VARIANT  (zet class="wit" op <body>)
   Alles licht, groene accenten, lichte kaarten.
   ============================================================ */
body.wit{
  --bg:#FFFFFF; --bg2:#F5F7FA; --bg3:#E7ECF2;
  --line:rgba(16,18,22,.10); --line2:rgba(16,18,22,.16);
  --text:#14161A; --muted:#505A67; --muted2:#79838F;
  --acc:#3C7A12;
  --lime-line:rgba(118,158,40,.45);
  --lime-dim:rgba(191,247,71,.30);
  background:var(--bg); color:var(--text);
}
/* Header + footer licht */
body.wit header.nav{background:rgba(255,255,255,.82); border-bottom:1px solid var(--line)}
body.wit footer{background:#FFFFFF; border-top:1px solid var(--line)}
body.wit .foot-grid a:not(.brand){color:var(--muted)}
body.wit .foot-grid a:not(.brand):hover{color:var(--acc)}
body.wit .disc{color:#9aa3ad}
/* Geen decoratieve glows in witte modus */
body.wit .hero::before, body.wit .subhero::before, body.wit #how::before,
body.wit #voor-wie::before, body.wit .dash::before, body.wit #pakketten::before{content:none !important}
/* Donkere kaarten worden licht */
body.wit .darkcard{
  --bg:#FFFFFF;
  --text:#14161A; --muted:#505A67; --muted2:#79838F; --acc:#3C7A12;
  --bg2:#F5F7FA; --bg3:#E7ECF2; --line:rgba(16,18,22,.10); --line2:rgba(16,18,22,.16);
  --lime-line:rgba(118,158,40,.45); --lime-dim:rgba(191,247,71,.30);
  color:var(--text);
}
body.wit .answer{background:#FFFFFF; border-color:var(--line2); box-shadow:0 14px 32px -20px rgba(16,18,22,.20)}
body.wit .dash-card{background:#FFFFFF; border-color:var(--line2); box-shadow:0 16px 38px -22px rgba(16,18,22,.22)}
body.wit .dash-top{background:#F5F7FA}
body.wit .ctaband, body.wit .final-card{background:linear-gradient(135deg,#F3F8E9,#FFFFFF); border-color:var(--lime-line)}
body.wit .ctaband h2{color:var(--text)}
body.wit .ctaband p{color:var(--muted)}
/* Knoppen: lime vlak blijft, ghost-knop leesbaar op wit */
body.wit .btn-ghost{border-color:var(--line2); color:var(--text)}

/* ===== Speelse lime-accenten in de witte modus ===== */
body.wit{
  --bg2:#EAF6C6;   /* grijze vlakken -> zacht gifgroen */
  --bg3:#DCEFA6;
}
/* Gifgroene header */
body.wit header.nav{background:#BFF747; border-bottom:1px solid rgba(16,18,22,.16)}
body.wit .brand, body.wit .brand small{color:#14161A}
body.wit .brand .dot{background:#14161A; box-shadow:none}
body.wit .nav-links a{color:#14161A}
body.wit .nav-links a:hover{color:#2E5A0C}
body.wit .menu-btn{color:#14161A}
body.wit .nav-cta .btn-primary{background:#14161A; color:#BFF747}
body.wit .nav-cta .btn-primary:hover{background:#000; transform:translateY(-2px)}
/* Kaders in gifgroen (een % van de volle kleur) */
body.wit .card-b, body.wit .step, body.wit .tier, body.wit .statbox,
body.wit .ba .card, body.wit .answer, body.wit .dash-card,
body.wit .contact-info, body.wit .platform .p{
  border-color:rgba(123,184,19,.55);
}
body.wit .ctaband, body.wit .final-card{border-color:#BFF747}
body.wit .dash-top{background:#EAF6C6}
/* Het accentwoord "adviseur" als gifgroen merkteken */
body.wit .hero h1 .hl{
  color:#14161A; background:#BFF747; padding:.02em .16em; border-radius:.16em;
  -webkit-box-decoration-break:clone; box-decoration-break:clone;
}

/* ===== Iteratie 2: vol-lime, speelser ===== */
body.wit{
  --acc:#BFF747;        /* alleen limegroen, geen donkergroen */
  --bg2:#EFFBCB;        /* zachte vlakken -> pale lime */
  --bg3:#E2F4A8;
}
/* Header: wit logo + witte buttontekst */
body.wit .brand, body.wit .brand small{color:#FFFFFF}
body.wit .brand .dot{background:#14161A}
body.wit .nav-cta .btn-primary{background:#14161A; color:#FFFFFF}

/* Alle kaders in vol lime */
body.wit .card-b, body.wit .step, body.wit .tier, body.wit .statbox,
body.wit .ba .card, body.wit .dash-card, body.wit .contact-info,
body.wit .platform .p{ border-color:#BFF747 }

/* Hero AI-antwoordkaart: vol lime kader + glow */
body.wit .answer{ border-color:#BFF747; box-shadow:0 16px 36px -14px rgba(191,247,71,.6) }
/* Naam-chips als volle lime met zwarte tekst */
body.wit .answer .resp .name, body.wit .ba .now .ans .name{ color:#14161A; background:#BFF747; border-color:#BFF747 }

/* Engines-strook: vol limegroen, zwarte tekst */
body.wit .engines{ background:#BFF747; border-top-color:rgba(16,18,22,.14); border-bottom-color:rgba(16,18,22,.14) }
body.wit .engines .lbl, body.wit .engines .e{ color:#14161A }
body.wit .engines .e::before{ background:rgba(16,18,22,.5) }

/* Voor wie: vol limegroen vlak, witte kaart, zwarte tekst */
body.wit #voor-wie{ background:#BFF747 }
body.wit #voor-wie .eyebrow, body.wit #voor-wie h2,
body.wit #voor-wie .muted, body.wit #voor-wie p,
body.wit #voor-wie .niche-list li, body.wit #voor-wie .niche-list li b{ color:#14161A }
body.wit #voor-wie .niche-list .ic{ background:#fff; border-color:rgba(16,18,22,.25); color:#14161A }
body.wit #voor-wie .statbox{ background:#FFFFFF; border-color:rgba(16,18,22,.12) }
body.wit #voor-wie .statbox .num, body.wit #voor-wie .statbox .lab{ color:#14161A }
body.wit #voor-wie .statbox .s:not(:last-child){ border-bottom-color:rgba(16,18,22,.12) }

/* Dashboard: bovenkant kaart limegroen */
body.wit .dash-top{ background:#BFF747 }
body.wit .dash-top .ttl{ color:#14161A }
body.wit .dash-top .dotrow i{ background:rgba(16,18,22,.3) }

/* Pakketten: prijs-kaders vol lime, middelste verloop naar donkerder */
body.wit #pakketten .tier{ background:#BFF747; border-color:#BFF747 }
body.wit #pakketten .tier.feat{ background:linear-gradient(180deg,#BFF747,#8FB23A); border-color:#BFF747 }
body.wit #pakketten .tier h3, body.wit #pakketten .tier .pitch,
body.wit #pakketten .tier .price, body.wit #pakketten .tier .price small,
body.wit #pakketten .tier .auto, body.wit #pakketten .tier ul li,
body.wit #pakketten .tier ul li::before{ color:#14161A }
body.wit #pakketten .tier .badge{ background:#14161A; color:#BFF747 }
body.wit #pakketten .tier .btn-ghost{ border-color:#14161A; color:#14161A }
body.wit #pakketten .tier .btn-primary{ background:#14161A; color:#FFFFFF }

/* Platform-strip eronder: kaarten vol limegroen */
body.wit .platform{ background:transparent; border-color:transparent }
body.wit .platform .p{ background:#BFF747; border-color:#BFF747 }
body.wit .platform .p .k, body.wit .platform .p .k.lime,
body.wit .platform .p h4, body.wit .platform .p p{ color:#14161A }
body.wit .platform .plus{ color:#14161A }

/* FAQ: lime glow op witte achtergrond */
body.wit #faq{ position:relative; overflow:hidden }
body.wit #faq::before{ content:''; position:absolute; top:-120px; left:50%; transform:translateX(-50%);
  width:820px; height:460px; border-radius:50%;
  background:radial-gradient(circle, rgba(191,247,71,.5), transparent 66%); filter:blur(46px);
  pointer-events:none; z-index:0 }
body.wit #faq .wrap{ position:relative; z-index:1 }

/* CTA-kaart (en subpagina-CTA): vol limegroen */
body.wit .final-card, body.wit .ctaband{ background:#BFF747; border-color:#BFF747 }
body.wit .final-card::before, body.wit .ctaband::before{ content:none }
body.wit .final-card h2, body.wit .final-card p, body.wit .final-card .scan-note, body.wit .final-card .scan-done,
body.wit .ctaband h2, body.wit .ctaband p{ color:#14161A }
body.wit .final-card .scan-form input{ background:#FFFFFF; border-color:rgba(16,18,22,.2); color:#14161A }
body.wit .final-card .btn-primary, body.wit .ctaband .btn-primary{ background:#14161A; color:#FFFFFF }

/* Footer: vol limegroen, wit logo, zwarte tekst */
body.wit footer{ background:#BFF747; border-top-color:rgba(16,18,22,.16) }
body.wit footer .brand, body.wit footer .brand small{ color:#FFFFFF }
body.wit footer .brand .dot{ background:#14161A }
body.wit .foot-grid h5, body.wit .foot-grid a:not(.brand),
body.wit .foot-about, body.wit .foot-bottom{ color:#14161A }
body.wit .foot-grid a:not(.brand):hover{ color:#FFFFFF }
body.wit .foot-bottom{ border-top-color:rgba(16,18,22,.18) }
body.wit .disc{ color:rgba(16,18,22,.6) }
