/* =====================================================================
   VindUwAI — Landingspagina
   "De Stille Showroom": kalme, donkere bosgroene premium showroom.
   Alle animaties via transform/opacity. Volledige reduced-motion fallback.
   ===================================================================== */

/* ---------- 1. TOKENS ---------- */
:root {
  /* Achtergronden */
  --bg: #0d1f1a;
  --bg-elev-1: #112823;
  --bg-elev-2: #16332c;
  --bg-footer: #0a1814;

  /* Merk / actie */
  --brand: #008c67;
  --brand-strong: #00a87a;

  /* Mint highlight */
  --mint: #98e8cf;
  --mint-12: rgba(152, 232, 207, .12);
  --mint-24: rgba(152, 232, 207, .24);

  /* Tekst */
  --text: #f4faf7;
  --text-secondary: rgba(244, 250, 247, .74);
  --text-tertiary: rgba(244, 250, 247, .52);
  --hairline: rgba(244, 250, 247, .08);
  --focus: #98e8cf;

  /* Aurora */
  --aurora-a: rgba(0, 140, 103, .22);
  --aurora-b: rgba(152, 232, 207, .14);

  /* Type */
  --font-sans: 'Inter', system-ui, 'Segoe UI', sans-serif;
  --font-display: 'Space Grotesk', 'Inter', system-ui, 'Segoe UI', sans-serif;
  --fs-hero: clamp(2.6rem, 7vw, 6rem);
  --fs-h2: clamp(2rem, 4.5vw, 3.4rem);
  --fs-h3: clamp(1.25rem, 2vw, 1.6rem);
  --fs-statement: clamp(2.2rem, 5vw, 4rem);
  --fs-body: clamp(1.0625rem, 1.2vw, 1.1875rem);
  --fs-eyebrow: .8rem;
  --fs-stepnum: clamp(2.5rem, 5vw, 4.5rem);
  --fs-small: .875rem;

  /* Spacing (8px-ritme) */
  --s-1: 4px;  --s-2: 8px;  --s-3: 12px; --s-4: 16px;
  --s-6: 24px; --s-8: 32px; --s-12: 48px; --s-16: 64px;
  --s-24: 96px; --s-32: 128px; --s-40: 160px;
  --section-pad: clamp(96px, 12vh, 160px);
  --container: 1200px;
  --container-narrow: 760px;
  --gutter: clamp(20px, 5vw, 48px);

  /* Radii */
  --r-sm: 10px; --r-md: 16px; --r-lg: 24px; --r-full: 999px;

  /* Schaduw (zacht, groen-getint) */
  --shadow-card: 0 1px 0 rgba(255,255,255,.03) inset, 0 12px 40px rgba(0,0,0,.35);
  --shadow-card-hover: 0 1px 0 rgba(152,232,207,.06) inset, 0 20px 60px rgba(0,0,0,.45);
  --glow-btn: 0 8px 30px rgba(0, 140, 103, .35);

  /* Easings */
  --ease-out-expo: cubic-bezier(.16, 1, .3, 1);
  --ease-showroom: cubic-bezier(.22, 1, .36, 1);
  --ease-soft: cubic-bezier(.4, 0, .2, 1);
}

/* ---------- 2. RESET / BASIS ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Lenis hint */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

h1, h2, h3, p, ul, ol, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
strong { font-weight: 600; color: var(--text); }

:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
  border-radius: 4px;
}

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

.section { padding-block: var(--section-pad); position: relative; }

.skip-link {
  position: absolute;
  left: -999px; top: 0; z-index: 200;
  background: var(--brand);
  color: #08130f;
  padding: 12px 18px;
  border-radius: var(--r-sm);
  font-weight: 600;
}
.skip-link:focus { left: 16px; top: 16px; }

/* ---------- 3. TYPOGRAFIE-HELPERS ---------- */
.eyebrow {
  font-size: var(--fs-eyebrow);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 500;
  color: var(--mint);
  margin-bottom: var(--s-6);
}

