/* =============================================================================
   Websprong — style.css
   -----------------------------------------------------------------------------
   Eén georganiseerd stylesheet. Structuur:

   01. Design tokens (CSS-variabelen)  → branding wissel je HIER, nergens anders
   02. Reset & basis
   03. Typografie
   04. Layout-helpers (container, section, grid)
   05. Knoppen
   06. Header & navigatie
   07. Hero
   08. Trust-strip
   09. Sectie-patronen (kaarten, stappen, prijzen)
   10. Before/after-slider
   11. Over ons & testimonials
   12. FAQ-accordion
   13. Contact & formulier
   14. Footer
   15. Sticky mobiele bottom-bar
   16. Scroll-reveals & motion
   17. Toegankelijkheid & reduced motion
   18. Print
   19. Premium-upgrade (hero-aurora, bento-features, testimonial-marquee)
   ========================================================================== */

/* =============================================================================
   00. FONTS (self-hosted)
   Zelf gehost i.p.v. Google Fonts: sneller (geen extra DNS/TLS naar derde
   partij, geen render-blocking stylesheet) en AVG-vriendelijk (geen
   IP-doorgifte aan Google). Latin-subset dekt Nederlands volledig.
   ========================================================================== */
@font-face {
  font-family: "Sora";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/assets/fonts/sora-600.woff2") format("woff2");
}

@font-face {
  font-family: "Sora";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/assets/fonts/sora-700.woff2") format("woff2");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/inter-400.woff2") format("woff2");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/assets/fonts/inter-500.woff2") format("woff2");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/assets/fonts/inter-600.woff2") format("woff2");
}

/* =============================================================================
   01. DESIGN TOKENS
   Wissel per klant alleen dit blok om (kleuren, fonts, radius) en de hele
   site kleurt mee. Raak de rest van het stylesheet niet aan.
   ========================================================================== */
:root {
  /* --- Kleuren --------------------------------------------------------- */
  --canvas: #FAF9F6;         /* warm gebroken-wit: dominante achtergrond   */
  --surface: #FFFFFF;        /* kaarten en verhoogde vlakken               */
  --ink: #16202E;            /* primaire tekst — navy-getint (deelt DNA met --navy) */
  --navy: #12284C;           /* koppen, vertrouwenszones, footer           */
  --navy-deep: #0D1E3A;      /* donkerdere navy voor gradaties             */
  --accent: #F1671F;         /* UITSLUITEND voor CTA's en actie-elementen  */
  --accent-tekst: #B8460C;   /* accent ALS TEKST op licht: 5,09:1 = WCAG AA  */
  --accent-hover: #E85C13;   /* hover-variant; houdt AA-contrast met --ink */
  --muted: #5B6472;          /* secundaire tekst (AA op canvas)            */
  --line: #E8E4DC;           /* hairlines — ontgeeld warm-neutraal (strakker) */
  --navy-tint: #EEF2F8;      /* zachte navy-tint voor chips/achtergronden  */
  --success: #1E7F4F;        /* formulier-succes                           */
  --error: #C0392B;          /* formulier-fouten                           */

  /* Tekstkleuren op donkere (navy) secties */
  --on-navy: #F4F6FA;
  --on-navy-muted: #A9B6CB;

  /* --- Typografie ------------------------------------------------------ */
  --font-head: "Sora", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, sans-serif;

  /* Vloeiende schaal (mobiel → desktop) via clamp() */
  --text-xs: 0.8125rem;                            /* 13px labels/microcopy */
  --text-sm: 0.9375rem;                            /* 15px kleine tekst     */
  --text-base: clamp(1rem, 0.97rem + 0.15vw, 1.0625rem);  /* 16–17px body  */
  --text-lg: clamp(1.0625rem, 1.0rem + 0.3vw, 1.1875rem); /* 17–19px leads */
  --text-xl: clamp(1.25rem, 1.13rem + 0.55vw, 1.5rem);    /* 20–24px h3    */
  --text-2xl: clamp(1.375rem, 1.2rem + 1.2vw, 2rem);      /* 22–32px h2    */
  --text-3xl: clamp(2rem, 1.5rem + 2.2vw, 3rem);          /* 32–48px h1    */

  --leading-body: 1.65;
  --leading-head: 1.12;
  --tracking-head: -0.022em;

  /* --- Spacing & maten ------------------------------------------------- */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --section-y: clamp(4.5rem, 3.25rem + 6vw, 9rem);   /* verticale sectie-lucht */
  --container: 71.25rem;                           /* 1140px                */
  --container-pad: clamp(1.25rem, 4vw, 2rem);

  /* --- Vorm & diepte --------------------------------------------------- */
  --radius-sm: 0.5rem;
  --radius: 1rem;
  --radius-lg: 1.5rem;
  /* Gelaagde, navy-getinte schaduwen: contactlaag + diffuse laag (premium) */
  --shadow-sm: 0 1px 2px rgba(18, 40, 76, 0.05), 0 3px 10px -2px rgba(18, 40, 76, 0.05);
  --shadow: 0 2px 4px rgba(18, 40, 76, 0.05), 0 14px 34px -10px rgba(18, 40, 76, 0.14);
  --shadow-lg: 0 4px 8px rgba(18, 40, 76, 0.06), 0 34px 70px -18px rgba(18, 40, 76, 0.22);

  /* --- Motion ---------------------------------------------------------- */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 240ms;
  --dur-slow: 600ms;

  /* --- Componenthoogtes ------------------------------------------------ */
  --header-h: 4.5rem;
  --bottombar-h: 4.8125rem; /* gemeten werkelijke hoogte (12+52+12+1px) */
}

/* =============================================================================
   01b. STIJLWISSEL-DEMO — vier smaken van dezelfde site
   -----------------------------------------------------------------------------
   Dit blok is de "live demo" van ons verkoopverhaal: de hele site draait op
   de tokens uit blok 01, dus één data-theme-attribuut op <html> geeft de
   site een compleet ander karakter. Standaard (geen attribuut) = Warm licht.
   Voor klantsites: dit hele blok + de switcher-UI (05b) mag eruit.
   ========================================================================== */

/* --- NACHT: diep donker met goud — luxe en exclusief ------------------- */
[data-theme="nacht"] {
  color-scheme: dark;
  --canvas: #0B1220;
  --surface: #141D30;
  --ink: #E8EDF5;
  --navy: #F2F5FA;            /* koppen worden wit */
  --navy-deep: #060B14;
  --accent: #E8B54D;          /* goud */
  --accent-tekst: #E8B54D;   /* nacht: goud op donker haalt al ruim AA */
  --accent-hover: #F0C566;
  --muted: #9AA8BD;
  --line: #263349;
  --navy-tint: #1C2740;
  --on-navy: #F4F6FA;
  --on-navy-muted: #A9B6CB;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4);
  --shadow: 0 6px 24px -8px rgba(0, 0, 0, 0.55);
  --shadow-lg: 0 24px 48px -16px rgba(0, 0, 0, 0.65);
}

[data-theme="nacht"] .site-header::before {
  background: rgba(11, 18, 32, 0.85);
}

