/* ============================================================
   SCOPED Sites — Design System V2 · ULTRA PREMIUM
   Palet: diep koninklijk violet + goud/klei luxe-accenten + aubergine donker
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Kleur — koel, verfijnd violet-palet */
  --bg: #FAF9FC;            /* bijna-wit met koele zweem */
  --bg-soft: #F0EDF8;       /* zacht lavendel-grijs */
  --bg-deep: #1A1430;       /* diepe aubergine/indigo — premium donker */

  --text: #1E1A2B;          /* bijna-zwart met violette ondertoon */
  --text-soft: #565073;
  --text-inverse: #F4F1FB;

  --rule: #E7E2F1;
  --rule-strong: #1E1A2B;

  /* Sector-accent: diep koninklijk violet (CTA's, links, focus) */
  --accent: #5B3FB6;
  --accent-deep: #4A3196;
  --accent-soft: #7A60D0;
  --highlight: #8B6FE0;        /* mid-violet highlight voor accent-keywords — werkt op licht én donker */

  /* Subtiele knop-gradient — diagonaal, laag contrast, rond de violet-tint (modern, niet glossy) */
  --btn-grad: linear-gradient(145deg, #6A4DC9 0%, #4C3596 100%);
  --btn-grad-hover: linear-gradient(145deg, #5B3FB6 0%, #3E2A82 100%);

  /* Type — Plus Jakarta Sans, max 4 gewichten */
  --ff: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --fw-body: 400;
  --fw-mid: 500;
  --fw-strong: 600;
  --fw-display: 700;

  /* Type-schaal 1.250 vanaf 17px */
  --fs-meta: 13px;
  --fs-small: 14px;
  --fs-body: 17px;
  --fs-lead: 20px;
  --fs-h3: 22px;
  --fs-h2: 32px;
  --fs-h1: 48px;
  --fs-display: 64px;

  /* Spacing — 8pt-set */
  --s-4: 4px;
  --s-8: 8px;
  --s-12: 12px;
  --s-16: 16px;
  --s-24: 24px;
  --s-32: 32px;
  --s-40: 40px;
  --s-48: 48px;
  --s-64: 64px;
  --s-80: 80px;
  --s-96: 96px;
  --s-120: 120px;
  --s-160: 160px;

  /* Radius — coaching = warm/organisch = 22px (zachtere, rondere cards) */
  --r: 22px;

  /* Apple-stijl subtiele shadow — tweelaags, bijna onzichtbaar */
  --shadow-card: 0 2px 4px rgba(0, 0, 0, 0.03), 0 8px 24px rgba(0, 0, 0, 0.05);

  /* Container */
  --wrap-max: 1280px;
  --wrap-narrow-max: 720px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(2rem + 88px + 1rem);
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body { overflow-x: hidden; min-width: 320px; }
@media (max-width: 900px) {
  html { scroll-padding-top: calc(1rem + 64px + 1rem); }
  /* geen horizontaal schuiven op mobiel (voorkomt scheve/uitlopende elementen) */
  body { overflow-x: clip; max-width: 100%; }
}

/* ---------- Lenis smooth scroll (aanbevolen regels) ---------- */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-smooth iframe { pointer-events: none; }
body, h1, h2, h3, h4, p, ul, ol, dl, dd, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* ---------- Base ---------- */
body {
  font-family: var(--ff);
  font-weight: var(--fw-body);
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  hyphens: auto;
  -webkit-hyphens: auto;
  hyphenate-limit-chars: 6 3 3;
}

h1, h2, h3 { hyphens: manual; }
p { max-inline-size: 65ch; }

::selection { background: var(--accent); color: var(--bg); }

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

/* ---------- Wraps ---------- */
.wrap {
  width: 100%;
  max-width: var(--wrap-max);
  margin-inline: auto;
  padding-inline: var(--s-24);
}
.wrap-narrow {
  width: 100%;
  max-width: var(--wrap-narrow-max);
  margin-inline: auto;
  padding-inline: var(--s-24);
}
@media (min-width: 768px) {
  .wrap, .wrap-narrow { padding-inline: var(--s-40); }
}

/* ---------- Concept-banner ---------- */
.concept-banner {
  background: var(--bg-deep);
  color: var(--text-inverse);
  font-size: var(--fs-small);
  text-align: center;
  padding: var(--s-8) var(--s-16);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--s-12);
}
.concept-banner a {
  color: var(--text-inverse);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---------- Floating Pill Navbar ---------- */
.navbar {
  position: fixed;
  inset: 2rem clamp(1.25rem, 6vw, 9rem) auto;
  z-index: 3000;
  min-height: 88px;
  padding: 0 var(--s-16) 0 var(--s-32);
  border-radius: 999px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: var(--s-24);
  align-items: center;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.42);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  box-shadow: 0 8px 32px rgba(20, 24, 31, 0.06);
  transition: background .28s ease, border-color .28s ease, box-shadow .28s ease;
}
.navbar.is-scrolled {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(226, 229, 234, 0.55);
  box-shadow: 0 10px 40px rgba(20, 24, 31, 0.08);
}
/* Desktop: slanke, gecentreerde pill (~60% van de viewport) */
@media (min-width: 901px) {
  .navbar {
    inset-inline: auto;
    left: 50%;
    transform: translateX(-50%);
    width: clamp(860px, 60vw, 1240px);
  }
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: var(--s-12);
  font-weight: var(--fw-strong);
  color: var(--text);
}
.brand-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: var(--r);
  background: var(--highlight);
  color: #fff;
  font-size: 12px;
  font-weight: var(--fw-display);
  letter-spacing: 0.02em;
}
.brand-name {
  font-size: 1.22rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  white-space: nowrap;
  background-image: linear-gradient(100deg, #2C2056 0%, #3D2C82 46%, #5B3FB6 78%, #7C5CD8 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-block-end: 0.04em;
}

.nav-links {
  display: none;
  justify-self: center;
  align-items: center;
  gap: var(--s-16);
}
.nav-link {
  font-size: 0.95rem;
  font-weight: var(--fw-mid);
  color: var(--text-soft);
  padding: var(--s-8) var(--s-12);
  border-radius: 999px;
  white-space: nowrap;
  transition: color .18s ease, background .18s ease;
}
.nav-link:hover {
  color: var(--text);
}
.nav-link.is-active {
  color: var(--highlight);
  font-weight: var(--fw-strong);
  background: rgba(91, 63, 182, 0.12);
}
@media (min-width: 900px) { .nav-links { display: inline-flex; } }

.contact-button {
  display: none;
  align-items: center;
  gap: var(--s-12);
  block-size: 52px;            /* referentiehoogte voor alle gekleurde knoppen */
  padding: 0 var(--s-12) 0 var(--s-24);
  background: var(--btn-grad);
  color: #fff;
  border-radius: 999px;
  font-size: var(--fs-body);
  font-weight: var(--fw-mid);
  box-shadow: 0 1px 2px rgba(43, 40, 35, 0.06), 0 6px 18px rgba(91, 63, 182, 0.16);
  transition: background .28s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform .28s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow .28s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.contact-button:hover {
  background: var(--btn-grad-hover);
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(43, 40, 35, 0.08), 0 10px 24px rgba(91, 63, 182, 0.22);
}
.contact-button-label { white-space: nowrap; }
.btn-arrow {
  display: grid;
  place-items: center;
  width: 1.75rem;
  height: 1.75rem;
  background: rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  transition: transform 280ms ease;
}
.btn-arrow svg { width: 13px; height: 13px; color: #fff; }
.contact-button:hover .btn-arrow { transform: rotate(-45deg); }
@media (min-width: 900px) { .contact-button { display: inline-flex; } }

.menu-button {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: rgba(20, 24, 31, 0.06);
  border: 1px solid rgba(20, 24, 31, 0.10);
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  padding: 0;
}
.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  position: absolute;
  transition: transform 280ms ease, opacity 200ms ease;
}
.menu-button span:first-child { transform: translateY(-5px); }
.menu-button span:last-child  { transform: translateY(5px); }
body.menu-open .menu-button span:first-child { transform: rotate(45deg); }
body.menu-open .menu-button span:last-child  { transform: rotate(-45deg); }
@media (min-width: 900px) { .menu-button { display: none; } }

/* Mobile menu — sibling van navbar */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: var(--bg-soft);
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: calc(1rem + 64px + var(--s-32)) var(--s-32) var(--s-40);
  gap: var(--s-40);
}
body.menu-open .mobile-menu { display: flex; }
.mobile-menu-links {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--s-32);
}
.mobile-menu-links a {
  font-size: clamp(1.75rem, 7vw, 2.25rem);
  font-weight: var(--fw-strong);
  color: var(--text);
  letter-spacing: -0.01em;
  text-decoration: none;
}
.mobile-menu-bottom {
  margin-top: 0;
  padding-top: 0;
  width: 100%;
  display: flex;
  justify-content: center;
}
.mobile-contact {
  display: inline-flex;
  align-items: center;
  gap: var(--s-12);
  padding: var(--s-16) var(--s-16) var(--s-16) var(--s-24);
  background: var(--btn-grad);
  color: #fff;
  border-radius: 999px;
  font-weight: var(--fw-mid);
  font-size: var(--fs-body);
  box-shadow: 0 1px 2px rgba(43, 40, 35, 0.06), 0 6px 18px rgba(91, 63, 182, 0.16);
}
.mobile-contact .btn-arrow { width: 2rem; height: 2rem; }
@media (min-width: 900px) { .mobile-menu { display: none !important; } }

/* Navbar smaller insets op mobile zodat brand + hamburger goed passen */
@media (max-width: 900px) {
  .navbar {
    inset: 1rem var(--s-16) auto;
    min-height: 64px;
    padding: 0 var(--s-12) 0 var(--s-16);
    grid-template-columns: 1fr auto;
    gap: var(--s-12);
  }
  .navbar .nav-links,
  .navbar .contact-button { display: none; }
}