.body {
  font-size: var(--fs-body);
  color: var(--text-secondary);
  max-width: 62ch;
}

.section__head { max-width: var(--container-narrow); margin-bottom: var(--s-24); }
.section__head--center { margin-inline: auto; text-align: center; }
.section__head--center .body { margin-inline: auto; }

.section__title {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  line-height: 1.1;
  letter-spacing: -.02em;
  font-weight: 600;
  color: var(--text);
}
.section__lead { margin-top: var(--s-6); }

.dot { color: var(--text-tertiary); margin-inline: var(--s-2); }

/* ---------- 4. AURORA (rode draad) ---------- */
.aurora {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.aurora__layer {
  position: absolute;
  border-radius: 50%;
  filter: blur(28px);
  /* will-change bewust NIET: translateZ(0) volstaat als laag-promotie-hint
     en houdt geen zware compositor-/geheugenlagen permanent vast */
  transform: translateZ(0);
}
.aurora__layer--1 {
  top: -10%; left: -5%;
  width: 70vw; height: 70vw;
  background: radial-gradient(circle at center, var(--aurora-a), transparent 65%);
  animation: aurora-breathe-1 26s var(--ease-soft) infinite;
}
.aurora__layer--2 {
  top: 30%; right: -15%;
  width: 60vw; height: 60vw;
  background: radial-gradient(circle at center, var(--aurora-b), transparent 60%);
  animation: aurora-breathe-2 32s var(--ease-soft) infinite;
}
.aurora__layer--3 {
  bottom: -20%; left: 20%;
  width: 55vw; height: 55vw;
  background: radial-gradient(circle at center, var(--aurora-a), transparent 62%);
  animation: aurora-breathe-3 30s var(--ease-soft) infinite;
}
/* Intensiveert licht wanneer een belofte-sectie centreert */
.aurora.is-warm .aurora__layer { opacity: .85; }

@keyframes aurora-breathe-1 {
  0%, 100% { transform: translate3d(0,0,0) scale(1); opacity: .5; }
  50%      { transform: translate3d(2%, 3%, 0) scale(1.06); opacity: .68; }
}
@keyframes aurora-breathe-2 {
  0%, 100% { transform: translate3d(0,0,0) scale(1.03); opacity: .45; }
  50%      { transform: translate3d(-3%, -2%, 0) scale(1); opacity: .62; }
}
@keyframes aurora-breathe-3 {
  0%, 100% { transform: translate3d(0,0,0) scale(1); opacity: .4; }
  50%      { transform: translate3d(1%, -3%, 0) scale(1.05); opacity: .58; }
}

/* ---------- 5. ICONEN ---------- */
.ico {
  width: 28px; height: 28px;
  fill: none;
  stroke: var(--mint);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.nav__phone .ico { width: 18px; height: 18px; }

/* stroke-draw bij in-view */
.ico--draw path, .ico--draw rect, .ico--draw circle, .ico--draw line {
  stroke-dasharray: var(--len, 200);
  stroke-dashoffset: var(--len, 200);
}
.ico--draw.is-drawn path,
.ico--draw.is-drawn rect,
.ico--draw.is-drawn circle,
.ico--draw.is-drawn line {
  stroke-dashoffset: 0;
  transition: stroke-dashoffset .6s var(--ease-out-expo);
}

/* ---------- 6. WORDMARK ---------- */
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -.02em;
  font-size: 1.25rem;
  color: var(--text);
}
.wordmark__mark { flex: none; width: 1.45em; height: 1.45em; display: block; margin-right: .5em; }
.wordmark__accent { color: var(--mint); }

/* ---------- 7. KNOPPEN ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  min-height: 48px;
  padding: 14px 26px;
  border-radius: var(--r-sm);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .2s var(--ease-soft),
              background-color .2s var(--ease-soft),
              border-color .2s var(--ease-soft),
              box-shadow .2s var(--ease-soft);
  will-change: transform;
}
.btn--primary {
  background: var(--brand);
  color: #08130f;
}
.btn--primary:hover {
  background: var(--brand-strong);
  box-shadow: var(--glow-btn);
  transform: translateY(-2px);
}
.btn--primary:active { transform: translateY(0) scale(.98); }

.btn--ghost {
  background: transparent;
  border-color: var(--mint-24);
  color: var(--text);
}
.btn--ghost:hover {
  border-color: var(--mint);
  background: var(--mint-12);
}

/* Button-in-button trailing icon */
.btn__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px; height: 26px;
  border-radius: var(--r-full);
  background: rgba(8, 19, 15, .18);
  transition: transform .25s var(--ease-out-expo);
}
.btn__icon svg {
  width: 16px; height: 16px;
  fill: none; stroke: currentColor; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
}
.btn--primary:hover .btn__icon { transform: translateX(3px); }

