/* ============================================================
   chatGTP.nl — styles
   Esthetiek: warm licht, ChatGPT-groen accent, conversational
   ============================================================ */

:root {
  --bg:        #faf9f5;
  --surface:   #ffffff;
  --ink:       #0c1a14;
  --ink-soft:  #51605a;
  --ink-faint: #8a958f;

  --green:        #10a37f;
  --green-bright: #19c37d;
  --green-deep:   #0a7d60;
  --green-ink:    #073d2f;

  /* CTA-accent (oranje) — knoppen */
  --orange:        #f97316;
  --orange-bright: #fb8a3c;
  --orange-deep:   #ea580c;

  --mint:      #e8f7ef;
  --mint-2:    #d7f1e3;
  --cream:     #f3f1e9;

  --dark:      #0a1410;
  --dark-2:    #11231b;

  --line:      #e8e6dd;
  --line-soft: #f0eee6;

  --radius:    18px;
  --radius-sm: 12px;
  --radius-lg: 28px;

  --shadow-sm: 0 2px 8px rgba(12,26,20,.05);
  --shadow:    0 14px 40px -18px rgba(12,26,20,.22);
  --shadow-lg: 0 40px 80px -30px rgba(10,125,96,.45);

  --maxw: 1180px;

  --font-display: 'Poppins', system-ui, sans-serif;
  --font-body: 'Poppins', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 { font-family: var(--font-display); line-height: 1.08; letter-spacing: -.02em; font-weight: 700; }

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
em { font-style: normal; color: var(--green-deep); font-weight: 600; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 22px; }

:focus-visible { outline: 3px solid var(--green); outline-offset: 3px; border-radius: 6px; }

/* ---------- Buttons ---------- */
.btn {
  --bg-btn: var(--orange);
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  font-family: var(--font-body); font-weight: 700; font-size: 1rem;
  padding: .85em 1.5em; border-radius: 100px; border: 0; cursor: pointer;
  background: var(--bg-btn); color: #fff;
  transition: transform .25s cubic-bezier(.34,1.56,.64,1), box-shadow .25s, background .2s;
  box-shadow: 0 8px 22px -8px rgba(234,88,12,.55);
  white-space: nowrap;
}
.btn svg { transition: transform .25s; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -10px rgba(234,88,12,.65); }
.btn:hover svg { transform: translateX(3px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: linear-gradient(135deg, var(--orange-bright), var(--orange-deep)); }
.btn--light { background: linear-gradient(135deg, var(--orange-bright), var(--orange-deep)); color: #fff; box-shadow: 0 18px 40px -14px rgba(0,0,0,.5); }
.btn--light:hover { box-shadow: 0 22px 48px -14px rgba(0,0,0,.55); }
.btn--lg { padding: 1.05em 2em; font-size: 1.08rem; }
.btn--sm { padding: .6em 1.15em; font-size: .92rem; }

/* ---------- Topbar ---------- */
.topbar {
  background: var(--dark); color: #d8f3e6; font-size: .86rem;
  text-align: center; padding: .55rem 1rem;
  display: flex; align-items: center; justify-content: center; gap: .6rem;
}
.topbar strong { color: var(--green-bright); }
.topbar__pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--green-bright); box-shadow: 0 0 0 0 rgba(25,195,125,.6); animation: pulse 2s infinite; flex: none; }
@keyframes pulse { 70% { box-shadow: 0 0 0 8px rgba(25,195,125,0); } 100% { box-shadow: 0 0 0 0 rgba(25,195,125,0); } }
@media (max-width: 600px) { .topbar__hide-mobile { display: none; } }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250,249,245,.8); backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent; transition: border-color .3s, background .3s, box-shadow .3s;
}
.header.scrolled { border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }
.header__inner { display: flex; align-items: center; gap: 1.5rem; height: 68px; }

.logo { display: inline-flex; align-items: center; gap: .55rem; font-family: var(--font-display); font-weight: 800; font-size: 1.35rem; color: var(--green); letter-spacing: -.03em; }
.logo__mark { display: inline-flex; color: var(--green); }
.logo__text { color: var(--ink); }
.logo__accent { color: var(--green); }
.logo--light .logo__text { color: #fff; }
.logo--light .logo__mark { color: var(--green-bright); }

.nav { display: flex; gap: 1.6rem; margin-left: auto; font-weight: 600; font-size: .96rem; color: var(--ink-soft); }
.nav a { position: relative; padding: .2rem 0; transition: color .2s; }
.nav a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--green); transition: width .25s; border-radius: 2px; }
.nav a:hover { color: var(--ink); }
.nav a:hover::after { width: 100%; }
.header .btn { margin-left: .4rem; }

.nav-toggle { display: none; margin-left: auto; background: none; border: 0; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2.4px; background: var(--ink); border-radius: 2px; transition: .3s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.4px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.4px) rotate(-45deg); }

.mobile-menu { display: none; flex-direction: column; gap: .2rem; padding: 1rem 22px 1.4rem; background: var(--surface); border-bottom: 1px solid var(--line); }
.mobile-menu a:not(.btn) { padding: .8rem .4rem; font-weight: 600; border-bottom: 1px solid var(--line-soft); }
.mobile-menu .btn { margin-top: .8rem; }

@media (max-width: 880px) {
  .nav { display: none; }
  .header .btn:not(.nav-toggle) { display: none; }
  .nav-toggle { display: flex; }
  .mobile-menu:not([hidden]) { display: flex; }
}

/* ---------- Hero ---------- */
.hero { position: relative; padding: clamp(3rem, 7vw, 6rem) 0 clamp(3.5rem, 6vw, 5.5rem); overflow: hidden; }
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(60% 55% at 78% 18%, rgba(25,195,125,.20), transparent 60%),
    radial-gradient(50% 50% at 12% 90%, rgba(16,163,127,.12), transparent 60%);
}
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(12,26,20,.05) 1px, transparent 1px);
  background-size: 22px 22px; -webkit-mask-image: linear-gradient(180deg, #000, transparent 80%); mask-image: linear-gradient(180deg, #000, transparent 80%);
}
.hero__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 4vw, 4rem); align-items: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--surface); border: 1px solid var(--line); border-radius: 100px;
  padding: .4rem .9rem .4rem .7rem; font-size: .85rem; font-weight: 600; color: var(--ink-soft);
  box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s;
}
.eyebrow:hover { transform: translateY(-1px); box-shadow: var(--shadow); }
.eyebrow__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--green-bright); box-shadow: 0 0 0 4px rgba(25,195,125,.2); }