[data-theme="nacht"] .section--navy,
[data-theme="nacht"] .site-footer {
  /* --navy is in dit thema wit (koppen); de donkere zones krijgen
     daarom hun eigen vaste gradient */
  background: linear-gradient(180deg, #16213A 0%, #0E1526 100%);
}

[data-theme="nacht"] .skip-link {
  background: #141D30;
  color: #E8EDF5;
}

[data-theme="nacht"] .style-fab {
  background: var(--accent);
  color: #1A1D21;
}

[data-theme="nacht"] .bottom-bar {
  background: rgba(20, 29, 48, 0.92);
}

/* Donkere tekst op goud (8,9:1) — de licht-geworden --ink zou hier
   licht-op-goud opleveren en dat faalt AA */
[data-theme="nacht"] .btn--primary {
  color: #1A1D21;
  box-shadow: 0 8px 20px -8px rgba(232, 181, 77, 0.45);
}

[data-theme="nacht"] .btn--primary:hover {
  color: #1A1D21;
  box-shadow: 0 12px 26px -8px rgba(232, 181, 77, 0.5);
}

[data-theme="nacht"] .stars { color: #E8B54D; }

[data-theme="nacht"] :focus-visible {
  outline-color: #E8B54D;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.6);
}

/* --- BOLD: fel, speels, energiek ---------------------------------------- */
[data-theme="bold"] {
  --canvas: #FFF6EC;
  --surface: #FFFFFF;
  --ink: #221533;
  --navy: #4C1D95;            /* koppen worden diep violet */
  --navy-deep: #3B1678;
  --accent: #D6186B;          /* magenta */
  --accent-tekst: #B01055;   /* speels: magenta verdiept voor AA op licht */
  --accent-hover: #BC1560;
  --muted: #6B5E80;
  --line: #EBDCF3;
  --navy-tint: #F3E8FF;
  --on-navy: #FAF5FF;
  --on-navy-muted: #C4B5FD;
  --radius: 1.25rem;
  --radius-lg: 2rem;
  --shadow-sm: 0 2px 4px rgba(76, 29, 149, 0.08);
  --shadow: 0 8px 28px -8px rgba(76, 29, 149, 0.18);
  --shadow-lg: 0 28px 56px -16px rgba(76, 29, 149, 0.25);
}

/* Magenta is te donker voor donkere knoptekst: hier juist wit (AA: 5,2:1) */
[data-theme="bold"] .btn--primary,
[data-theme="bold"] .btn--primary:hover {
  color: #FFFFFF;
  box-shadow: 0 8px 20px -8px rgba(214, 24, 107, 0.5);
}

[data-theme="bold"] .site-header::before {
  background: rgba(255, 246, 236, 0.88);
}

[data-theme="bold"] .eyebrow {
  color: #BC1560; /* donkerder dan het accent: haalt 4,5:1 op de roze pill */
  background: #FCE7F3;
  padding: 0.35em 0.9em;
  border-radius: 999px;
}

[data-theme="bold"] .section--navy .eyebrow {
  color: #FAF5FF;
  background: rgba(250, 245, 255, 0.14);
}

/* --- SIGNATURE: de showstopper — glas, gloed en beweging ---------------- */
[data-theme="signature"] {
  color-scheme: dark;
  --canvas: #0A0B14;
  --surface: rgba(255, 255, 255, 0.055);
  --ink: #EEF0FF;
  --navy: #FFFFFF;
  --navy-deep: #05060C;
  --accent: #6D28D9;          /* violet — AA met witte tekst (7,1:1) */
  --accent-tekst: #8B5CF6;   /* immersive: lichter violet op donkere canvas */
  --accent-hover: #7C3AED;
  --muted: #A9B0D6;
  --line: rgba(255, 255, 255, 0.14);
  --navy-tint: rgba(124, 92, 255, 0.16);
  --on-navy: #F4F5FF;
  --on-navy-muted: #B9BFE8;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.5);
  --shadow: 0 8px 32px -8px rgba(109, 40, 217, 0.35);
  --shadow-lg: 0 32px 64px -16px rgba(109, 40, 217, 0.4);
}

/* Levende achtergrond: twee trage radiale gloedvlekken.
   background-color blijft de basis (ook voor contrastberekening). */
[data-theme="signature"] body {
  background-color: #0A0B14;
  background-image:
    radial-gradient(50rem 40rem at 15% -10%, rgba(124, 92, 255, 0.22), transparent 60%),
    radial-gradient(45rem 38rem at 110% 30%, rgba(34, 211, 238, 0.14), transparent 60%),
    radial-gradient(40rem 44rem at 40% 120%, rgba(214, 24, 156, 0.12), transparent 60%);
  background-attachment: fixed;
  animation: sig-drift 40s ease-in-out infinite alternate;
}

@keyframes sig-drift {
  from { background-position: 0% 0%, 0% 0%, 0% 0%; }
  to { background-position: 12% 8%, -10% 6%, 8% -10%; }
}

/* Glas-kaarten */
[data-theme="signature"] .card,
[data-theme="signature"] .price-card,
[data-theme="signature"] .form-card,
[data-theme="signature"] .step,
[data-theme="signature"] .faq-item,
[data-theme="signature"] .contact-channel,
[data-theme="signature"] .trust-strip {
  background: rgba(255, 255, 255, 0.055);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  color: var(--ink);
}

[data-theme="signature"] .btn--primary,
[data-theme="signature"] .btn--primary:hover {
  color: #FFFFFF;
  box-shadow: 0 0 24px rgba(124, 92, 255, 0.55), 0 8px 24px -8px rgba(0, 0, 0, 0.6);
}

/* Gradient-kop in de hero: hét "dit kan dus ook"-moment */
[data-theme="signature"] .hero-copy h1 {
  background: linear-gradient(95deg, #C4B5FD 0%, #7DE9FF 55%, #F0ABFC 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

[data-theme="signature"] .site-header::before {
  background: rgba(10, 11, 20, 0.7);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

[data-theme="signature"] .section--navy {
  background: linear-gradient(180deg, rgba(124, 92, 255, 0.12) 0%, rgba(10, 11, 20, 0) 100%);
}

[data-theme="signature"] .site-footer {
  background: linear-gradient(180deg, rgba(124, 92, 255, 0.14) 0%, #05060C 100%);
}

[data-theme="signature"] .skip-link {
  background: #1A1C30;
  color: #EEF0FF;
}

[data-theme="signature"] .style-fab {
  background: var(--accent);
  color: #FFFFFF;
}

[data-theme="signature"] .bottom-bar { background: rgba(10, 11, 20, 0.8); }

[data-theme="signature"] .stars { color: #E8B54D; }

[data-theme="signature"] :focus-visible {
  outline-color: #7DE9FF;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.6);
}

/* Tilt-effect (JS zet --tilt-x/--tilt-y op kaarten; alleen desktop+muis) */
[data-theme="signature"] .card,
[data-theme="signature"] .price-card,
[data-theme="signature"] .step {
  transform: perspective(50rem) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform 160ms ease-out, box-shadow var(--dur) var(--ease);
}

/* Mobiel: blur en gloed temperen (performance) */
@media (max-width: 56rem) {
  [data-theme="signature"] .card,
  [data-theme="signature"] .price-card,
  [data-theme="signature"] .form-card,
  [data-theme="signature"] .step,
  [data-theme="signature"] .faq-item,
  [data-theme="signature"] .contact-channel,
  [data-theme="signature"] .trust-strip {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    background: rgba(24, 26, 44, 0.92);
  }

  [data-theme="signature"] body { background-attachment: scroll; }
}

@media (prefers-reduced-motion: reduce) {
  [data-theme="signature"] body { animation: none; }
}

/* =============================================================================
   02. RESET & BASIS
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  /* Ankers niet achter de sticky header laten verdwijnen */
  scroll-padding-top: calc(var(--header-h) + 1rem);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--leading-body);
  color: var(--ink);
  background-color: var(--canvas);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
svg,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--navy);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover { color: var(--ink); }

ul[role="list"],
ol[role="list"] {
  list-style: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: none;
  color: inherit;
}

input,
textarea,
select {
  font: inherit;
  color: inherit;
}

::selection {
  background: var(--navy);
  color: var(--on-navy);
}

/* Zichtbare focus voor toetsenbordgebruikers (WCAG).
   Navy ring + witte halo: werkt op canvas, witte kaarten én navy-secties
   (accent haalde de 3:1 non-text-contrast-eis niet op licht). */
:focus-visible {
  outline: 3px solid var(--navy);
  outline-offset: 3px;
  border-radius: 2px;
  box-shadow: 0 0 0 3px #FFFFFF;
}

.section--navy :focus-visible,
.site-footer :focus-visible {
  outline-color: #FFFFFF;
  box-shadow: 0 0 0 3px var(--navy);
}

/* Skip-link voor screenreaders/toetsenbord */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 100;
  padding: 0.75rem 1.25rem;
  background: var(--navy);
  color: var(--on-navy);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  text-decoration: none;
  transition: top var(--dur) var(--ease);
}

.skip-link:focus-visible {
  top: 0;
  color: var(--on-navy);
}

/* =============================================================================
   03. TYPOGRAFIE
   ========================================================================== */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: var(--leading-head);
  letter-spacing: var(--tracking-head);
  color: var(--navy);
  font-weight: 700;
  text-wrap: balance;
}

h1 { font-size: var(--text-3xl); }
h2 { font-size: var(--text-2xl); }
h3 { font-size: var(--text-xl); }
h4 { font-size: var(--text-lg); }

p { max-width: 65ch; }

.lead {
  font-size: var(--text-lg);
  color: var(--muted);
  max-width: 58ch;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: var(--space-3);
}

.text-muted { color: var(--muted); }

.microcopy {
  font-size: var(--text-xs);
  color: var(--muted);
}

/* =============================================================================
   04. LAYOUT-HELPERS
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.section {
  padding-block: var(--section-y);
}

.section--tight { padding-block: calc(var(--section-y) * 0.6); }

/* Donkere navy-sectie: het premium diepte-accent (max 1x + footer) */
.section--navy {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--on-navy);
}

.section--navy h2,
.section--navy h3 { color: var(--on-navy); }

.section--navy .lead,
.section--navy .text-muted,
.section--navy .eyebrow { color: var(--on-navy-muted); }

.section-head {
  max-width: 46rem;
  margin-bottom: clamp(2.5rem, 2rem + 2vw, 4rem);
}

.section-head--center {
  margin-inline: auto;
  text-align: center;
}

.section-head--center p { margin-inline: auto; }

.section-head h2 { margin-bottom: var(--space-4); }

/* Responsieve grids voor kaarten */
.grid {
  display: grid;
  gap: clamp(1rem, 0.8rem + 1vw, 1.5rem);
}

.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 64rem) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }

  /* Bij 3 kaarten in 2 kolommen: laat de wees-kaart niet half-leeg
     linksonder bungelen maar centreer hem over de volle breedte */
  .grid--3 > :last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 32rem;
    justify-self: center;
    width: 100%;
  }
}

@media (max-width: 40rem) {
  .grid--3 > :last-child:nth-child(odd) {
    grid-column: auto;
    max-width: none;
    justify-self: stretch;
  }
}

@media (max-width: 40rem) {
  .grid--4,
  .grid--3,
  .grid--2 { grid-template-columns: 1fr; }
}

/* =============================================================================
   05. KNOPPEN
   Het amber-accent is EXCLUSIEF voor actie-elementen (.btn--primary).
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 0.9em 1.6em;
  font-family: var(--font-head);
  font-size: var(--text-sm);
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  border-radius: 999px;
  border: 1.5px solid transparent;
  transition:
    background-color var(--dur) var(--ease),
    color var(--dur) var(--ease),
    border-color var(--dur) var(--ease),
    transform var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease);
}

/* Primair: de enige plek op de site met accent-kleur als vlak.
   Donkere tekst i.p.v. wit: wit op dit amber haalt WCAG AA niet (3.1:1),
   --ink haalt 5.4:1 — en het oogt net zo premium. */
.btn--primary {
  background: var(--accent);
  color: var(--ink);
  box-shadow: 0 8px 20px -8px rgba(241, 103, 31, 0.55);
}

.btn--primary:hover {
  background: var(--accent-hover);
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px -8px rgba(241, 103, 31, 0.6);
}

.btn--primary:active { transform: translateY(0); }

/* Secundair: rustige navy-outline, geen concurrentie met de CTA */
.btn--ghost {
  border-color: var(--line);
  color: var(--navy);
  background: var(--surface);
}

.btn--ghost:hover {
  border-color: var(--navy);
  transform: translateY(-2px);
}

/* Variant op navy-achtergrond */
.section--navy .btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--on-navy);
}