/* Ademende glow op slot-CTA */
.btn--breathing { position: relative; }
.btn--breathing::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  box-shadow: var(--glow-btn);
  opacity: .5;
  animation: btn-breathe 3s var(--ease-soft) infinite;
  pointer-events: none;
  z-index: -1;
}
@keyframes btn-breathe {
  0%, 100% { opacity: .35; transform: scale(1); }
  50%      { opacity: .75; transform: scale(1.03); }
}

/* ---------- 8. NAVBAR ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background-color .4s var(--ease-soft),
              backdrop-filter .4s var(--ease-soft),
              box-shadow .4s var(--ease-soft);
}
.nav__inner {
  display: flex;
  align-items: center;
  gap: var(--s-8);
  height: 76px;
  transition: height .3s var(--ease-soft);
}
.nav.is-scrolled {
  background: rgba(13, 31, 26, .7);
  box-shadow: 0 1px 0 var(--hairline);
}
@supports (backdrop-filter: blur(14px)) {
  .nav.is-scrolled { backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); }
}
.nav.is-scrolled .nav__inner { height: 72px; }

.nav__links {
  display: flex;
  gap: var(--s-8);
  margin-left: auto;
  font-size: .95rem;
  color: var(--text-secondary);
}
.nav__links a { transition: color .2s var(--ease-soft); }
.nav__links a:hover { color: var(--text); }

.nav__actions {
  display: flex;
  align-items: center;
  gap: var(--s-6);
}
.nav__phone {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  color: var(--text-secondary);
  font-size: .95rem;
  transition: color .2s var(--ease-soft);
}
.nav__phone:hover { color: var(--text); }
.nav__cta { padding: 10px 20px; min-height: 44px; }

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: none; border: none;
  cursor: pointer;
  margin-left: auto;
}
.nav__toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .35s var(--ease-out-expo), opacity .25s var(--ease-soft);
}
.nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobiel menu-overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity .4s var(--ease-soft), transform .4s var(--ease-out-expo), visibility .4s;
}
@supports (backdrop-filter: blur(20px)) {
  .mobile-menu { background: rgba(13, 31, 26, .92); backdrop-filter: blur(20px); }
}
.mobile-menu.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-menu__links {
  display: flex;
  flex-direction: column;
  gap: var(--s-6);
  text-align: center;
  font-size: 1.5rem;
}
.mobile-menu__phone { color: var(--mint); font-size: 1.25rem; }
.mobile-menu__cta { justify-content: center; margin-top: var(--s-4); }

/* ---------- 9. HERO ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  padding-bottom: var(--s-24);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.2fr .9fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
  width: 100%;
}
.hero__title {
  font-family: var(--font-display);
  font-size: var(--fs-hero);
  line-height: 1.05;
  letter-spacing: -.03em;
  font-weight: 700;
  font-feature-settings: 'ss01';
  margin-bottom: var(--s-8);
}
.hero__title .line { display: block; overflow: hidden; }
.hero__title .word { display: inline-block; }
.hero__title .accent { color: var(--mint); }

.hero__subline { margin-bottom: var(--s-12); }

.hero__cta { display: flex; flex-wrap: wrap; gap: var(--s-4); }

/* Glassmorphic trust-card */
.trust-card { position: relative; }
.trust-card__shell {
  border-radius: var(--r-lg);
  padding: 6px;
  background: var(--mint-12);
  border: 1px solid var(--hairline);
  box-shadow: var(--shadow-card);
}
.trust-card__core {
  border-radius: calc(var(--r-lg) - 6px);
  padding: var(--s-8);
  background: var(--bg-elev-1);
  border: 1px solid var(--mint-12);
}
@supports (backdrop-filter: blur(16px)) {
  .trust-card__core {
    background: rgba(17, 40, 35, .55);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }
}
.trust-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--s-6);
}
.trust-card__label { font-size: var(--fs-small); color: var(--text-tertiary); }