/* Geen main-padding: de 100vh-hero centreert z'n eigen content onder de floating navbar */
main { padding-top: 0; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: transparent;
  min-height: auto;
  min-block-size: auto;
  display: flex;
  align-items: center;
  padding: var(--s-24) 0 0;
  overflow: visible;
}
/* Laat de volgende sectie (foto) ~10-15% piepen vanaf de fold als scroll-incentive.
   min-height (geen max-cap) → hero groeit mee bij hoge content, dus de eyebrow
   wordt nooit onder de navbar geklemd. */
@media (min-width: 768px) {
  .hero { min-block-size: calc(80vh - 136px); }
}
/* Anker-stijl blauwe gradient achter hero — rechtsonder, weg van content */
.hero::before {
  content: "";
  position: absolute;
  inset: auto -20% -75% 55%;
  width: 75%;
  aspect-ratio: 1;
  background: radial-gradient(circle at center, rgba(91, 63, 182, 0.38) 0%, rgba(91, 63, 182, 0.14) 35%, rgba(91, 63, 182, 0) 65%);
  filter: blur(60px);
  pointer-events: none;
  z-index: -1;
}
/* Tweede subtiele blob linksboven voor diepte */
.hero::after {
  content: "";
  position: absolute;
  inset: -20% 60% auto -10%;
  width: 50%;
  aspect-ratio: 1;
  background: radial-gradient(circle at center, rgba(139, 111, 224, 0.18) 0%, rgba(139, 111, 224, 0) 60%);
  filter: blur(50px);
  pointer-events: none;
  z-index: -1;
}
.hero-frame {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--s-16);
}
@media (min-width: 768px) { .hero-frame { gap: var(--s-24); } }

.hero-eyebrow {
  font-size: var(--fs-small);
  font-weight: var(--fw-mid);
  color: var(--highlight);
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: var(--s-8);
}
.hero-eyebrow::before {
  content: "";
  width: 24px; height: 1px;
  background: var(--highlight);
}


/* Subtiele gradient-highlight voor accent-keywords in titels (Apple-stijl, één hue) */
.hero-title em,
.intro-visual-title em,
.anchor-title em {
  font-style: normal;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
/* Op lichte achtergrond (hero): zelfde salie-tint als Vorgehen, alleen donkerder zodat 't leesbaar is op licht */
.hero-title em {
  background-image: linear-gradient(120deg, #7B5BD8 0%, #4A3196 100%);
}
/* Op donkere achtergrond (aubergine secties): licht violet → mid zodat 't oplicht */
.intro-visual-title em,
.anchor-title em {
  background-image: linear-gradient(120deg, #C4B2F5 0%, #9075E0 100%);
}
@supports not ((-webkit-background-clip: text) or (background-clip: text)) {
  .hero-title em { color: #5B3FB6; -webkit-text-fill-color: currentColor; }
  .intro-visual-title em, .anchor-title em { color: #C4B2F5; -webkit-text-fill-color: currentColor; }
}

.hero-title {
  font-size: clamp(44px, 7.4vw, 82px);
  line-height: 1.04;
  font-weight: var(--fw-display);
  letter-spacing: -0.03em;
  max-inline-size: 24ch;
  margin: 0;
  text-wrap: balance;
}


.hero-lead {
  font-size: var(--fs-lead);
  line-height: 1.45;
  color: var(--text);
  max-inline-size: 42ch;
  font-weight: var(--fw-body);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s-24);
  margin-block: var(--s-8);
}

.hero-meta {
  font-size: var(--fs-small);
  line-height: 1.55;
  color: var(--text-soft);
  margin: var(--s-16) 0 0;
  max-inline-size: 80ch;
}
.hero-meta a {
  color: var(--text);
  border-bottom: 1px solid var(--rule);
  padding-block-end: 1px;
  transition: border-color .18s ease-out;
}
.hero-meta a:hover { border-color: var(--accent); }
.hero-meta-sep {
  margin-inline: var(--s-8);
  color: var(--rule);
}

.hero-naw {
  display: grid;
  gap: var(--s-24);
  padding-block-start: var(--s-24);
  border-top: 1px solid var(--rule);
}
@media (min-width: 720px) {
  .hero-naw { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--s-40); }
}
.hero-naw div { display: flex; flex-direction: column; gap: var(--s-8); }
.hero-naw dt {
  font-size: var(--fs-meta);
  font-weight: var(--fw-mid);
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero-naw dd {
  margin: 0;
  font-size: var(--fs-body);
  font-weight: var(--fw-mid);
  color: var(--text);
}
.hero-naw a {
  border-bottom: 1px solid var(--rule);
  padding-block-end: 2px;
  transition: border-color .18s ease-out;
}
.hero-naw a:hover { border-color: var(--accent); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-8);
  block-size: 52px;            /* exact even hoog als de header-knop */
  min-inline-size: 44px;
  padding: 0 var(--s-24);
  font-size: var(--fs-body);
  font-weight: var(--fw-mid);
  border-radius: 999px;
  border: 1px solid transparent;
  transition: background .18s ease-out, color .18s ease-out, transform .18s ease-out;
  white-space: nowrap;
}
.btn-primary {
  background: var(--btn-grad);
  color: #fff;
  box-shadow: 0 1px 2px rgba(43, 40, 35, 0.06), 0 6px 18px rgba(91, 63, 182, 0.16);
  /* rustige, trage overgang — past bij de slow-essentie */
  transition: background .5s ease, color .3s ease, transform .5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .55s cubic-bezier(0.22, 1, 0.36, 1);
}
.btn-primary:hover {
  background: var(--btn-grad-hover);
  transform: translateY(-2px);        /* alleen een zachte lift, geen zoom, geen veeg */
  /* zachte warme klei-glow naast de groene — ingetogen premium */
  box-shadow: 0 2px 6px rgba(43, 40, 35, 0.07), 0 12px 28px rgba(91, 63, 182, 0.18), 0 6px 18px rgba(154, 94, 46, 0.10);
}

/* Navbar- en mobiele CTA: zelfde rustige lift */
.contact-button,
.mobile-contact {
  transition: background .5s ease, transform .5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .55s cubic-bezier(0.22, 1, 0.36, 1);
}
.contact-button:hover,
.mobile-contact:hover {
  transform: translateY(-2px);
}
.btn-primary .btn-phone { font-weight: var(--fw-strong); margin-left: var(--s-4); }

.btn-secondary {
  background: var(--text);
  color: var(--bg);
}
.btn-secondary:hover { background: var(--accent-deep); }

/* Apple-stijl tekst-link: kleur + chevron die op hover meeschuift */
.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-block-size: 44px;
  font-size: var(--fs-body);
  font-weight: var(--fw-mid);
  color: var(--text);
  transition: color .2s ease-out;
}
.btn-text .chev {
  width: 7px;
  height: 12px;
  flex: none;
  transition: transform .28s cubic-bezier(0.22, 1, 0.36, 1);
}
.btn-text:hover { color: var(--accent); }
.btn-text:hover .chev { transform: translateX(3px); }

/* knoppen-paar: gevulde pil + tekst-link ernaast (zoals Apple) */
.cta-pair {
  display: inline-flex;
  align-items: center;
  gap: clamp(10px, 2vw, 24px);
  flex-wrap: wrap;
}
.block-head-link { margin-block-start: var(--s-4); min-block-size: auto; }

/* ---------- Intro ---------- */
.intro {
  padding: var(--s-80) 0;
  background: var(--bg);
}
.intro-title {
  font-size: clamp(28px, 4.5vw, 40px);
  line-height: 1.2;
  font-weight: var(--fw-display);
  letter-spacing: -0.02em;
  max-inline-size: 22ch;
  margin-block-end: var(--s-32);
}
.intro-body {
  font-size: var(--fs-lead);
  line-height: 1.6;
  color: var(--text);
  max-inline-size: 60ch;
}
@media (min-width: 768px) { .intro { padding: var(--s-120) 0; } }

/* ---------- Intro-visual — image-card binnen container, niet full-bleed ---------- */
.intro-visual {
  background: transparent;
  padding-block: 0 var(--s-80);
  padding-inline: clamp(24px, 8vw, 8vw);
}
@media (min-width: 768px) {
  /* minder top-padding zodat de fotokaart zelf piept vanaf de fold (niet de lege ruimte) */
  .intro-visual { padding-block: var(--s-32) var(--s-120); }
}
.intro-visual-card {
  position: relative;
  width: 100%;
  max-width: 1680px;
  margin: 0 auto;
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  min-height: 520px;
  box-shadow: var(--shadow-card);
  background: var(--bg-deep);
}
.intro-visual-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8);
  z-index: 0;
}
.intro-visual-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(20, 15, 38, 0.80);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--s-48) var(--s-32);
}
.intro-visual-content {
  max-width: 720px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--s-32);
  color: var(--text-inverse);
}
.intro-visual-content .intro-visual-title,
.intro-visual-content .intro-visual-body {
  max-inline-size: 100%;
  width: 100%;
}
.intro-visual-title {
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.1;
  font-weight: var(--fw-display);
  letter-spacing: -0.02em;
  color: var(--text-inverse);
  max-inline-size: 24ch;
  margin: 0;
  text-wrap: balance;
}

.intro-visual-body {
  font-size: var(--fs-body);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
  max-inline-size: 65ch;
  margin: 0;
}
.intro-visual-credit {
  position: absolute;
  bottom: var(--s-12);
  right: var(--s-16);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.02em;
  margin: 0;
  z-index: 2;
}
@media (max-width: 768px) {
  .intro-visual-card { aspect-ratio: auto; min-height: 70vh; }
  .intro-visual-overlay { padding: var(--s-32) var(--s-24); }
}

/* ---------- Sectie-head ---------- */
.section-head {
  display: flex;
  flex-direction: column;
  gap: var(--s-16);
  margin-block-end: var(--s-48);
  max-inline-size: 32ch;
}
.section-eyebrow {
  font-size: var(--fs-meta);
  font-weight: var(--fw-mid);
  color: var(--highlight);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: var(--s-8);
}
.section-eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--highlight);
}
.section-title {
  font-size: clamp(28px, 4vw, var(--fs-h2));
  line-height: 1.15;
  font-weight: var(--fw-display);
  letter-spacing: -0.02em;
  margin: 0;
}