.section--navy .btn--ghost:hover { border-color: #FFFFFF; }

.btn--lg {
  padding: 1.05em 1.9em;
  font-size: var(--text-base);
}

/* Pijltje in knoppen schuift subtiel mee op hover */
.btn .btn-arrow { transition: transform var(--dur) var(--ease); }
.btn:hover .btn-arrow { transform: translateX(3px); }

/* =============================================================================
   05b. STIJLWISSEL-UI — chips in de hero + zwevende paletknop
   Hoort bij themablok 01b; samen te verwijderen voor klantsites.
   ========================================================================== */
.style-switcher {
  margin-top: var(--space-6);
  padding-top: var(--space-5);
  border-top: 1px dashed var(--line);
  max-width: 34rem;
}

.style-switcher-label {
  font-family: var(--font-head);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: var(--space-3);
}

.style-chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-3);
}

.style-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.55em 1em;
  font-family: var(--font-head);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--navy);
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: 999px;
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.style-chip:hover {
  border-color: var(--navy);
  transform: translateY(-1px);
}

.style-chip[aria-pressed="true"] {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px var(--navy-tint);
}

/* Tweekleurige swatch: basiskleur + accentkleur van het thema */
.style-chip .swatch {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  flex: none;
  background: linear-gradient(135deg, var(--sw) 0 50%, var(--sw2) 50% 100%);
  border: 1px solid rgba(0, 0, 0, 0.15);
}

/* Zwevende paletknop (alleen desktop; mobiel heeft de hero-chips) */
.style-fab-wrap {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 45;
  display: none;
}

@media (min-width: 56.0625rem) {
  .style-fab-wrap { display: block; }
}

.style-fab {
  display: grid;
  place-items: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  background: var(--navy);
  color: var(--on-navy);
  box-shadow: var(--shadow);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.style-fab:hover {
  transform: translateY(-2px) rotate(-8deg);
  box-shadow: var(--shadow-lg);
}

.style-fab svg {
  width: 1.5rem;
  height: 1.5rem;
}

.style-pop {
  position: absolute;
  right: 0;
  bottom: calc(100% + 0.75rem);
  display: grid;
  gap: var(--space-2);
  padding: var(--space-3);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 13rem;
}

.style-pop[hidden] { display: none; }

.style-pop .style-chip {
  width: 100%;
  justify-content: flex-start;
}

.style-pop .style-pop-label {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--muted);
  padding-inline: 0.25rem;
}

/* =============================================================================
   06. HEADER & NAVIGATIE
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

/* Achtergrond + blur op een pseudo-element, NIET op de header zelf:
   backdrop-filter op een voorouder maakt die het containing block voor
   position:fixed — dan zou het mobiele menu alleen de header bedekken
   in plaats van de hele viewport. */
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(250, 249, 246, 0.88); /* fallback voor oudere browsers */
  background: color-mix(in srgb, var(--canvas) 88%, transparent);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

/* JS zet .is-scrolled zodra de pagina scrolt */
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}

.site-header .container {
  display: flex;
  align-items: center;
  gap: var(--space-5);
}

.brand {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: var(--tracking-head);
  color: var(--navy);
  text-decoration: none;
  white-space: nowrap;
}

.brand .brand-dot { color: var(--accent); }

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 1.75rem);
  margin-inline: auto;
}

.site-nav a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  padding-block: 0.5rem;
  border-bottom: 2px solid transparent;
  transition: border-color var(--dur) var(--ease), color var(--dur) var(--ease);
}

.site-nav a:hover {
  color: var(--navy);
  border-bottom-color: var(--navy);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-left: auto;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  white-space: nowrap;
  /* 44x44px raakvlak (mobiel toont alleen het 18px-icoon); de negatieve
     margin heft de padding visueel op zodat de layout niet verschuift */
  padding: 0.8125rem;
  margin: -0.8125rem;
}

.header-phone:hover { text-decoration: underline; }

/* --- Hamburger (alleen mobiel) --------------------------------------- */
.nav-toggle {
  display: none;
  position: relative;
  z-index: 60;
  width: 2.75rem;
  height: 2.75rem;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
}

.nav-toggle .bars,
.nav-toggle .bars::before,
.nav-toggle .bars::after {
  content: "";
  display: block;
  position: absolute;
  width: 1.375rem;
  height: 2px;
  border-radius: 2px;
  background: var(--navy);
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}

.nav-toggle .bars::before { transform: translateY(-7px); }
.nav-toggle .bars::after { transform: translateY(7px); }

.nav-toggle[aria-expanded="true"] .bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .bars::before { transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .bars::after { transform: rotate(-45deg); }

@media (max-width: 56rem) {
  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 55;
    flex-direction: column;
    justify-content: center;
    gap: var(--space-5);
    background: var(--canvas);
    transform: translateY(-100%);
    visibility: hidden;
    transition: transform var(--dur-slow) var(--ease), visibility 0s var(--dur-slow);
  }

  .site-nav.is-open {
    transform: translateY(0);
    visibility: visible;
    transition: transform var(--dur-slow) var(--ease);
  }

  .site-nav a {
    font-size: var(--text-xl);
    font-family: var(--font-head);
  }

  .nav-toggle { display: inline-flex; }

  .header-phone .phone-label { display: none; }

  /* Header-CTA verbergen op mobiel: de sticky bottom-bar neemt het over */
  .header-cta { display: none; }
}

/* =============================================================================
   07. HERO
   ========================================================================== */
.hero {
  padding-block: clamp(2.5rem, 2rem + 3vw, 5.5rem) var(--section-y);
  overflow: hidden;
}

.hero .container {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2rem, 3vw, 4rem);
  align-items: center;
}

/* Iets compacter dan --text-3xl: de headline is lang, dit houdt hem
   krachtig zonder dat hij het hele scherm opeist */
.hero-copy h1 {
  font-size: clamp(2rem, 1.5rem + 2.2vw, 3rem);
  margin-bottom: var(--space-5);
}

.hero-copy .lead { margin-bottom: var(--space-6); }

.hero-cta-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-3);
}

.hero-visual { position: relative; }

.hero-visual img,
.hero-visual svg {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

@media (max-width: 56rem) {
  .hero .container { grid-template-columns: 1fr; }

  /* Mobiel-first: belofte + CTA boven de vouw, visual eronder.
     Compacter zodat belofte + CTA ook op kleine schermen (375x667,
     360x640) volledig vrij blijven van de sticky bottom-bar. */
  .hero { padding-block: 1.25rem var(--section-y); }

  .hero-copy h1 {
    font-size: clamp(1.75rem, 1.3rem + 2vw, 2.25rem);
    margin-bottom: var(--space-4);
  }

  .hero-copy .lead { margin-bottom: var(--space-5); }
  .hero-visual { order: 2; }
  .hero-copy { order: 1; }
}

/* =============================================================================
   08. TRUST-STRIP
   ========================================================================== */
.trust-strip {
  border-block: 1px solid var(--line);
  background: var(--surface);
  padding-block: var(--space-5);
}

.trust-strip ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-4) clamp(1.5rem, 3vw, 3rem);
}

.trust-strip li {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--navy);
}

.trust-strip .icon {
  flex: none;
  width: 1.25rem;
  height: 1.25rem;
  color: var(--navy);
}

/* =============================================================================
   09. SECTIE-PATRONEN: kaarten, stappen, prijzen
   ========================================================================== */
.card {
  background: var(--surface);
  /* Eigen tekstkleur: een lichte kaart mag NOOIT de witte tekstkleur van
     een donkere oudersectie erven (witte tekst op witte kaart) */
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 1.2rem + 1vw, 2rem);
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.card .icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: var(--space-4);
  border-radius: var(--radius-sm);
  background: var(--navy-tint);
  color: var(--navy);
}

.card .icon-badge svg {
  width: 1.5rem;
  height: 1.5rem;
}

.card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
}

.card p {
  font-size: var(--text-sm);
  color: var(--muted);
}

/* --- Probleem-sectie: herkenbare pijnpunten --------------------------- */
.pain-list {
  display: grid;
  gap: var(--space-3);
  margin-top: var(--space-6);
}

.pain-list li {
  display: flex;
  gap: 0.75em;
  align-items: flex-start;
  font-size: var(--text-base);
  max-width: 46rem;
}

.pain-list .icon {
  flex: none;
  width: 1.375rem;
  height: 1.375rem;
  margin-top: 0.2em;
  color: var(--muted);
}

/* --- Bouw-scène naast de pijnlijst ------------------------------------- */
/* Links de klachten over de oude site; rechts wordt de nieuwe site al
   scrollend van de grond af opgebouwd (scrub in main.js, module 11d). */
.probleem-grid {
  display: grid;
  gap: var(--space-6);
  align-items: start;
}

@media (min-width: 56rem) {
  .probleem-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 24rem);
    gap: var(--space-8, 4rem);
  }

  .build-scene {
    position: sticky;
    top: calc(var(--header-h) + var(--space-6));
  }
}

/* Onder de breekgrens is er geen lege kolom — scène verbergen */
@media (max-width: 55.99rem) {
  .build-scene { display: none; }
}

.build-frame {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.build-chrome {
  display: flex;
  gap: 0.4rem;
  padding: 0.7rem 0.9rem;
  border-bottom: 1px solid var(--line);
}

.build-chrome span {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--line);
}

.build-chrome span:first-child { background: var(--accent); }

.build-nav {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 0.9rem;
}

.build-logo {
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 0.4rem;
  background: var(--navy);
}

.build-menu {
  width: 2.1rem;
  height: 0.4rem;
  border-radius: 999px;
  background: var(--line);
}

.build-cta {
  margin-left: auto;
  width: 3.4rem;
  height: 1.15rem;
  border-radius: 999px;
  background: var(--accent);
}

.build-hero {
  display: grid;
  justify-items: start;
  gap: 0.65rem;
  padding: 1.5rem 0.9rem 1.25rem;
  background: linear-gradient(160deg, color-mix(in srgb, var(--accent) 14%, transparent), transparent 60%);
}

.build-line {
  height: 0.7rem;
  border-radius: 999px;
  background: var(--navy);
}

.build-line--xl { width: 78%; }
.build-line--lg { width: 54%; opacity: 0.4; }

.build-btn {
  width: 6.5rem;
  height: 1.7rem;
  border-radius: 999px;
  background: var(--accent);
  margin-top: 0.3rem;
}

.build-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  padding: 0 0.9rem 1.1rem;
}