.status {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-size: var(--fs-small);
  color: var(--mint);
  font-weight: 500;
}
.status__dot {
  width: 8px; height: 8px;
  border-radius: var(--r-full);
  background: var(--mint);
  box-shadow: 0 0 0 0 var(--mint-24);
  animation: pulse 2.4s var(--ease-soft) infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(152,232,207,.4); }
  70%  { box-shadow: 0 0 0 8px rgba(152,232,207,0); }
  100% { box-shadow: 0 0 0 0 rgba(152,232,207,0); }
}

.trust-card__log { display: flex; flex-direction: column; gap: var(--s-4); }
.logitem {
  display: flex;
  align-items: flex-start;
  gap: var(--s-4);
  padding: var(--s-4);
  border-radius: var(--r-sm);
  background: rgba(244,250,247,.03);
  border: 1px solid var(--hairline);
}
.logitem__icon {
  flex-shrink: 0;
  display: inline-flex;
}
.logitem__icon .ico { width: 20px; height: 20px; }
.logitem span span,
.logitem > span:last-child { display: flex; flex-direction: column; }
.logitem strong { font-size: .95rem; }
.logitem em { font-style: normal; font-size: var(--fs-small); color: var(--text-tertiary); }

.trust-card__foot {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  margin-top: var(--s-6);
  font-size: var(--fs-small);
  color: var(--text-tertiary);
}
.wave { display: inline-flex; align-items: flex-end; gap: 3px; height: 16px; }
.wave i {
  width: 3px; height: 6px;
  background: var(--mint);
  border-radius: 2px;
  animation: wave 1.1s var(--ease-soft) infinite;
}
.wave i:nth-child(2) { animation-delay: .12s; }
.wave i:nth-child(3) { animation-delay: .24s; }
.wave i:nth-child(4) { animation-delay: .36s; }
.wave i:nth-child(5) { animation-delay: .48s; }
@keyframes wave {
  0%, 100% { transform: scaleY(.5); }
  50%      { transform: scaleY(1.6); }
}

/* Scroll-hint */
.scroll-hint {
  position: absolute;
  right: var(--gutter);
  bottom: var(--s-8);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-2);
  font-size: var(--fs-small);
  color: var(--text-tertiary);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.scroll-hint__line {
  width: 1px; height: 40px;
  background: linear-gradient(var(--mint), transparent);
  transform-origin: top;
  animation: scroll-pulse 2.2s var(--ease-soft) infinite;
}
@keyframes scroll-pulse {
  0%, 100% { transform: scaleY(.4); opacity: .4; }
  50%      { transform: scaleY(1); opacity: 1; }
}

/* ---------- 10. VERTROUWENSBALK ---------- */
.trustbar { border-block: 1px solid var(--hairline); padding-block: var(--s-12); }
.trustbar__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-8);
}
.pillar {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  font-size: .95rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
}
.pillar:not(:last-child)::after {
  content: "";
  position: absolute;
  right: calc(var(--s-8) / -2);
  top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 28px;
  background: var(--mint-12);
}
.pillar .ico { width: 24px; height: 24px; flex-shrink: 0; }