/* ---------- Services-grid ---------- */
.services {
  background: var(--bg-soft);
  padding: var(--s-80) 0;
  border-block: 1px solid var(--rule);
}
@media (min-width: 768px) { .services { padding: var(--s-120) 0; } }

.service-grid {
  display: grid;
  gap: var(--s-24);
  grid-template-columns: 1fr;
}
@media (min-width: 780px) {
  .service-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 1fr;
    align-items: stretch;
    gap: var(--s-32);
  }
}

.service-card {
  background: var(--bg);
  border-radius: var(--r);
  padding: var(--s-40);
  border: none;
  outline: none;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: var(--s-16);
  transition: transform .28s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow .28s ease;
}
.service-card:hover {
  border: none;
  outline: none;
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 8px 16px rgba(20, 24, 31, 0.05), 0 20px 40px rgba(20, 24, 31, 0.08);
}
.service-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-16);
}
.service-icon {
  width: 44px;
  height: 44px;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform .45s cubic-bezier(0.22, 1, 0.36, 1);
}
.service-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-name {
  font-size: clamp(30px, 3.4vw, 42px);
  line-height: 1.08;
  font-weight: var(--fw-display);
  letter-spacing: -0.02em;
  margin: 0;
  /* Premium hover: warm klei-verloop ligt eronder, normaal verborgen achter de vulkleur */
  background-image: linear-gradient(120deg, #C98A50 0%, #9A5E2E 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: var(--text);
  transition: -webkit-text-fill-color .45s ease;
}

/* ---------- Premium hover: titel + icon worden het klei-verloop ---------- */
.service-card:hover .service-name {
  -webkit-text-fill-color: transparent;
}
.service-card:hover .service-icon {
  transform: scale(1.08) rotate(-3deg);
}
.service-card:hover .service-icon svg {
  stroke: url(#clayGrad);
}
.service-body {
  font-size: var(--fs-body);
  line-height: 1.55;
  color: var(--text);
  max-inline-size: 50ch;
}

/* ---------- Pakket-kaarten (Angebot) ---------- */
.service-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--s-8);
  font-size: var(--fs-meta);
  font-weight: var(--fw-mid);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(91, 63, 182, 0.10);
  padding: 6px var(--s-12);
  border-radius: 999px;
}
/* Herzstück-kaart (Ankommen) — enige accent-card, krijgt het meeste gewicht */
.service-card--feature {
  background: var(--accent);
  color: var(--text-inverse);
  box-shadow: 0 2px 8px rgba(43, 40, 35, 0.10), 0 18px 44px rgba(91, 63, 182, 0.28);
}
.service-card--feature .service-icon { color: var(--text-inverse); }
.service-card--feature .service-name,
.service-card--feature .service-body { color: var(--text-inverse); }
.service-card--feature .service-body { color: rgba(245, 240, 231, 0.86); }
/* Feature-kaart: lichter klei-verloop voor hover (pop op groen) */
.service-card--feature .service-name {
  background-image: linear-gradient(120deg, #F0C293 0%, #D99B67 100%);
  -webkit-text-fill-color: var(--text-inverse);
}
.service-card--feature:hover .service-icon svg { stroke: url(#clayGradLight); }
.service-card--feature .service-tag {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
}
.service-card--feature:hover {
  box-shadow: 0 4px 12px rgba(43, 40, 35, 0.14), 0 24px 52px rgba(91, 63, 182, 0.34);
}

/* ---------- Anchor — donker met salie-tinted gloed ---------- */
.anchor {
  position: relative;
  background: var(--bg-deep);
  color: var(--text-inverse);
  padding: var(--s-160) 0;
  text-align: left;
  overflow: hidden;
  isolation: isolate;
}
.anchor::before {
  content: "";
  position: absolute;
  inset: auto -10% -60% 25%;
  width: 90%;
  aspect-ratio: 1;
  background: radial-gradient(
    circle at center,
    rgba(74, 49, 150, 0.45) 0%,
    rgba(74, 49, 150, 0.15) 35%,
    rgba(74, 49, 150, 0) 65%
  );
  filter: blur(60px);
  pointer-events: none;
  z-index: -1;
}
.anchor::after {
  content: "";
  position: absolute;
  inset: -20% 60% auto -10%;
  width: 50%;
  aspect-ratio: 1;
  background: radial-gradient(
    circle at center,
    rgba(139, 111, 224, 0.08) 0%,
    rgba(139, 111, 224, 0) 60%
  );
  filter: blur(40px);
  pointer-events: none;
  z-index: -1;
}
.anchor-eyebrow {
  font-size: var(--fs-meta);
  font-weight: var(--fw-mid);
  color: var(--highlight);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-block-end: var(--s-24);
  display: inline-flex;
  align-items: center;
  gap: var(--s-8);
}
.anchor-eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--highlight);
}
.anchor-title {
  font-size: clamp(40px, 7vw, 72px);
  line-height: 1.05;
  font-weight: var(--fw-display);
  letter-spacing: -0.03em;
  margin-block-end: var(--s-40);
  max-inline-size: 18ch;
}

.anchor-body {
  font-size: var(--fs-lead);
  line-height: 1.55;
  color: var(--text-inverse);
  max-inline-size: 50ch;
  opacity: 0.88;
}
@media (max-width: 640px) { .anchor { padding: var(--s-80) 0 var(--s-96); } }

/* ---------- Audience (werkgebied + doelgroep) ---------- */
.audience {
  background: var(--bg);
  padding: var(--s-80) 0;
}
@media (min-width: 768px) { .audience { padding: var(--s-120) 0; } }

.audience-grid {
  display: grid;
  gap: var(--s-40);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 900px) {
  .audience-grid { grid-template-columns: 1.4fr 1fr; gap: var(--s-80); }
}
.audience-left { display: flex; flex-direction: column; gap: var(--s-24); }
.audience-body {
  font-size: var(--fs-lead);
  line-height: 1.5;
  color: var(--text);
  max-inline-size: 56ch;
}

.audience-photo {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--r);
  background: var(--bg-soft);
  box-shadow: var(--shadow-card);
}
.audience-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Subtiele desaturatie voor brand-coherentie */
  filter: saturate(0.9);
}
.audience-photo-credit {
  position: absolute;
  bottom: var(--s-8);
  right: var(--s-12);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.02em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

/* ---------- Why-grid ---------- */
.why {
  background: var(--bg-soft);
  padding: var(--s-80) 0;
  border-block: 1px solid var(--rule);
}
@media (min-width: 768px) { .why { padding: var(--s-120) 0; } }

.why-grid {
  display: grid;
  gap: var(--s-32);
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .why-grid { grid-template-columns: repeat(3, 1fr); gap: var(--s-40); } }

.why-item {
  padding-block-start: var(--s-24);
  border-top: 2px solid var(--text);
  display: flex;
  flex-direction: column;
  gap: var(--s-12);
}
.why-name {
  font-size: var(--fs-h3);
  font-weight: var(--fw-strong);
  letter-spacing: -0.01em;
  margin: 0;
}
.why-body {
  font-size: var(--fs-body);
  line-height: 1.55;
  color: var(--text);
  max-inline-size: 36ch;
}

/* ---------- Contact ---------- */
.contact {
  background: var(--bg);
  padding: var(--s-80) 0;
}
@media (min-width: 768px) { .contact { padding: var(--s-120) 0; } }

.contact-split {
  display: grid;
  gap: var(--s-40);
  grid-template-columns: 1fr;
  align-items: stretch;
}
@media (min-width: 900px) {
  .contact-split {
    grid-template-columns: 1.4fr 1fr;
    gap: var(--s-64);
    align-items: center;
  }
}
.contact-cards {
  display: flex;
  flex-direction: column;
  gap: var(--s-24);
}
.contact-photo {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--r);
  background: var(--bg-soft);
  box-shadow: var(--shadow-card);
}
.contact-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9);
}
.contact-photo-credit {
  position: absolute;
  bottom: var(--s-8);
  right: var(--s-12);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.02em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: var(--s-12);
  padding-block: var(--s-24);
  border-top: 1px solid var(--rule);
}
.contact-item:first-child {
  border-top: none;
  padding-block-start: 0;
}
.contact-item-label {
  font-size: var(--fs-meta);
  font-weight: var(--fw-mid);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-soft);
  margin: 0;
}
.contact-item-link {
  font-size: var(--fs-h3);
  font-weight: var(--fw-strong);
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--text);
  text-decoration: none;
  min-block-size: 44px;
  display: inline-flex;
  align-items: center;
  transition: color .18s ease-out;
}
.contact-item-link:hover {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.contact-item-link-primary {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: var(--fw-display);
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--accent);
}
.contact-item-link-primary:hover { color: var(--accent-deep); }
.contact-item-note {
  font-size: var(--fs-body);
  line-height: 1.55;
  color: var(--text);
  max-inline-size: 42ch;
  margin: 0;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--bg-deep);
  color: var(--text-inverse);
  padding: var(--s-120) 0 var(--s-64);
}
.footer-inner {
  display: grid;
  gap: var(--s-40);
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .footer-inner { grid-template-columns: 1.5fr 1fr; gap: var(--s-64); }
}
.footer-brand { display: flex; flex-direction: column; gap: var(--s-8); }
.footer-name { font-size: var(--fs-h3); font-weight: var(--fw-strong); letter-spacing: -0.01em; }
.footer-tag { font-size: var(--fs-small); color: rgba(255, 255, 255, 0.65); }