.build-cards span {
  height: 3.2rem;
  border-radius: 0.6rem;
  border: 1px solid var(--line);
  background: var(--canvas, #FAF8F4);
}

.build-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: var(--space-4);
  padding: 0.4rem 0.95rem;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}

.build-badge-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #22A06B;
  box-shadow: 0 0 0 0 rgba(34, 160, 107, 0.45);
  animation: buildPulse 2s infinite;
}

@keyframes buildPulse {
  to { box-shadow: 0 0 0 0.6rem rgba(34, 160, 107, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .build-badge-dot { animation: none; }
}

/* --- Werkwijze: 4 stappen --------------------------------------------- */
.steps {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 0.8rem + 1vw, 1.5rem);
}

.step {
  counter-increment: step;
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--space-5);
  box-shadow: var(--shadow-sm);
}

.step::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: var(--font-head);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--muted); /* --line haalde het contrast op wit niet (1,3:1) */
  margin-bottom: var(--space-3);
  transition: color var(--dur) var(--ease);
}

.step:hover::before { color: var(--navy); }

.step h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
}

.step p {
  font-size: var(--text-sm);
  color: var(--muted);
}

@media (max-width: 64rem) {
  .steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 40rem) {
  .steps { grid-template-columns: 1fr; }
}

/* --- Prijzen ----------------------------------------------------------- */
.price-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  /* Eigen tekstkleur: deze kaarten staan in de navy-sectie en mogen de
     witte sectietekst niet erven (witte tekst op witte kaart) */
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 1.4rem + 1.2vw, 2.5rem);
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.price-card--featured {
  border-color: var(--navy);
  border-width: 2px;
}

.price-card .price-label {
  font-family: var(--font-head);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: var(--space-3);
}

.price-card .price {
  font-family: var(--font-head);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: var(--space-1);
}

.price-card .price .price-prefix {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--muted);
  display: block;
  margin-bottom: 0.35em;
}

.price-card .price-suffix {
  font-size: var(--text-xs);
  color: var(--muted);
  margin-bottom: var(--space-5);
}

/* Eén regel "voor wie is dit" — trekt de kaarten uit elkaar zonder de
   bullets te laten concurreren */
.price-card .price-desc {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--ink);
  margin: calc(var(--space-3) - var(--space-5)) 0 var(--space-4);
}

.price-card ul {
  display: grid;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
}

.price-card li {
  display: flex;
  gap: 0.6em;
  align-items: flex-start;
  font-size: var(--text-sm);
}

.price-card li .icon {
  flex: none;
  width: 1.125rem;
  height: 1.125rem;
  margin-top: 0.2em;
  color: var(--navy);
}

.price-card .btn { margin-top: auto; }

.referral-note {
  display: flex;
  gap: 0.75em;
  align-items: flex-start;
  max-width: 46rem;
  margin-top: var(--space-6);
  padding: var(--space-4) var(--space-5);
  background: var(--navy-tint);
  /* Eigen tekstkleur: staat op de homepage óók in de navy-sectie */
  color: var(--ink);
  border-radius: var(--radius);
  font-size: var(--text-sm);
}

.referral-note .icon {
  flex: none;
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.15em;
  color: var(--navy);
}

/* =============================================================================
   10. BEFORE/AFTER-SLIDER
   Werkt met muis, touch én toetsenbord (het is een echte range-input).
   Zonder JS: beide beelden zichtbaar op een 50/50-split.
   ========================================================================== */
.ba-slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  /* Beide afbeeldingen moeten dezelfde verhouding hebben */
  aspect-ratio: 16 / 10;
  background: var(--surface);
  /* JS werkt deze variabele bij via de range-input */
  --ba-pos: 50%;
}

.ba-slider img,
.ba-slider svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-user-select: none;
  user-select: none;
  pointer-events: none;
}

/* Het "before"-beeld ligt bovenop en wordt afgekapt op --ba-pos */
.ba-before {
  clip-path: inset(0 calc(100% - var(--ba-pos)) 0 0);
}

/* Verticale scheidingslijn + handgreep */
.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--ba-pos);
  width: 2px;
  background: #FFFFFF;
  box-shadow: 0 0 0 1px rgba(18, 40, 76, 0.25);
  transform: translateX(-50%);
  pointer-events: none;
}

.ba-handle::after {
  content: "⟨ ⟩";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: #FFFFFF;
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: -0.1em;
  box-shadow: var(--shadow);
}

/* De onzichtbare range-input vangt muis/touch/toetsenbord over het hele vlak */
.ba-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
  /* Verticaal vegen op de afbeelding scrolt de pagina; horizontaal slepen
     bedient de slider. Zonder dit vecht de slider met scrollen op touch. */
  touch-action: pan-y;
}

/* Zonder JS doet de range niets: verberg hem dan (de 50/50-split blijft) */
html:not(.js) .ba-range { display: none; }

/* Focusring op de container zodra de (onzichtbare) input focus heeft */
.ba-slider:has(.ba-range:focus-visible) {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.ba-label {
  position: absolute;
  bottom: var(--space-3);
  z-index: 2;
  padding: 0.35em 0.9em;
  border-radius: 999px;
  font-size: var(--text-xs);
  font-weight: 600;
  background: rgba(26, 29, 33, 0.72);
  color: #FFFFFF;
  pointer-events: none;
}

.ba-label--before { left: var(--space-3); }
.ba-label--after { right: var(--space-3); }

/* --- Case-kaart rond de slider ---------------------------------------- */
.case-block {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(2rem, 3vw, 4rem);
  align-items: center;
}

.case-block--flip .case-media { order: 2; }

@media (max-width: 56rem) {
  .case-block { grid-template-columns: 1fr; }
  .case-block--flip .case-media { order: 0; }
}

.case-content h3 { margin-bottom: var(--space-3); }

.case-content .case-meta {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: var(--space-3);
}

.case-content p { margin-bottom: var(--space-4); }

.case-results {
  display: grid;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
}

.case-results li {
  display: flex;
  gap: 0.6em;
  align-items: flex-start;
  font-size: var(--text-sm);
}

.case-results .icon {
  flex: none;
  width: 1.125rem;
  height: 1.125rem;
  margin-top: 0.2em;
  color: var(--navy);
}

/* =============================================================================
   11. OVER ONS & TESTIMONIALS
   ========================================================================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 22rem));
  justify-content: center;
  gap: clamp(1.5rem, 2vw, 2.5rem);
}

@media (max-width: 40rem) {
  .team-grid { grid-template-columns: 1fr; }
}

.team-card { text-align: center; }

.team-card .team-photo {
  width: min(14rem, 60%);
  margin-inline: auto;
  margin-bottom: var(--space-4);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.team-card h3 { margin-bottom: var(--space-1); }

.team-card .team-role {
  font-size: var(--text-sm);
  font-weight: 600;
  /* Bewust géén accent-kleur: het accent is exclusief voor CTA's */
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: var(--space-3);
}

.team-card p {
  font-size: var(--text-sm);
  color: var(--muted);
  margin-inline: auto;
}

.testimonial {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.testimonial blockquote {
  flex: 1;
  font-size: var(--text-base);
  color: var(--ink);
  margin-bottom: var(--space-5);
}

.testimonial blockquote::before {
  content: "“";
  display: block;
  font-family: var(--font-head);
  font-size: 3rem;
  line-height: 0.6;
  color: var(--line);
  margin-bottom: var(--space-3);
}

.testimonial figcaption {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.testimonial .avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
  flex: none;
}

.testimonial .who {
  font-size: var(--text-sm);
  line-height: 1.4;
}

.testimonial .who strong {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--navy);
}

.testimonial .who span { color: var(--muted); }

.stars {
  display: inline-flex;
  gap: 2px;
  color: #BF841A; /* warm goud, géén CTA-accent; haalt 3:1 non-text-contrast */
  margin-bottom: var(--space-3);
}

.stars svg {
  width: 1rem;
  height: 1rem;
}

/* =============================================================================
   12. FAQ-ACCORDION
   Native <details>/<summary>: werkt zonder JS, JS voegt alleen soepele
   animatie en "één tegelijk open" toe.
   ========================================================================== */
.faq-list {
  max-width: 46rem;
  margin-inline: auto;
  display: grid;
  gap: var(--space-3);
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--dur) var(--ease);
}

.faq-item[open] { box-shadow: var(--shadow-sm); }

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-5);
  font-family: var(--font-head);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary .chevron {
  flex: none;
  width: 1.25rem;
  height: 1.25rem;
  color: var(--muted);
  transition: transform var(--dur) var(--ease);
}

.faq-item[open] summary .chevron { transform: rotate(180deg); }

.faq-item .faq-answer {
  padding: 0 var(--space-5) var(--space-5);
  font-size: var(--text-sm);
  color: var(--muted);
}

.faq-item .faq-answer p + p { margin-top: var(--space-3); }

/* =============================================================================
   13. CONTACT & FORMULIER
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 3vw, 4rem);
  align-items: start;
}

@media (max-width: 56rem) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-channels {
  display: grid;
  gap: var(--space-3);
  margin-top: var(--space-6);
}

.contact-channel {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-5);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}

.contact-channel:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: var(--navy);
}

.contact-channel .icon-badge {
  flex: none;
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--radius-sm);
  background: var(--navy-tint);
  color: var(--navy);
}

.contact-channel .icon-badge svg {
  width: 1.375rem;
  height: 1.375rem;
}

.contact-channel .channel-info {
  font-size: var(--text-sm);
  line-height: 1.4;
}

.contact-channel .channel-info strong {
  display: block;
  font-family: var(--font-head);
  color: var(--navy);
}

.contact-channel .channel-info span { color: var(--muted); }

/* --- Formulier --------------------------------------------------------- */
.form-card {
  background: var(--surface);
  color: var(--ink); /* zelfde principe: kaart is zelfvoorzienend */
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 1.4rem + 1.2vw, 2.5rem);
  box-shadow: var(--shadow);
}

.form-field { margin-bottom: var(--space-4); }

.form-field label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: var(--space-2);
}