/* ---------- 11. DIENSTEN-GRID ---------- */
.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-8);
}
.card {
  position: relative;
  padding: var(--s-8);
  border-radius: var(--r-md);
  background: var(--bg-elev-1);
  border: 1px solid var(--hairline);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform .3s var(--ease-out-expo),
              border-color .3s var(--ease-soft),
              box-shadow .3s var(--ease-soft);
}
/* meereizende mint-highlight (volgt cursor) */
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(280px circle at var(--mx, 50%) var(--my, 0%), var(--mint-12), transparent 70%);
  opacity: 0;
  transition: opacity .35s var(--ease-soft);
  pointer-events: none;
}
.card:hover {
  transform: translateY(-6px);
  border-color: var(--mint-24);
  box-shadow: var(--shadow-card-hover);
}
.card:hover::before { opacity: 1; }
.card:hover .card__icon .ico { transform: translateY(-2px) scale(1.04); }

.card--feature {
  grid-column: 1 / -1;
  background: linear-gradient(180deg, var(--bg-elev-2), var(--bg-elev-1));
}

.card__icon {
  display: inline-flex;
  margin-bottom: var(--s-6);
}
.card__icon .ico { width: 32px; height: 32px; transition: transform .3s var(--ease-out-expo); }
.card__title { font-size: var(--fs-h3); font-weight: 600; margin-bottom: var(--s-3); }
.card__desc { margin-bottom: var(--s-4); }
.card__outcome {
  font-size: .95rem;
  color: var(--mint);
  padding-top: var(--s-4);
  border-top: 1px solid var(--hairline);
  max-width: 56ch;
}
.card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  margin-top: var(--s-6);
  font-size: .9rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: color .2s var(--ease-soft);
}
.card__link-arrow { transition: transform .25s var(--ease-out-expo); }
.card:hover .card__link-arrow,
.card__link:hover .card__link-arrow,
.card__link:focus-visible .card__link-arrow { transform: translateX(4px); }
.card__link:hover { color: var(--mint); }

/* ---------- 12. SIGNATURE: AI FLUISTERT ---------- */
.whisper { overflow: hidden; }
.whisper__stage {
  position: relative;
  width: 100%;
  max-width: 1040px;
  margin: var(--s-24) auto 0;
  height: clamp(340px, 44vw, 460px);
  border-radius: var(--r-lg);
  background:
    radial-gradient(120% 120% at 50% 120%, var(--aurora-a), transparent 60%),
    var(--bg-elev-1);
  border: 1px solid var(--mint-12);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
/* warme licht-silhouetten (geen foto/robot) */
.silhouette {
  position: absolute;
  bottom: -10%;
  width: clamp(160px, 22vw, 240px);
  height: 80%;
  border-radius: 50% 50% 0 0 / 60% 60% 0 0;
  filter: blur(2px);
}
.silhouette--seller {
  left: 12%;
  background: radial-gradient(60% 70% at 50% 30%, rgba(0,168,122,.5), rgba(0,140,103,.18) 60%, transparent 75%);
}
.silhouette--client {
  right: 12%;
  background: radial-gradient(60% 70% at 50% 30%, rgba(152,232,207,.22), rgba(152,232,207,.08) 60%, transparent 75%);
}
/* zachte basis-laag: altijd zichtbaar */
.silhouette--client-soft {
  filter: blur(2px);
  opacity: .65;
  transition: opacity .6s var(--ease-soft);
}
/* scherpere, helderdere laag: alleen opacity wordt getweend (compositor-goedkoop) */
.silhouette--client-sharp {
  filter: blur(1px);
  background: radial-gradient(60% 70% at 50% 30%, rgba(152,232,207,.30), rgba(152,232,207,.12) 60%, transparent 75%);
  opacity: 0;
  transition: opacity .6s var(--ease-soft);
  will-change: opacity;
}

/* mint-veeg: ALTIJD van AI (links) -> mens (rechts) */
.whisper__sweep {
  position: absolute;
  top: 0; bottom: 0;
  left: 25%;
  width: 40%;
  background: linear-gradient(90deg, transparent, var(--mint-24), transparent);
  transform: translateX(-120%);
  pointer-events: none;
  mix-blend-mode: screen;
}

.whisper__cards {
  position: absolute;
  left: clamp(16px, 18%, 280px);
  top: 14%;
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  width: min(280px, 42%);
}
.hint-card {
  padding: var(--s-4);
  border-radius: var(--r-sm);
  background: var(--bg-elev-2);
  border: 1px solid var(--mint-24);
  box-shadow: var(--shadow-card);
  opacity: 0;
  transform: translateY(16px);
}
.hint-card__tag {
  display: inline-block;
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--mint);
  margin-bottom: var(--s-2);
  font-weight: 600;
}
.hint-card p { font-size: .9rem; color: var(--text); margin: 0; }