.footer-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-24);
}
@media (min-width: 720px) { .footer-meta { grid-template-columns: repeat(3, 1fr); } }
.footer-meta dt {
  font-size: var(--fs-meta);
  font-weight: var(--fw-mid);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  margin-block-end: var(--s-4);
}
.footer-meta dd {
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.footer-divider {
  grid-column: 1 / -1;
  width: 100%;
  border: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: var(--s-40) 0 var(--s-24);
}
.footer-credit {
  grid-column: 1 / -1;
  font-size: var(--fs-meta);
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}
.footer-credit a {
  color: var(--text-inverse);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-block-end: 1px;
}

/* ---------- Sticky FAB ---------- */
.fab-call {
  position: fixed;
  bottom: var(--s-16);
  right: var(--s-16);
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: var(--s-8);
  min-block-size: 56px;
  min-inline-size: 56px;
  padding: var(--s-12) var(--s-24);
  background: var(--accent);
  color: var(--bg);
  border-radius: 999px;
  font-size: var(--fs-body);
  font-weight: var(--fw-strong);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18), 0 2px 6px rgba(0, 0, 0, 0.08);
  transition: transform .2s ease-out, background .2s ease-out;
}
.fab-call:hover { background: var(--accent-deep); transform: translateY(-2px); }
.fab-call:active { transform: translateY(0); }

@media (min-width: 900px) { .fab-call { display: none; } }

/* ---------- Motion-respect ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .btn-primary:hover, .why-item:hover, .service-card:hover, .fab-call:hover { transform: none; }
}

/* ---------- Print ---------- */
@media print {
  * {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  body { font-size: 11pt; }
  .concept-banner, .topbar, .fab-call, .hero-actions { display: none !important; }
  .hero, .anchor, .footer { padding: 16pt 0 !important; min-height: auto !important; }
  a::after { content: " (" attr(href) ")"; font-size: 0.85em; color: #555 !important; }
  a[href^="#"]::after, a[href^="javascript"]::after { content: ""; }
}


/* ---------- Btn-dark (secundair, donker pill) ---------- */
.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: var(--s-12);
  min-block-size: 48px;
  padding: var(--s-12) var(--s-12) var(--s-12) var(--s-24);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.10) 0%, rgba(255, 255, 255, 0.04) 100%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  border-radius: 999px;
  font-size: var(--fs-body);
  font-weight: var(--fw-mid);
  transition: background .28s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform .28s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              border-color .28s ease;
}
.btn-dark:hover {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.08) 100%);
  border-color: rgba(255, 255, 255, 0.30);
  transform: translateY(-2px) scale(1.01);
}
.btn-dark .btn-arrow {
  background: rgba(255, 255, 255, 0.18);
}
.btn-dark:hover .btn-arrow { transform: rotate(-45deg); }

/* btn-primary moet ook arrow-icon ondersteunen */
.btn-primary {
  gap: var(--s-12);
  padding-right: var(--s-12);
}
.btn-primary .btn-arrow {
  background: rgba(255, 255, 255, 0.22);
}
.btn-primary:hover .btn-arrow { transform: rotate(-45deg); }

/* ---------- Contact-final (centered dark CTA) ---------- */
.contact-final {
  background: var(--bg-deep);
  color: var(--text-inverse);
  padding: var(--s-160) 0 var(--s-120);
  text-align: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.contact-final::before {
  content: "";
  position: absolute;
  inset: -10% 30% auto -10%;
  width: 80%;
  aspect-ratio: 1;
  background: radial-gradient(circle at center, rgba(91, 63, 182, 0.18) 0%, rgba(91, 63, 182, 0) 60%);
  filter: blur(60px);
  pointer-events: none;
  z-index: -1;
}
.contact-final-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-32);
}
.contact-final-eyebrow {
  font-size: var(--fs-meta);
  font-weight: var(--fw-mid);
  color: var(--highlight);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: var(--s-8);
}
.contact-final-eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--highlight);
}
.contact-final-title {
  font-size: clamp(48px, 8vw, 80px);
  line-height: 1.05;
  font-weight: var(--fw-display);
  letter-spacing: -0.03em;
  color: var(--text-inverse);
  max-inline-size: 14ch;
  margin: 0;
  text-wrap: balance;
}
.contact-final-body {
  font-size: var(--fs-lead);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
  max-inline-size: 48ch;
  margin: 0;
  text-align: center;
}
.contact-final-actions {
  display: inline-flex;
  flex-wrap: wrap;
  gap: var(--s-16);
  justify-content: center;
  margin-top: var(--s-8);
}
.contact-final-address {
  display: inline-flex;
  align-items: center;
  gap: var(--s-8);
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}
.contact-final-address a {
  color: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-block-end: 1px;
}
.contact-final-address svg {
  color: var(--highlight);
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .contact-final { padding: var(--s-96) 0 var(--s-80); }
  .contact-final-actions { flex-direction: column; width: 100%; max-width: 360px; }
  .contact-final-actions .btn { justify-content: space-between; }
}


/* ---------- Live dot — groen knipperend bolletje voor "bereikbaar" signaal ---------- */
.live-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.55);
  animation: live-pulse 2.4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  flex-shrink: 0;
}
@keyframes live-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.55); opacity: 1; }
  60%  { box-shadow: 0 0 0 10px rgba(74, 222, 128, 0); opacity: 0.85; }
  100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .live-dot { animation: none; }
}


/* ---------- Mobile fixes (≤640px) ---------- */
@media (max-width: 640px) {
  /* Hero: laat content z'n eigen hoogte hebben, geen max-cap die content afsnijdt */
  .hero {
    max-block-size: none;
    min-block-size: auto;
    padding: var(--s-48) 0 var(--s-32);
  }
  /* Hero actions: stack vertical + geen padding-inline-start die naar rechts duwt */
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--s-16);
    padding-inline-start: 0;
  }
  /* Mail-link compacter + wrap toestaan */
  .hero-actions .btn-text {
    font-size: var(--fs-small);
    line-height: 1.4;
    text-align: left;
  }
  /* NAW verbergen op mobile — info staat in contact-sectie */
  .hero-naw { display: none; }
  /* Hero-title iets kleiner zodat 'ie binnen mobile-viewport past */
  .hero-title {
    font-size: clamp(40px, 11vw, 72px);
  }
  /* Intro-visual: kleinere min-height op mobile */
  .intro-visual-card {
    min-height: 60vh;
  }
  /* Section-padding kleiner op mobile */
  .services, .audience, .why, .contact { padding: var(--s-64) 0; }
  .proof, .steps, .pricing, .faq, .about { padding: var(--s-64) 0; }
}

/* ============================================================
   SCOPED Sites — extra modules (social proof, stappen, prijs, FAQ, over)
   ============================================================ */

/* ---------- Social proof ---------- */
.proof {
  padding: var(--s-64) 0;
  background: var(--bg);
  border-block-end: 1px solid var(--rule);
}
.proof-label {
  text-align: center;
  font-size: var(--fs-meta);
  font-weight: var(--fw-mid);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-soft);
  margin: 0 0 var(--s-32);
}
.proof-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--s-24) var(--s-48);
  margin: 0 0 var(--s-40);
}
.proof-logos li {
  display: grid;
  place-items: center;
  min-width: 96px;
  height: 36px;
  padding: 0 var(--s-16);
  border-radius: 8px;
  background: var(--bg-soft);
  color: var(--text-soft);
  font-size: var(--fs-small);
  font-weight: var(--fw-strong);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.7;
}
.proof-review {
  max-inline-size: 48ch;
  margin: 0 auto;
  text-align: center;
}
.proof-review p {
  font-size: var(--fs-lead);
  line-height: 1.5;
  color: var(--text);
  margin: 0 0 var(--s-12);
  max-inline-size: none;
}
.proof-review cite {
  font-style: normal;
  font-size: var(--fs-small);
  color: var(--text-soft);
}

/* ---------- Stappen (Hoe het werkt) ---------- */
.steps {
  padding: var(--s-80) 0;
  background: var(--bg);
}
@media (min-width: 768px) { .steps { padding: var(--s-120) 0; } }
.steps-grid {
  display: grid;
  gap: var(--s-24);
  grid-template-columns: 1fr;
}
@media (min-width: 780px) {
  .steps-grid { grid-template-columns: repeat(4, 1fr); gap: var(--s-32); align-items: stretch; }
}
.step {
  display: flex;
  flex-direction: column;
  gap: var(--s-12);
  padding: var(--s-32);
  border-radius: var(--r);
  background: var(--bg-soft);
}
.step-num {
  font-size: var(--fs-h3);
  font-weight: var(--fw-display);
  color: var(--highlight);
  letter-spacing: -0.01em;
}
.step-name {
  font-size: var(--fs-h3);
  font-weight: var(--fw-strong);
  letter-spacing: -0.01em;
  margin: 0;
}
.step-body {
  font-size: var(--fs-body);
  line-height: 1.5;
  color: var(--text-soft);
  margin: 0;
}

/* ---------- Pricing ---------- */
.pricing {
  padding: var(--s-80) 0;
  background: var(--bg-soft);
}
@media (min-width: 768px) { .pricing { padding: var(--s-120) 0; } }
.pricing-card {
  text-align: center;
  background: var(--accent);
  color: var(--text-inverse);
  border-radius: var(--r);
  padding: var(--s-64) var(--s-32);
  box-shadow: 0 2px 8px rgba(43, 40, 35, 0.10), 0 18px 44px rgba(91, 63, 182, 0.28);
}
.pricing-eyebrow {
  font-size: var(--fs-meta);
  font-weight: var(--fw-mid);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(245, 240, 231, 0.75);
  margin: 0 0 var(--s-16);
}
.pricing-amount {
  font-size: clamp(72px, 12vw, 120px);
  line-height: 1;
  font-weight: var(--fw-display);
  letter-spacing: -0.04em;
  margin: 0;
}
.pricing-amount span { font-size: 0.5em; vertical-align: super; font-weight: var(--fw-strong); }
.pricing-once {
  font-size: var(--fs-lead);
  font-weight: var(--fw-strong);
  margin: var(--s-8) 0 0;
}
.pricing-meta {
  font-size: var(--fs-body);
  color: rgba(245, 240, 231, 0.78);
  margin: var(--s-12) 0 var(--s-32);
}
/* Lichte knop op de donkere prijs-kaart */
.btn-light {
  background: var(--bg);
  color: var(--accent-deep);
  box-shadow: 0 2px 10px rgba(43, 40, 35, 0.18);
  gap: var(--s-12);
  padding-right: var(--s-12);
  transition: transform .4s cubic-bezier(0.22,1,0.36,1), box-shadow .45s cubic-bezier(0.22,1,0.36,1), background .3s ease;
}
.btn-light:hover { transform: translateY(-2px); box-shadow: 0 6px 22px rgba(43, 40, 35, 0.26); }
.btn-light .btn-arrow { background: rgba(91, 63, 182, 0.16); }
.btn-light .btn-arrow svg { color: var(--accent-deep); }
.btn-light:hover .btn-arrow { transform: rotate(-45deg); }