.form-field label .optional {
  font-weight: 400;
  color: var(--muted);
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 0.85em 1em;
  font-size: var(--text-base);
  background: var(--canvas);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px var(--navy-tint);
}

.form-field input[aria-invalid="true"] {
  border-color: var(--error);
}

.form-error {
  display: none;
  font-size: var(--text-xs);
  color: var(--error);
  margin-top: var(--space-1);
}

.form-field.has-error .form-error { display: block; }

.form-success {
  display: none;
  padding: var(--space-4) var(--space-5);
  background: #EAF6EF;
  border: 1px solid var(--success);
  border-radius: var(--radius-sm);
  color: var(--success);
  font-size: var(--text-sm);
  font-weight: 500;
  margin-top: var(--space-4);
}

.form-success.is-visible { display: block; }

/* Fallback-melding (geen werkende backend): eigen element met eigen stijl,
   zodat succes- en fallback-staat elkaar nooit kunnen "besmetten" */
.form-fallback {
  display: none;
  padding: var(--space-4) var(--space-5);
  background: var(--navy-tint);
  border: 1px solid var(--navy);
  border-radius: var(--radius-sm);
  color: var(--navy);
  font-size: var(--text-sm);
  font-weight: 500;
  margin-top: var(--space-4);
}

.form-fallback.is-visible { display: block; }

.form-fallback a {
  color: inherit;
  font-weight: 600;
}

/* =============================================================================
   14. FOOTER (de donkere navy-zone)
   ========================================================================== */
.site-footer {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--on-navy);
  padding-block: var(--section-y) calc(var(--space-7) + var(--bottombar-h));
  /* extra padding-bottom zodat de mobiele bottom-bar niets afdekt */
}

@media (min-width: 56.0625rem) {
  .site-footer { padding-block: var(--section-y) var(--space-7); }
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 3vw, 4rem);
  margin-bottom: var(--space-7);
}

@media (max-width: 56rem) {
  .footer-grid { grid-template-columns: 1fr; }
}

.site-footer .brand { color: var(--on-navy); }

.footer-tagline {
  margin-top: var(--space-4);
  font-size: var(--text-sm);
  color: var(--on-navy-muted);
  max-width: 30rem;
}

.footer-col h3 {
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--on-navy-muted);
  margin-bottom: var(--space-4);
}

.footer-col ul {
  display: grid;
  gap: var(--space-2);
}

.footer-col a {
  color: var(--on-navy);
  text-decoration: none;
  font-size: var(--text-sm);
}

.footer-col a:hover { text-decoration: underline; }

.footer-col li {
  font-size: var(--text-sm);
  color: var(--on-navy);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3) var(--space-5);
  justify-content: space-between;
  padding-top: var(--space-5);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: var(--text-xs);
  color: var(--on-navy-muted);
}

/* =============================================================================
   15. STICKY MOBIELE BOTTOM-BAR
   Altijd zichtbaar op mobiel: "Gratis concept" + WhatsApp/Bellen.
   ========================================================================== */
.bottom-bar {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 40;
  display: none;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  padding-bottom: calc(var(--space-3) + env(safe-area-inset-bottom, 0px));
  background: rgba(255, 255, 255, 0.92); /* fallback voor oudere browsers */
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -6px 24px -12px rgba(18, 40, 76, 0.25);
}

.bottom-bar .btn {
  flex: 1;
  padding-block: 0.85em;
}

.bottom-bar .btn--whatsapp {
  flex: none;
  width: 2.8rem;
  padding: 0;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--surface);
  border: 1.5px solid var(--line);
  color: var(--navy);
}

.bottom-bar .btn--whatsapp svg {
  width: 1.25rem;
  height: 1.25rem;
}

@media (max-width: 56rem) {
  .bottom-bar { display: flex; }

  /* Ruimte onderaan de body zodat content nooit achter de bar verdwijnt
     (inclusief de safe-area van toestellen met home-indicator) */
  body { padding-bottom: calc(var(--bottombar-h) + env(safe-area-inset-bottom, 0px)); }
}

/* =============================================================================
   16. SCROLL-REVEALS & MOTION
   JS zet .js op <html>; zonder JS is alles gewoon zichtbaar.
   ========================================================================== */
.js .reveal {
  opacity: 0;
  transform: translateY(1.25rem);
  filter: blur(7px);
  transition:
    opacity var(--dur-slow) var(--ease),
    transform var(--dur-slow) var(--ease),
    filter var(--dur-slow) var(--ease);
}

.js .reveal.in-view {
  opacity: 1;
  transform: none;
  filter: blur(0);
}

/* Getrapte onthulling binnen een grid (kaart 2 en 3 iets later) */
.js .reveal-stagger > * {
  opacity: 0;
  transform: translateY(1.25rem);
  filter: blur(7px);
  transition:
    opacity var(--dur-slow) var(--ease),
    transform var(--dur-slow) var(--ease),
    filter var(--dur-slow) var(--ease);
}

.js .reveal-stagger.in-view > * {
  opacity: 1;
  transform: none;
  filter: blur(0);
}

.js .reveal-stagger.in-view > *:nth-child(2) { transition-delay: 90ms; }
.js .reveal-stagger.in-view > *:nth-child(3) { transition-delay: 180ms; }
.js .reveal-stagger.in-view > *:nth-child(4) { transition-delay: 270ms; }

/* =============================================================================
   16b. TOUCH: geen sticky hover
   Op touch-apparaten blijft :hover na een tik "plakken". Neutraliseer de
   lift-effecten daar; de tik zelf geeft al feedback.
   ========================================================================== */
@media (hover: none) {
  .btn--primary:hover {
    background: var(--accent);
    transform: none;
    box-shadow: 0 8px 20px -8px rgba(241, 103, 31, 0.55);
  }

  .btn--ghost:hover {
    border-color: var(--line);
    transform: none;
  }

  .btn:hover .btn-arrow { transform: none; }

  .card:hover,
  .price-card:hover {
    transform: none;
    box-shadow: var(--shadow-sm);
  }

  .step:hover::before { color: var(--muted); }

  .contact-channel:hover {
    transform: none;
    box-shadow: none;
    border-color: var(--line);
  }
}

/* =============================================================================
   17. TOEGANKELIJKHEID & REDUCED MOTION
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .js .reveal,
  .js .reveal-stagger > * {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* =============================================================================
   18. PRINT
   ========================================================================== */
@media print {
  .site-header,
  .bottom-bar,
  .nav-toggle,
  .btn { display: none !important; }

  body { background: #FFFFFF; }
}

/* =============================================================================
   19. PREMIUM-UPGRADE — hero-aurora, bento-features, testimonial-marquee
   -----------------------------------------------------------------------------
   Alles token-gedreven: kleurt automatisch mee met alle vier de thema's.
   Motion respecteert de globale reduced-motion-regels uit blok 17.
   ========================================================================== */

/* --- 19a. Hero: aurora-gloed ------------------------------------------- */
.hero { position: relative; }

.hero-aurora {
  position: absolute;
  inset: -15% -10%;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(38rem 26rem at 14% 20%, color-mix(in srgb, var(--accent) 13%, transparent), transparent 65%),
    radial-gradient(32rem 24rem at 86% 8%, color-mix(in srgb, var(--navy) 9%, transparent), transparent 62%);
  animation: aurora-drift 26s var(--ease) infinite alternate;
}

@keyframes aurora-drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(2.5%, 3%, 0) scale(1.06); }
}

/* Signature heeft al een levende achtergrond: aurora daar temperen */
[data-theme="signature"] .hero-aurora { opacity: 0.55; }

/* --- 19b. Hero: entrance-animatie -------------------------------------- */
/* Pure CSS (loopt ook zonder JS altijd af naar zichtbaar); blok 17 maakt
   hem instant bij reduced motion. */
@keyframes rise-in {
  from { opacity: 0; transform: translateY(1.1rem); }
  to { opacity: 1; transform: none; }
}

.hero-copy > * { animation: rise-in var(--dur-slow) var(--ease) both; }
.hero-copy > *:nth-child(2) { animation-delay: 90ms; }
.hero-copy > *:nth-child(3) { animation-delay: 180ms; }
.hero-copy > *:nth-child(4) { animation-delay: 270ms; }
.hero-visual { animation: rise-in var(--dur-slow) var(--ease) 140ms both; }

/* Accent-onderstreping die onder het kernwoord "aangroeit" */
.mark-accent {
  background-image: linear-gradient(
    color-mix(in srgb, var(--accent) 34%, transparent),
    color-mix(in srgb, var(--accent) 34%, transparent));
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0% 0.28em;
  animation: mark-grow 640ms var(--ease) 620ms forwards;
}

@keyframes mark-grow { to { background-size: 100% 0.28em; } }

/* --- 19c. Hero: zwevende proof-badges ----------------------------------- */
.hero-badge {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.6em;
  margin: 0;
  padding: 0.6rem 0.95rem;
  background: var(--surface);
  /* Eigen tekstkleur: badge is zelfvoorzienend, net als kaarten */
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  font-size: var(--text-xs);
  line-height: 1.35;
}

.hero-badge .icon-badge {
  flex: none;
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--radius-sm);
  background: var(--navy-tint);
  color: var(--navy);
}

.hero-badge .icon-badge svg {
  width: 1.25rem;
  height: 1.25rem;
}

.hero-badge strong {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--navy);
}

.hero-badge .badge-sub { color: var(--muted); }

.hero-badge--top {
  top: 1.25rem;
  left: -1rem;
  animation: float-y 6.5s ease-in-out infinite alternate;
}

.hero-badge--bottom {
  bottom: 1.5rem;
  right: -1rem;
  animation: float-y 7.5s ease-in-out 1.2s infinite alternate;
}

@keyframes float-y {
  from { transform: translateY(0); }
  to { transform: translateY(-0.5rem); }
}

@media (max-width: 56rem) {
  .hero-badge--top { top: 0.75rem; left: 0.75rem; }
  .hero-badge--bottom { bottom: 0.75rem; right: 0.75rem; }
}