.whisper__note {
  text-align: center;
  margin-top: var(--s-12);
  font-size: var(--fs-statement);
  font-weight: 600;
  letter-spacing: -.02em;
  color: var(--text);
}

/* ---------- 13. ZO WERKT HET (tijdlijn) ---------- */
.how__pin { position: relative; }
.how__track { position: relative; padding-block: var(--s-12); }
.how__line {
  position: absolute;
  top: 40px; left: 0; right: 0;
  width: 100%; height: 120px;
  overflow: visible;
}
.how__line-bg { fill: none; stroke: var(--mint-12); stroke-width: 2; }
.how__line-fg {
  fill: none; stroke: var(--mint); stroke-width: 2;
  stroke-dasharray: 920;
  stroke-dashoffset: 920;
}
.how__dot {
  fill: var(--mint);
  filter: drop-shadow(0 0 6px var(--mint));
}
.how__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-12);
  margin-top: var(--s-16);
}
.step { opacity: 0; transform: translateY(24px); }
.step__num {
  display: block;
  font-family: var(--font-display);
  font-size: var(--fs-stepnum);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--mint);
  margin-bottom: var(--s-4);
}
.step__title { font-size: var(--fs-h3); font-weight: 600; margin-bottom: var(--s-3); }
.step__desc { color: var(--text-secondary); }

/* ---------- 14. VERTROUWEN ---------- */
.why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.why__card { position: relative; }
.why__shell {
  border-radius: var(--r-lg);
  padding: 6px;
  background: var(--mint-12);
  border: 1px solid var(--hairline);
}
.checklist {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  border-radius: calc(var(--r-lg) - 6px);
  padding: var(--s-6);
  background: var(--bg-elev-1);
}
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: var(--s-4);
  padding: var(--s-4);
  border-radius: var(--r-sm);
  font-size: .98rem;
  color: var(--text-secondary);
  transition: background-color .25s var(--ease-soft);
}
.checklist li:hover { background: rgba(244,250,247,.03); }
.ico--check { width: 22px; height: 22px; flex-shrink: 0; margin-top: 2px; }

/* ---------- 15. SLOT-CTA ---------- */
.final { text-align: center; }
.final__inner { max-width: var(--container-narrow); margin-inline: auto; }
.final__title {
  font-family: var(--font-display);
  font-size: var(--fs-statement);
  line-height: 1.12;
  letter-spacing: -.02em;
  font-weight: 600;
}
.final__title .line { display: block; overflow: hidden; }
.final__title .word { display: inline-block; }
.final__subline { margin: var(--s-8) auto var(--s-12); }
.final__cta { display: flex; justify-content: center; }
.final__contact { margin-top: var(--s-8); color: var(--text-secondary); }
.final__contact a { color: var(--text); transition: color .2s var(--ease-soft); }
.final__contact a:hover { color: var(--mint); }

