/* ============================================================
   MantelZorgt — gedeeld design-systeem (v10, multi-page)
   Typografie: Lora (display) + DM Sans (body, min. 400 — WCAG AA)
   ============================================================ */
:root {
  --green: #3a5a4a;
  --green-deep: #1c3328;
  --green-mid: #5c7a6b;
  --green-light: #c8dbd3;
  --green-pale: #eef4f0;
  --white: #ffffff;
  --canvas: #FAF9F6;
  --off: #f4f7f5;
  --ink: #10201a;
  --muted: #42564c;            /* AA: ≥ 7:1 op --canvas */
  --border: #dce8e2;
  --gold: #b98f45;             /* AA-veilig donkerder goud */
  --danger: #b93636;
  --r-sm: 14px; --r-md: 20px; --r-lg: 30px;
  --sh-sm: 0 1px 2px rgba(30,40,32,.04), 0 8px 20px rgba(58,90,74,.06);
  --sh-md: 0 2px 8px rgba(30,40,32,.05), 0 20px 44px rgba(58,90,74,.10);
  --sh-lg: 0 10px 24px rgba(30,40,32,.07), 0 40px 80px rgba(58,90,74,.15);
  --sh-hover: 0 4px 14px rgba(30,40,32,.07), 0 24px 50px rgba(58,90,74,.14);
  --deep: linear-gradient(160deg, #1c3328, #3a5a4a);
  --ease: cubic-bezier(.2,.8,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;                     /* nooit lichter dan 400 */
  font-size: 16px; line-height: 1.7;
  color: var(--ink); background: var(--canvas);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--green); }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 4px; }
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 2000;
  background: var(--ink); color: #fff; padding: 12px 20px; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