/* Signature: badges als glas, mobiel solide (zelfde patroon als blok 01b) */
[data-theme="signature"] .hero-badge {
  background: rgba(255, 255, 255, 0.07);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

@media (max-width: 56rem) {
  [data-theme="signature"] .hero-badge {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    background: rgba(24, 26, 44, 0.92);
  }
}

/* --- 19d. Bento-features ------------------------------------------------ */
.bento {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 0.8rem + 1vw, 1.5rem);
}

.bento-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.bento-card:hover {
  border-color: color-mix(in srgb, var(--accent) 45%, var(--line));
}

/* Featured: 2 kolommen breed, zachte accent-was + "€0"-watermerk */
.bento-card--featured {
  grid-column: span 2;
  background-image: radial-gradient(26rem 18rem at 88% -12%, color-mix(in srgb, var(--accent) 10%, transparent), transparent 66%);
}

.bento-card--featured h3 {
  font-size: var(--text-xl);
  max-width: 20ch;
}

.bento-card--featured p {
  font-size: var(--text-base);
  max-width: 44ch;
}

.bento-card--featured::after {
  content: "€0";
  content: "€0" / ""; /* stil voor screenreaders waar ondersteund */
  position: absolute;
  top: 0.5rem;
  right: 1.25rem;
  font-family: var(--font-head);
  font-size: clamp(3.5rem, 3rem + 2vw, 5.5rem);
  font-weight: 700;
  line-height: 1;
  color: var(--navy-tint);
  color: color-mix(in srgb, var(--accent) 18%, transparent);
  pointer-events: none;
}

.bento-card--wide { grid-column: span 2; }

/* Mini-chatdemo in de brede kaart */
.bento-chat {
  display: grid;
  gap: var(--space-2);
  margin-top: var(--space-4);
  max-width: 24rem;
}

/* Gescoped onder .bento-chat: wint zo van de generieke .card p-kleur */
.bento-chat .chat {
  margin: 0;
  width: fit-content;
  padding: 0.55em 0.95em;
  border-radius: 1em;
  font-size: var(--text-xs);
  line-height: 1.4;
}

.bento-chat .chat--out {
  justify-self: start;
  border-bottom-left-radius: 0.3em;
  background: var(--navy-tint);
  color: var(--ink);
}

.bento-chat .chat--in {
  justify-self: end;
  border-bottom-right-radius: 0.3em;
  background: var(--accent);
  /* Zelfde AA-logica als .btn--primary: donkere tekst op het amber */
  color: #1A1D21;
}

/* Thema's waar het accent een andere tekstkleur eist (zie .btn--primary) */
[data-theme="bold"] .bento-chat .chat--in,
[data-theme="signature"] .bento-chat .chat--in { color: #FFFFFF; }

/* Branchepagina's: wat we bouwen-lijst */
.branche-lijst {
  display: grid;
  gap: var(--space-4);
  margin: 0;
  padding: 0;
}

.branche-lijst li {
  list-style: none;
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  font-size: var(--text-base);
}

.branche-lijst .icon {
  flex: none;
  width: 1.375rem;
  height: 1.375rem;
  margin-top: 0.25em;
  color: var(--accent-tekst);
}

.branche-lijst strong { color: var(--navy); }
.branche-lijst em { font-style: normal; color: var(--muted); font-size: var(--text-sm); }

/* Cases-index: overzichtskaarten */
.case-kaart { display: flex; flex-direction: column; gap: var(--space-3); }

.case-kaart-beeld {
  display: block;
  margin: calc(var(--space-5) * -1) calc(var(--space-5) * -1) var(--space-2);
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.case-kaart-beeld img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.case-kaart-beeld:hover img { transform: scale(1.03); }

.case-kaart h2 { font-size: var(--text-xl); color: var(--navy); }

.case-kaart-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0;
  padding: 0;
}

.case-kaart-tags li {
  list-style: none;
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--muted);
  background: var(--canvas);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.25rem 0.7rem;
}

.case-kaart .btn { margin-top: auto; align-self: flex-start; }

.case-kaart--leeg {
  border-style: dashed;
  justify-content: center;
}

/* Solo-testimonial: één echte review verdient het podium */
.testimonial--solo {
  max-width: 44rem;
  margin-inline: auto;
  text-align: center;
  align-items: center;
}

.testimonial--solo blockquote { font-size: var(--text-lg); }

.testimonial--solo figcaption {
  justify-content: center;
  margin-bottom: var(--space-5);
}

/* Garantie-kaarten: wat we zwart-op-wit vastleggen */
.garantie h3 {
  font-size: var(--text-lg);
  color: var(--navy);
  margin-bottom: var(--space-2);
}

.garantie-tier {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-tekst);
  margin-bottom: var(--space-2);
}

.garantie p { font-size: var(--text-sm); }

/* Exclusief-regel op pakketkaarten: de signature van elke tier */
.price-card .price-excl {
  margin-top: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px dashed var(--line);
  font-size: var(--text-sm);
  color: var(--ink);
}

.price-card .price-excl strong { color: var(--navy); }

/* --- Keuzehulp-wizard --------------------------------------------------- */
.wizard {
  max-width: 46rem;
  margin-inline: auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 1rem + 2vw, 2.5rem);
  box-shadow: var(--shadow);
}

.wizard-dots {
  display: flex;
  gap: 0.5rem;
  list-style: none;
  margin: 0 0 var(--space-5);
  padding: 0;
}

.wizard-dots li {
  width: 2.4rem;
  height: 0.3rem;
  border-radius: 999px;
  background: var(--line);
  transition: background 0.25s ease;
}

.wizard-dots li.is-actief { background: var(--accent); }

.wizard-stap { border: none; margin: 0; padding: 0; }

.wizard-vraag {
  font-family: var(--font-head);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--space-1);
  padding: 0;
}

.wizard-hint {
  font-size: var(--text-sm);
  color: var(--muted);
  margin-bottom: var(--space-4);
}

.wizard-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.wizard-chip {
  font: inherit;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--ink);
  background: var(--canvas);
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 0.65rem 1.1rem;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s, transform 0.15s;
}

.wizard-chip:hover { border-color: var(--navy); transform: translateY(-1px); }

.wizard-chip.is-gekozen {
  background: var(--navy);
  border-color: var(--navy);
  color: #FFFFFF;
}

.wizard-voet {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: var(--space-6);
}

.wizard-terug {
  background: none;
  border: none;
  font: inherit;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
}

.wizard-terug:hover:not(:disabled) { color: var(--ink); }
.wizard-terug:disabled { opacity: 0.35; cursor: default; }

.wizard.is-klaar .wizard-stappenblok,
.wizard.is-klaar .wizard-voet,
.wizard.is-klaar .wizard-dots { display: none; }

.wizard-advies h3 {
  font-family: var(--font-head);
  font-size: var(--text-2xl);
  color: var(--navy);
  margin: 0.3rem 0 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.wizard-badge {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: var(--navy);
  color: #FFFFFF;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
}

.wizard-prijs {
  font-weight: 700;
  color: var(--ink);
  margin-bottom: var(--space-4);
}

.wizard-advies ul {
  display: grid;
  gap: 0.5rem;
  margin: 0 0 var(--space-5);
  padding: 0;
  font-size: var(--text-sm);
}

.wizard-advies li { padding-left: 1.4rem; position: relative; }

.wizard-advies li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-tekst);
  font-weight: 700;
}

.wizard-cta { display: flex; gap: 0.75rem; flex-wrap: wrap; }

.wizard-opnieuw {
  background: none;
  border: none;
  font: inherit;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  margin-top: var(--space-5);
  padding: 0.4rem 0;
}

.wizard-opnieuw:hover { color: var(--ink); }

.wizard-concreet {
  margin-top: var(--space-5);
  padding: var(--space-4) var(--space-5);
  background: var(--canvas);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.wizard-concreet-kop {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--space-2);
}

.wizard-concreet ul { display: grid; gap: 0.4rem; font-size: var(--text-sm); }

.wizard-concreet li { padding-left: 1.4rem; position: relative; }

.wizard-concreet li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--accent-tekst);
  font-weight: 700;
}

.wizard-instap,
.wizard-later {
  margin-top: var(--space-4);
  font-size: var(--text-sm);
  color: var(--muted);
}

.wizard-later span::after { content: " \00b7 "; }
.wizard-later span[data-laatste]::after { content: ""; }

.wizard .wizard-cta { margin-top: var(--space-5); }

/* Taalwissel (NL | EN) in de header */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.1rem;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.lang-switch a {
  padding: 0.3rem 0.45rem;
  border-radius: 0.5rem;
  text-decoration: none;
  color: var(--muted);
}

.lang-switch a:hover { color: var(--ink); }

.lang-switch a[aria-current="true"] {
  color: var(--ink);
  background: var(--navy-tint);
}

.lang-switch .lang-sep { color: var(--line); }

/* Smalle schermen: alleen de ándere taal tonen — scheelt headerruimte */
@media (max-width: 30rem) {
  .lang-switch a[aria-current="true"],
  .lang-switch .lang-sep { display: none; }
}

/* WhatsApp-kop boven de chatdemo: het voelt als een echt gesprek met Dylan */
.wa-head {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding-bottom: 0.5rem;
  margin-bottom: 0.15rem;
  border-bottom: 1px solid var(--line);
}

.wa-avatar {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--navy);
  color: #FFFFFF;
  font-family: var(--font-head);
  font-size: var(--text-xs);
  font-weight: 700;
}

.wa-name {
  display: grid;
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}

.wa-name em {
  font-style: normal;
  font-weight: 400;
  color: #22A06B;
}

.wa-mark {
  margin-left: auto;
  width: 1.15rem;
  height: 1.15rem;
  color: #22A06B;
}

/* Showcase-banner: dé poort naar ons visitekaartje — een donker filmdoek
   dat afsteekt tegen de lichte pagina, onmogelijk om langs te scrollen */
.showcase-banner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-5);
  margin-top: var(--space-7);
  padding: var(--space-6) clamp(1.5rem, 1rem + 2vw, 3rem);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(120% 200% at 88% -20%, color-mix(in srgb, var(--accent) 30%, transparent), transparent 55%),
    linear-gradient(135deg, #16202E, #0C1320 65%);
  color: #FFFFFF;
  text-decoration: none;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.showcase-banner:hover,
.showcase-banner:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 20px 48px -14px rgba(18, 40, 76, 0.5);
}