/* ---------- FAQ ---------- */
.faq { padding: var(--s-80) 0; background: var(--bg); }
@media (min-width: 768px) { .faq { padding: var(--s-120) 0; } }
.faq-list { border-top: 1px solid var(--rule); }
.faq-item { border-bottom: 1px solid var(--rule); }
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-16);
  padding: var(--s-24) 0;
  font-size: var(--fs-h3);
  font-weight: var(--fw-strong);
  letter-spacing: -0.01em;
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon {
  position: relative;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
}
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  background: var(--accent);
  border-radius: 2px;
  transition: transform .28s ease, opacity .28s ease;
}
.faq-icon::before { inset: 10px 0 auto 0; height: 2px; }            /* horizontaal */
.faq-icon::after { inset: 0 auto 0 10px; width: 2px; }             /* verticaal */
.faq-item[open] .faq-icon::after { transform: scaleY(0); opacity: 0; }
.faq-item p {
  margin: 0;
  padding: 0 0 var(--s-24);
  font-size: var(--fs-lead);
  line-height: 1.5;
  color: var(--text-soft);
  max-inline-size: 56ch;
}

/* ---------- Over ons ---------- */
.about { padding: var(--s-96) 0; background: var(--bg-soft); }
@media (min-width: 768px) { .about { padding: var(--s-160) 0; } }
.about-quote { text-align: center; margin: 0; }
.about-quote p {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.2;
  font-weight: var(--fw-display);
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0 auto var(--s-24);
  max-inline-size: 22ch;
  text-wrap: balance;
}
.about-quote cite {
  font-style: normal;
  font-size: var(--fs-body);
  font-weight: var(--fw-mid);
  color: var(--text-soft);
}

/* ============================================================
   SCOPED Sites — eigen premium editorial layout
   (volledig los van het verkoop-template; navbar + knoppen behouden)
   ============================================================ */

/* Gedeelde block-koppen */
/* eyebrow als paarse pill — uniform op alle secties, zonder icoon */
.kicker {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(91, 63, 182, 0.10);
  color: var(--accent);
  font-size: 13px;
  font-weight: var(--fw-mid);
  letter-spacing: 0.04em;
  text-transform: none;
  margin: 0;
}
/* secties zonder flex-gap krijgen losse ruimte onder de pill */
.statement-inner .kicker { margin-block-end: var(--s-16); }
.block-head {
  max-inline-size: min(880px, 100%);
  margin-block-end: var(--s-56, var(--s-64));
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: var(--s-16);
}
/* "--center": blok én tekst gecentreerd (kop boven de gecentreerde werkwijze-stappen) */
.block-head--center { margin-inline: auto; text-align: center; align-items: center; }
.block-head--center .kicker { align-self: center; }
/* "--mid": blok gecentreerd op de pagina én tekst gecentreerd uitgelijnd */
.block-head--mid { margin-inline: auto; text-align: center; align-items: center; }
.block-head--mid .kicker { align-self: center; }
.block-title {
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.06;
  font-weight: var(--fw-display);
  letter-spacing: -0.03em;
  margin: 0;
  text-wrap: pretty;
}
/* Apple-stijl gradient — alleen op de oplossing-titel */
#pillars-title {
  line-height: 1.12;
  padding-block-end: 0.12em;
  background-image: linear-gradient(100deg, #2C2056 0%, #3D2C82 46%, #5B3FB6 78%, #7C5CD8 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* 1. HERO — altijd 100% viewport-hoogte, content gecentreerd */
.lead-hero {
  position: relative;
  min-block-size: 100vh;
  min-block-size: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(96px, 16vh, 160px) var(--s-24) clamp(64px, 12vh, 130px);
  overflow: clip;
  /* clean wit, met een fluistering paarse spotlight voor diepte */
  background:
    radial-gradient(ellipse 70% 55% at 50% 32%, rgba(124, 92, 216, 0.08) 0%, rgba(124, 92, 216, 0) 60%),
    #ffffff;
  color: var(--text);
}

/* ---------- Animated gradient hero-achtergrond (vanilla herbouw) ---------- */
.lead-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
/* vignette → zachte witte randen, laat het midden ademen */
.lead-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 104% 94% at 42% 44%, transparent 58%, rgba(255, 255, 255, 0.48) 100%);
  z-index: 2;
}
/* fijne film-grain → premium textuur, dempt banding */
.lead-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.06;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.lead-blobs {
  --size: 64%;
  position: absolute;
  inset: 0;
  filter: blur(72px);
  opacity: 0.62;
  z-index: 1;
}
.lead-blob {
  position: absolute;
  width: var(--size);
  height: var(--size);
  mix-blend-mode: multiply;
  transform-origin: center center;
  will-change: transform;
}
/* één blob bovenin links */
.lead-blob--1 {
  top: -6%;
  left: -4%;
  background: radial-gradient(circle at center, rgba(91, 63, 182, 0.34) 0, rgba(91, 63, 182, 0) 58%) no-repeat;
  animation: leadDriftA 26s ease-in-out infinite;
}
/* één blob onderin rechts */
.lead-blob--2 {
  bottom: -8%;
  right: -6%;
  background: radial-gradient(circle at center, rgba(168, 92, 200, 0.28) 0, rgba(168, 92, 200, 0) 58%) no-repeat;
  animation: leadDriftB 32s ease-in-out infinite;
}
/* centrale cluster verwijderd — alleen hoek-blobs + pointer */
.lead-blob--3,
.lead-blob--4,
.lead-blob--5 {
  display: none;
}
.lead-blob--pointer {
  width: 100%;
  height: 100%;
  top: -50%;
  left: -50%;
  background: radial-gradient(circle at center, rgba(140, 100, 255, 0.32) 0, rgba(140, 100, 255, 0) 50%) no-repeat;
  opacity: 0.4;
}

/* subtiele drift door de hero — kleine verplaatsing, lange duur */
@keyframes leadDriftA {
  0%   { transform: translate(0, 0); }
  50%  { transform: translate(4%, 5%); }
  100% { transform: translate(0, 0); }
}
@keyframes leadDriftB {
  0%   { transform: translate(0, 0); }
  50%  { transform: translate(-5%, -4%); }
  100% { transform: translate(0, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .lead-blob { animation: none !important; }
}
.lead-inner {
  position: relative;
  z-index: 2;
  max-inline-size: min(1200px, 94%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
}
.lead-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: var(--s-24);
}
/* heel zachte, volledig uitgevloeide sluier → tilt de tekst subtiel op zonder zichtbaar blok */
.lead-copy::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -40% -45%;
  background: radial-gradient(ellipse 70% 60% at 42% 48%, rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 0.16) 42%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
}
.lead-kicker {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(91, 63, 182, 0.08);
  border: 1px solid rgba(91, 63, 182, 0.16);
  color: var(--accent);
  font-size: 13px;
  font-weight: var(--fw-mid);
  letter-spacing: 0.04em;
  text-transform: none;
  margin: 0;
}
.lead-title {
  font-size: clamp(28px, 4vw, 54px);
  line-height: 1.05;
  font-weight: var(--fw-display);
  letter-spacing: -0.035em;
  margin: 0;
  white-space: nowrap;
  color: var(--text);
}
.lead-title em {
  font-style: normal;
  display: inline-block;
  padding-block-end: 0.1em;
  /* zelfde highlight-gradient als de oplossing-titel */
  background-image: linear-gradient(100deg, #2C2056 0%, #3D2C82 46%, #5B3FB6 78%, #7C5CD8 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.lead-underline {
  text-decoration: underline;
  text-decoration-color: var(--text);
  text-decoration-thickness: 0.06em;
  text-underline-offset: 0.12em;
}
.lead-sub {
  font-size: var(--fs-lead);
  line-height: 1.5;
  color: var(--text-soft);
  max-inline-size: 46ch;
  margin: 0;
}
.lead-cta {
  margin-top: var(--s-8);
  display: inline-flex;
  align-items: center;
  gap: clamp(10px, 2vw, 24px);
  flex-wrap: wrap;
}
.lead-facts {
  font-size: var(--fs-small);
  letter-spacing: 0.02em;
  color: var(--text-soft);
  margin: 0;
}

/* ---------- Roterende foto-cirkel (rechterkant hero) ---------- */
.lead-stage {
  position: relative;
  z-index: 1;
  inline-size: 100%;
  block-size: clamp(380px, 42vw, 560px);
  perspective: 1200px;
}
.orbit {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  will-change: transform;
}
.orbit-card {
  position: absolute;
  top: 50%;
  left: 50%;
  inline-size: clamp(98px, 9vw, 148px);
  aspect-ratio: 4 / 5;
  border-radius: 18px;
  overflow: hidden;
  background: var(--bg-soft);
  box-shadow:
    0 22px 48px rgba(30, 26, 43, 0.24),
    0 8px 18px rgba(30, 26, 43, 0.14);
  will-change: transform;
  backface-visibility: hidden;
}
.orbit-card img {
  inline-size: 100%;
  block-size: 100%;
  object-fit: cover;
  display: block;
}
/* zachte glans-laag → zelfde nuance als het origineel */
.orbit-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0) 52%);
  pointer-events: none;
}