/* ---------- 16. FOOTER ---------- */
.footer {
  position: relative;
  background: var(--bg-footer);
  padding-block: var(--s-16);
}
.footer__hairline {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 1px;
  background: linear-gradient(90deg, var(--mint-24), transparent);
  transform: scaleX(0);
  transform-origin: left;
}
.footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--s-12);
}
.footer__brand { max-width: 42ch; }
.footer__tag { margin-top: var(--s-4); font-size: .95rem; color: var(--text-secondary); }
.footer__meta { text-align: right; font-size: .9rem; color: var(--text-tertiary); display: flex; flex-direction: column; gap: var(--s-3); }
.footer__contact a { color: var(--text-secondary); transition: color .2s var(--ease-soft); }
.footer__contact a:hover { color: var(--mint); }
.footer__legal a { color: var(--text-tertiary); text-decoration: underline; text-underline-offset: 3px; }
.footer__legal a:hover { color: var(--text-secondary); }

/* ---------- 17. REVEAL-MOTOR (basis-staat) ---------- */
[data-reveal] { opacity: 0; transform: translateY(28px); }
[data-reveal].is-in { opacity: 1; transform: none; }

/* JS-loaded klasse zorgt dat hero pas na init verschijnt; zonder JS alles zichtbaar */
[data-hero] { opacity: 0; transform: translateY(20px); }

/* ---------- 18. RESPONSIVE ---------- */
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; gap: var(--s-12); }
  .trust-card { max-width: 460px; }
  .why__grid { grid-template-columns: 1fr; }
  .services__grid { grid-template-columns: 1fr; }
  .card--feature { grid-column: auto; }
  .how__steps { grid-template-columns: 1fr; gap: var(--s-12); }
  .how__line { display: none; }
  .footer__meta { text-align: left; }
}

/* Nav klapt in naar hamburger ruim vóór de inhoud overloopt (incl. iPad-portret ~768px en smallere laptops) */
@media (max-width: 1024px) {
  .nav__links, .nav__actions { display: none; }
  .nav__toggle { display: flex; }
}

@media (max-width: 760px) {
  .trustbar__inner { grid-template-columns: 1fr 1fr; gap: var(--s-6); }
  .pillar::after { display: none; }
  .whisper__cards { position: static; width: 100%; margin-top: var(--s-8); }
  .whisper__stage { height: auto; padding: var(--s-8); }
  .silhouette { display: none; }
  .whisper__sweep { display: none; }
  .hint-card { opacity: 1; transform: none; }
  .footer__inner { flex-direction: column; }
  .footer__meta { text-align: left; }
  .scroll-hint { display: none; }
}

@media (max-width: 460px) {
  .trustbar__inner { grid-template-columns: 1fr; }
}

/* ---------- 18b. PRESTATIE: lichter op mobiel/tablet voor 60fps ---------- */
/* backdrop-filter is op touch-apparaten een grote bron van scroll-jank:
   we vervangen het door (bijna) dekkende achtergronden die er even premium uitzien. */
@media (max-width: 1024px) {
  .nav.is-scrolled {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: rgba(10, 24, 20, .96);
  }
  .mobile-menu {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: rgba(10, 24, 20, .98) !important;
  }
  .trust-card__core {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: rgba(17, 40, 35, .9);
  }
}
/* Op telefoons: aurora niet animeren (scheelt continue compositor-kosten) en lichter */
@media (max-width: 768px) {
  .aurora__layer { animation: none !important; filter: blur(20px); opacity: .5; }
  .aurora__layer--3 { display: none; }
}

/* ---------- 19. REDUCED MOTION (volledige fallback) ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .aurora__layer { animation: none; opacity: .5; }
  [data-reveal], [data-hero], .step, .hint-card { opacity: 1 !important; transform: none !important; }
  .how__line-fg { stroke-dashoffset: 0; }
  .ico--draw path, .ico--draw rect, .ico--draw circle, .ico--draw line { stroke-dashoffset: 0; }
  .footer__hairline { transform: scaleX(1); }
  .whisper__sweep { display: none; }
  .silhouette--client-soft { opacity: 1; }
  .silhouette--client-sharp { opacity: 1; }
  .status__dot, .wave i, .scroll-hint__line, .btn--breathing::after { animation: none; }
  .hero__title .word, .final__title .word { transform: none; }
}