.showcase-banner-copy {
  display: grid;
  gap: 0.2rem;
  max-width: 36rem;
}

.showcase-banner-kicker {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-tekst);
}

.showcase-banner-title {
  font-family: var(--font-head);
  font-size: var(--text-2xl);
  font-weight: 700;
  line-height: 1.2;
  color: #FFFFFF;
}

.showcase-banner-sub {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.72);
}

.showcase-banner-btn { flex: none; }

/* Lichtbaan die traag over het doek strijkt: subtiel, maar het beweegt —
   en beweging is precies wat de ooghoek nodig heeft om te stoppen */
.showcase-banner-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 32%, rgba(255, 255, 255, 0.09) 46%, transparent 60%);
  background-size: 240% 100%;
  animation: showcaseSheen 6s ease-in-out infinite;
}

@keyframes showcaseSheen {
  0% { background-position: 130% 0; }
  55%, 100% { background-position: -130% 0; }
}

@media (prefers-reduced-motion: reduce) {
  .showcase-banner-glow { animation: none; }
}

@media (max-width: 64rem) {
  .bento { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .bento-card--featured,
  .bento-card--wide { grid-column: span 2; }
}

@media (max-width: 40rem) {
  .bento { grid-template-columns: 1fr; }

  .bento-card--featured,
  .bento-card--wide { grid-column: auto; }
}

/* --- 19e. Testimonial-marquee ------------------------------------------- */
/* Basis (zonder JS of met reduced motion): scrollbare rij met snap.
   JS-module 10 kloont de track en zet .is-animated voor de oneindige loop. */
.marquee {
  --marquee-gap: clamp(1rem, 0.8rem + 1vw, 1.5rem);
  position: relative;
  display: flex;
  gap: var(--marquee-gap);
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding-block: var(--space-2);
  -webkit-overflow-scrolling: touch;
}

.marquee-track {
  display: flex;
  flex: none;
  align-items: stretch;
  gap: var(--marquee-gap);
}

.marquee .testimonial {
  width: min(21rem, 78vw);
  flex: none;
  scroll-snap-align: start;
}

.marquee.is-animated {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.marquee.is-animated .marquee-track {
  animation: marquee-scroll var(--marquee-duration, 48s) linear infinite;
}

/* Stilzetten om mee te lezen: hover of focus pauzeert */
.marquee.is-animated:hover .marquee-track,
.marquee.is-animated:focus-within .marquee-track {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  to { transform: translateX(calc(-100% - var(--marquee-gap))); }
}

/* --- 19f. CTA: glans-sweep bij hover ------------------------------------ */
.btn--primary {
  position: relative;
  overflow: hidden;
}

.btn--primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 32%, rgba(255, 255, 255, 0.4) 50%, transparent 68%);
  transform: translateX(-130%);
  transition: transform 650ms var(--ease);
  pointer-events: none;
}

.btn--primary:hover::before { transform: translateX(130%); }

/* --- 19g. Touch & print ------------------------------------------------- */
@media (hover: none) {
  .bento-card:hover { border-color: var(--line); }
}

@media print {
  .hero-aurora,
  .hero-badge { display: none; }

  .marquee { overflow: visible; }
  .marquee-track { flex-wrap: wrap; animation: none !important; }
  .marquee-track[aria-hidden="true"] { display: none; }
}

/* =============================================================================
   20. DIMENSIE-LAYOUTS — vier écht verschillende websites
   -----------------------------------------------------------------------------
   Elke dimensie krijgt een eigen typografie, hero-layout en vormentaal.
   Zelfde HTML, compleet ander gezicht. Fonts self-hosted (variable fonts).
   Hoort bij themablok 01b + main.js module 12; samen verwijderbaar.
   ========================================================================== */

/* --- Fonts voor de dimensies (laden pas bij gebruik) -------------------- */
@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url("/assets/fonts/fraunces-var.woff2") format("woff2");
}

@font-face {
  font-family: "Baloo 2";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("/assets/fonts/baloo2-var.woff2") format("woff2");
}

@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url("/assets/fonts/spacegrotesk-var.woff2") format("woff2");
}

/* --- 20a. CINEMA (nacht) — filmposter: pure typografie, geen mockup ----- */
[data-theme="nacht"] {
  --font-head: "Fraunces", Georgia, serif;
  --radius: 0.3rem;
  --radius-lg: 0.5rem;
  --tracking-head: -0.01em;
}

[data-theme="nacht"] h1,
[data-theme="nacht"] h2,
[data-theme="nacht"] h3 { font-weight: 400; }

[data-theme="nacht"] .hero .container {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
  min-height: calc(94svh - var(--header-h));
  align-content: center;
}

[data-theme="nacht"] .hero-visual--panel {
  max-width: 36rem;
  margin-inline: auto;
}

[data-theme="nacht"] .hero-copy h1 {
  font-size: clamp(2.2rem, 1.7rem + 3.2vw, 4rem);
  line-height: 1.04;
  max-width: 17ch;
  margin-inline: auto;
}

[data-theme="nacht"] .hero-copy .lead { margin-inline: auto; }

[data-theme="nacht"] .hero-cta-group { align-items: center; text-align: center; }

[data-theme="nacht"] .style-switcher {
  border-top: 0;
  margin-inline: auto;
  text-align: center;
}

[data-theme="nacht"] .style-chips { justify-content: center; }

[data-theme="nacht"] .eyebrow {
  letter-spacing: 0.32em;
  color: var(--accent-tekst);
}

[data-theme="nacht"] .section-head h2 {
  font-size: clamp(1.85rem, 1.5rem + 1.8vw, 2.8rem);
}

[data-theme="nacht"] .btn {
  border-radius: 0.3rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: var(--text-xs);
}

[data-theme="nacht"] .mark-accent { background-image: none; }

/* --- 20b. SPEELS (bold) — neubrutalist: dik, rond, offset-schaduwen ----- */
[data-theme="bold"] {
  --font-head: "Baloo 2", "Sora", sans-serif;
  --radius: 1.25rem;
  --radius-lg: 1.75rem;
  --tracking-head: 0em;
  --shadow-sm: 4px 4px 0 rgba(34, 21, 51, 0.9);
  --shadow: 7px 7px 0 rgba(34, 21, 51, 0.9);
  --shadow-lg: 11px 11px 0 rgba(34, 21, 51, 0.9);
}

[data-theme="bold"] h1,
[data-theme="bold"] h2,
[data-theme="bold"] h3 { font-weight: 800; }

[data-theme="bold"] .hero-copy h1 {
  font-size: clamp(1.9rem, 1.4rem + 2.1vw, 2.9rem);
  line-height: 1.08;
}

[data-theme="bold"] .card,
[data-theme="bold"] .price-card,
[data-theme="bold"] .form-card,
[data-theme="bold"] .faq-item,
[data-theme="bold"] .step,
[data-theme="bold"] .contact-channel,
[data-theme="bold"] .referral-note {
  border: 2.5px solid #221533;
}

[data-theme="bold"] .btn {
  border: 2.5px solid #221533;
  box-shadow: 4px 4px 0 #221533;
  font-weight: 700;
}

[data-theme="bold"] .btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 #221533;
}

[data-theme="bold"] .btn:active {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 #221533;
}

[data-theme="bold"] .hero-visual {
  transform: rotate(-2.5deg);
}

[data-theme="bold"] .hero-visual img {
  border: 2.5px solid #221533;
  box-shadow: 11px 11px 0 rgba(214, 24, 107, 0.4);
  border-radius: var(--radius-lg);
}

[data-theme="bold"] .hero-badge { border: 2px solid #221533; }

[data-theme="bold"] .icon-badge { border-radius: 50%; }

[data-theme="bold"] .style-chip { border-width: 2px; }

[data-theme="bold"] .marquee .testimonial { border-width: 2.5px; }

/* --- 20c. IMMERSIVE (signature) — editorial full-bleed ------------------ */
[data-theme="signature"] {
  --font-head: "Space Grotesk", "Sora", sans-serif;
  --tracking-head: -0.03em;
}

[data-theme="signature"] .hero .container {
  grid-template-columns: 1fr;
  min-height: calc(96svh - var(--header-h));
  align-content: center;
}

[data-theme="signature"] .hero-copy h1 {
  font-size: clamp(2.3rem, 1.7rem + 4vw, 4.6rem);
  line-height: 0.98;
  text-transform: uppercase;
  max-width: 14ch;
}

[data-theme="signature"] .hero-visual--panel {
  max-width: 40rem;
  margin-inline: auto;
}

[data-theme="signature"] .section-head h2 {
  font-size: clamp(1.95rem, 1.55rem + 2.2vw, 3.2rem);
  letter-spacing: -0.03em;
}

[data-theme="signature"] .eyebrow { letter-spacing: 0.34em; }

[data-theme="signature"] .mark-accent { background-image: none; }

[data-theme="signature"] .btn--lg {
  padding: 1.15em 2.2em;
  letter-spacing: 0.06em;
}

@media (max-width: 56rem) {
  [data-theme="nacht"] .hero .container,
  [data-theme="signature"] .hero .container { min-height: 0; }
}

/* =============================================================================
   21. PREMIUM-POLISH — craft-details na de taste-audit
   -----------------------------------------------------------------------------
   Eyebrow-sanering gebeurde in de HTML (9 → 3). Hier: papierkorrel,
   eyebrow-lijnen, gelaagde knop-diepte en een rustiger stijlwissel-blok.
   ========================================================================== */

/* Subtiele filmkorrel op het canvas — universeel, in elke dimensie.
   Vast element = geen scroll-repaints. */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%27240%27 height=%27240%27%3E%3Cfilter id=%27n%27%3E%3CfeTurbulence type=%27fractalNoise%27 baseFrequency=%270.85%27 numOctaves=%272%27/%3E%3C/filter%3E%3Crect width=%27240%27 height=%27240%27 filter=%27url(%23n)%27/%3E%3C/svg%3E");
}