/* ── NAV ─────────────────────────────────────────────────── */
#NAV {
  position: fixed; inset: 0 0 auto 0; z-index: 1000; height: 64px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  padding: 0 40px; transition: border-color .3s, box-shadow .3s;
}
#NAV.scrolled { border-color: var(--border); box-shadow: 0 2px 14px rgba(30,40,32,.07); }
.nav-logo { justify-self: start; display: flex; align-items: center; gap: 9px; font-family: 'Lora', serif; font-size: 20px; color: var(--ink); text-decoration: none; }
.nav-logo em { font-style: italic; color: var(--green); }
.nav-slogan { font-family: 'Lora', serif; font-style: italic; font-size: 13px; color: var(--muted); padding-left: 12px; margin-left: 3px; border-left: 1px solid var(--border); white-space: nowrap; }
#NAV-LINKS { display: flex; align-items: center; gap: 22px; list-style: none; }
#NAV-LINKS a { text-decoration: none; font-size: 13.5px; font-weight: 500; color: var(--muted); transition: color .2s; white-space: nowrap; }
#NAV-LINKS a:hover { color: var(--ink); }
#NAV-LINKS a[aria-current="page"] { color: var(--ink); font-weight: 700; }
#NAV-RIGHT { justify-self: end; display: flex; align-items: center; gap: 22px; }
.nav-login { color: var(--ink); text-decoration: none; font-size: 14.5px; font-weight: 500; display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; }
.nav-btn {
  background: var(--green); color: #fff !important; text-decoration: none;
  font-size: 13.5px; font-weight: 700; letter-spacing: .3px; padding: 11px 26px;
  border-radius: 10px; transition: background .2s; display: inline-flex; align-items: center;
  white-space: nowrap;
}
.nav-btn:hover { background: var(--ink) !important; }
#NAV-HB { display: none; background: none; border: none; cursor: pointer; padding: 10px; flex-direction: column; gap: 5px; }
#NAV-HB span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; }
#MOB-MENU {
  display: none; position: fixed; top: 64px; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,.98);
  -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
  flex-direction: column; z-index: 1001; overflow-y: auto;
}
@supports not (backdrop-filter: blur(1px)) { #MOB-MENU { background: var(--white); } }
body.menu-open { overflow: hidden; }
#MOB-MENU a { display: block; padding: 17px 24px; color: var(--ink); text-decoration: none; font-size: 16px; border-bottom: 1px solid var(--border); }
#MOB-MENU a.cta { background: var(--green); color: #fff; font-weight: 600; border: none; margin: 12px; border-radius: 12px; text-align: center; }
@media (max-width: 900px) {
  #NAV { grid-template-columns: 1fr auto; padding: 0 20px; }
  #NAV-LINKS { display: none; }
  #NAV-HB { display: flex; }
  .nav-login, .nav-btn { display: none; }
}
@media (max-width: 640px) { .nav-slogan { display: none; } }

/* ── HERO: één boodschap, naadloze lichtkern ─────────────── */
.hero {
  position: relative; overflow: hidden;
  padding: 132px 0 88px; background: var(--canvas);
}
.hero-inner { position: relative; max-width: 880px; margin: 0 auto; text-align: center; padding: 0 20px; z-index: 5; }
.hero-media {
  position: absolute; left: 0; right: 0; top: 50%; height: 200%;
  transform: translateY(-50%); z-index: 0; background: var(--canvas); overflow: hidden;
}
/* De container is bewust veel hoger dan de hero zelf (en verticaal gecentreerd).
   Zo hoeft object-fit:cover véél minder van het origineel verticaal weg te
   snijden om de volle breedte te vullen -- resultaat: minder ingezoomd, en
   toch gegarandeerd van rand tot rand, in elke browser. */
.hero-media video {
  width: 100%; height: 100%; object-fit: cover; object-position: center center;
  filter: saturate(.92) brightness(1.05);
}
/* Volkomen naadloze vignette: één brede radiale lichtkern, geen kaders */
.hero-veil {
  position: absolute; inset: -1px; z-index: 1; pointer-events: none;
  background:
    radial-gradient(ellipse 72% 68% at 50% 42%,
      rgba(250,249,246,.92) 0%,
      rgba(250,249,246,.82) 24%,
      rgba(250,249,246,.62) 44%,
      rgba(250,249,246,.38) 62%,
      rgba(250,249,246,.16) 78%,
      rgba(250,249,246,0) 100%),
    linear-gradient(to bottom, rgba(250,249,246,.32) 0%, rgba(250,249,246,0) 22%,
      rgba(250,249,246,0) 62%, rgba(250,249,246,.62) 86%, var(--canvas) 100%);
}
.hero-kicker {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px;
  border-radius: 999px; background: rgba(255,255,255,.85);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(58,90,74,.16); box-shadow: 0 2px 10px rgba(58,90,74,.08);
  color: var(--green); font-size: 11.5px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; margin-bottom: 30px;
}
.hero-kicker i { width: 8px; height: 8px; border-radius: 50%; background: var(--green); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.4} }
.hero h1 {
  font-family: 'Lora', serif; font-size: clamp(38px, 6.2vw, 64px);
  font-weight: 600; letter-spacing: -0.015em; line-height: 1.08; margin-bottom: 26px;
}
.hero h1 em { font-style: italic; font-weight: 500; color: var(--green); }
.hero-sub { font-size: clamp(17px, 2vw, 19.5px); color: var(--muted); max-width: 600px; margin: 0 auto 36px; }
.hero-sub strong { display: block; margin-top: 14px; font-weight: 700; color: var(--ink); }
.hero-cta { display: flex; justify-content: center; align-items: center; gap: 24px; flex-wrap: wrap; margin-bottom: 26px; }
.btn-hero-ghost {
  display: inline-flex; align-items: center; gap: 10px; padding: 17px 38px;
  font-size: 15px; font-weight: 600; letter-spacing: .2px; color: var(--ink);
  text-decoration: none; white-space: nowrap; border-radius: 999px;
  background: rgba(255,255,255,.6); border: 1px solid rgba(58,90,74,.22);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 10px rgba(58,90,74,.07), inset 0 1px 0 rgba(255,255,255,.6);
  transition: all .35s var(--ease);
}
.btn-hero-ghost svg { transition: transform .35s var(--ease); }
.btn-hero-ghost:hover { background: rgba(255,255,255,.85); border-color: rgba(58,90,74,.4); transform: translateY(-2px); box-shadow: 0 6px 26px rgba(58,90,74,.2); }
.btn-hero-ghost:hover svg { transform: translateX(4px); }
.btn-hero-solid {
  display: inline-flex; align-items: center; gap: 10px; padding: 17px 38px;
  font-family: inherit; font-size: 15px; font-weight: 600; letter-spacing: .2px; color: #fff;
  text-decoration: none; white-space: nowrap; border-radius: 999px;
  background: var(--green); border: 1px solid var(--green); cursor: pointer;
  appearance: none; -webkit-appearance: none; -moz-appearance: none;
  box-shadow: 0 8px 20px -6px rgba(6,78,59,.35); transition: all .35s var(--ease);
}
.btn-hero-solid:hover { background: #2c4839; border-color: #2c4839; transform: translateY(-2px); box-shadow: 0 14px 30px -6px rgba(6,78,59,.4); }
.hero-trust {
  display: inline-flex; flex-wrap: wrap; justify-content: center; gap: 18px;
  padding: 10px 24px; border-radius: 999px; background: rgba(255,255,255,.62);
  border: 1px solid rgba(58,90,74,.12); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  font-size: 13px; font-weight: 600; color: var(--muted);
}
.hero-trust span { display: inline-flex; align-items: center; gap: 7px; }
.hero-trust svg { color: var(--green); flex-shrink: 0; }
@media (max-width: 640px) {
  .hero { padding: 108px 0 64px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .btn-hero-ghost, .btn-hero-solid { width: 100%; justify-content: center; min-height: 52px; }
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn-primary {
  background: var(--green); color: #fff; border: none; cursor: pointer;
  padding: 16px 34px; font-family: inherit; font-size: 15px; font-weight: 600;
  border-radius: 12px; text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 8px 20px -6px rgba(6,78,59,.35); transition: all .25s var(--ease);
}
.btn-primary:hover { background: #2c4839; transform: translateY(-2px); box-shadow: 0 14px 30px -6px rgba(6,78,59,.4); }
.btn-primary:active { transform: translateY(0); }
.btn-ghost {
  background: transparent; color: var(--green); border: none; cursor: pointer;
  padding: 15px 4px; font-family: inherit; font-size: 15px; font-weight: 600;
  text-decoration: underline; text-underline-offset: 4px; display: inline-flex; align-items: center; gap: 6px;
}
.btn-ghost:hover { color: #2c4839; }

/* ── Secties & koppen ────────────────────────────────────── */
.section { padding: 96px 40px; }
.section-label {
  display: inline-flex; align-items: flex-start; gap: 8px; font-size: 11.5px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: var(--green); margin-bottom: 16px;
}
.section-label::before { content: ''; width: 20px; height: 2px; background: var(--green); margin-top: 7px; flex-shrink: 0; }
h2.sec { font-family: 'Lora', serif; font-size: clamp(30px, 3.5vw, 46px); font-weight: 600; line-height: 1.15; letter-spacing: -.3px; margin-bottom: 16px; }
h2.sec em { font-style: italic; color: var(--green); font-weight: 500; }
.section-intro { font-size: 17px; color: var(--muted); max-width: 580px; margin-bottom: 56px; }
.center { text-align: center; }
.center .section-label { justify-content: center; }
.center .section-intro { margin-left: auto; margin-right: auto; }
.wrap { max-width: 1100px; margin: 0 auto; }
@media (max-width: 900px) { .section { padding: 64px 22px; } }

/* Scroll-reveal (JS voegt .vis toe). Vangnet: ook zónder JavaScript --
   geblokkeerd, netwerkfout, wat dan ook -- wordt content na 3s hoe dan
   ook zichtbaar via een pure CSS-animatie. JS die wél werkt is sneller
   en netter (direct bij scrollen), maar is nooit een harde vereiste
   voor zichtbaarheid van de content. */
.rv { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s var(--ease); animation: rv-failsafe 0s 3s forwards; }
.rv.vis { opacity: 1; transform: none; }
@keyframes rv-failsafe { to { opacity: 1; transform: none; } }
.rv-d1 { transition-delay: .08s; } .rv-d2 { transition-delay: .16s; } .rv-d3 { transition-delay: .24s; }

/* ── €2B-bewijsband: brug naar de AI Scanner ─────────────── */
.proof-band { background: var(--deep); color: #fff; padding: 72px 40px; position: relative; overflow: hidden; }
.proof-band::before { content: ''; position: absolute; top: -120px; right: -80px; width: 380px; height: 380px; border-radius: 50%; background: radial-gradient(circle, rgba(185,143,69,.22), transparent 70%); }
.proof-grid { position: relative; max-width: 1040px; margin: 0 auto; display: grid; grid-template-columns: auto 1fr auto; gap: 44px; align-items: center; }
.proof-num { font-family: 'Lora', serif; font-size: clamp(56px, 7vw, 88px); font-weight: 700; line-height: 1; color: #f0d999; }
.proof-num small { display: block; font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.75); margin-top: 10px; }
.proof-copy { font-size: clamp(17px, 2vw, 21px); line-height: 1.6; color: #dcefe4; max-width: 460px; }
.proof-copy b { color: #fff; }
.proof-src { display: block; margin-top: 12px; font-size: 12.5px; color: rgba(255,255,255,.65); }
@media (max-width: 900px) { .proof-grid { grid-template-columns: 1fr; text-align: center; gap: 24px; } .proof-copy { margin: 0 auto; } .proof-grid .btn-primary { margin: 0 auto; } }
.proof-grid--split { grid-template-columns: 1fr auto; }
@media (max-width: 900px) { .proof-grid--split { grid-template-columns: 1fr; } }

/* ── Bento-grid (ademend, Ianacare-feel) ─────────────────── */
/* ── Sticky-scroll: vaste telefoon + scrollende stappen (Hoe het werkt) ── */
.story { background: var(--off); }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; max-width: 1060px; margin: 0 auto; align-items: start; }
.story-sticky { position: sticky; top: 110px; display: flex; justify-content: center; }
.story-phone {
  position: relative; width: min(300px, 78vw); aspect-ratio: 1/2; border-radius: 34px;
  border: 6px solid #14231c; background: #FAF9F6; overflow: hidden;
  box-shadow: 0 34px 70px -18px rgba(10,31,22,.35);
}
.sp-notch { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 34%; height: 20px; background: #14231c; border-radius: 0 0 12px 12px; z-index: 5; }
.story-screen {
  position: absolute; inset: 0; padding: 34px 16px 16px; opacity: 0; transition: opacity .55s ease;
  font-family: 'DM Sans', sans-serif; overflow: hidden;
}
.story-screen:first-child { position: relative; }
.story-screen.on { opacity: 1; }
.sp-greet { display: flex; align-items: center; gap: 9px; margin-bottom: 14px; }
.sp-av { width: 30px; height: 30px; border-radius: 50%; background: var(--green); color: #fff; display: flex; align-items: center; justify-content: center; font-family: 'Lora', serif; font-size: 12px; flex-shrink: 0; }
.sp-greet b { font-family: 'Lora', serif; font-size: 14.5px; font-weight: 600; display: block; color: var(--ink); }
.sp-greet span, .sp-profile span { font-size: 10px; color: var(--muted); }
.sp-summary { display: inline-flex; align-items: center; gap: 6px; font-size: 10px; color: var(--ink); background: #fff; border: 1px solid var(--border); border-radius: 999px; padding: 6px 11px; margin-bottom: 14px; }
.sp-summary svg { width: 11px; height: 11px; color: var(--green); }
.sp-next { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 13px 14px; margin-bottom: 16px; }
.sp-next-tag { font-size: 8px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 5px; }
.sp-next b { font-family: 'Lora', serif; font-size: 13px; font-weight: 600; display: block; color: var(--ink); }
.sp-next-time { display: inline-flex; align-items: center; gap: 4px; margin-top: 8px; font-size: 9px; font-weight: 700; color: var(--green); background: var(--green-pale); padding: 4px 9px; border-radius: 999px; }
.sp-next-time svg { width: 9px; height: 9px; }
.sp-label { font-size: 8px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); margin: 12px 0 8px; }
.sp-row { display: flex; align-items: center; gap: 8px; padding: 6px 0; }
.sp-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--border); flex-shrink: 0; }
.sp-row--done .sp-dot { background: var(--green); }
.sp-row b { font-size: 10.5px; font-weight: 600; display: block; color: var(--ink); }
.sp-row--done b, .sp-row--done span { color: var(--muted); text-decoration: line-through; text-decoration-color: var(--border); }
.sp-row span { font-size: 9px; color: var(--muted); }
.sp-trust { display: flex; align-items: center; gap: 6px; font-size: 8px; color: var(--muted); margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--border); }
.sp-trust svg { width: 11px; height: 11px; flex-shrink: 0; }
/* AI Scanner-scherm */
.story-screen[data-shot="1"] { background: var(--canvas); }
.sp-ai-chip { display: inline-flex; align-items: center; gap: 5px; font-size: 8.5px; font-weight: 700; letter-spacing: .05em; color: var(--gold); background: rgba(217,164,65,.12); border: 1px solid rgba(217,164,65,.35); border-radius: 999px; padding: 5px 10px 5px 8px; }
.sp-ai-chip svg { width: 9px; height: 9px; }
.sp-card { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 11px 13px; font-size: 10px; line-height: 1.55; color: var(--ink); }
.sp-deadline { display: flex; align-items: center; gap: 7px; background: rgba(217,164,65,.12); border: 1px solid rgba(217,164,65,.35); border-radius: 12px; padding: 9px 12px; font-size: 9.5px; font-weight: 600; color: #8A6A2E; }
.sp-deadline svg { width: 11px; height: 11px; flex-shrink: 0; }
.sp-verg { display: flex; align-items: center; gap: 7px; background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 9px 12px; font-size: 9.5px; font-weight: 600; color: var(--ink); }
.sp-verg svg { width: 12px; height: 12px; color: var(--green); flex-shrink: 0; }
.sp-btn { display: block; width: 100%; margin-top: 16px; padding: 11px; border-radius: var(--r-sm); background: var(--green); color: #fff; border: none; font-family: 'DM Sans', sans-serif; font-size: 11px; font-weight: 600; }
/* Agenda-scherm */
.sp-ag-row { display: flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 9px 11px; margin-bottom: 7px; }
.sp-ag-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); flex-shrink: 0; }
.sp-ag-dot--muted { background: var(--border); }
.sp-ag-row b { font-size: 10px; font-weight: 600; display: block; color: var(--ink); }
.sp-ag-row span { font-size: 8.5px; color: var(--muted); }
/* Meer-scherm */
.sp-profile { display: flex; align-items: center; gap: 10px; background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 12px 13px; margin-bottom: 14px; }
.sp-profile b { font-family: 'Lora', serif; font-size: 12.5px; font-weight: 600; display: block; color: var(--ink); }
.sp-meer-item { display: flex; align-items: center; gap: 10px; background: #fff; border: 1px solid var(--border); border-bottom: none; padding: 10px 13px; font-size: 10px; font-weight: 600; color: var(--ink); }
.sp-meer-item:last-child { border-bottom: 1px solid var(--border); border-radius: 0 0 12px 12px; }
.sp-meer-item:first-of-type { border-radius: 12px 12px 0 0; }
.sp-meer-ic { width: 22px; height: 22px; border-radius: 7px; background: var(--green-pale); color: var(--green); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.sp-meer-ic svg { width: 11px; height: 11px; }
.story-steps { display: flex; flex-direction: column; gap: 10vh; padding: 4vh 0 20vh; }
.story-step {
  padding: 36px 40px; border-radius: var(--r-lg); background: #fff;
  border: 1.5px solid var(--border); box-shadow: var(--sh-sm);
  opacity: .4; transform: translateY(10px) scale(.985);
  transition: all .5s var(--ease);
}
.story-step.on { opacity: 1; transform: none; border-color: var(--green-light); box-shadow: var(--sh-md); }
.story-step .hoe-kicker { margin-bottom: 12px; }
.story-step h3 { font-family: 'Lora', serif; font-size: 26px; font-weight: 500; margin-bottom: 14px; }
.story-step h3 em { font-style: italic; color: var(--green); }
.story-step > p { font-size: 15.5px; color: var(--muted); line-height: 1.75; margin-bottom: 16px; }
.story-step .hoe-punten { margin-bottom: 4px; }
/* Spotlight-variant voor de AI Scanner-stap: donkere kaart, goud accent */
.story-step--spotlight {
  background: linear-gradient(155deg, #0a1f16, #123324 65%, #1a4230);
  border-color: transparent;
}
.story-step--spotlight h3 { color: #fff; }
.story-step--spotlight h3 em { color: #f0d999; }
.story-step--spotlight > p { color: rgba(228,243,234,.85); }
.story-step--spotlight.on { border-color: rgba(217,164,65,.4); box-shadow: 0 20px 50px -20px rgba(6,20,14,.5); }
@media (max-width: 900px) {
  .story-grid { grid-template-columns: 1fr; gap: 32px; }
  .story-sticky { position: relative; top: 0; }
  .story-phone img { position: relative; opacity: 1; display: none; }
  .story-phone img.on { display: block; }
  .story-screen { position: relative; opacity: 1; display: none; padding: 20px 14px 14px; }
  .story-screen.on { display: block; }
  .story-phone { aspect-ratio: auto; min-height: 480px; }
  .story-steps { gap: 20px; padding: 0; }
  .story-step { opacity: 1; transform: none; }
}

.bento-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: minmax(232px, auto); gap: 24px; }
.bento-card {
  background: #fff; border-radius: var(--r-md); border: 1px solid var(--border);
  padding: 32px; display: flex; flex-direction: column; gap: 10px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
  will-change: transform;
}
.bento-card:hover { transform: translateY(-5px); box-shadow: var(--sh-hover); border-color: transparent; }
.bento-card h3 { font-size: 20px; font-weight: 700; }
.bento-card > p { font-size: 15.5px; line-height: 1.6; color: var(--muted); }
.bento-card > p strong { color: var(--ink); }
.bento-card--large { grid-column: span 2; }
.bento-card--large h3 { font-size: 22px; }
.bento-card--wide { grid-column: span 2; }
.bento-card--spotlight {
  background: linear-gradient(155deg, #0a1f16, #123324 65%, #1a4230);
  border-color: transparent; box-shadow: 0 20px 50px -20px rgba(6,20,14,.5);
}
.bento-card--spotlight h3 { color: #fff; }
.bento-card--spotlight > p { color: rgba(228,243,234,.85); }
.bento-card--spotlight > p strong { color: #f0d999; }
@media (max-width: 860px) { .bento-grid { grid-template-columns: 1fr; } .bento-card--large, .bento-card--wide { grid-column: span 1; } }

/* Micro-UI in bento */
.micro { margin-top: auto; border-radius: 14px; border: 1px solid var(--border); background: var(--off); padding: 14px; overflow: hidden; }
.micro-cal { padding: 0; background: #fff; }
.micro-cal-head { background: var(--green); color: #fff; font-size: 11.5px; font-weight: 700; padding: 8px 12px; }
.micro-cal-row { padding: 10px 12px; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid var(--border); }
.micro-cal-row:last-child { border-bottom: none; }
.micro-cal-date { background: var(--green-pale); border-radius: 7px; width: 32px; height: 32px; flex-shrink: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.micro-cal-date span:first-child { font-size: 8px; color: var(--green); font-weight: 700; text-transform: uppercase; }
.micro-cal-date span:last-child { font-size: 13px; font-weight: 700; line-height: 1; }
.micro-cal-info b { display: block; font-size: 12.5px; }
.micro-cal-info span { font-size: 11.5px; color: var(--muted); }
.micro-notif { background: #fff; border-radius: 12px; padding: 16px 12px; display: flex; gap: 10px; align-items: flex-start; box-shadow: 0 6px 20px rgba(30,40,32,.08); border: 1px solid var(--border); }
.micro-notif-icon { width: 30px; height: 30px; border-radius: 50%; background: var(--green-pale); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.micro-notif-icon svg { width: 16px; height: 16px; stroke: var(--green); }
.micro-notif b { font-size: 12.5px; display: block; }
.micro-notif span { font-size: 11px; color: var(--muted); }
.micro-avatars { display: flex; margin-bottom: 10px; }
.micro-avatar { width: 32px; height: 32px; border-radius: 50%; border: 2px solid #fff; margin-left: -10px; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; color: #fff; }
.micro-avatar:first-child { margin-left: 0; }
.micro-task { background: #fff; border-radius: 10px; padding: 15px 14px; display: flex; align-items: center; gap: 8px; border: 1px solid var(--border); }
.micro-check { width: 18px; height: 18px; border-radius: 50%; background: var(--green); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.micro-check svg { width: 11px; height: 11px; stroke: #fff; }
.micro-task span { font-size: 12.5px; text-decoration: line-through; text-decoration-color: var(--muted); }
.micro-scan { background: #fff; border-radius: 10px; padding: 0; border: 1px solid var(--border); position: relative; overflow: hidden; }
.micro-scan-head { display: flex; justify-content: space-between; padding: 10px 14px; border-bottom: 1px solid var(--border); background: var(--off); font-size: 10.5px; font-weight: 700; color: var(--muted); text-transform: uppercase; }
.micro-scan-body { padding: 16px 14px; position: relative; }
.micro-scan-title { font-size: 12.5px; font-weight: 700; margin-bottom: 10px; }
.micro-scan-lines span { display: block; height: 6px; background: var(--border); border-radius: 3px; margin-bottom: 7px; }
.micro-scan-lines span:nth-child(1){width:92%} .micro-scan-lines span:nth-child(2){width:78%}
.micro-scan-lines span:nth-child(3){width:85%} .micro-scan-lines span:nth-child(4){width:55%;margin-bottom:0}
.micro-scan-beam { position: absolute; left: 8px; right: 8px; height: 2px; background: linear-gradient(90deg, transparent, var(--green), transparent); animation: sweep 2.4s ease-in-out infinite; }
@keyframes sweep { 0%,100%{top:8px;opacity:0} 10%{opacity:1} 50%{top:calc(100% - 10px);opacity:1} 60%{opacity:0} }
.micro-scan-status { display: flex; gap: 8px; padding: 12px 14px; border-top: 1px solid var(--border); background: var(--green-pale); }
.micro-scan-status b { display: block; font-size: 12.5px; color: var(--green); line-height: 1.35; }
.micro-scan-status span { font-size: 11.5px; color: #8a5a10; font-weight: 700; }
.micro-pdf { background: #fff; border-radius: 10px; padding: 16px 14px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.micro-pdf-icon { width: 26px; height: 32px; background: var(--green); border-radius: 4px; display: flex; align-items: center; justify-content: center; font-size: 8px; font-weight: 800; color: #fff; }
.micro-pdf span { font-size: 11.5px; color: var(--muted); }
.micro-pdf-btn { background: var(--green); color: #fff; font-size: 11px; font-weight: 700; padding: 7px 12px; border-radius: 8px; display: flex; align-items: center; gap: 5px; }
.micro-checklist .row { display: flex; align-items: center; gap: 8px; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 12.5px; font-weight: 600; }
.micro-checklist .row:last-of-type { border: none; }
.micro-badge { background: var(--green-pale); border: 1px solid var(--green-light); border-radius: 999px; padding: 9px 16px; display: flex; justify-content: center; gap: 6px; font-size: 12px; font-weight: 700; color: var(--green); margin-top: 8px; }

/* ── Pijn / herkenning ───────────────────────────────────── */
.pain-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.pain-item { display: flex; gap: 20px; padding: 24px 0; border-bottom: 1px solid var(--border); }
.pain-n { font-family: 'Lora', serif; font-size: 14px; color: var(--green); font-weight: 600; flex-shrink: 0; margin-top: 3px; }
.pain-item h3 { font-size: 15.5px; font-weight: 700; margin-bottom: 5px; }
.pain-item p { font-size: 14.5px; color: var(--muted); }
.pain-quote { background: var(--green); padding: 48px 40px; color: #fff; position: relative; overflow: hidden; border-radius: var(--r-lg); box-shadow: var(--sh-md); }
.pain-quote::before { content: '"'; font-family: 'Lora', serif; font-size: 180px; position: absolute; top: -20px; left: 10px; opacity: .08; line-height: 1; }
.q-text { font-family: 'Lora', serif; font-size: 21px; font-style: italic; line-height: 1.6; margin-bottom: 24px; }
.q-author { font-size: 12.5px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,.85); }
@media (max-width: 900px) { .pain-grid { grid-template-columns: 1fr; gap: 36px; } }

/* ── Testimonials / testgezinnen ─────────────────────────── */
.testi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.testi-card { background: #fff; border: 1px solid var(--border); border-radius: var(--r-md); padding: 32px; box-shadow: var(--sh-sm); }
.testi-card p { font-family: 'Lora', serif; font-style: italic; font-size: 16px; line-height: 1.65; margin-bottom: 22px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--green); color: #fff; font-family: 'Lora', serif; font-weight: 600; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.testi-author b { display: block; font-size: 14px; }
.testi-author span { font-size: 12.5px; color: var(--muted); }
.testi-note { margin-top: 28px; font-size: 13.5px; color: var(--muted); }
@media (max-width: 760px) { .testi-grid { grid-template-columns: 1fr; } }

/* ── Prijzen ─────────────────────────────────────────────── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 960px; margin: 0 auto; }
.plan { border: 1.5px solid var(--border); padding: 40px 32px; background: #fff; border-radius: var(--r-lg); position: relative; box-shadow: var(--sh-sm); transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.plan:hover { box-shadow: var(--sh-hover); transform: translateY(-6px); }
.plan.featured { background: var(--deep); border-color: transparent; color: #fff; box-shadow: var(--sh-lg); }
.plan-tag { display: inline-block; background: var(--gold); color: #fff; font-size: 10.5px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 4px 12px; margin-bottom: 20px; border-radius: 999px; }
.plan-name { font-size: 12.5px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.plan.featured .plan-name { color: rgba(255,255,255,.75); }
.plan-price { font-family: 'Lora', serif; font-size: 52px; font-weight: 600; letter-spacing: -1px; line-height: 1; margin-bottom: 4px; }
.plan-price sup { font-size: 24px; vertical-align: top; margin-top: 10px; display: inline-block; }
.plan-period { font-size: 13.5px; color: var(--muted); margin-bottom: 14px; }
.plan.featured .plan-period { color: rgba(255,255,255,.75); }
.plan-members { font-size: 13.5px; font-weight: 700; color: var(--green); padding: 14px 0; border-top: 1px solid var(--border); }
.plan.featured .plan-members { color: var(--green-light); border-color: rgba(255,255,255,.15); }
.plan-features { list-style: none; margin: 10px 0 32px; }
.plan-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; padding: 9px 0; border-bottom: 1px solid var(--border); line-height: 1.45; }
.plan.featured .plan-features li { border-color: rgba(255,255,255,.12); }
.plan-features li.off { color: var(--muted); }
.plan.featured .plan-features li.off { color: rgba(255,255,255,.62); }
.chk-icon { width: 16px; height: 16px; stroke: var(--green); stroke-width: 2.5; flex-shrink: 0; margin-top: 3px; }
.plan.featured .chk-icon { stroke: #fff; }
.off-icon { width: 16px; height: 16px; stroke: #8a877f; stroke-width: 2.25; flex-shrink: 0; margin-top: 3px; }
.plan.featured .off-icon { stroke: rgba(255,255,255,.45); }
.plan-btn { width: 100%; padding: 14px; font-family: inherit; font-size: 13.5px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; cursor: pointer; transition: all .2s; border: 1.5px solid var(--green); background: transparent; color: var(--green); border-radius: 10px; }
.plan-btn:hover { background: var(--green); color: #fff; }
.plan.featured .plan-btn { background: #fff; border-color: #fff; color: var(--green); }
.plan.featured .plan-btn:hover { background: var(--ink); border-color: var(--ink); color: #fff; }
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; } }

/* Verzekeraar-antwoord */
.why-pay { max-width: 960px; margin: 64px auto 0; background: #fff; border: 1.5px solid var(--green-light); border-radius: var(--r-lg); padding: 48px 52px; box-shadow: var(--sh-sm); }
.why-pay h3 { font-family: 'Lora', serif; font-size: clamp(24px, 3vw, 32px); font-weight: 600; margin-bottom: 16px; }
.why-pay h3 em { font-style: italic; color: var(--green); }
.why-pay p { color: var(--muted); font-size: 15.5px; margin-bottom: 16px; }
.why-pay p b { color: var(--ink); }
.why-cols { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; margin-top: 28px; }
.why-col { background: var(--green-pale); border-radius: var(--r-sm); padding: 22px; }
.why-col h4 { font-size: 15px; font-weight: 700; margin-bottom: 8px; display: flex; gap: 8px; align-items: center; }
.why-col h4 svg { color: var(--green); flex-shrink: 0; }
.why-col p { font-size: 13.5px; color: var(--muted); margin: 0; }
@media (max-width: 860px) { .why-cols { grid-template-columns: 1fr; } .why-pay { padding: 32px 24px; } }

/* ── Vergoedingscheck (lead-magneet) ─────────────────────── */
.check-card { max-width: 640px; margin: 0 auto; background: #fff; border: 1.5px solid var(--border); border-radius: var(--r-lg); box-shadow: var(--sh-md); padding: 44px; }
.check-progress { height: 6px; background: var(--green-pale); border-radius: 3px; overflow: hidden; margin-bottom: 32px; }
.check-progress i { display: block; height: 100%; background: var(--green); border-radius: 3px; transition: width .4s var(--ease); }
.check-q { font-family: 'Lora', serif; font-size: 24px; font-weight: 600; margin-bottom: 8px; }
.check-help { font-size: 14.5px; color: var(--muted); margin-bottom: 24px; }
.check-opts { display: flex; flex-direction: column; gap: 12px; }
.check-opt {
  text-align: left; font-family: inherit; font-size: 15.5px; font-weight: 600; color: var(--ink);
  background: var(--off); border: 1.5px solid var(--border); border-radius: var(--r-sm);
  padding: 16px 20px; cursor: pointer; transition: all .2s;
}
.check-opt:hover, .check-opt:focus-visible { border-color: var(--green); background: var(--green-pale); }
.check-result h3 { font-family: 'Lora', serif; font-size: 28px; font-weight: 600; margin-bottom: 12px; }
.check-result .amount { font-family: 'Lora', serif; font-size: 52px; color: var(--green); font-weight: 700; line-height: 1.1; }
.check-result p { color: var(--muted); font-size: 15.5px; margin: 14px 0 24px; }
.check-list { list-style: none; margin: 0 0 28px; }
.check-list li { display: flex; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 15px; align-items: flex-start; }
.check-list svg { flex-shrink: 0; margin-top: 4px; color: var(--green); }
.check-note { font-size: 12.5px; color: var(--muted); margin-top: 18px; }
@media (max-width: 640px) { .check-card { padding: 28px 20px; } }

/* ── Hoe-het-werkt kaarten & AI-spotlight ────────────────── */
.hoe-card { border-radius: 28px; padding: 48px 56px; margin-bottom: 56px; }
.hoe-card--warm { background: #eef3f0; border: 1px solid rgba(6,78,59,.08); }
.hoe-card--alt { background: #fff; border: 1px solid rgba(6,78,59,.08); box-shadow: var(--sh-sm); }
.hoe-rij { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; max-width: 980px; margin: 0 auto; }
.hoe-rij.omgekeerd .hoe-tekst { order: -1; }
.hoe-kicker { font-size: 11.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 12px; color: var(--green); }
.hoe-tekst h3 { font-family: 'Lora', serif; font-size: 28px; font-weight: 500; margin-bottom: 14px; }
.hoe-tekst h3 em { font-style: italic; color: var(--green); }
.hoe-tekst p { font-size: 15.5px; color: var(--muted); margin-bottom: 16px; }
.hoe-punten { list-style: none; }
.hoe-punten li { font-size: 14.5px; padding: 6px 0; display: flex; gap: 10px; align-items: flex-start; }
.hoe-punten li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }
.hoe-punten--dark li { color: #e4f3ea; }
.hoe-punten--dark li::before { color: #6bc99a; }
.key-outcome { display: flex; align-items: flex-start; gap: 12px; margin-top: 20px; padding: 16px; background: rgba(255,255,255,.85); border: 1px solid rgba(6,78,59,.1); border-radius: 12px; }
.key-outcome-icon { width: 24px; height: 24px; border-radius: 50%; background: var(--green); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.key-outcome-icon svg { width: 13px; height: 13px; stroke: #fff; }
.key-outcome span { font-size: 14.5px; font-weight: 600; }
.key-outcome--dark { background: rgba(255,255,255,.06); }
.key-outcome--dark .key-outcome-icon { background: rgba(185,143,69,.95); }
.key-outcome--dark span { color: #e4f3ea; }
.phone-mockup-wrapper { position: relative; width: 100%; max-width: 300px; margin: 0 auto; border-radius: 28px; box-shadow: 0 25px 50px -12px rgba(10,31,22,.25); border: 4px solid #14231c; background: #000; overflow: hidden; }
.phone-mockup-wrapper { aspect-ratio: 9 / 19.5; }
.phone-mockup-wrapper img { width: 100%; height: 100%; object-fit: cover; object-position: top center; border-radius: 24px; }
.ai-spotlight { position: relative; overflow: hidden; max-width: 980px; margin: 0 auto 88px; display: grid; grid-template-columns: 1fr auto; gap: 56px; align-items: center; background: linear-gradient(155deg, #0a1f16, #123324 65%, #1a4230); border-radius: 30px; padding: 56px 60px; }
.ai-spotlight-glow { position: absolute; top: -80px; right: -60px; width: 320px; height: 320px; border-radius: 50%; background: radial-gradient(circle, rgba(217,164,65,.18), transparent 70%); pointer-events: none; }
.ai-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 11.5px; font-weight: 700; letter-spacing: .05em; color: #f0d999; background: rgba(217,164,65,.12); border: 1px solid rgba(217,164,65,.3); border-radius: 999px; padding: 7px 14px; margin-bottom: 20px; }
.ai-spotlight h3 { font-family: 'Lora', serif; font-size: 30px; font-weight: 500; color: #fff; line-height: 1.3; margin-bottom: 16px; }
.ai-spotlight h3 em { font-style: italic; color: #f0d999; }
.ai-spotlight p { font-size: 15.5px; color: rgba(228,243,234,.85); margin-bottom: 16px; }
@media (max-width: 900px) {
  .hoe-card { padding: 32px 22px; }
  .hoe-rij { grid-template-columns: 1fr; gap: 32px; }
  .hoe-rij.omgekeerd .hoe-tekst { order: 0; }
  .ai-spotlight { grid-template-columns: 1fr; text-align: center; padding: 40px 28px; gap: 32px; }
  .ai-badge { margin-inline: auto; }
}

/* Installatiestappen */
.installeer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 980px; margin: 0 auto; }
.installeer-kaart { background: #fff; border: 1px solid var(--border); border-radius: var(--r-md); box-shadow: var(--sh-sm); padding: 32px 28px; }
.installeer-kaart h3 { font-family: 'Lora', serif; font-size: 21px; font-weight: 500; margin-bottom: 6px; display: flex; align-items: center; gap: 10px; }
.os-sub { font-size: 13px; color: var(--muted); margin-bottom: 22px; }
.inst-stap { display: flex; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--green-pale); align-items: flex-start; }
.inst-stap:last-of-type { border: none; }
.inst-nr { width: 26px; height: 26px; border-radius: 50%; background: var(--green); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; flex-shrink: 0; margin-top: 2px; }
.inst-stap p { font-size: 14.5px; }
.inst-stap p span { color: var(--muted); font-size: 13.5px; }
@media (max-width: 860px) { .installeer-grid { grid-template-columns: 1fr; } }

/* ── FAQ: natieve details/summary ────────────────────────── */
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: var(--r-sm); margin-bottom: 12px; box-shadow: var(--sh-sm); transition: box-shadow .3s, border-color .3s; }
.faq-item:hover { box-shadow: var(--sh-md); border-color: var(--green-light); }
.faq-item summary { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 20px 24px; cursor: pointer; font-size: 15.5px; font-weight: 600; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 24px; color: var(--green); flex-shrink: 0; transition: transform .3s var(--ease); }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-a { padding: 0 24px 22px; font-size: 15px; color: var(--muted); }

/* ── Formulieren ─────────────────────────────────────────── */
.form-card { background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); box-shadow: var(--sh-md); padding: 44px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 24px; }
.form-row.full { grid-template-columns: 1fr; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: 12px; font-weight: 700; color: var(--green); letter-spacing: 1px; text-transform: uppercase; }
.form-input { padding: 12px 0; border: none; border-bottom: 2px solid var(--border); font-family: inherit; font-size: 16px; color: var(--ink); outline: none; background: transparent; transition: border-color .2s; width: 100%; }
.form-input:focus { border-bottom-color: var(--green); }
textarea.form-input { resize: vertical; min-height: 120px; }
.form-msg { display: none; margin-top: 20px; padding: 16px; border-radius: var(--r-sm); font-size: 14.5px; font-weight: 600; }
.form-msg.ok { display: block; background: var(--green-pale); border-left: 3px solid var(--green); color: var(--green); }
.form-msg.err { display: block; background: #fdeeee; border-left: 3px solid var(--danger); color: var(--danger); }
@media (max-width: 700px) { .form-row { grid-template-columns: 1fr; } .form-card { padding: 28px 20px; } }

/* ── CTA & nieuwsbrief ───────────────────────────────────── */
.cta-bg { background: var(--deep); padding: 100px 40px; text-align: center; position: relative; overflow: hidden; color: #fff; }
.cta-bg h2, .cta-light h2 { font-family: 'Lora', serif; font-size: clamp(32px, 4vw, 52px); font-weight: 600; max-width: 640px; margin: 0 auto 16px; line-height: 1.15; }
.cta-bg h2 em { color: var(--green-light); font-style: italic; font-weight: 400; }
.cta-light { background: var(--off); padding: 100px 40px; text-align: center; }
.cta-light h2 em { color: var(--green); font-style: italic; font-weight: 500; }
.cta-sub { font-size: 17px; max-width: 460px; margin: 0 auto 40px; }
.cta-bg .cta-sub { color: rgba(255,255,255,.82); }
.cta-light .cta-sub { color: var(--muted); }
.news-form { display: flex; max-width: 480px; margin: 0 auto; border-radius: 12px; overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,.15); }
.news-form input { flex: 1; padding: 16px 20px; border: none; font-family: inherit; font-size: 15px; outline: none; color: var(--ink); }
.news-form button { background: #14231c; color: #fff; border: none; padding: 16px 24px; font-family: inherit; font-size: 14px; font-weight: 600; cursor: pointer; white-space: nowrap; }
.news-note { font-size: 12.5px; color: rgba(255,255,255,.72); margin-top: 14px; }
.news-thanks { display: none; max-width: 480px; margin: 0 auto; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.3); padding: 24px 32px; border-radius: var(--r-sm); }
@media (max-width: 560px) { .news-form { flex-direction: column; } }

/* ── Legal / prose-pagina's ──────────────────────────────── */
.page-hero { padding: 96px 40px 56px; background: linear-gradient(160deg, #1a2e24, #3a5a4a); color: #fff; }
.page-hero .section-label { color: var(--green-light); }
.page-hero .section-label::before { background: var(--green-light); }
.page-hero h1 { font-family: 'Lora', serif; font-size: clamp(36px, 4vw, 54px); font-weight: 600; margin-top: 12px; line-height: 1.15; }
.page-hero h1 em { color: var(--green-light); font-style: italic; font-weight: 400; }
.page-hero p { font-size: 17px; color: rgba(255,255,255,.82); margin-top: 16px; max-width: 580px; }
.page-hero--light { background: radial-gradient(ellipse 1000px 550px at 15% -15%, rgba(52,168,110,.13), transparent 60%), radial-gradient(ellipse 700px 500px at 100% 20%, rgba(185,143,69,.10), transparent 65%), var(--canvas); color: var(--ink); }
.page-hero--light .section-label { color: var(--green); }
.page-hero--light .section-label::before { background: var(--green); }
.page-hero--light h1 { color: var(--ink); }
.page-hero--light h1 em { color: var(--green); }
.page-hero--light p { color: var(--muted); }
.prose { padding: 80px 40px; max-width: 860px; margin: 0 auto; font-size: 15.5px; color: var(--muted); }
.prose h2 { font-family: 'Lora', serif; font-size: 24px; font-weight: 600; color: var(--ink); margin: 40px 0 12px; }
.prose ul { padding-left: 20px; margin: 12px 0; }
.prose li { margin-bottom: 8px; }
.prose .note { margin-top: 48px; padding: 20px 24px; background: var(--green-pale); border-left: 3px solid var(--green); font-size: 14px; border-radius: 0 var(--r-sm) var(--r-sm) 0; }
@media (max-width: 700px) { .prose, .page-hero { padding-inline: 22px; } }

/* Foto's */
.home-photo-wrap { position: relative; max-width: 640px; margin: 0 auto; padding: 36px 28px 44px 8px; }
.photo-shape { position: absolute; pointer-events: none; }
.photo-shape--blob {
  top: -20px; left: -6%; width: 62%; height: 78%;
  background: var(--gold); opacity: .28;
  border-radius: 200px 200px 0 0;
  z-index: 0;
}
.photo-shape--circle {
  right: 2%; bottom: -34px; width: 168px; height: 168px;
  background: var(--green-light); opacity: .85;
  border-radius: 50%;
  z-index: 2;
}
.home-photo-card { position: relative; z-index: 1; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-md); aspect-ratio: 3/2; }
.home-photo-card img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 640px) {
  .home-photo-wrap { padding: 24px 18px 32px 4px; }
  .photo-shape--circle { width: 108px; height: 108px; }
}
.contact-photo { max-width: 240px; margin: 32px auto 0; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-lg); }

/* Waarden / stats (Over ons) */
.stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.stat-box { padding: 40px 28px; text-align: center; background: #fff; border: 1px solid var(--border); border-radius: var(--r-md); box-shadow: var(--sh-sm); }
.stat-num { font-family: 'Lora', serif; font-size: 56px; font-weight: 700; line-height: 1; margin-bottom: 10px; color: var(--green); }
.stat-lbl { font-size: 13.5px; color: var(--muted); }
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px; }
.value-box { background: #fff; padding: 32px; border: 1px solid var(--border); border-radius: 18px; box-shadow: var(--sh-sm); }
.value-box h3 { font-family: 'Lora', serif; font-size: 20px; font-weight: 600; margin-bottom: 10px; }
.value-box p { font-size: 14.5px; color: var(--muted); }
.value-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--green-pale); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.value-icon svg { width: 22px; height: 22px; stroke: var(--green); }
@media (max-width: 860px) { .stats-row, .values-grid { grid-template-columns: 1fr; } }

/* ── Footer ──────────────────────────────────────────────── */
footer { background: var(--ink); color: #fff; padding: 64px 40px 36px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-logo { font-family: 'Lora', serif; font-size: 20px; color: var(--green-light); display: inline-flex; align-items: center; gap: 9px; margin-bottom: 12px; }
.footer-desc { font-size: 13.5px; color: rgba(255,255,255,.62); max-width: 240px; }
.footer-col h4 { font-size: 11.5px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,.55); margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { text-decoration: none; font-size: 14.5px; color: rgba(255,255,255,.75); transition: color .2s; }
.footer-col a:hover { color: var(--green-light); }
.footer-bottom { display: flex; justify-content: space-between; font-size: 12.5px; color: rgba(255,255,255,.55); flex-wrap: wrap; gap: 8px; }
.footer-bottom a { color: rgba(255,255,255,.65); }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } .footer-bottom { flex-direction: column; } }

/* ── App-overlay ─────────────────────────────────────────── */
#APP-OVERLAY { display: none; position: fixed; inset: 0; z-index: 9999; background: var(--green-pale); }
#APP-OVERLAY.on { display: block; }
#APP-FRAME { width: 100%; height: 100%; border: none; }
#APP-CLOSE { position: absolute; top: 12px; right: 12px; z-index: 10; display: inline-flex; align-items: center; gap: 6px; height: 38px; padding: 0 16px 0 14px; background: rgba(30,40,32,.55); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); color: #fff; border: none; border-radius: var(--r-sm); font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 600; cursor: pointer; opacity: 1; transition: opacity .15s ease; }
/* Verborgen zolang de app (in de iframe) een modal open heeft -- zie
   assets/site.js. Geen z-index-truc kan dit oplossen: de iframe is één
   laag in de stapelvolgorde van deze pagina, dus deze knop staat altijd
   boven alles wat erin gebeurt. */
#APP-CLOSE.hidden-for-modal { opacity: 0; pointer-events: none; }

/* ── Reduced motion ──────────────────────────────────────── */
/* ══ Vergoedingscheck v2 (v20) ═════════════════════════════ */
.check-q-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--green-pale); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.check-q-icon svg { width: 22px; height: 22px; stroke: var(--green); }
.check-fade { transition: opacity .28s ease, transform .28s var(--ease); }
.check-fade.out { opacity: 0; transform: translateY(6px); }
.result-bar-row { margin-bottom: 18px; }
.result-bar-row .lbl { display: flex; justify-content: space-between; font-size: 12.5px; font-weight: 600; color: var(--muted); margin-bottom: 6px; }
.result-bar-track { height: 8px; background: var(--green-pale); border-radius: 4px; overflow: hidden; }
.result-bar-fill { display: block; height: 100%; width: 0%; background: linear-gradient(90deg, var(--green), var(--gold)); border-radius: 4px; transition: width 1s var(--ease) .15s; }
.check-list svg { width: 17px; height: 17px; stroke: var(--green); flex-shrink: 0; margin-top: 2px; }
.check-email { display: flex; gap: 10px; margin-top: 18px; flex-wrap: wrap; }
.check-email input { flex: 1; min-width: 200px; padding: 12px 14px; border: 1.5px solid var(--border); border-radius: 10px; font-family: inherit; font-size: 14.5px; }
.check-email button { background: var(--ink); color: #fff; border: none; border-radius: 10px; padding: 12px 18px; font-family: inherit; font-size: 13.5px; font-weight: 700; cursor: pointer; white-space: nowrap; }
.check-testi { margin-top: 22px; padding: 18px 20px; background: var(--green-pale); border-radius: var(--r-sm); font-size: 14px; color: var(--ink); }
.check-testi b { color: var(--green); }
@media (prefers-reduced-motion: reduce) { .check-fade, .result-bar-fill { transition: none; } }
@media (prefers-reduced-motion: reduce) { #APP-CLOSE { transition: none; } }
@media (prefers-reduced-motion: reduce) {
  .rv { transition: none !important; opacity: 1 !important; transform: none !important; }
  .hero-kicker i, .micro-scan-beam { animation: none !important; }
  .btn-primary:hover, .btn-hero-ghost:hover, .bento-card:hover, .plan:hover { transform: none; }
}

/* ── Cinematic: woordwissel & tellende cijferband ────────── */
#HERO-CYCLE { display: inline-block; min-width: 5.4ch; text-align: left;
  transition: opacity .38s ease, transform .38s var(--ease); }
#HERO-CYCLE.out { opacity: 0; transform: translateY(8px); }
.stats-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  max-width: 1040px; margin: 0 auto 44px; position: relative; }
.stats-band .st b { display: block; font-family: 'Lora', serif;
  font-size: clamp(26px, 3.6vw, 50px); font-weight: 700; line-height: 1.1;
  color: #f0d999; font-variant-numeric: tabular-nums; white-space: nowrap; }
.stats-band .st span { display: block; margin-top: 8px; font-size: 13.5px;
  font-weight: 600; color: rgba(255,255,255,.85); max-width: 200px; }
@media (max-width: 860px) { .stats-band { grid-template-columns: 1fr 1fr; gap: 28px 20px; } }
@media (prefers-reduced-motion: reduce) { #HERO-CYCLE { transition: none; } }

/* ══ Scroll-ervaring (v16) ═════════════════════════════════ */

/* 2a. Leesvoortgang — browser-eigen waar mogelijk, JS als vangnet */
#SCROLL-PROGRESS { position: fixed; top: 0; left: 0; right: 0; height: 3px;
  z-index: 1002; background: linear-gradient(90deg, var(--green), var(--gold));
  transform-origin: 0 50%; transform: scaleX(0); pointer-events: none; }
@supports (animation-timeline: scroll()) {
  #SCROLL-PROGRESS { animation: mz-progress linear both; animation-timeline: scroll(root); }
  @keyframes mz-progress { from { transform: scaleX(0); } to { transform: scaleX(1); } }
}

/* 1. Filmische hero-uitgang */
.hero-media { will-change: transform, filter; transform-origin: 50% 60%; }
.hero-inner { will-change: transform; }

/* 2b. Gordijn-onthulling van sectiekoppen */
/* Zelfde vangnet als bij .rv: sowieso zichtbaar na 3s, ook zonder JS. */
.wipe { clip-path: inset(-6% 102% -6% -2%); transition: clip-path .9s var(--ease); animation: wipe-failsafe 0s 3s forwards; }
.wipe.vis { clip-path: inset(-6% -2% -6% -2%); }
@keyframes wipe-failsafe { to { clip-path: inset(-6% -2% -6% -2%); } }

/* 3. Stapelende herkenningskaarten */
.stack { display: flex; flex-direction: column; gap: 20px; }
.stack-card { position: sticky; top: calc(96px + var(--i, 0) * 18px);
  display: flex; gap: 20px; background: #fff; border: 1.5px solid var(--border);
  border-radius: var(--r-md); padding: 26px 30px;
  box-shadow: 0 -10px 24px -18px rgba(30,40,32,.28), var(--sh-md); }
.stack-card .pain-n { font-family: 'Lora', serif; font-size: 15px;
  color: var(--green); font-weight: 700; flex-shrink: 0; margin-top: 3px; }
.stack-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 5px; }
.stack-card p { font-size: 14.5px; color: var(--muted); }
.stack-spacer { height: 8vh; }
.pain-sticky { position: sticky; top: 96px; }
@media (max-width: 900px) { .pain-sticky { position: static; } }

/* 4. Levende bento-kaarten (gaan aan zodra .vis verschijnt) */
.micro-cal .micro-cal-row { opacity: 0; transform: translateX(16px);
  transition: opacity .5s ease, transform .5s var(--ease); }
.bento-card.vis .micro-cal-row { opacity: 1; transform: none; }
.bento-card.vis .micro-cal-row:nth-of-type(2) { transition-delay: .14s; }
.bento-card.vis .micro-cal-row:nth-of-type(3) { transition-delay: .28s; }
.micro-notif { opacity: 0; transform: translateY(12px);
  transition: opacity .5s ease .1s, transform .5s var(--ease) .1s; }
.bento-card.vis .micro-notif { opacity: 1; transform: none; }
.micro-task .micro-check { transform: scale(0); }
.bento-card.vis .micro-task .micro-check { animation: mz-pop .5s cubic-bezier(.2,.8,.3,1.4) .35s both; }
@keyframes mz-pop { from { transform: scale(0); } 70% { transform: scale(1.18); } to { transform: scale(1); } }
.micro-scan-beam { animation-play-state: paused; }
.bento-card.vis .micro-scan-beam { animation-play-state: running; }
.micro-scan-status { opacity: 0; transition: opacity .5s ease .9s; }
.bento-card.vis .micro-scan-status { opacity: 1; }

/* 5. Diepte-gloed in de bewijsband */
.proof-band::before { transform: translateY(var(--glow-y, 0)); will-change: transform; }

/* Rust voor wie daarom vraagt — alles valt terug op de kalme site */
@media (prefers-reduced-motion: reduce) {
  #SCROLL-PROGRESS { display: none; }
  .wipe { clip-path: none; transition: none; }
  .hero-media, .hero-inner { transform: none !important; filter: none !important; }
  .micro-cal .micro-cal-row, .micro-notif, .micro-scan-status { opacity: 1; transform: none; transition: none; }
  .micro-task .micro-check { transform: none; animation: none; }
  .stack-card { position: static; }
}