.hero__title { font-size: clamp(2.4rem, 5.4vw, 4.1rem); font-weight: 800; margin: 1.2rem 0 1rem; }
.hero__title .hl { position: relative; color: var(--green-deep); white-space: nowrap; }
.hero__title .hl::after { content: ""; position: absolute; left: -2%; right: -2%; bottom: .08em; height: .32em; background: linear-gradient(90deg, rgba(25,195,125,.35), rgba(16,163,127,.18)); z-index: -1; border-radius: 4px; transform: rotate(-1deg); }

.hero__lead { font-size: clamp(1.05rem, 1.7vw, 1.22rem); color: var(--ink-soft); max-width: 33ch; margin-bottom: 1.8rem; }

.hero__cta { display: flex; flex-direction: column; align-items: flex-start; gap: .7rem; margin-bottom: 2.2rem; }
.hero__guarantee { font-size: .85rem; color: var(--ink-faint); font-family: var(--font-mono); }

.hero__proof { list-style: none; display: flex; gap: clamp(1.2rem, 3vw, 2.2rem); flex-wrap: wrap; }
.hero__proof li { display: flex; flex-direction: column; }
.hero__proof strong { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; display: inline-flex; align-items: center; gap: .15rem; }
.hero__proof span { font-size: .82rem; color: var(--ink-soft); }
.star { fill: #f5a623; }

/* Chat-mockup */
.hero__chat { position: relative; }
.chatwin {
  position: relative; background: var(--surface); border-radius: var(--radius-lg);
  border: 1px solid var(--line); box-shadow: var(--shadow-lg); overflow: hidden;
  transform: perspective(1400px) rotateY(-6deg) rotateX(2deg); transition: transform .5s ease;
}
.hero__chat:hover .chatwin { transform: perspective(1400px) rotateY(0) rotateX(0); }
.chatwin__bar { display: flex; align-items: center; gap: .7rem; padding: .85rem 1.1rem; background: var(--dark); }
.chatwin__dots { display: inline-flex; gap: 6px; }
.chatwin__dots i { width: 11px; height: 11px; border-radius: 50%; background: #2c4a3d; }
.chatwin__dots i:first-child { background: #ff6058; } .chatwin__dots i:nth-child(2) { background: #ffbd2e; } .chatwin__dots i:nth-child(3) { background: #28c840; }
.chatwin__title { color: #cfeede; font-family: var(--font-mono); font-size: .8rem; margin-left: .2rem; }

.chatwin__body { padding: 1.3rem; display: flex; flex-direction: column; gap: .9rem; background: linear-gradient(180deg, #fff, #fbfcfb); min-height: 320px; }
.msg { max-width: 88%; font-size: .92rem; line-height: 1.5; }
.msg--user { align-self: flex-end; background: var(--green); color: #fff; padding: .7rem 1rem; border-radius: 16px 16px 4px 16px; box-shadow: 0 6px 14px -6px rgba(16,163,127,.6); }
.msg--bot { align-self: flex-start; display: flex; gap: .6rem; align-items: flex-start; }
.msg__avatar { flex: none; width: 30px; height: 30px; border-radius: 9px; background: var(--dark); color: var(--green-bright); font-family: var(--font-mono); font-size: .62rem; font-weight: 700; display: grid; place-items: center; }
.msg__text { background: var(--mint); color: var(--ink); padding: .7rem 1rem; border-radius: 16px 16px 16px 4px; }
.msg__text b { color: var(--green-deep); }
.msg__typing { display: inline-flex; gap: 4px; margin-left: .3rem; vertical-align: middle; }
.msg__typing i { width: 6px; height: 6px; border-radius: 50%; background: var(--green); animation: blink 1.2s infinite; }
.msg__typing i:nth-child(2) { animation-delay: .2s; } .msg__typing i:nth-child(3) { animation-delay: .4s; }
@keyframes blink { 0%,60%,100% { opacity: .25; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-3px); } }

.chatwin__input { display: flex; align-items: center; gap: .6rem; padding: .8rem 1.1rem; border-top: 1px solid var(--line); background: #fff; }
.chatwin__prompt { flex: 1; color: var(--ink-faint); font-size: .88rem; font-family: var(--font-mono); }
.chatwin__send { width: 34px; height: 34px; border-radius: 10px; background: var(--green); color: #fff; display: grid; place-items: center; }

.chat-float { position: absolute; background: #fff; border: 1px solid var(--line); border-radius: 100px; padding: .5rem 1rem; font-size: .82rem; font-weight: 700; box-shadow: var(--shadow); }
.chat-float--1 { top: -14px; left: -18px; color: var(--green-deep); animation: float 5s ease-in-out infinite; }
.chat-float--2 { bottom: 24px; right: -24px; color: var(--ink); animation: float 6s ease-in-out infinite .8s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

/* reveal of chat messages on load */
.reveal-msg { opacity: 0; animation: msgIn .5s ease forwards; animation-delay: var(--d); }
@keyframes msgIn { from { opacity: 0; transform: translateY(10px) scale(.97); } to { opacity: 1; transform: none; } }

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__copy { max-width: 640px; }
  .hero__lead { max-width: 48ch; }
  .hero__chat { max-width: 440px; margin-inline: auto; }
  .chatwin { transform: none; }
  .chat-float--2 { right: 0; }
  .chat-float--1 { left: 0; }
}

/* ---------- Logos ---------- */
.logos { padding: 2.2rem 0 1rem; border-top: 1px solid var(--line-soft); }
.logos__label { text-align: center; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 1.2rem; font-weight: 600; }
.logos__row { display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(1.4rem, 5vw, 3.6rem); }
.logos__row span { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.05rem, 2.4vw, 1.5rem); color: var(--ink-faint); opacity: .7; transition: opacity .2s, color .2s; letter-spacing: -.01em; }
.logos__row span:hover { opacity: 1; color: var(--ink); }

/* ---------- Stats ---------- */
.stats { padding: 2.6rem 0; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; background: var(--dark); border-radius: var(--radius-lg); padding: 2.2rem clamp(1rem, 4vw, 3rem); }
.stat { text-align: center; color: #fff; position: relative; }
.stat:not(:last-child)::after { content: ""; position: absolute; right: -.5rem; top: 15%; height: 70%; width: 1px; background: rgba(255,255,255,.12); }
.stat strong { display: block; font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; color: var(--green-bright); line-height: 1; margin-bottom: .35rem; }
.stat span { font-size: .85rem; color: #aebcb4; }
@media (max-width: 680px) { .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 1.8rem 1rem; } .stat:nth-child(2)::after { display: none; } }

/* ---------- Generic section ---------- */
.section { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.section--tint { background: var(--cream); }
.section__head { max-width: 720px; margin: 0 auto clamp(2.2rem, 4vw, 3.4rem); text-align: center; }
.section__head--left { text-align: left; margin-inline: 0; }
.kicker { display: inline-block; font-family: var(--font-mono); font-size: .8rem; letter-spacing: .06em; text-transform: uppercase; color: var(--green-deep); background: var(--mint); padding: .35rem .8rem; border-radius: 100px; margin-bottom: 1rem; font-weight: 500; }
.kicker--light { color: var(--green-bright); background: rgba(25,195,125,.12); }
.section__head h2 { font-size: clamp(1.7rem, 3.6vw, 2.7rem); font-weight: 800; }
.section__sub { margin-top: 1rem; color: var(--ink-soft); font-size: 1.08rem; }

/* ---------- Wat je leert ---------- */
.learn-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; margin-bottom: 3rem; }
.learn-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.9rem 1.6rem; position: relative; overflow: hidden;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.learn-card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 4px; background: linear-gradient(90deg, var(--green-bright), var(--green-deep)); transform: scaleX(0); transform-origin: left; transition: transform .35s; }
.learn-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.learn-card:hover::before { transform: scaleX(1); }
.learn-card__num { font-family: var(--font-mono); font-size: .9rem; color: var(--green); font-weight: 500; }
.learn-card h3 { font-size: 1.25rem; margin: .8rem 0 .6rem; }
.learn-card p { color: var(--ink-soft); font-size: .98rem; }

.skills { display: grid; grid-template-columns: 1.3fr 1fr; gap: 2rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.6rem, 3vw, 2.6rem); }
.skills h4 { font-size: 1.05rem; margin-bottom: 1rem; }
.chips { list-style: none; display: flex; flex-wrap: wrap; gap: .6rem; }
.chips li { background: var(--bg); border: 1px solid var(--line); padding: .5rem .95rem; border-radius: 100px; font-size: .9rem; font-weight: 600; color: var(--ink-soft); transition: .2s; }
.chips li:hover { border-color: var(--green); color: var(--green-deep); transform: translateY(-2px); }
.chips--accent li { background: var(--mint); border-color: transparent; color: var(--green-ink); }
.cert { display: flex; gap: .8rem; align-items: center; margin-top: 1.6rem; padding-top: 1.4rem; border-top: 1px dashed var(--line); color: var(--green-deep); }
.cert div { display: flex; flex-direction: column; }
.cert strong { color: var(--ink); font-family: var(--font-display); }
.cert span { font-size: .85rem; color: var(--ink-soft); }
@media (max-width: 760px) { .learn-grid { grid-template-columns: 1fr; } .skills { grid-template-columns: 1fr; } }

/* ---------- Tabs (voor wie) ---------- */
.tabs__nav { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; margin-bottom: 2rem; }
.tab { font-family: var(--font-body); font-weight: 700; font-size: .95rem; padding: .7rem 1.3rem; border-radius: 100px; border: 1px solid var(--line); background: var(--surface); color: var(--ink-soft); cursor: pointer; transition: .25s; }
.tab:hover { border-color: var(--green); color: var(--green-deep); }
.tab.is-active { background: var(--green); color: #fff; border-color: var(--green); box-shadow: 0 10px 24px -10px rgba(16,163,127,.6); }
.tabs__panels { max-width: 760px; margin-inline: auto; }
.panel { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.8rem, 4vw, 3rem); animation: fadeUp .4s ease; }
.panel[hidden] { display: none; }
.panel h3 { font-size: clamp(1.4rem, 3vw, 1.9rem); margin-bottom: .8rem; }
.panel p { color: var(--ink-soft); font-size: 1.05rem; }
.ticks { list-style: none; margin-top: 1.4rem; display: grid; gap: .7rem; }
.ticks li { position: relative; padding-left: 1.9rem; font-weight: 500; }
.ticks li::before { content: "✓"; position: absolute; left: 0; top: -1px; width: 22px; height: 22px; background: var(--mint); color: var(--green-deep); border-radius: 50%; display: grid; place-items: center; font-size: .8rem; font-weight: 800; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* ---------- Modules ---------- */
.modules { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: .7rem; }
.module { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: border-color .25s, box-shadow .25s; }
.module[open] { border-color: var(--green); box-shadow: var(--shadow); }
.module summary { list-style: none; display: flex; align-items: center; gap: 1rem; padding: 1.2rem 1.4rem; cursor: pointer; font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; }
.module summary::-webkit-details-marker { display: none; }
.module__no { flex: none; width: 34px; height: 34px; border-radius: 10px; background: var(--mint); color: var(--green-deep); display: grid; place-items: center; font-size: .95rem; font-weight: 800; transition: .25s; }
.module[open] .module__no { background: var(--green); color: #fff; }
.module__title { flex: 1; }
.module__chev { flex: none; width: 12px; height: 12px; border-right: 2.4px solid var(--ink-faint); border-bottom: 2.4px solid var(--ink-faint); transform: rotate(45deg); transition: transform .3s; }
.module[open] .module__chev { transform: rotate(-135deg); border-color: var(--green); }
.module__body { padding: 0 1.4rem 1.3rem 4.4rem; color: var(--ink-soft); }
.modules__meta { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.4rem 2rem; margin-top: 2.4rem; }
.modules__meta span { display: inline-flex; align-items: center; gap: .5rem; font-size: .92rem; font-weight: 600; color: var(--ink-soft); }
.modules__meta svg { color: var(--green); }

/* ---------- Docent (dark) ---------- */
.section--dark { background: var(--dark); color: #eaf3ee; position: relative; overflow: hidden; }
.section--dark::before { content: ""; position: absolute; inset: 0; background: radial-gradient(50% 60% at 85% 10%, rgba(25,195,125,.18), transparent 60%); }
.instructor { position: relative; display: grid; grid-template-columns: auto 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.instructor__media { position: relative; }
.avatar { width: clamp(150px, 22vw, 220px); aspect-ratio: 1; border-radius: var(--radius-lg); background: linear-gradient(145deg, var(--green-bright), var(--green-deep)); display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; font-size: clamp(3rem, 7vw, 5rem); color: #fff; box-shadow: var(--shadow-lg); }
.badge-top { position: absolute; bottom: -12px; left: 50%; transform: translateX(-50%); background: #fff; color: var(--green-ink); font-size: .82rem; font-weight: 800; padding: .45rem 1rem; border-radius: 100px; white-space: nowrap; box-shadow: var(--shadow); }
.instructor__copy h2 { font-size: clamp(2rem, 4.5vw, 3rem); color: #fff; }
.instructor__role { color: var(--green-bright); font-weight: 700; margin: .3rem 0 1.2rem; font-family: var(--font-mono); font-size: .95rem; }
.instructor__bio { color: #b9c9c1; font-size: 1.08rem; max-width: 56ch; }
.instructor__stats { display: flex; flex-wrap: wrap; gap: 2rem; margin-top: 2rem; }
.instructor__stats strong { display: block; font-family: var(--font-display); font-size: 1.8rem; font-weight: 800; color: #fff; }
.instructor__stats span { font-size: .85rem; color: #9fb0a8; }
@media (max-width: 760px) { .instructor { grid-template-columns: 1fr; text-align: center; justify-items: center; } .instructor__stats { justify-content: center; } .instructor__bio { margin-inline: auto; } }

/* ---------- Reviews ---------- */
.reviews { display: grid; grid-template-columns: .8fr 1.6fr; gap: 1.6rem; align-items: start; }
.rating { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 2rem; text-align: center; position: sticky; top: 90px; }
.rating__big { font-family: var(--font-display); font-size: 4rem; font-weight: 800; line-height: 1; color: var(--ink); }
.rating__big span { font-size: 1.4rem; color: var(--ink-faint); }
.rating__stars { color: #f5a623; font-size: 1.4rem; letter-spacing: 2px; margin: .4rem 0 1.6rem; }
.rating__bars { display: grid; gap: .5rem; text-align: left; }
.bar { display: grid; grid-template-columns: 28px 1fr 44px; align-items: center; gap: .6rem; font-size: .82rem; color: var(--ink-soft); }
.bar i { display: block; height: 8px; background: var(--line); border-radius: 100px; overflow: hidden; }
.bar b { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--green-bright), var(--green-deep)); border-radius: 100px; transition: width 1s ease; }
.bar.in b { width: var(--w); }
.bar em { text-align: right; font-style: normal; font-variant-numeric: tabular-nums; }

.quotes { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
.quote { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; display: flex; flex-direction: column; gap: .8rem; transition: transform .3s, box-shadow .3s; }
.quote:first-child { grid-column: 1 / -1; }
.quote:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.quote__stars { color: #f5a623; letter-spacing: 1px; }
.quote blockquote { font-size: 1.02rem; color: var(--ink); line-height: 1.55; }
.quote figcaption { display: flex; align-items: center; gap: .6rem; font-size: .85rem; color: var(--ink-faint); margin-top: auto; }
.quote__ava { width: 32px; height: 32px; border-radius: 50%; background: var(--mint); color: var(--green-deep); font-weight: 800; font-size: .78rem; display: grid; place-items: center; }
@media (max-width: 820px) { .reviews { grid-template-columns: 1fr; } .rating { position: static; } .quotes { grid-template-columns: 1fr; } .quote:first-child { grid-column: auto; } }

/* ---------- Offer ---------- */
.offer { position: relative; color: #fff; overflow: hidden; margin: 0 14px; border-radius: var(--radius-lg); }
.offer__bg { position: absolute; inset: 0; background: linear-gradient(135deg, var(--dark), var(--dark-2)); }
.offer__bg::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 80% at 50% 0%, rgba(25,195,125,.28), transparent 60%); }
.offer__bg::after { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px); background-size: 26px 26px; }
.offer__inner { position: relative; text-align: center; max-width: 720px; }
.offer h2 { font-size: clamp(1.9rem, 4.4vw, 3rem); color: #fff; }
.offer__lead { color: #b9c9c1; font-size: 1.1rem; margin: 1rem auto 2rem; max-width: 52ch; }

.price { display: inline-flex; align-items: stretch; gap: 1.6rem; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); padding: 1.4rem 1.8rem; margin-bottom: 2rem; text-align: left; flex-wrap: wrap; justify-content: center; }
.price__main { display: flex; flex-direction: column; justify-content: center; }
.price__free { font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: var(--green-bright); line-height: 1; }
.price__note { font-size: .85rem; color: #9fb0a8; margin-top: .3rem; }
.price__div { width: 1px; background: rgba(255,255,255,.14); }
.price__plus { display: flex; flex-direction: column; justify-content: center; gap: .2rem; }
.price__then { font-size: .82rem; color: #9fb0a8; }
.price__amt { font-size: 1.05rem; color: #eaf3ee; }
.price__amt b { font-family: var(--font-display); font-size: 1.3rem; }
.price__or { color: #9fb0a8; font-size: .9rem; }
.price__deal { font-size: .8rem; color: var(--green-bright); font-weight: 700; margin-top: .2rem; }

.offer__assur { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 1.8rem; margin-top: 1.8rem; font-size: .9rem; color: #b9c9c1; }
@media (max-width: 560px) { .price__div { display: none; } .price { gap: 1rem; } }

/* ---------- FAQ ---------- */
.faq { display: grid; grid-template-columns: 1fr; max-width: 820px; }
.faq__list { display: flex; flex-direction: column; gap: .7rem; }
.qa { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; transition: border-color .2s; }
.qa[open] { border-color: var(--green); }
.qa summary { list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.1rem 1.3rem; cursor: pointer; font-weight: 700; font-family: var(--font-display); font-size: 1.05rem; }
.qa summary::-webkit-details-marker { display: none; }
.qa__chev { flex: none; position: relative; width: 16px; height: 16px; }
.qa__chev::before, .qa__chev::after { content: ""; position: absolute; background: var(--green); border-radius: 2px; transition: transform .3s; }
.qa__chev::before { top: 7px; left: 0; width: 16px; height: 2.4px; }
.qa__chev::after { left: 7px; top: 0; width: 2.4px; height: 16px; }
.qa[open] .qa__chev::after { transform: scaleY(0); }
.qa__body { padding: 0 1.3rem 1.2rem; color: var(--ink-soft); }
.faq__cta { text-align: center; margin-top: 2.6rem; }
.faq__cta p { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; margin-bottom: 1rem; }

/* ---------- Footer ---------- */
.footer { background: var(--dark); color: #aebcb4; padding: clamp(3rem, 5vw, 4.5rem) 0 2rem; }
.footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 2rem; padding-bottom: 2.6rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer__brand p { margin-top: 1rem; max-width: 36ch; font-size: .92rem; }
.footer__col h5 { color: #fff; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 1rem; font-family: var(--font-mono); font-weight: 500; }
.footer__col a { display: block; padding: .35rem 0; font-size: .94rem; transition: color .2s; }
.footer__col a:not(.btn):hover { color: var(--green-bright); }
.footer__cta .btn { margin-top: .2rem; }
.footer__legal { padding-top: 1.8rem; display: flex; flex-direction: column; gap: .8rem; }
.footer__disclosure { font-size: .85rem; color: #cfded6; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); padding: .9rem 1.1rem; border-radius: var(--radius-sm); }
.footer__disclosure strong { color: var(--green-bright); }
.footer__small { font-size: .8rem; color: #7d8d85; line-height: 1.6; }
.footer__copy { font-size: .82rem; color: #7d8d85; }
@media (max-width: 760px) { .footer__inner { grid-template-columns: 1fr 1fr; } .footer__brand { grid-column: 1 / -1; } }

/* ---------- Sticky mobiele CTA ---------- */
.sticky-cta {
  position: fixed; left: 14px; right: 14px; bottom: 14px; z-index: 60;
  display: none; align-items: center; justify-content: center; gap: .3rem;
  background: linear-gradient(135deg, var(--orange-bright), var(--orange-deep)); color: #fff;
  font-weight: 800; padding: 1rem; border-radius: 100px; box-shadow: 0 16px 36px -10px rgba(234,88,12,.7);
  transform: translateY(150%); transition: transform .4s cubic-bezier(.34,1.56,.64,1);
}
.sticky-cta span { font-weight: 600; opacity: .85; font-size: .9rem; }
.sticky-cta.show { transform: translateY(0); }
@media (max-width: 880px) { .sticky-cta { display: flex; } }

/* ---------- Lead capture: gratis gids ---------- */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.hp { position: absolute !important; left: -9999px !important; top: auto; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.hl-o { color: var(--orange-deep); }

.leadband { position: relative; overflow: hidden; padding: clamp(3.5rem, 7vw, 6rem) 0; background: linear-gradient(135deg, #fb8a3c 0%, #ea580c 100%); color: #fff; }
.leadband__bg { position: absolute; inset: 0; pointer-events: none; }
.leadband__bg::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.13) 1px, transparent 1px); background-size: 22px 22px; -webkit-mask-image: linear-gradient(180deg,#000,transparent 85%); mask-image: linear-gradient(180deg,#000,transparent 85%); }
.leadband__bg::after { content: ""; position: absolute; width: 480px; height: 480px; right: -130px; top: -170px; background: radial-gradient(circle, rgba(255,255,255,.22), transparent 70%); }
.leadband__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: center; }
.leadband__badge { display: inline-block; background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.35); color: #fff; font-weight: 700; font-size: .82rem; padding: .4rem .9rem; border-radius: 100px; margin-bottom: 1rem; }
.leadband h2 { font-size: clamp(1.9rem, 4.2vw, 2.9rem); color: #fff; font-weight: 800; }
.leadband .hl-o { color: var(--green-ink); }
.leadband__copy > p { color: rgba(255,255,255,.92); font-size: 1.08rem; margin: 1rem 0 1.4rem; max-width: 44ch; }
.leadband__copy strong { color: #fff; }
.leadband__list { list-style: none; display: grid; gap: .6rem; }
.leadband__list li { position: relative; padding-left: 1.9rem; font-weight: 600; }
.leadband__list li::before { content: "✓"; position: absolute; left: 0; top: -1px; width: 22px; height: 22px; background: #fff; color: var(--orange-deep); border-radius: 50%; display: grid; place-items: center; font-size: .78rem; font-weight: 800; }

.leadband__card { background: #fff; color: var(--ink); border-radius: var(--radius-lg); padding: clamp(1.5rem, 3vw, 2.2rem); box-shadow: 0 30px 60px -25px rgba(0,0,0,.5); }
.guide-mock { display: flex; flex-direction: column; gap: .25rem; background: linear-gradient(135deg, var(--dark), var(--dark-2)); color: #fff; border-radius: var(--radius); padding: 1.3rem 1.4rem; margin-bottom: 1.4rem; border-left: 5px solid var(--orange); position: relative; overflow: hidden; }
.guide-mock::after { content: ""; position: absolute; right: -30px; top: -30px; width: 120px; height: 120px; background: radial-gradient(circle, rgba(25,195,125,.3), transparent 70%); }
.guide-mock__tag { font-family: var(--font-mono); font-size: .7rem; letter-spacing: .1em; color: var(--orange-bright); font-weight: 500; }
.guide-mock__title { font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; }
.guide-mock__sub { font-size: .85rem; color: #aebcb4; }

.leadform { display: flex; flex-direction: column; gap: .7rem; }
.leadform input[type=email], .leadform input[type=text]:not(.hp) { width: 100%; padding: .9rem 1.1rem; border: 2px solid var(--line); border-radius: 12px; font-size: 1rem; font-family: var(--font-body); outline: none; transition: border-color .2s; }
.leadform input[type=email]:focus, .leadform input[type=text]:not(.hp):focus { border-color: var(--orange); }
.leadform .btn { width: 100%; }
.leadform__msg { font-size: .9rem; font-weight: 600; min-height: 1.1em; margin: 0; }
.leadform__msg.ok { color: var(--green-deep); }
.leadform__msg.err { color: #c0392b; }
.leadform__fine { font-size: .78rem; color: var(--ink-faint); text-align: center; margin: 0; }
.leadform.done input, .leadform.done .btn, .leadform.done .leadform__fine { display: none; }
.leadform.done .leadform__msg { font-size: 1rem; }
@media (max-width: 820px) { .leadband__inner { grid-template-columns: 1fr; } .leadband__card { max-width: 540px; margin-inline: auto; } }

/* ---------- Gratis-gids editie: hero capture + cover ---------- */
.leadform--hero { max-width: 480px; margin-bottom: 2.2rem; }
.leadform__row { display: flex; gap: .6rem; }
.leadform__row input { flex: 1; min-width: 0; }
@media (max-width: 560px) { .leadform__row { flex-direction: column; } }
.leadform.done .leadform__row { display: none; }

.leadband__cta { display: flex; flex-direction: column; gap: .8rem; }
.leadband__cta .btn { width: 100%; }

.hero__guide { position: relative; display: flex; justify-content: center; }
.guide-cover {
  position: relative; width: min(360px, 100%); aspect-ratio: 210/280;
  background: linear-gradient(150deg, var(--dark) 0%, var(--dark-2) 70%);
  border-radius: 18px; color: #fff; padding: 2rem 1.9rem;
  display: flex; flex-direction: column; gap: .55rem;
  box-shadow: 0 50px 90px -35px rgba(10,20,16,.65), 0 0 0 1px rgba(255,255,255,.06) inset;
  transform: perspective(1400px) rotateY(-7deg) rotateX(2deg); transition: transform .5s ease;
  overflow: hidden;
}
.hero__guide:hover .guide-cover { transform: perspective(1400px) rotateY(0) rotateX(0); }
.guide-cover::before { content: ""; position: absolute; width: 70%; aspect-ratio: 1; right: -25%; top: -25%; background: radial-gradient(circle, rgba(25,195,125,.3), transparent 65%); }
.guide-cover::after { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px); background-size: 20px 20px; }
.guide-cover > * { position: relative; z-index: 1; }
.guide-cover__logo { display: flex; align-items: center; gap: .5rem; font-family: var(--font-display); font-weight: 800; font-size: 1rem; margin-bottom: auto; }
.guide-cover__logo b { color: var(--green-bright); }
.guide-cover__tag { align-self: flex-start; background: rgba(249,115,22,.16); border: 1px solid rgba(249,115,22,.5); color: #fdba74; font-weight: 700; font-size: .78rem; padding: .3rem .8rem; border-radius: 100px; }
.guide-cover__title { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.6rem, 3.2vw, 2.1rem); line-height: 1.12; }
.guide-cover__title em { font-style: normal; color: var(--green-bright); }
.guide-cover__sub { color: #b9c9c1; font-size: .9rem; }
.guide-cover__list { list-style: none; display: grid; gap: .3rem; margin-top: .6rem; font-size: .85rem; color: #cfeede; }
.guide-cover__foot { margin-top: auto; border-top: 1px solid rgba(255,255,255,.14); padding-top: .8rem; font-size: .75rem; color: #9fb0a8; font-family: var(--font-mono); }
@media (max-width: 900px) { .guide-cover { transform: none; } }

/* ---------- Lead pop-up ---------- */
.lead-modal { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center; padding: 20px; }
.lead-modal[hidden] { display: none; }
.lead-modal__overlay { position: absolute; inset: 0; background: rgba(10,20,16,.6); backdrop-filter: blur(4px); animation: fadeIn .3s ease; }
.lead-modal__card { position: relative; z-index: 1; background: #fff; border-radius: var(--radius-lg); padding: clamp(1.8rem, 4vw, 2.6rem); max-width: 460px; width: 100%; box-shadow: 0 40px 90px -30px rgba(0,0,0,.6); animation: popIn .4s cubic-bezier(.34,1.56,.64,1); text-align: center; }
.lead-modal__card .leadband__badge { background: var(--mint); border-color: transparent; color: var(--green-deep); }
.lead-modal__card h3 { font-size: clamp(1.4rem, 3vw, 1.8rem); font-weight: 800; margin-bottom: .6rem; }
.lead-modal__card > p { color: var(--ink-soft); margin-bottom: 1.3rem; }
.lead-modal__card .leadform { text-align: left; }
.lead-modal__close { position: absolute; top: .6rem; right: 1rem; background: none; border: 0; font-size: 1.9rem; line-height: 1; color: var(--ink-faint); cursor: pointer; }
.lead-modal__close:hover { color: var(--ink); }
.lead-modal__dismiss { display: block; margin: 1rem auto 0; background: none; border: 0; color: var(--ink-faint); font-size: .85rem; text-decoration: underline; cursor: pointer; font-family: var(--font-body); }
.lead-modal__ticks { text-align: left; margin: 0 auto 1.3rem; max-width: 360px; gap: .55rem; font-size: .92rem; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes popIn { from { opacity: 0; transform: translateY(20px) scale(.96); } to { opacity: 1; transform: none; } }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s cubic-bezier(.16,1,.3,1); }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   Variant B — donker thema, voorsprong/FOMO-invalshoek
   ============================================================ */
body.vb { background: var(--dark); color: #eaf3ee; }
body.vb .topbar--vb { background: linear-gradient(90deg, var(--orange-deep), var(--orange)); color: #fff; }
body.vb .topbar--vb strong { color: #fff; }
body.vb .topbar--vb .topbar__pulse { background: #fff; box-shadow: 0 0 0 0 rgba(255,255,255,.5); }

body.vb .header { background: rgba(10,20,16,.82); }
body.vb .header.scrolled { border-bottom-color: rgba(255,255,255,.08); box-shadow: 0 4px 20px rgba(0,0,0,.4); }
body.vb .logo__text { color: #fff; }
body.vb .nav { color: #aebcb4; }
body.vb .nav a:hover { color: #fff; }
body.vb .nav-toggle span { background: #fff; }
body.vb .mobile-menu { background: var(--dark-2); border-bottom-color: rgba(255,255,255,.08); }
body.vb .mobile-menu a:not(.btn) { border-bottom-color: rgba(255,255,255,.06); }

/* Hero */
.vbhero { position: relative; padding: clamp(4rem, 9vw, 7rem) 0 clamp(3.5rem, 7vw, 5.5rem); overflow: hidden; text-align: center; }
.vbhero__bg { position: absolute; inset: 0; }
.vbhero__bg::before { content: ""; position: absolute; inset: 0; background: radial-gradient(55% 60% at 50% 0%, rgba(25,195,125,.22), transparent 65%), radial-gradient(40% 45% at 85% 80%, rgba(249,115,22,.1), transparent 60%); }
.vbhero__bg::after { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.07) 1px, transparent 1px); background-size: 24px 24px; -webkit-mask-image: linear-gradient(180deg, #000, transparent 85%); mask-image: linear-gradient(180deg, #000, transparent 85%); }
.vbhero__inner { position: relative; z-index: 1; max-width: 880px; }
.vbhero__eyebrow { display: inline-block; font-family: var(--font-mono); font-size: .85rem; color: var(--green-bright); background: rgba(25,195,125,.1); border: 1px solid rgba(25,195,125,.3); padding: .45rem 1rem; border-radius: 100px; margin-bottom: 1.6rem; }
.vbhero h1 { font-size: clamp(2.1rem, 5.4vw, 3.9rem); font-weight: 800; color: #fff; line-height: 1.12; }
.vbhero__muted { color: #7d8d85; }
.vbhero__accent { color: var(--orange-bright); }
.vbhero__lead { color: #b9c9c1; font-size: clamp(1.02rem, 1.7vw, 1.18rem); max-width: 56ch; margin: 1.4rem auto 2.2rem; }
.vbhero__cta { display: flex; flex-direction: column; align-items: center; gap: .8rem; }
.vbhero__fine { font-size: .85rem; color: #7d8d85; font-family: var(--font-mono); }
.vbhero__proof { margin-top: 2.6rem; font-family: var(--font-mono); font-size: .9rem; color: #9fb0a8; }
.vbhero__proof i { color: var(--green); font-style: normal; margin: 0 .5rem; }

/* Secties / kaarten */
body.vb .section__head h2 { color: #fff; }
body.vb .section__sub { color: #9fb0a8; }
body.vb .kicker { background: rgba(25,195,125,.12); color: var(--green-bright); }
body.vb .kicker--orange { background: rgba(249,115,22,.14); color: var(--orange-bright); }

.vbcards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.1rem; max-width: 880px; margin-inline: auto; }
.vbcard { background: var(--dark-2); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius); padding: 1.7rem 1.6rem; transition: transform .3s, border-color .3s; }
.vbcard:hover { transform: translateY(-4px); border-color: rgba(25,195,125,.4); }
.vbcard__icon { font-size: 1.5rem; display: block; margin-bottom: .8rem; }
.vbcard h3 { color: #fff; font-size: 1.15rem; margin-bottom: .5rem; }
.vbcard p { color: #9fb0a8; font-size: .95rem; }
@media (max-width: 680px) { .vbcards { grid-template-columns: 1fr; } }

.vbsteps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; max-width: 880px; margin-inline: auto; }
.vbstep { text-align: center; padding: 1.6rem 1.2rem; border: 1px dashed rgba(255,255,255,.14); border-radius: var(--radius); }
.vbstep__n { display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--orange-bright), var(--orange-deep)); color: #fff; font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; margin-bottom: .9rem; }
.vbstep h3 { color: #fff; font-size: 1.08rem; margin-bottom: .4rem; }
.vbstep p { color: #9fb0a8; font-size: .92rem; }
@media (max-width: 680px) { .vbsteps { grid-template-columns: 1fr; } }

/* Fouten-band */
.vbband { margin: clamp(1rem, 3vw, 2rem) 14px; border-radius: var(--radius-lg); background: linear-gradient(135deg, #161f1a, #0f1a14); border: 1px solid rgba(249,115,22,.25); padding: clamp(2.2rem, 5vw, 3.6rem) 0; }
.vbband__inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: 2rem; align-items: center; }
.vbband__copy h2 { color: #fff; font-size: clamp(1.5rem, 3.2vw, 2.2rem); margin-bottom: .8rem; }
.vbband__copy p { color: #9fb0a8; max-width: 52ch; }
.vbband__action { display: flex; flex-direction: column; align-items: center; gap: .7rem; }
@media (max-width: 760px) { .vbband__inner { grid-template-columns: 1fr; text-align: center; } .vbband__copy p { margin-inline: auto; } }

/* FAQ donker */
body.vb .qa { background: var(--dark-2); border-color: rgba(255,255,255,.1); }
body.vb .qa[open] { border-color: var(--green); }
body.vb .qa summary { color: #fff; }
body.vb .qa__body { color: #9fb0a8; }
body.vb .faq__cta p { color: #fff; }

/* ============================================================
   Variant C — clean zakelijk, redactioneel (Fraunces + IBM Plex)
   ============================================================ */
body.vc {
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'IBM Plex Sans', system-ui, sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;
  --vc-ink: #16181d; --vc-soft: #5a5e66; --vc-line: #e6e5e0;
  background: #fcfcfa; color: var(--vc-ink);
}
body.vc h1, body.vc h2, body.vc h3 { font-weight: 500; letter-spacing: -.01em; }
body.vc .btn { font-weight: 600; }

.vc-topbar { background: var(--vc-ink); color: #d6d6d0; text-align: center; padding: .55rem 1rem; }
.vc-topbar p { font-family: var(--font-mono); font-size: .78rem; letter-spacing: .04em; }

body.vc .header { background: rgba(252,252,250,.85); }
body.vc .header.scrolled { border-bottom-color: var(--vc-line); box-shadow: none; }
body.vc .logo__text { color: var(--vc-ink); }
body.vc .nav { color: var(--vc-soft); font-weight: 500; }
body.vc .mobile-menu { background: #fff; border-bottom-color: var(--vc-line); }

.vc-hero { padding: clamp(4rem, 9vw, 7.5rem) 0 clamp(3rem, 6vw, 5rem); border-bottom: 1px solid var(--vc-line); }
.vc-label { font-family: var(--font-mono); font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--green-deep); margin-bottom: 1.6rem; }
.vc-hero h1 { font-size: clamp(2.4rem, 5.6vw, 4.4rem); line-height: 1.08; max-width: 18ch; }
.vc-lead { color: var(--vc-soft); font-size: clamp(1.02rem, 1.6vw, 1.18rem); max-width: 58ch; margin: 1.6rem 0 2.2rem; line-height: 1.7; }
.vc-cta { display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; }
.vc-cta__note { font-size: .85rem; color: var(--vc-soft); }
.vc-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: clamp(2.5rem, 5vw, 4rem); border-top: 1px solid var(--vc-line); }
.vc-stats > div { padding: 1.4rem 1.4rem 0 0; border-right: 1px solid var(--vc-line); }
.vc-stats > div:last-child { border-right: 0; }
.vc-stats > div:not(:first-child) { padding-left: 1.4rem; }
.vc-stats dt { font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 500; }
.vc-stats dd { font-size: .85rem; color: var(--vc-soft); margin-top: .2rem; }
@media (max-width: 680px) { .vc-stats { grid-template-columns: 1fr 1fr; } .vc-stats > div { border-right: 0; padding-left: 0 !important; border-bottom: 1px solid var(--vc-line); padding-bottom: 1rem; } }

.vc-sec { padding: clamp(3rem, 6vw, 5rem) 0; border-bottom: 1px solid var(--vc-line); }
.vc-h2 { font-size: clamp(1.6rem, 3.2vw, 2.3rem); margin-bottom: clamp(1.8rem, 4vw, 2.8rem); }
.vc-rows { display: flex; flex-direction: column; }
.vc-row { display: grid; grid-template-columns: 80px 1fr; gap: 1.4rem; padding: 1.8rem 0; border-top: 1px solid var(--vc-line); }
.vc-row__num { font-family: var(--font-mono); font-size: .9rem; color: var(--green-deep); padding-top: .35rem; }
.vc-row h3 { font-size: 1.3rem; margin-bottom: .5rem; }
.vc-row p { color: var(--vc-soft); max-width: 62ch; line-height: 1.7; }
@media (max-width: 560px) { .vc-row { grid-template-columns: 1fr; gap: .4rem; } }

.vc-quote { padding: clamp(3.5rem, 7vw, 6rem) 0; background: var(--vc-ink); color: #f4f3ee; }
.vc-quote blockquote { font-family: var(--font-display); font-size: clamp(1.5rem, 3.6vw, 2.6rem); font-weight: 400; line-height: 1.3; font-style: italic; }
.vc-quote cite { display: block; margin-top: 1.4rem; font-style: normal; font-family: var(--font-mono); font-size: .82rem; color: #9b9b93; }

.vc-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.vc-col h3 { font-size: 1.15rem; margin-bottom: .5rem; }
.vc-col p { color: var(--vc-soft); font-size: .95rem; line-height: 1.65; }
@media (max-width: 680px) { .vc-cols { grid-template-columns: 1fr; } }

body.vc .qa { background: transparent; border: 0; border-radius: 0; border-top: 1px solid var(--vc-line); }
body.vc .qa[open] { border-color: var(--vc-line); }
body.vc .qa summary { padding-inline: 0; font-weight: 500; font-size: 1.1rem; }
body.vc .qa__body { padding-inline: 0; color: var(--vc-soft); max-width: 62ch; }
body.vc .faq__list { gap: 0; }

.vc-final { padding: clamp(4rem, 8vw, 6.5rem) 0; text-align: center; }
.vc-final h2 { font-size: clamp(2rem, 4.6vw, 3.4rem); }
.vc-final p { color: var(--vc-soft); margin: .8rem 0 1.8rem; }

/* ============================================================
   Variant D — chatgesprek (Nunito), speels & nieuwsgierig
   ============================================================ */
body.vd {
  --font-display: 'Nunito', system-ui, sans-serif;
  --font-body: 'Nunito', system-ui, sans-serif;
  background: #e7efe8; color: var(--ink);
}
body.vd .header { background: rgba(231,239,232,.85); }
body.vd .header__inner { height: 62px; }

.vd-stage { padding: clamp(1.5rem, 4vw, 3.5rem) 0; }
.vd-stage__inner { display: flex; justify-content: center; }
.vd-app { width: min(560px, 100%); background: #f7faf7; border-radius: 22px; overflow: hidden; box-shadow: 0 30px 70px -30px rgba(12,26,20,.35), 0 0 0 1px rgba(12,26,20,.06); }
.vd-appbar { display: flex; align-items: center; gap: .8rem; padding: .9rem 1.2rem; background: var(--green-deep); color: #fff; }
.vd-ava { width: 40px; height: 40px; border-radius: 50%; background: var(--dark); color: var(--green-bright); display: grid; place-items: center; font-weight: 900; font-size: .75rem; font-family: var(--font-mono); }
.vd-appbar__txt { display: flex; flex-direction: column; line-height: 1.25; }
.vd-appbar__txt b { font-size: 1.05rem; font-weight: 800; }
.vd-appbar__txt span { font-size: .78rem; opacity: .85; display: inline-flex; align-items: center; gap: .35rem; }
.vd-dot { width: 8px; height: 8px; border-radius: 50%; background: #6cf2b2; display: inline-block; animation: pulse 2s infinite; }

.vd-thread { padding: 1.3rem 1.2rem 1.6rem; display: flex; flex-direction: column; gap: .55rem; }
.vd-day { align-self: center; font-size: .72rem; font-weight: 700; color: var(--ink-faint); background: rgba(12,26,20,.06); padding: .25rem .8rem; border-radius: 100px; margin-bottom: .5rem; }

.vd-msg { max-width: 85%; padding: .7rem 1rem; font-size: .98rem; line-height: 1.5; border-radius: 18px; box-shadow: 0 1px 2px rgba(12,26,20,.08); }
.vd-msg b { font-weight: 800; }
.vd-msg--bot { align-self: flex-start; background: #fff; border-bottom-left-radius: 6px; }
.vd-msg--user { align-self: flex-end; background: var(--green); color: #fff; border-bottom-right-radius: 6px; }
.vd-msg--big { font-size: 1.2rem; font-weight: 700; }

.vd-cta { align-self: center; display: flex; flex-direction: column; align-items: center; gap: .5rem; margin: .9rem 0 .4rem; width: 100%; }
.vd-cta .btn { width: 100%; max-width: 360px; }
.vd-cta span { font-size: .8rem; color: var(--ink-faint); }

.vd-typingmsg { padding: .85rem 1.1rem; }
.vd-typing { display: inline-flex; gap: 4px; }
.vd-typing i { width: 7px; height: 7px; border-radius: 50%; background: var(--green); animation: blink 1.2s infinite; }
.vd-typing i:nth-child(2) { animation-delay: .2s; }
.vd-typing i:nth-child(3) { animation-delay: .4s; }

.vd-sec { padding: clamp(2rem, 5vw, 3.5rem) 0; }
.vd-h2 { text-align: center; font-size: clamp(1.4rem, 3.2vw, 2rem); font-weight: 900; margin-bottom: 1.6rem; }
.vd-loose { max-width: 560px; margin-inline: auto; display: flex; flex-direction: column; gap: .55rem; }

.vd-final { padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(3.5rem, 7vw, 5.5rem); text-align: center; }
.vd-final .vd-msg { display: inline-block; margin-bottom: 1.4rem; max-width: 480px; }
.vd-final .btn { min-width: min(360px, 90%); }
.vd-fine { margin-top: .8rem; font-size: .82rem; color: var(--ink-faint); }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal, .reveal-msg { opacity: 1 !important; transform: none !important; }
  .chatwin { transform: none !important; }
}