/* De drie overgebleven eyebrows: accentkleur + korte lijn ervoor */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.8em;
  color: var(--accent-tekst);
}

.eyebrow::before {
  content: "";
  width: 2.25rem;
  height: 1px;
  background: var(--accent);
}

/* Bold-thema stylet de eyebrow als pill: geen lijn ervoor */
[data-theme="bold"] .eyebrow::before { display: none; }

/* Knoppen: contactschaduw + diffuse gloed + inzet-highlight (drie lagen) */
.btn--primary {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 1px 2px rgba(18, 40, 76, 0.12),
    0 10px 24px -8px rgba(241, 103, 31, 0.55);
}

.btn--primary:hover {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 2px 4px rgba(18, 40, 76, 0.12),
    0 14px 30px -8px rgba(241, 103, 31, 0.6);
}

.btn--primary:active,
.btn--ghost:active { transform: translateY(0) scale(0.98); }

/* Stijlwissel-blok: rustiger, geen gestreepte rand (minder template-look) */
.style-switcher {
  border-top: 0;
  padding-top: 0;
  margin-top: var(--space-7);
}

.style-switcher-label {
  font-size: var(--text-xs);
  color: var(--muted);
  letter-spacing: 0.02em;
}

.style-chip {
  padding: 0.5em 0.9em;
  border-width: 1px;
}

/* Sectiekoppen: meer ademruimte onder de kop */
.section-head { margin-bottom: clamp(3rem, 2.25rem + 2.5vw, 5rem); }

/* =============================================================================
   22. HERO-EDITORIAL — XXL kop, morph-woord en het dimensie-paneel
   -----------------------------------------------------------------------------
   De hero is het statement: gigantische typografie waarin "website" van
   identiteit wisselt, en de stijlwissel-demo als interactief paneel met
   type-specimens. Het paneel is in ALLE dimensies zichtbaar (het is de
   switcher); kaartkleuren zijn bewust vast — elke kaart toont z'n eigen wereld.
   ========================================================================== */
.hero-xl {
  font-size: clamp(2.1rem, 1.4rem + 3.2vw, 3.75rem);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.028em;
  /* De kop is langer geworden (mismatch-framing); zonder deze rem blijft
     de tweede regel op desktop tegen het dimensie-paneel aanlopen. */
  max-width: 15ch;
}

@media (min-width: 56rem) {
  .hero-xl { font-size: clamp(2.1rem, 0.9rem + 3.1vw, 3.4rem); }
}

.hero-line { display: block; padding-block: 0.04em; }

.hero-line--indent { margin-left: clamp(0rem, 5vw, 4rem); }

/* De kop mag over z'n kolom heen steken: bewuste overlap (desktop) */
@media (min-width: 64.0625rem) {
  .hero-copy .hero-xl {
    width: 132%;
    position: relative;
    z-index: 2;
  }
}

/* --- Morph-woord: wisselt van identiteit (js module 13) ----------------- */
.morph-word {
  display: inline-block;
  background-image: linear-gradient(
    color-mix(in srgb, var(--accent) 34%, transparent),
    color-mix(in srgb, var(--accent) 34%, transparent));
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 100% 0.26em;
}

.morph-word.morph--cinema {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  font-style: italic;
  background-image: linear-gradient(rgba(232, 181, 77, 0.55), rgba(232, 181, 77, 0.55));
}

.morph-word.morph--speels {
  font-family: "Baloo 2", "Sora", sans-serif;
  font-weight: 800;
  background-image: linear-gradient(rgba(214, 24, 107, 0.4), rgba(214, 24, 107, 0.4));
}

.morph-word.morph--immersive {
  font-family: "Space Grotesk", "Sora", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.94em;
  background-image: linear-gradient(rgba(124, 92, 255, 0.45), rgba(124, 92, 255, 0.45));
}

@keyframes morph-pop {
  from { opacity: 0; transform: translateY(0.16em); filter: blur(7px); }
  to { opacity: 1; transform: none; filter: blur(0); }
}

.morph-word.morph-pop { animation: morph-pop 420ms var(--ease); }

/* --- Dimensie-paneel ----------------------------------------------------- */
.hero-visual--panel {
  display: grid;
  gap: var(--space-3);
}

/* Chic klein kapitaal-label met accentlijn (i.p.v. "klik maar"-toon) */
.panel-label {
  display: inline-flex;
  align-items: center;
  gap: 0.8em;
  font-family: var(--font-head);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.panel-label::before {
  content: "";
  width: 2.25rem;
  height: 1px;
  background: var(--accent);
}

.dim-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.7rem, 1.2vw, 1rem);
}

.dim-card {
  position: relative;
  display: grid;
  gap: 0.1rem;
  justify-items: start;
  align-content: end;
  min-height: 8.75rem;
  padding: 1.1rem 1.2rem 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  text-align: left;
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease),
    border-color var(--dur) var(--ease);
}

.dim-card:hover {
  transform: translateY(-4px) rotate(-0.6deg);
  box-shadow: var(--shadow);
}

.dim-card[aria-pressed="true"] {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 22%, transparent), var(--shadow-sm);
}

.dim-card .dim-specimen {
  font-size: clamp(2.1rem, 2.6vw, 2.8rem);
  line-height: 1;
}

.dim-card .dim-naam {
  font-family: var(--font-head);
  font-size: var(--text-sm);
  font-weight: 700;
  margin-top: 0.5rem;
}

.dim-card .dim-sub { font-size: var(--text-xs); opacity: 0.72; }

/* Elke kaart draagt z'n eigen materiaal (vaste kleuren, thema-onafhankelijk) */
.dim-card--helder {
  background: #FFFFFF;
  color: #12284C;
}

.dim-card--helder .dim-specimen {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  color: #12284C;
}

.dim-card--helder .dim-sub { color: #5B6472; opacity: 1; }

.dim-card--cinema {
  background: linear-gradient(170deg, #141D31 0%, #0B1220 100%);
  color: #F2F5FA;
  border-color: #2A3850;
}

.dim-card--cinema .dim-specimen {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  color: #E8B54D;
}

.dim-card--speels {
  background: #FFF6EC;
  color: #221533;
  border: 2px solid #221533;
  box-shadow: 4px 4px 0 rgba(34, 21, 51, 0.85);
}

.dim-card--speels:hover { box-shadow: 6px 6px 0 rgba(34, 21, 51, 0.85); }

.dim-card--speels .dim-specimen {
  font-family: "Baloo 2", sans-serif;
  font-weight: 800;
  color: #D6186B;
}

.dim-card--immersive {
  background: radial-gradient(130% 130% at 18% 0%, #1C1735 0%, #0A0B14 70%);
  color: #EEF0FF;
  border-color: rgba(124, 92, 255, 0.45);
}

.dim-card--immersive .dim-specimen {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: #C4B5FD;
}

@media (max-width: 40rem) {
  .dim-card { min-height: 7rem; padding: 0.9rem 1rem 0.85rem; }
}

/* =============================================================================
   23. CINEMATICA — laadscherm, inertia-scroll (Lenis) en cursor-volger
   -----------------------------------------------------------------------------
   Werkt in alle dimensies (tokens kleuren mee). Zonder JS of met reduced
   motion bestaat dit alles simpelweg niet.
   ========================================================================== */

/* Lenis-basis (zie js module 14) */
html.lenis,
html.lenis body { height: auto; }

.lenis.lenis-smooth { scroll-behavior: auto !important; }

/* --- Laadscherm --------------------------------------------------------- */
.laad {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 120;
  place-content: center;
  justify-items: center;
  gap: var(--space-4);
  text-align: center;
  background: var(--canvas);
}

html.laad-actief .laad { display: grid; }

.laad-merk {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.laad-merk span { color: var(--accent); }

.laad-teller {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(2.3rem, 6vw, 3.6rem);
  line-height: 1;
  color: var(--navy);
  font-variant-numeric: tabular-nums;
}

.laad-lijn {
  display: block;
  width: min(15rem, 55vw);
  height: 2px;
  overflow: hidden;
  background: var(--line);
}

.laad-lijn span {
  display: block;
  height: 100%;
  width: 100%;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
}

/* --- Cursor-volger (native cursor blijft gewoon zichtbaar) -------------- */
.volg-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 34px;
  height: 34px;
  margin: -17px 0 0 -17px;
  border: 1.5px solid color-mix(in srgb, var(--accent) 65%, transparent);
  border-radius: 50%;
  z-index: 95;
  pointer-events: none;
  opacity: 0;
  will-change: transform;
  transition:
    width 280ms var(--ease),
    height 280ms var(--ease),
    margin 280ms var(--ease),
    background-color 280ms var(--ease),
    opacity 280ms var(--ease);
}

.volg-ring.is-zichtbaar { opacity: 1; }

.volg-ring.is-hover {
  width: 58px;
  height: 58px;
  margin: -29px 0 0 -29px;
  background: color-mix(in srgb, var(--accent) 12%, transparent);
}

@media (hover: none) {
  .volg-ring { display: none; }
}


/* --- Zwevende WhatsApp-knop — altijd in beeld ------------------------------ */
.wa-float{position:fixed;right:1.5rem;bottom:1.5rem;z-index:55;display:flex;align-items:center;justify-content:center;width:3.5rem;height:3.5rem;border-radius:50%;background:#25D366;color:#fff;box-shadow:0 10px 28px -8px rgba(0,0,0,.4);transition:transform .2s ease, box-shadow .2s ease;}
.wa-float:hover{transform:scale(1.07);box-shadow:0 14px 32px -8px rgba(0,0,0,.5);}
.wa-float:focus-visible{outline:3px solid #fff;outline-offset:3px;}
.wa-float svg{width:1.85rem;height:1.85rem;}
@media (max-width:56rem){.wa-float{right:1rem;bottom:calc(4.9rem + env(safe-area-inset-bottom,0px));width:3.25rem;height:3.25rem;}}
@media (min-width:56.0625rem){.style-fab-wrap{bottom:5.75rem;}}