@media (max-width: 880px) {
  /* hero groeit mee met de gestapelde inhoud i.p.v. forceren op 100vh (voorkomt afkappen) */
  .lead-hero { min-block-size: auto; padding-block: clamp(112px, 20vh, 150px) clamp(56px, 10vh, 96px); }
  .lead-inner { grid-template-columns: 1fr; gap: clamp(44px, 11vw, 72px); }
  /* volgorde op mobiel: eerst de foto-cirkel, dan titel → subtekst → knop */
  .lead-stage { order: -1; block-size: clamp(220px, 54vw, 300px); }
  /* kleinere foto-kaartjes zodat de cirkel compacter oogt */
  .lead-stage .orbit-card { inline-size: clamp(72px, 19vw, 108px); }
  .lead-copy { align-items: center; text-align: center; }
  .lead-copy::before { inset: -35% -40%; background: radial-gradient(ellipse 72% 62% at 50% 48%, rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 0.16) 44%, rgba(255, 255, 255, 0) 72%); }
  /* titel mag netjes afbreken op smalle schermen */
  .lead-title { white-space: normal; }
  .lead-sub { margin-inline: auto; }
  .lead-cta { justify-content: center; width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  .orbit { transform: none !important; }
}

/* 2. STATEMENT — donkere band */
/* donkere sectie — foto bedekt de hele sectie, tekst gecentreerd op de pagina (links uitgelijnd) */
.statement {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(120px, 24vh, 300px) 0;
  background: var(--bg-deep);
  color: var(--text-inverse);
}
.statement-bg {
  position: absolute;
  inset: 0;
  inline-size: 100%;
  block-size: 100%;
  object-fit: cover;
  z-index: -2;
  /* donker gemaakt zodat de tekst goed leesbaar blijft */
  filter: brightness(0.5) saturate(1.04);
}
.statement::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(13, 10, 26, 0.55) 0%, rgba(13, 10, 26, 0.62) 50%, rgba(13, 10, 26, 0.78) 100%),
    radial-gradient(70% 70% at 28% 50%, rgba(13, 10, 26, 0.10) 0%, rgba(13, 10, 26, 0.55) 100%);
}
.statement-inner {
  position: relative;
  max-inline-size: min(1240px, 94%);
  margin-inline: auto;
  padding-inline: var(--s-24);
}
.statement-content {
  max-inline-size: 600px;
  margin-inline: auto;        /* blok gecentreerd op de pagina */
  text-align: left;           /* tekst zelf links uitgelijnd */
}
.statement .kicker {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #fff;
}

.statement-title {
  font-size: clamp(30px, 4vw, 56px);
  line-height: 1.12;
  font-weight: var(--fw-display);
  letter-spacing: -0.03em;
  margin: 0 0 var(--s-24);
  max-inline-size: 24ch;
  text-wrap: pretty;
  color: var(--text-inverse);
}
.statement-title em {
  font-style: normal;
  /* highlight-gradient aangepast voor donkere achtergrond: licht → paars (blijft leesbaar) */
  background-image: linear-gradient(120deg, #FFFFFF 0%, #EDE6FB 34%, #C2A6F2 68%, #9A78E6 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.statement-sub {
  font-size: var(--fs-lead);
  line-height: 1.5;
  color: rgba(244, 241, 251, 0.84);
  max-inline-size: 38ch;      /* korte leesregel — breekt netjes naar nieuwe regel */
  margin: 0;
}

/* 3. PILLARS — editorial spec-lijst */
.pillars {
  padding: clamp(80px, 14vh, 160px) 0;
  /* hele lichte mesh-gradient in merkkleuren — geeft het liquid glass iets om op te pakken */
  background:
    radial-gradient(34% 46% at 14% 26%, rgba(124, 92, 216, 0.12) 0%, rgba(124, 92, 216, 0) 62%),
    radial-gradient(40% 50% at 88% 22%, rgba(230, 168, 106, 0.10) 0%, rgba(230, 168, 106, 0) 62%),
    radial-gradient(46% 56% at 78% 94%, rgba(124, 92, 216, 0.10) 0%, rgba(124, 92, 216, 0) 62%),
    radial-gradient(38% 48% at 24% 90%, rgba(177, 103, 198, 0.08) 0%, rgba(177, 103, 198, 0) 62%),
    var(--bg-soft);
}
.block-sub {
  font-size: var(--fs-lead);
  line-height: 1.5;
  color: var(--text-soft);
  margin: 0;
  max-inline-size: 42ch;
}
.pillar-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-24);
}
@media (min-width: 760px) {
  .pillar-grid { grid-template-columns: repeat(3, 1fr); gap: var(--s-32); }
}
.pillar-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--s-12);
  padding: var(--s-32);
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--r);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  box-shadow: 0 8px 32px rgba(30, 26, 43, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  overflow: visible;
  transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s ease;
}
.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(30, 26, 43, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.7);
}
.pillar-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 14px;
  background: linear-gradient(150deg, rgba(91,63,182,0.12), rgba(122,96,208,0.06));
  color: var(--accent);
  margin-block-end: var(--s-8);
  transition: color .3s ease;
}
.pillar-icon svg { width: 24px; height: 24px; }
/* icon krijgt bij hover dezelfde kleur als het bijbehorende woord */
.pillar-card:nth-child(1):hover .pillar-icon { color: #6A4FD0; }
.pillar-card:nth-child(2):hover .pillar-icon { color: #D1556B; }
.pillar-card:nth-child(3):hover .pillar-icon { color: #E5843C; }
.pillar-index { font-size: var(--fs-small); font-weight: var(--fw-strong); color: var(--accent-soft); letter-spacing: 0.08em; }
.pillar-word {
  font-size: clamp(26px, 3vw, 34px);
  font-weight: var(--fw-display);
  letter-spacing: -0.02em;
  margin: 0;
  transition: color .3s ease;
}
/* elk woord een eigen hover-kleur: paarsblauw → koraal → oranje (gelijkmatige stappen) */
.pillar-card:nth-child(1):hover .pillar-word { color: #6A4FD0; }
.pillar-card:nth-child(2):hover .pillar-word { color: #D1556B; }
.pillar-card:nth-child(3):hover .pillar-word { color: #E5843C; }
.pillar-desc { font-size: var(--fs-body); line-height: 1.5; color: var(--text-soft); margin: 0; }

/* 5. KORT GEHOUDEN — niemand leest tekst */
.brief { padding: clamp(80px, 14vh, 160px) 0; background: var(--bg); text-align: left; overflow-x: clip; }
.brief-inner {
  max-inline-size: min(1240px, 94%);
  margin-inline: auto;
  padding-inline: var(--s-24);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(32px, 6vw, 88px);
}
/* foto breekt uit de gecentreerde kolom en loopt bijna tot de linker viewport-rand — breekt de symmetrie */
.brief-visual {
  position: relative;
  margin-left: calc((min(1240px, 94vw) - 100vw) / 2 - var(--s-24) + clamp(48px, 8vw, 170px));
}
.brief-img {
  display: block;
  inline-size: 93%;
  height: auto;
}
.brief-copy { display: flex; flex-direction: column; align-items: flex-start; gap: var(--s-24); }
.brief .kicker { color: var(--accent); }
@media (max-width: 880px) {
  .brief-inner { grid-template-columns: 1fr; gap: clamp(28px, 6vw, 48px); }
  .brief-visual { order: -1; max-inline-size: 520px; margin-left: 0; }
}
.brief-title {
  font-size: clamp(30px, 4.4vw, 52px);
  line-height: 1.14;
  font-weight: var(--fw-display);
  letter-spacing: -0.03em;
  margin: 0;
  padding-block-end: 0.12em;
  text-wrap: pretty;
  /* Apple-stijl: hele zin in één gradient, donker links → paars rechts */
  background-image: linear-gradient(100deg, #2C2056 0%, #3D2C82 46%, #5B3FB6 78%, #7C5CD8 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.brief-sub {
  font-size: var(--fs-lead);
  line-height: 1.55;
  color: var(--text-soft);
  margin: 0;
  max-inline-size: 48ch;
}
.brief-cta { margin-top: var(--s-8); }
.brief-facts {
  list-style: none;
  margin: var(--s-16) 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: var(--s-16);
}
.brief-facts li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  min-width: 116px;
  padding: var(--s-24) var(--s-32);
  border: 1px solid var(--rule);
  border-radius: var(--r);
  background: var(--bg-soft);
}
.brief-facts strong {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: var(--fw-display);
  letter-spacing: -0.03em;
  line-height: 1;
  background-image: linear-gradient(135deg, var(--accent) 0%, #B167C6 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.brief-facts span {
  font-size: var(--fs-small);
  color: var(--text-soft);
  letter-spacing: 0.02em;
}

/* 4. FLOW — verbonden stepper */
.flow {
  padding: clamp(80px, 14vh, 160px) 0;
  background:
    radial-gradient(36% 60% at 16% 40%, rgba(124, 92, 216, 0.10) 0%, rgba(124, 92, 216, 0) 70%),
    radial-gradient(40% 64% at 84% 36%, rgba(230, 168, 106, 0.08) 0%, rgba(230, 168, 106, 0) 72%),
    radial-gradient(44% 70% at 60% 96%, rgba(124, 92, 216, 0.08) 0%, rgba(124, 92, 216, 0) 74%),
    var(--bg);
}
.flow-track { display: grid; gap: var(--s-40); grid-template-columns: 1fr; }
@media (min-width: 780px) {
  .flow-track { grid-template-columns: repeat(4, 1fr); gap: var(--s-24); position: relative; align-items: start; }
  .flow-track::before {
    content: ""; position: absolute; top: 27px; left: 12.5%; right: 12.5%;
    height: 2px; background: var(--rule); z-index: 0;
  }
}
.flow-step {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; gap: var(--s-12);
  align-items: center; text-align: center;
  transition: transform .45s cubic-bezier(0.22, 1, 0.36, 1);
}
.flow-num {
  position: relative;
  display: grid; place-items: center;
  width: 54px; height: 54px; border-radius: 50%;
  background: linear-gradient(150deg, rgba(91, 63, 182, 0.60), rgba(124, 92, 216, 0.40));
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.45);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  font-size: var(--fs-lead); font-weight: var(--fw-display);
  text-shadow: 0 1px 3px rgba(40, 28, 90, 0.35);
  box-shadow: 0 8px 24px rgba(91, 63, 182, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transition: transform .45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .45s ease, background .35s ease;
}
/* verfijnde halo-ring die bij hover rustig naar buiten opent */
.flow-num::after {
  content: "";
  position: absolute; inset: -7px;
  border-radius: 50%;
  border: 1.5px solid rgba(91, 63, 182, 0.35);
  opacity: 0;
  transform: scale(0.82);
  transition: opacity .45s ease, transform .55s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}
.flow-name { font-size: var(--fs-h3); font-weight: var(--fw-strong); letter-spacing: -0.01em; margin: 0; transition: color .3s ease; }
.flow-desc { font-size: var(--fs-body); line-height: 1.5; color: var(--text-soft); margin: 0; max-inline-size: 26ch; }

/* Super sleek hover op een werkwijze-stap */
.flow-step:hover { transform: translateY(-6px); }
.flow-step:hover .flow-num {
  transform: scale(1.08);
  background: linear-gradient(150deg, rgba(74, 49, 150, 0.72), rgba(124, 92, 216, 0.52));
  box-shadow: 0 14px 34px rgba(91, 63, 182, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.7);
}
.flow-step:hover .flow-num::after { opacity: 1; transform: scale(1); }
.flow-step:hover .flow-name { color: var(--accent); }

/* 5. PRICE — mega typografisch moment */
.price { position: relative; text-align: left; padding: clamp(96px, 18vh, 220px) 0; overflow: clip; background: var(--bg-soft); }
.price-glow {
  position: absolute; inset: 50% 0 auto 50%; transform: translate(-50%, -50%);
  width: min(900px, 110vw); aspect-ratio: 1;
  background: radial-gradient(circle at center, rgba(123, 91, 216, 0.16) 0%, rgba(123, 91, 216, 0) 60%);
  filter: blur(16px); pointer-events: none; z-index: -1;
}
.price-inner { position: relative; }
.price-layout {
  display: grid;
  grid-template-columns: minmax(300px, 400px) 1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}

/* LINKS: prijskaart */
.price-card {
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--r);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  box-shadow: 0 8px 32px rgba(30, 26, 43, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  overflow: hidden;
}
.price-card-head { padding: var(--s-32); display: flex; flex-direction: column; gap: var(--s-24); }
.price-plan {
  margin: 0;
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: var(--fw-display);
  letter-spacing: -0.02em;
  background-image: linear-gradient(100deg, #5B3FB6 0%, #B167C6 52%, #E5843C 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  align-self: flex-start;
}
.price-headline { display: flex; align-items: center; gap: var(--s-16); }
.price-amount {
  display: inline-block;
  font-size: clamp(52px, 8vw, 76px);
  line-height: 0.95;
  font-weight: var(--fw-display);
  letter-spacing: -0.04em;
  margin: 0;
  background-image: linear-gradient(135deg, #8B6FE0 0%, #5B3FB6 46%, #3E2A82 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.price-cur { font-size: 0.5em; vertical-align: super; letter-spacing: 0; }
.price-unit { font-size: var(--fs-body); line-height: 1.3; color: var(--text-soft); }
.price-cta { margin-block-start: var(--s-8); }
.price-card-body {
  padding: var(--s-32);
  border-top: 1px solid rgba(255, 255, 255, 0.55);
  display: flex; flex-direction: column; gap: var(--s-24);
}
.price-features { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: var(--s-16); }
.price-features li {
  display: flex; align-items: center; gap: var(--s-12);
  font-size: var(--fs-body); color: var(--text);
}
.price-check {
  flex: none;
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; color: var(--accent);
}
.price-check svg { width: 20px; height: 20px; }
.price-more { font-size: var(--fs-small); color: var(--text-soft); transition: color .2s ease; }
.price-more:hover { color: var(--accent); }

/* RECHTS: tekst */
.price-copy { display: flex; flex-direction: column; align-items: flex-start; gap: var(--s-24); }
.price-copy .kicker { margin-block-end: 0; }
.price-copy-title {
  font-size: clamp(32px, 4.2vw, 52px);
  line-height: 1.08;
  font-weight: var(--fw-display);
  letter-spacing: -0.03em;
  margin: 0;
  padding-block-end: 0.12em;
  /* signature highlight: donker → paars */
  background-image: linear-gradient(100deg, #2C2056 0%, #3D2C82 46%, #5B3FB6 78%, #7C5CD8 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.price-copy-text {
  font-size: var(--fs-lead);
  line-height: 1.5;
  color: var(--text-soft);
  max-inline-size: 46ch;
  margin: 0;
}

@media (max-width: 880px) {
  .price-layout { grid-template-columns: 1fr; gap: clamp(32px, 8vw, 56px); }
  .price-card { max-inline-size: 440px; }
}

/* 6. FAQ */
.qa { padding: clamp(80px, 14vh, 160px) 0; background: var(--bg); }
.qa-list { border-top: 1px solid var(--rule); }
.qa-item { border-bottom: 1px solid var(--rule); }
.qa-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: var(--s-16);
  padding: var(--s-24) 0;
  font-size: var(--fs-h3); font-weight: var(--fw-strong); letter-spacing: -0.01em;
  cursor: pointer; list-style: none;
}
.qa-item summary::-webkit-details-marker { display: none; }
.qa-icon { position: relative; flex-shrink: 0; width: 22px; height: 22px; }
.qa-icon::before, .qa-icon::after { content: ""; position: absolute; background: var(--accent); border-radius: 2px; transition: transform .28s ease, opacity .28s ease; }
.qa-icon::before { inset: 10px 0 auto 0; height: 2px; }
.qa-icon::after { inset: 0 auto 0 10px; width: 2px; }
.qa-item[open] .qa-icon::after { transform: scaleY(0); opacity: 0; }
.qa-item p { margin: 0; padding: 0 0 var(--s-24); font-size: var(--fs-lead); line-height: 1.5; color: var(--text-soft); max-inline-size: 56ch; }

/* 7. VOICE — stille quote */
.voice { padding: clamp(96px, 18vh, 200px) 0; background: var(--bg-soft); }
.voice-card {
  display: flex;
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
  /* wit blok verwijderd — beeld + tekst staan direct op de sectie */
}
.voice-photo {
  flex-shrink: 0;
  width: clamp(140px, 22vw, 220px);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: calc(var(--r) - 10px);
}
.voice-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--s-12);
  min-width: 0;
}
.voice-text .kicker { margin: 0; }
.voice-card-title {
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1.2; font-weight: var(--fw-display); letter-spacing: -0.02em;
  margin: 0; color: var(--text); text-wrap: pretty;
}
.voice-card-sub {
  font-size: var(--fs-body);
  line-height: 1.55;
  color: var(--text-soft);
  margin: 0;
}
@media (max-width: 600px) {
  .voice-card { flex-direction: column; align-items: center; text-align: center; }
  .voice-photo { width: min(100%, 200px); }
  .voice-text { align-items: center; text-align: center; }
  .voice-text .kicker { align-self: center; }
}

/* 8. CLOSING */
/* (afsluit-sectie verplaatst naar de footer) */

/* LOGO-MARQUEE — ronddraaiende klantlogo's, uniform grijs */
.logos { margin-top: clamp(72px, 13vh, 160px); padding: var(--s-32) 0; overflow: hidden; position: relative; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.logos-track { display: flex; width: max-content; align-items: center; gap: clamp(80px, 9vw, 150px); animation: logosScroll 60s linear infinite; }
.logo-mark { width: auto; height: auto; max-height: 28px; max-width: 116px; object-fit: contain; flex-shrink: 0; opacity: 0.5; transition: opacity 0.3s ease; }
.logos:hover .logo-mark { opacity: 0.72; }
@keyframes logosScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .logos-track { animation: none; flex-wrap: wrap; justify-content: center; gap: var(--s-24) var(--s-48); } }
@media (max-width: 640px) { .logos-track { gap: clamp(56px, 14vw, 80px); } .logo-mark { max-height: 22px; max-width: 92px; } }

/* FOOTER — cinematic, donker, met afsluitende CTA */
.foot {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--bg-deep);
  color: var(--text-inverse);
  padding: clamp(96px, 16vh, 200px) 0 var(--s-40);
  display: flex;
  flex-direction: column;
  gap: clamp(64px, 12vh, 140px);
}
/* aurora-glow die ademt */
.foot-aurora {
  position: absolute; left: 50%; top: 36%;
  width: 80vw; height: 60vh;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(124, 92, 216, 0.30) 0%, rgba(139, 111, 224, 0.16) 40%, transparent 70%);
  filter: blur(80px);
  pointer-events: none; z-index: 0;
  animation: footBreathe 8s ease-in-out infinite alternate;
}
@keyframes footBreathe {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 0.55; }
  100% { transform: translate(-50%, -50%) scale(1.12); opacity: 1; }
}
/* fijn grid met vervaging boven/onder */
.foot-grid {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-size: 60px 60px;
  background-image:
    linear-gradient(to right, rgba(244, 241, 251, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(244, 241, 251, 0.05) 1px, transparent 1px);
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 28%, #000 72%, transparent);
  mask-image: linear-gradient(to bottom, transparent, #000 28%, #000 72%, transparent);
}
/* gigantisch achtergrondwoord */
.foot-giant {
  position: absolute; left: 50%; bottom: -4vh;
  transform: translateX(-50%);
  z-index: 0; pointer-events: none; user-select: none; white-space: nowrap;
  font-size: 26vw; line-height: 0.75; font-weight: 900; letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 2px rgba(244, 241, 251, 0.045);
  background: linear-gradient(180deg, rgba(244, 241, 251, 0.05) 0%, rgba(244, 241, 251, 0.008) 70%);
  -webkit-background-clip: text; background-clip: text;
}
/* CTA-blok */
.foot-main {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: var(--s-24);
  padding-inline: var(--s-24);
  max-inline-size: min(900px, 92%);
  margin-inline: auto;
}
.foot-eyebrow {
  display: inline-flex; align-items: center;
  padding: 6px 14px; border-radius: 999px; margin: 0;
  background: rgba(244, 241, 251, 0.08); border: 1px solid rgba(244, 241, 251, 0.12);
  color: var(--highlight);
  font-size: 13px; font-weight: var(--fw-mid); letter-spacing: 0.04em;
}
.foot-cta-title {
  margin: 0;
  font-size: clamp(30px, 4.2vw, 54px); line-height: 1.08; font-weight: var(--fw-display);
  letter-spacing: -0.03em; text-wrap: pretty;
  background: linear-gradient(180deg, #FFFFFF 0%, rgba(244, 241, 251, 0.55) 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 30px rgba(139, 111, 224, 0.25));
}
.foot-pills { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--s-16); margin-top: var(--s-8); }
.foot-pill {
  display: inline-flex; align-items: center; gap: var(--s-12);
  block-size: 52px;            /* exact even hoog als de header-knop */
  padding: 0 16px 0 28px; border-radius: 999px;
  font-size: var(--fs-body); font-weight: var(--fw-strong);
  color: var(--text-inverse);
  background: linear-gradient(145deg, rgba(244, 241, 251, 0.10), rgba(244, 241, 251, 0.03));
  border: 1px solid rgba(244, 241, 251, 0.14);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5), inset 0 1px 1px rgba(244, 241, 251, 0.12);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  transition: background .4s ease, border-color .4s ease, box-shadow .4s ease;
  will-change: transform;
}
.foot-pill:not(.foot-pill--primary) { padding: 0 28px; }
.foot-pill:hover {
  background: linear-gradient(145deg, rgba(244, 241, 251, 0.18), rgba(244, 241, 251, 0.06));
  border-color: rgba(244, 241, 251, 0.28);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.55), inset 0 1px 1px rgba(244, 241, 251, 0.2);
}
.foot-pill--primary {
  background: var(--btn-grad);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 12px 30px -8px rgba(91, 63, 182, 0.55), inset 0 1px 1px rgba(255, 255, 255, 0.25);
}
.foot-pill--primary:hover { background: var(--btn-grad-hover); }
.foot-pill-arrow { display: grid; place-items: center; width: 1.6rem; height: 1.6rem; border-radius: 50%; background: rgba(255, 255, 255, 0.18); transition: transform .3s ease; }
.foot-pill-arrow svg { width: 13px; height: 13px; color: #fff; }
.foot-pill--primary:hover .foot-pill-arrow { transform: rotate(-45deg); }
.foot-mail { margin: 0; }
.foot-mail a { color: rgba(244, 241, 251, 0.7); border-bottom: 1px solid rgba(244, 241, 251, 0.22); padding-bottom: 2px; font-size: var(--fs-body); }
.foot-mail a:hover { color: #fff; }
/* onderbalk */
.foot-bar {
  position: relative; z-index: 2;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: var(--s-16);
  padding: var(--s-24) clamp(20px, 5vw, 64px) 0;
  border-top: 1px solid rgba(244, 241, 251, 0.10);
  margin-inline: clamp(20px, 5vw, 64px);
}
.foot-meta { display: flex; flex-wrap: wrap; align-items: center; gap: var(--s-8) var(--s-12); font-size: var(--fs-small); color: rgba(244, 241, 251, 0.6); }
.foot-brand { font-weight: var(--fw-strong); color: var(--text-inverse); }
.foot-meta a { color: rgba(244, 241, 251, 0.6); }
.foot-meta a:hover { color: #fff; }
.foot-sep { opacity: 0.35; }
.foot-copy { opacity: 0.85; }
.foot-top {
  flex-shrink: 0;
  width: 48px; height: 48px; border-radius: 50%;
  display: grid; place-items: center;
  color: var(--text-inverse);
  background: linear-gradient(145deg, rgba(244, 241, 251, 0.10), rgba(244, 241, 251, 0.03));
  border: 1px solid rgba(244, 241, 251, 0.14);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  cursor: pointer;
  transition: background .4s ease, border-color .4s ease;
  will-change: transform;
}
.foot-top:hover { background: linear-gradient(145deg, rgba(244, 241, 251, 0.18), rgba(244, 241, 251, 0.06)); border-color: rgba(244, 241, 251, 0.28); }
.foot-top svg { width: 20px; height: 20px; transition: transform .3s ease; }
.foot-top:hover svg { transform: translateY(-3px); }
@media (max-width: 640px) {
  .foot-bar { flex-direction: column-reverse; align-items: center; text-align: center; }
  .foot-meta { justify-content: center; }
}
@media (prefers-reduced-motion: reduce) { .foot-aurora { animation: none; } }

/* ============================================================
   Animated Testimonials — 2-koloms rotator (vanilla)
   ============================================================ */
.reviews {
  --rv-accent: #5B3FB6;
  --rv-accent-tint: rgba(91, 63, 182, 0.10);
  --rv-deco-tint:   rgba(91, 63, 182, 0.07);
  --rv-bg: #F0EDF8;
  --rv-bg-card: #FFFFFF;
  --rv-text: #1E1A2B;
  --rv-text-soft: #565073;
  --rv-rule: #E7E2F1;
  --rv-star: #F5B731;
  --rv-radius: 22px;
  /* hele lichte mesh-gradient in merkkleuren — geeft het liquid glass iets om op te pakken */
  background:
    radial-gradient(38% 50% at 16% 24%, rgba(124, 92, 216, 0.12) 0%, rgba(124, 92, 216, 0) 62%),
    radial-gradient(42% 52% at 86% 26%, rgba(230, 168, 106, 0.10) 0%, rgba(230, 168, 106, 0) 62%),
    radial-gradient(48% 58% at 74% 92%, rgba(124, 92, 216, 0.10) 0%, rgba(124, 92, 216, 0) 62%),
    radial-gradient(40% 50% at 28% 88%, rgba(177, 103, 198, 0.08) 0%, rgba(177, 103, 198, 0) 62%),
    var(--rv-bg);
  padding: clamp(80px, 13vh, 112px) 20px;
  overflow: hidden;
}
@media (min-width: 768px) { .reviews { padding: 200px 32px; } }
/* op mobiel kort houden: subtekst weglaten */
@media (max-width: 767px) { .reviews-sub { display: none; } }
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 900px)  { .reviews-grid { grid-template-columns: 1fr 1fr; gap: 64px; } }
@media (min-width: 1200px) { .reviews-grid { gap: 96px; } }
.reviews-head { display: flex; flex-direction: column; gap: 24px; }
.reviews-badge {
  display: inline-flex; align-items: center; gap: 8px;
  align-self: flex-start;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--rv-accent-tint);
  color: var(--rv-accent);
  font-size: 13px; font-weight: 500; letter-spacing: 0.04em;
}
.reviews-badge svg { width: 14px; height: 14px; fill: currentColor; }
.reviews-title {
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 700;
  margin: 0;
  max-inline-size: 14ch;
  color: var(--rv-text);
}
.reviews-sub {
  font-size: 20px; line-height: 1.55;
  color: var(--rv-text-soft);
  margin: 0;
  max-inline-size: 40ch;
}
.reviews-dots {
  display: inline-flex; align-items: center;
  gap: 12px;
  margin-top: 8px;
}
.reviews-dot {
  height: 10px; width: 10px;
  border-radius: 999px;
  border: 0;
  background: var(--rv-rule);
  cursor: pointer;
  padding: 0;
  transition: width .35s cubic-bezier(0.22, 1, 0.36, 1), background .35s ease;
}
.reviews-dot:focus-visible { outline: 2px solid var(--rv-accent); outline-offset: 3px; }
.reviews-dot.is-active { width: 40px; background: var(--rv-accent); }
.reviews-stage {
  position: relative;
  display: grid;
  grid-template-areas: "card";
}
.reviews-deco {
  position: absolute;
  width: 96px; height: 96px;
  border-radius: var(--rv-radius);
  background: var(--rv-deco-tint);
  pointer-events: none;
  z-index: 0;
}
.reviews-deco--tr { top: -24px; right: -24px; background: rgba(230, 168, 106, 0.12); }
.reviews-deco--bl { bottom: -24px; left: -24px; background: rgba(124, 92, 216, 0.12); }
.review-card {
  grid-area: card;
  position: relative;
  z-index: 0;
  /* liquid glass — zelfde recept als de header-pill */
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--rv-radius);
  padding: 32px;
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  box-shadow: 0 8px 32px rgba(30, 26, 43, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  display: flex; flex-direction: column;
  gap: 24px;
  opacity: 0;
  transform: translateX(60px) scale(0.96);
  pointer-events: none;
  transition: opacity .55s cubic-bezier(0.22, 1, 0.36, 1), transform .55s cubic-bezier(0.22, 1, 0.36, 1);
}
.review-card.is-active {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
  z-index: 10;
}
.review-stars { display: inline-flex; gap: 4px; color: var(--rv-star); }
.review-stars svg { width: 18px; height: 18px; fill: currentColor; }
.review-quote-wrap { position: relative; flex: 1; padding-top: 8px; }
.review-quote-icon {
  position: absolute; top: -12px; left: -6px;
  font-size: 64px; line-height: 1;
  color: var(--rv-accent);
  opacity: 0.18;
  font-family: Georgia, "Times New Roman", serif;
  user-select: none;
}
.review-quote {
  position: relative; z-index: 1;
  font-size: 20px; line-height: 1.55;
  color: var(--rv-text);
  font-weight: 500;
  margin: 0;
}
.review-divider { border: 0; height: 1px; background: var(--rv-rule); margin: 0; }
.review-author { font-size: 14px; color: var(--rv-text-soft); margin: 0; }
.review-name { font-weight: 600; color: var(--rv-text); font-size: 16px; display: block; }
@media (prefers-reduced-motion: reduce) {
  .review-card { transition: opacity .3s ease; transform: none; }
  .review-card.is-active { transform: none; }
}

