/* ════════════════════════════════════════════════════════
   Marketing website
   Pixel-perfect translation from Figma CSS export.
   Base design: 1440 × 4237 px
   ════════════════════════════════════════════════════════ */

/* ── Custom Properties (exact Figma values) ─────────────── */
:root {
  /* Colors */
  --accent:       #45BF9F;   /* Primary CTA, icon circles */
  --brand-blue:   #566FB3;   /* Footer, waitlist bg, card titles, names */
  --text-dark:    #2D2D2D;   /* Headings */
  --text-body:    #555555;   /* Body text — donkerder voor leesbaarheid */
  --text-muted:   #6B7280;   /* Secundaire tekst — voldoet aan WCAG AA */
  --bg-page:      #F3F5FA;   /* Page background — subtiele blauw-getinte neutraal */
  --bg-card:      #FFFFFF;   /* Cards */
  --border:       #DFE2E6;   /* Form borders */
  --border-light: #C2C7D0;   /* Feature dividers, card borders */
  --border-card:  #E6EAF2;   /* Zachte, koele kaartrand */
  --anthracite:   #181C25;   /* Donkere nav / topbar */

  /* Verticale ritme-schaal — overal consistent gebruiken.
     section-pad : sectie top/bottom (de gekleurde band)
     space-block : tussen componenten/panelen binnen een sectie
     space-element: tussen losse elementen (bv. content → CTA-knop) */
  --section-pad:    120px;
  --space-block:    60px;
  --space-element:  30px;

  /* Zachte, licht blauw-getinte diepte voor kaarten */
  --shadow-card:       0 1px 2px rgba(40, 55, 90, 0.04), 0 10px 28px rgba(40, 55, 90, 0.07);
  --shadow-card-hover: 0 4px 10px rgba(40, 55, 90, 0.08), 0 18px 44px rgba(40, 55, 90, 0.11);

  /* Typography */
  --font-h:   'Hubot Sans', 'Inter', system-ui, -apple-system, sans-serif;
  --font-b:   'Inter', system-ui, -apple-system, sans-serif;
}

/* Consistente ritme-schaal op kleinere schermen — één bron voor alle secties */
@media (max-width: 900px) { :root { --section-pad: 96px; --space-block: 48px; --space-element: 24px; } }
@media (max-width: 600px) { :root { --section-pad: 64px; --space-block: 40px; --space-element: 20px; } }

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-b);
  font-size: 16px;
  line-height: 1.5;
  background: var(--bg-page);
  color: var(--text-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, select, textarea { font: inherit; }

/* ── Screen-reader only ─────────────────────────────────── */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

/* ── Page wrapper ───────────────────────────────────────── */
.page {
  width: 100%;
  overflow-x: hidden;
}

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  font-family: var(--font-h);
  font-weight: 500;
  /* Standaardmaat — geldt overal tenzij een size-modifier het overschrijft */
  font-size: 15px;
  height: 46px;
  padding: 0 26px;
  border-radius: 999px;
  transition: opacity 0.15s ease, transform 0.15s ease;
}
.btn:hover { opacity: 0.9; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

/* Accent (teal) — main CTA */
.btn--accent {
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
}
/* White — secondary CTA (How it works) */
.btn--white {
  background: #fff;
  color: #6B788E;
  border-radius: 999px;
}
/* Nav contact button (inside dark pill) */
.btn--nav {
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  font-size: 15px;
  padding: 8px 28px;
  height: 36px;
}
/* Prominente CTA — iets groter, voor hero + afsluitende secties */
.btn--lg {
  font-size: 15px;
  height: 52px;
  padding: 0 30px;
}
/* Standaard sectie-CTA — gelijk aan de basismaat */
.btn--md {
  font-size: 15px;
  height: 46px;
  padding: 0 26px;
}
/* Compact — nav / inline naast tekst */
.btn--sm {
  font-size: 14px;
  height: 38px;
  padding: 0 18px;
}
/* Secundair (ghost) — neemt de hoogte van de gekoppelde size-modifier over */
.btn--ghost {
  background: transparent;
  color: var(--text-dark);
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: 999px;
}
.btn--ghost:hover { opacity: 1; border-color: var(--accent); color: var(--accent); }
/* Hero text link (secondary action) */
.hero__link {
  font-family: var(--font-h);
  font-weight: 500;
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.15s;
}
.hero__link:hover { color: #fff; }
/* Full-width */
.btn--full { width: 100%; }


/* ════════════════════════════════════════════════════════
   HERO
   Full-bleed: geen margin, geen border-radius
   ════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  margin: 0;
  height: 100vh;
  min-height: 640px;
  max-height: 1080px;
  border-radius: 0;
  overflow: hidden;
}

/* Background layer: poster image paints instantly (LCP), video fades in on top */
.hero__bg {
  position: absolute;
  inset: 0;
  background: url('assets/hero-banner-poster.jpg') center center / cover no-repeat;
  border-radius: 0;
  overflow: hidden;
}

/* Looping background video — hidden until it can play, then cross-fades over the poster */
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.9s ease;
  pointer-events: none;
}
.hero__video.is-ready { opacity: 1; }

/* Edge scrims only — video stays vibrant and sharp in the middle.
   Top: dark → transparent keeps the menu legible.
   Bottom: transparent → dark keeps the heading + subtitle + button legible. */
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    /* Boven — donker achter het menu (75%), afzwakkend naar helder onder het menu */
    linear-gradient(180deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.15) 13%, rgba(0,0,0,0) 18%),
    /* Onder — zuiver lineair: 75% aan de onderrand, recht aflopend naar 15%, die daarna doorloopt (geen sprong) */
    linear-gradient(0deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.15) 38%);
  pointer-events: none;
}

/* No global darkening — the scrims do the work */
.hero__blur {
  position: absolute;
  inset: 0;
  background: transparent;
  border-radius: 0;
  overflow: hidden;
}

/* Honour reduced-motion: never show the moving video, keep the still poster */
@media (prefers-reduced-motion: reduce) {
  .hero__video { display: none; }
}

/* ── Navigation — clean transparent balk ───────────────── */
.nav {
  position: absolute;
  top: 32px;
  left: 84px;
  right: 84px;
  height: 36px;
  background: transparent;
  border-radius: 0;
  z-index: 10;

  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
}
.nav__logo {
  flex-shrink: 0;
  width: 160px;
  height: 30px;
  display: flex;
  align-items: center;
}
.nav__logo a {
  display: flex;
  align-items: center;
}
.nav__logo img {
  display: block;
  height: 30px;
  width: auto;
}
.nav__links {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex: 1;
}
.nav__links a {
  font-family: var(--font-h);
  font-weight: 500;
  font-size: 15px;
  line-height: 20px;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s;
}
.nav__links a:hover { color: #fff; }

/* Nav right-side actions: Inloggen + CTA */
.nav__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav__login {
  font-family: var(--font-h);
  font-weight: 500;
  font-size: 15px;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s;
}
.nav__login:hover { color: #fff; }

/* ── Hero text content — bottom-centered ────────────────── */
.hero__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 56px;
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
  padding: 0 24px;
  z-index: 5;

  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
}
.hero__heading {
  font-family: var(--font-h);
  font-weight: 400;
  font-size: clamp(30px, 3.5vw, 44px);
  line-height: 1.28;
  color: #fff;
  text-align: center;
  margin: 0 0 20px;
  max-width: none;
}
/* Subtitle + CTA on one centered row (wraps on narrow screens) */
.hero__tagline {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
.hero__sub {
  font-family: var(--font-b);
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: rgba(255,255,255,0.80);
  text-align: center;
  margin: 0;
}
.hero__ctas {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px 18px;
  margin-top: 22px;
}
.hero__trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.70);
  white-space: nowrap;
}
.hero__trust-item svg {
  flex-shrink: 0;
  color: var(--accent);
}

/* Scroll-hint onderaan de hero — nodigt uit om onder de vouw verder te lezen.
   Subtiele, klikbare chevron met zachte bounce; de beweging maakt de scroll
   ontdekbaar zonder de hero te vervuilen. */
.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  color: rgba(255,255,255,0.75);
  background: transparent;
  transition: color 0.15s ease, background 0.15s ease;
  animation: hero-scroll-bounce 2s ease-in-out infinite;
}
.hero__scroll:hover {
  color: #fff;
  background: rgba(255,255,255,0.12);
}
.hero__scroll:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}
@keyframes hero-scroll-bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50%      { transform: translate(-50%, 7px); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__scroll { animation: none; }
}
/* Op telefoons is scrollen vanzelfsprekend en de ruimte krap — verberg de hint. */
@media (max-width: 768px) {
  .hero__scroll { display: none; }
}

/* ════════════════════════════════════════════════════════
   AGENTIC AI — tastbare demo (tweede slide)
   ════════════════════════════════════════════════════════ */
.agent {
  padding: var(--section-pad) 0;
  background: #fff;
}
.agent__inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Header */
.agent__header {
  text-align: center;
  max-width: 820px;
  margin-bottom: var(--space-block);
}
.agent__heading {
  font-family: var(--font-h);
  font-weight: 500;
  font-size: 34px;
  line-height: 1.3;
  color: var(--text-dark);
  margin-bottom: 14px;
}
.agent__sub {
  font-family: var(--font-b);
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: var(--text-body);
}

/* Scenario pills */
.agent__pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
}
.agent__pill {
  font-family: var(--font-b);
  font-weight: 500;
  font-size: 14px;
  color: var(--text-body);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 9px 20px;
  cursor: pointer;
  transition: color 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}
.agent__pill:hover {
  border-color: var(--brand-blue);
  color: var(--text-dark);
}
.agent__pill.is-active {
  background: var(--brand-blue);
  border-color: var(--brand-blue);
  color: #fff;
}

/* Chat panel */
.agent__chat {
  width: 100%;
  max-width: 640px;
  background: var(--bg-card);
  border-radius: 24px;
  box-shadow:
    0 24px 60px rgba(0,0,0,0.10),
    0 6px 18px rgba(0,0,0,0.06);
  padding: 22px 24px 26px;
}
.agent__chat-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.agent__avatar {
  width: 40px;
  height: 40px;
  background: var(--brand-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.agent__meta { display: flex; flex-direction: column; gap: 2px; }
.agent__name {
  font-family: var(--font-b);
  font-weight: 600;
  font-size: 15px;
  color: var(--text-dark);
  line-height: 1.2;
}
.agent__status {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-b);
  font-size: 12px;
  color: var(--brand-blue);
  line-height: 1.2;
}
.agent__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-blue);
  flex-shrink: 0;
}

/* Thread + scenarios (one visible at a time) */
.agent__thread {
  position: relative;
  min-height: 176px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.agent__scenario { display: none; flex-direction: column; gap: 14px; }
.agent__scenario.is-active { display: flex; }
/* Gefaseerde reveal: eerst de vraag, dan (na een denkbeat) het antwoord van de assistent */
.agent__scenario.is-active .agent__msg--user { animation: agentFade 0.45s ease both; }
.agent__scenario.is-active .agent__msg--ai   { animation: agentFade 0.45s ease both; animation-delay: 0.8s; }
@keyframes agentFade {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.agent__msg {
  font-family: var(--font-b);
  font-size: 15px;
  line-height: 23px;
  max-width: 88%;
  padding: 12px 16px;
}
.agent__msg--user {
  align-self: flex-end;
  background: var(--brand-blue);
  color: #fff;
  border-radius: 16px 16px 4px 16px;
}
.agent__msg--ai {
  align-self: flex-start;
  background: var(--bg-page);
  color: var(--text-dark);
  border: 1px solid var(--border);
  border-radius: 16px 16px 16px 4px;
}
.agent__msg--ai p { margin: 0; }
.agent__result {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  background: rgba(69, 191, 159, 0.12);
  color: var(--text-dark);
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
}
.agent__result svg { flex-shrink: 0; color: var(--accent); }

/* Pay-off — de winst die eruit springt */
.agent__payoffs {
  position: relative;
  min-height: 26px;
  margin-top: 24px;
  text-align: center;
}
.agent__payoff {
  display: none;
  font-family: var(--font-b);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.4;
  color: var(--brand-blue);
}
/* Pay-off verschijnt als climax, ná de bubbles */
.agent__payoff.is-active { display: block; animation: agentFade 0.5s ease both; animation-delay: 1.35s; }
.agent__payoff strong { font-weight: 700; }

/* Geen beweging voor wie dat liever heeft */
@media (prefers-reduced-motion: reduce) {
  .agent__scenario.is-active .agent__msg--user,
  .agent__scenario.is-active .agent__msg--ai,
  .agent__payoff.is-active { animation: none; }
}

.agent__cta { margin-top: var(--space-element); }


/* ════════════════════════════════════════════════════════
   STICKY NAV — appears after scrolling past hero
   ════════════════════════════════════════════════════════ */
/* Sentinel voor de sticky-nav trigger (zit bovenin de hero) */
.nav-sentinel {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 76px;
  pointer-events: none;
}

.sticky-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(24, 28, 37, 0.88);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
  transform: translateY(-100%);
  transition: transform 0.25s ease;
  pointer-events: none;
}
@media (prefers-reduced-motion: reduce) {
  .sticky-nav { transition: none; }
}
.sticky-nav.is-visible {
  transform: translateY(0);
  pointer-events: auto;
}
.sticky-nav__inner {
  max-width: 1272px;
  margin: 0 auto;
  padding: 0 48px;
  height: 56px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.sticky-nav__logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.sticky-nav__logo {
  flex-shrink: 0;
  height: 24px;
  width: auto;
}
.sticky-nav__links {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex: 1;
}
.sticky-nav__links a {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s;
}
.sticky-nav__links a:hover { color: #fff; }
/* Rechter acties: Inloggen + CTA — spiegelt de statische nav */
.sticky-nav__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.sticky-nav__login {
  font-family: var(--font-h);
  font-weight: 500;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s;
}
.sticky-nav__login:hover { color: #fff; }
.sticky-nav__cta {
  flex-shrink: 0;
  font-size: 15px !important;
  padding: 8px 20px !important;
  height: 36px !important;
}
/* Scroll-voortgangsbalk onderaan de sticky nav */
.sticky-nav__progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: transparent;
  overflow: hidden;
}
.sticky-nav__progress-bar {
  height: 100%;
  width: 0;
  background: var(--accent);
  will-change: width;
}
@media (max-width: 768px) {
  .sticky-nav__links { display: none; }
  .sticky-nav__inner { padding: 0 20px; justify-content: space-between; }
}


/* ════════════════════════════════════════════════════════
   SECTION CTA — subtle centered CTA between sections
   ════════════════════════════════════════════════════════ */
.section-cta {
  background: var(--bg-page);
  display: flex;
  justify-content: center;
  /* 30px boven de knop (element-ritme): de negatieve marge eet in de 120px
     bottom-padding van de voorgaande sectie. 120px ónder de knop sluit de band af,
     net als een normale sectie-bottom. Beide token-veilig en schalen mee. */
  padding: 0 20px var(--section-pad);
  margin-top: calc(var(--space-element) - var(--section-pad));
}
.section-cta--white { background: #fff; }

/* ════════════════════════════════════════════════════════
   CHURCH-CTA — afsluitende CTA-sectie (platform + kerken)
   ════════════════════════════════════════════════════════ */
.church-cta {
  background: #fff;
  padding: var(--section-pad) 0;
  text-align: center;
}
.church-cta__inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.church-cta h2 {
  font-family: var(--font-h);
  font-size: 38px;
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: -0.02em;
  color: var(--text-dark);
}
.church-cta p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-body);
  max-width: 520px;
}
.church-cta__btns {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 600px) {
  .church-cta h2 { font-size: 30px; }
  .church-cta__btns { flex-direction: column; align-items: stretch; }
}
.section-cta .btn {
  font-size: 15px;
  padding: 13px 32px;
  height: auto;
}


/* ════════════════════════════════════════════════════════
   BRIDGE — pain → product transition sentence
   ════════════════════════════════════════════════════════ */
.bridge {
  background: var(--bg-page);
  padding: 64px 0 80px;
}
.bridge__inner {
  max-width: 1272px;
  margin: 0 auto;
  padding: 0 84px;
  display: flex;
  justify-content: center;
}
.bridge__text {
  font-family: var(--font-h);
  font-weight: 400;
  font-size: 42px;
  line-height: 56px;
  text-align: center;
  color: var(--text-dark);
  letter-spacing: -0.01em;
}
.bridge__accent {
  color: var(--accent);
  font-weight: 600;
  position: relative;
  display: inline-block;
}
/* Subtle underline glow beneath "AI." */
.bridge__accent::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  opacity: 0.5;
}

/* ════════════════════════════════════════════════════════
   PRODUCT SHOWCASE — centered layout
   Heading + sub gecentreerd, groot screenshot + assistent-overlay, 3 features eronder
   ════════════════════════════════════════════════════════ */
.product {
  padding: var(--section-pad) 0;
  background: var(--bg-page);
}
.product__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-block);
}

/* Centered heading + sub */
.product__intro {
  text-align: center;
  max-width: 760px;
}
.product__heading {
  font-family: var(--font-h);
  font-weight: 500;
  font-size: 40px;
  line-height: 50px;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.product__sub {
  font-family: var(--font-b);
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: var(--text-body);
}

/* Screenshot + assistent-overlay wrapper */
.product__visual {
  position: relative;
  width: 100%;
  max-width: 1060px; /* 2121px native / 2 = pixel-perfect op Retina */
  padding-bottom: 48px; /* ruimte voor assistent-card die onderuit hangt */
  padding-right: 8px;   /* ruimte rechts */
}

/* Screenshot wrapper — screenshot heeft eigen browser-chrome al zichtbaar */
.screenshot-wrap {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 40px 90px rgba(0,0,0,0.20),
    0 12px 32px rgba(0,0,0,0.12),
    0 4px 10px rgba(0,0,0,0.07);
}
.product__screenshot {
  width: 100%;
  height: auto;
  display: block;
}

/* Assistent floating card — linksonder over screenshot */
.product__florijn-card {
  position: absolute;
  bottom: 24px;
  left: -24px;
  width: 280px;
  background: #fff;
  border-radius: 18px;
  padding: 16px 18px;
  box-shadow:
    0 12px 40px rgba(0,0,0,0.16),
    0 2px 8px rgba(0,0,0,0.08);
}
.florijn-card__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.florijn-card__avatar {
  width: 36px;
  height: 36px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.florijn-card__meta {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.florijn-card__name {
  font-family: var(--font-b);
  font-weight: 600;
  font-size: 13px;
  color: var(--text-dark);
  line-height: 1.3;
}
.florijn-card__online {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-b);
  font-size: 11px;
  color: var(--accent);
  line-height: 1.3;
}
.florijn-card__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.florijn-card__msg {
  font-family: var(--font-b);
  font-size: 12px;
  line-height: 17px;
  color: var(--text-body);
  background: #EEF1F8;
  border-radius: 10px 10px 10px 2px;
  padding: 8px 12px;
  margin-bottom: 8px;
}
.florijn-card__reply {
  background: var(--accent);
  border-radius: 10px 10px 2px 10px;
  padding: 8px 12px;
}
.florijn-card__reply p {
  font-family: var(--font-b);
  font-size: 12px;
  line-height: 17px;
  color: #fff;
  margin: 0;
}

/* Feature row: 3 columns with vertical dividers */
.features-row {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0;
}
.feature-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 0 36px 0 0;
}
.feature-col:last-child { padding-right: 0; }

/* The teal circle icon */
.feature-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.feature-col__title {
  font-family: var(--font-b);
  font-weight: 600;
  font-size: 20px;
  line-height: 26px;
  color: var(--text-dark);
}
.feature-col__desc {
  font-family: var(--font-b);
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
  color: var(--text-body);
}

/* Vertical divider between feature columns */
.feature-divider {
  width: 1px;
  align-self: stretch;
  background: var(--border-light);
  margin: 0 32px;
  flex-shrink: 0;
}


/* ════════════════════════════════════════════════════════
   HOE HET WERKT — 3-stappen sectie
   ════════════════════════════════════════════════════════ */
.howitworks {
  background: #fff;
  padding: var(--section-pad) 24px;
  scroll-margin-top: 72px;
}

.howitworks__inner {
  max-width: 1120px;
  margin: 0 auto;
}

/* Header */
.howitworks__header {
  text-align: center;
  margin-bottom: var(--space-block);
}

.howitworks__header h2 {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.howitworks__header p {
  font-size: 18px;
  color: var(--text-body);
  max-width: 480px;
  margin: 0 auto;
}

/* Step grid — steps + arrows in a row */
.howitworks__steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

/* Arrow connector */
.howitworks__arrow {
  flex-shrink: 0;
  margin-top: 68px;
  padding: 0 16px;
  opacity: 0.6;
}

/* Individual step card */
.howstep {
  flex: 1;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

/* Big ghost step number — decorative background text */
.howstep__num {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 96px;
  font-weight: 800;
  line-height: 1;
  color: rgba(86, 111, 179, 0.10);
  letter-spacing: -4px;
  user-select: none;
  pointer-events: none;
  z-index: 0;
}

/* Teal icon circle */
.howstep__icon {
  position: relative;
  z-index: 1;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  margin-top: 40px;
  box-shadow: 0 8px 24px rgba(67, 182, 147, 0.30);
}

.howstep__title {
  position: relative;
  z-index: 1;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.3;
}

.howstep__desc {
  position: relative;
  z-index: 1;
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.65;
  max-width: 240px;
  margin: 0 auto;
}

/* ─────── responsive ─────── */
@media (max-width: 860px) {
  .howitworks__steps {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .howitworks__arrow {
    margin-top: 0;
    padding: 8px 0;
    transform: rotate(90deg);
  }

  .howstep {
    max-width: 340px;
    margin-bottom: 8px;
  }
}

@media (max-width: 600px) {
  .howitworks { padding: var(--section-pad) 20px; }
  .howitworks__header h2 { font-size: 28px; }
  .howitworks__header p { font-size: 16px; }
  .howstep__num { font-size: 72px; }
}


/* ════════════════════════════════════════════════════════
   FEATURES — bento grid
   ════════════════════════════════════════════════════════ */
.features {
  background: #fff;
  padding: var(--section-pad) 24px;
}

.features__inner {
  max-width: 1120px;
  margin: 0 auto;
}

.features__header {
  text-align: center;
  margin-bottom: var(--space-block);
}

.features__header h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.features__header p {
  font-size: 18px;
  color: var(--text-muted);
}

/* Bento grid — asymmetric 3-column layout */
.features__bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}

/* Card 1 (wide, spans 2 cols) */
.fcard--wide    { grid-column: span 2; }
/* Card 4 (tall, spans 2 rows) */
.fcard--tall    { grid-row: span 2; }

/* Base card */
.fcard {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 20px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.fcard:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-3px); }

.fcard:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.07);
  transform: translateY(-2px);
}

/* Accent card (assistent AI) — teal gradient */
.fcard--accent {
  background: linear-gradient(135deg, #3aaa8c 0%, #45BF9F 60%, #5dd4b0 100%);
  border-color: transparent;
  color: #fff;
}

.fcard--accent .fcard__title,
.fcard--accent .fcard__desc {
  color: #fff;
}

.fcard--accent .fcard__desc {
  opacity: 0.85;
}

/* Blue card (ANBI) */
.fcard--blue {
  background: linear-gradient(135deg, #3d5a99 0%, #566FB3 60%, #6b83c5 100%);
  border-color: transparent;
}

.fcard--blue .fcard__title,
.fcard--blue .fcard__desc {
  color: #fff;
}

.fcard--blue .fcard__desc {
  opacity: 0.85;
}

/* Icon circle */
.fcard__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fcard__icon--blue  { background: var(--brand-blue); }
.fcard__icon--white { background: rgba(255,255,255,0.25); }

.fcard--accent .fcard__icon,
.fcard--blue   .fcard__icon { background: rgba(255,255,255,0.2); }

.fcard__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
}

.fcard__desc {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.65;
  flex: 1;
}

/* ── Responsive ── */
@media (max-width: 860px) {
  .features__bento {
    grid-template-columns: repeat(2, 1fr);
  }
  .fcard--wide { grid-column: span 2; }
  .fcard--tall { grid-row: span 1; }
}

@media (max-width: 560px) {
  .features { padding: var(--section-pad) 20px; }
  .features__header h2 { font-size: 28px; }
  .features__bento {
    grid-template-columns: 1fr;
  }
  .fcard--wide { grid-column: span 1; }
}


/* ════════════════════════════════════════════════════════
   TESTIMONIALS
   Wider-than-container row, centered
   ════════════════════════════════════════════════════════ */
.testimonials {
  padding: var(--section-pad) 0;
  background: var(--bg-page);
  scroll-margin-top: 72px;
}
.testimonials__inner {
  max-width: 1440px;
  margin: 0 auto;
  overflow: hidden;
  padding: 0 48px;
}
.testimonials__header {
  text-align: center;
  margin-bottom: var(--space-block);
  padding: 0 84px;
}
.testimonials__header h2 {
  font-family: var(--font-h);
  font-weight: 500;
  font-size: 32px;
  line-height: 42px;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.testimonials__header p {
  font-family: var(--font-b);
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  max-width: 640px;
  margin: 0 auto;
  color: var(--text-body);
}

/* ── Vertrouwens-pijlers (klanttaal) ── */
.trust-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1040px;
  margin: 0 auto var(--space-block);
  padding: 0 24px;
}

.trust-pillar {
  background: #fff;
  border: 1px solid var(--border-card);
  border-radius: 20px;
  padding: 22px 22px;
  text-align: left;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.trust-pillar:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px);
}

.trust-pillar__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(86, 111, 179, 0.10);
  color: var(--brand-blue);
  margin-bottom: 12px;
}

.trust-pillar__title {
  font-family: var(--font-h);
  font-weight: 500;
  font-size: 19px;
  line-height: 1.3;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.trust-pillar__text {
  font-family: var(--font-b);
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  color: var(--text-body);
}

/* ── Concrete waarborgen (secundair, scanbaar) ── */
.trust-facts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 24px;
  list-style: none;
  margin: 0 auto var(--space-block);
  padding: 0 24px;
}

.trust-facts li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-b);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-body);
}

.trust-facts li svg {
  color: var(--brand-blue);
  flex-shrink: 0;
}

/* ── Trust badges (gebruikt op kerken.html) ── */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 72px;
  padding: 0 24px;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 40px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  white-space: nowrap;
}

.trust-badge__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Carousel wrapper — positions prev/next buttons */
.testimonials__carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
}

/* Prev / next arrow buttons — verborgen: alle kaarten passen gecentreerd in beeld */
.carousel-btn {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-dark);
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, color 0.15s, box-shadow 0.15s;
  z-index: 2;
  flex-shrink: 0;
}

.carousel-btn:hover:not(:disabled) {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 2px 10px rgba(69,191,159,0.2);
}

.carousel-btn:disabled {
  opacity: 0.3;
  cursor: default;
}

.carousel-btn--prev { margin-right: 16px; }
.carousel-btn--next { margin-left: 16px; }

/* Card track — gecentreerd en wrappend, kaarten volledig zichtbaar en even hoog */
.testimonials__grid {
  display: flex;
  flex-flow: row wrap;
  align-items: stretch;
  justify-content: center;
  gap: 24px;
  padding: 8px 4px 16px;
  flex: 1;
  min-width: 0;
}

.testimonials__grid::-webkit-scrollbar { display: none; }

/* Testimonial card */
.testimonial-card {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  padding: 26px 32px;
  gap: 28px;
  flex: 1 1 360px;
  max-width: 480px;
  min-height: auto;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 24px;
  box-shadow: var(--shadow-card);
}
.testimonial-card--featured {
  box-shadow: var(--shadow-card-hover);
}
.testimonial-card__avatar {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.testimonial-card__body {
  display: flex;
  flex-direction: column;
  gap: 32px;
  flex: 1;
}
.testimonial-card blockquote p {
  font-family: var(--font-b);
  font-weight: 500;
  font-size: 22px;
  line-height: 28px;
  color: var(--text-dark);
  font-style: normal;
}
.testimonial-card__person {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: auto;
}
.testimonial-card__name {
  font-family: var(--font-b);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--brand-blue);
  font-style: normal;
}
.testimonial-card__role {
  font-family: var(--font-b);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--text-body);
}




/* ════════════════════════════════════════════════════════
   SAMEN ONTWIKKELD — credibility (pre-launch)
   ════════════════════════════════════════════════════════ */
.builtwith {
  background: var(--bg-page);
  padding: var(--section-pad) 24px;
  scroll-margin-top: 72px;
}
.builtwith__inner {
  max-width: 1120px;
  margin: 0 auto;
}
.builtwith__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-block);
}
.builtwith__eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--brand-blue);
  margin-bottom: 14px;
}
.builtwith__header h2 {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: var(--text-dark);
  margin-bottom: 14px;
}
.builtwith__header p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-body);
}
.builtwith__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.builtwith-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 16px;
  padding: 26px 24px;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.builtwith-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
}
.builtwith-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(86, 111, 179, 0.10);
  color: var(--brand-blue);
  margin-bottom: 16px;
}
.builtwith-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.builtwith-card__text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-body);
}
.builtwith__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-element);
  margin-top: var(--space-block);
}
.builtwith__cta-note {
  font-size: 13px;
  color: var(--text-muted);
}

@media (max-width: 860px) {
  .builtwith__grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .builtwith__header h2 { font-size: 28px; }
}

/* ════════════════════════════════════════════════════════
   FAQ — accordion + CTA
   ════════════════════════════════════════════════════════ */
.faq {
  background: #fff;
  padding: var(--section-pad) 24px;
  scroll-margin-top: 72px;
}
.faq__inner {
  max-width: 760px;
  margin: 0 auto;
}
.faq__header {
  text-align: center;
  margin-bottom: var(--space-block);
}
.faq__eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--brand-blue);
  margin-bottom: 14px;
}
.faq__header h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: var(--text-dark);
}
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--bg-page);
  border: 1px solid var(--border-card);
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}
.faq-item[open] {
  box-shadow: var(--shadow-card);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  font-size: 17px;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item__chevron {
  flex-shrink: 0;
  display: inline-flex;
  color: var(--brand-blue);
  transition: transform 0.25s ease;
}
.faq-item[open] .faq-item__chevron { transform: rotate(180deg); }
.faq-item__body {
  padding: 0 22px 20px;
}
.faq-item__body p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-body);
}
.faq__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: var(--space-block);
}
.faq__cta-text {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
}

@media (max-width: 560px) {
  .faq__header h2 { font-size: 26px; }
  .faq-item summary { font-size: 16px; padding: 16px 18px; }
  .faq-item__body { padding: 0 18px 18px; }
}

/* ════════════════════════════════════════════════════════
   PRICING
   3-card layout on page bg, Groei card featured with teal glow
   ════════════════════════════════════════════════════════ */
.pricing {
  padding: var(--section-pad) 0;
  background: var(--bg-page);
  scroll-margin-top: 72px;
}
.pricing__inner {
  max-width: 1272px;
  margin: 0 auto;
  padding: 0 48px;
}
.pricing__header {
  text-align: center;
  margin-bottom: var(--space-block);
}
.pricing__header h2 {
  font-family: var(--font-h);
  font-weight: 500;
  font-size: 48px;
  line-height: 58px;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.pricing__header p {
  font-family: var(--font-b);
  font-size: 16px;
  line-height: 24px;
  color: var(--text-body);
}
.pricing__notes {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
}
.pricing__trial-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--accent);
  font-weight: 500;
}
.pricing__trial-note::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* Grid */
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: start;
}

/* Base card */
.pricing-card {
  background: var(--bg-card);
  border-radius: 24px;
  padding: 34px 26px 30px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border-card);
  position: relative;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.2s, transform 0.2s;
}
.pricing-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px);
}

/* Featured card — Groei */
.pricing-card--featured {
  border-color: var(--accent);
  box-shadow: 0 20px 60px rgba(69,191,159,0.14), 0 4px 16px rgba(69,191,159,0.08);
  padding-top: 52px; /* extra room for badge */
}
.pricing-card--featured:hover {
  box-shadow: 0 28px 70px rgba(69,191,159,0.20), 0 6px 20px rgba(69,191,159,0.10);
}

/* "Most popular" badge */
.pricing-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-family: var(--font-b);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 0 0 12px 12px;
  white-space: nowrap;
}

/* Plan name + description */
.pricing-card__name {
  font-family: var(--font-h);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.pricing-card--featured .pricing-card__name {
  color: var(--accent);
}
.pricing-card__desc {
  font-size: 14px;
  color: var(--text-body);
  line-height: 20px;
  margin-bottom: 28px;
}

/* Price */
.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}
.pricing-card__amount {
  font-family: var(--font-h);
  font-size: 48px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1;
}
/* Custom prijs (Enterprise) — geen bedrag maar "Op maat" */
.pricing-card__amount--custom {
  font-size: 30px;
  line-height: 48px;
}
.pricing-card__currency {
  font-family: var(--font-h);
  font-size: 22px;
  font-weight: 500;
  color: var(--text-dark);
  align-self: flex-start;
  margin-top: 6px;
}
.pricing-card__period {
  font-size: 14px;
  color: var(--text-body);
  margin-bottom: 32px;
}

/* Divider */
.pricing-card__divider {
  height: 1px;
  background: var(--border);
  margin: 0 0 28px;
}

/* Feature list */
.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
  flex: 1;
}
.pricing-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-body);
  line-height: 20px;
}
.pricing-card__feature-check {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 1px;
}
.pricing-card__feature--muted {
  color: var(--text-muted);
}
.pricing-card__feature-label--bold {
  font-weight: 600;
  color: var(--text-dark);
}

/* "Everything in X" line */
.pricing-card__inherit {
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 10px;
  padding-left: 28px;
}

/* CTA button */
.pricing-card__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 52px;
  border-radius: 999px;
  font-family: var(--font-h);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: opacity 0.15s, transform 0.15s;
  text-decoration: none;
}
.pricing-card__cta:hover { opacity: 0.9; transform: translateY(-1px); }
.pricing-card__cta--outline {
  background: transparent;
  border: 1.5px solid var(--border-light);
  color: var(--text-dark);
}
.pricing-card__cta--outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.pricing-card__cta--accent {
  background: var(--accent);
  color: #fff;
}

/* Footer note */
.pricing__footer {
  text-align: center;
  margin-top: 48px;
  font-size: 14px;
  color: var(--text-body);
}
.pricing__footer a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Responsive */
@media (max-width: 1180px) {
  .pricing__grid { grid-template-columns: 1fr 1fr; max-width: 720px; margin: 0 auto; gap: 20px; }
  .pricing__inner { padding: 0 40px; }
  .pricing-card--featured { padding-top: 52px; }
}
@media (max-width: 640px) {
  .pricing { padding: var(--section-pad) 0; }
  .pricing__grid { grid-template-columns: 1fr; max-width: 480px; }
  .pricing__inner { padding: 0 20px; }
  .pricing__header h2 { font-size: 34px; line-height: 44px; }
}


/* ════════════════════════════════════════════════════════
   WAITLIST
   Blue background (#566FB3), decorative circles, centered form
   ════════════════════════════════════════════════════════ */
.waitlist {
  position: relative;
  width: 100%;
  height: 760px;
  background: var(--brand-blue);
  overflow: visible;
}

/* Clip wrapper — keeps decorative circles from bleeding out */
.waitlist__clip {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

/* Decorative concentric circles — centered horizontally */
.waitlist__circles {
  position: absolute;
  left: 50%;
  top: 4px;
  transform: translateX(-50%);
  width: 622px;
  height: 622px;
  pointer-events: none;
}
.circle {
  position: absolute;
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.circle--1 { width: 622px; height: 622px; background: #5973BA; }
.circle--2 { width: 528px; height: 528px; background: #5C78C3; }
.circle--3 { width: 402px; height: 402px; background: #5F7CCB; }
.circle--4 { width: 258px; height: 258px; background: #6481D0; }
.circle--5 { width: 154px; height: 154px; background: #6B88D7; }

/* Floating icon badges */
.waitlist__badge {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.15));
}
.waitlist__badge--1 {
  width: 74px; height: 74px;
  background: var(--accent);
  right: 275px; top: 143px;
}
.waitlist__badge--2 {
  width: 96px; height: 96px;
  background: linear-gradient(180deg, #fff 0%, #E1E1E1 100%);
  right: 342px; top: 249px;
}
.waitlist__badge--3 {
  width: 88px; height: 88px;
  background: linear-gradient(180deg, #fff 0%, #E1E1E1 100%);
  right: 389px; top: 95px;
}

/* Left: text */
.waitlist__text {
  position: absolute;
  left: 84px;
  top: 183px;
  width: 297px;
}
.waitlist__text h2 {
  font-family: var(--font-h);
  font-weight: 500;
  font-size: 38px;
  line-height: 52px;
  color: #fff;
  margin-bottom: 40px;
}
.waitlist__text p {
  font-family: var(--font-b);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
}

/* Center: form card (white card, centered horizontally) */
.waitlist__form-card {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 192px;
  width: 514px;
  background: var(--bg-card);
  border-radius: 16px;
  padding: 30px;
}
.waitlist__form-lead {
  font-family: var(--font-b);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--text-dark);
  margin-bottom: 32px;
}
.waitlist__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
/* Honeypot — onzichtbaar voor mensen, bots vullen het wel in */
.wl-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.waitlist__status {
  font-family: var(--font-b); font-size: 14px; line-height: 1.5;
  border-radius: 12px; padding: 0; margin: 0;
}
.waitlist__status--ok {
  padding: 12px 14px; background: rgba(69,191,159,0.14); color: #1f7a63;
}
.waitlist__status--err {
  padding: 12px 14px; background: rgba(194,95,95,0.12); color: #a23b3b;
}
.form-field { position: relative; }
.form-field input,
.form-field select {
  width: 100%;
  height: 52px;
  padding: 14px 20px;
  background: var(--bg-page);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-family: var(--font-b);
  font-size: 16px;
  line-height: 24px;
  color: var(--text-dark);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color 0.15s ease;
}
.form-field input::placeholder { color: var(--text-muted); }
.form-field input:focus,
.form-field select:focus { border-color: var(--accent); }

/* Select with chevron */
.form-field--select select {
  padding-right: 48px;
  cursor: pointer;
  color: var(--text-muted);
}
.form-field--select select.has-value { color: var(--text-dark); }
.form-field--select select option { background: #fff; color: var(--text-dark); }
.select-chevron {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--text-body);
}

/* Right: phone mockup + floating badges */
/* ── Waitlist phone mockup ── */
.waitlist__phone {
  position: absolute;
  right: 40px;
  bottom: 60px;
  width: 320px;
  height: 680px;
  pointer-events: none;
}

/* App screenshot */
.wl-iphone {
  position: absolute;
  right: 0;
  bottom: 40px;
  width: 240px;
  height: auto;
  display: block;
  border-radius: 28px;
  transform: rotate(-5deg);
  transform-origin: bottom right;
  box-shadow:
    -16px 16px 52px rgba(0,0,0,0.45),
     -4px  4px 16px rgba(0,0,0,0.18);
}

/* Shared badge base */
.wl-badge {
  position: absolute;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.22);
  z-index: 2;
}

/* Badge 1 — teal (brand logo) — center-left */
.wl-badge--pw {
  width: 76px;
  height: 76px;
  background: #45BF9F;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

/* Badge 2 — white (coin-piles) — above the phone, top area */
.wl-badge--coins {
  width: 80px;
  height: 80px;
  background: linear-gradient(145deg, #ffffff 0%, #ebebeb 100%);
  right: 60px;
  top: 60px;
}

/* Badge 3 — white (AI icon) — lower-left */
.wl-badge--ai {
  width: 76px;
  height: 76px;
  background: linear-gradient(145deg, #ffffff 0%, #ebebeb 100%);
  left: 20px;
  bottom: 160px;
}


/* ════════════════════════════════════════════════════════
   FOOTER
   Blue (#566FB3), 4 columns
   ════════════════════════════════════════════════════════ */
.footer {
  background: var(--brand-blue);
  padding: 0;
}
.footer__inner {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0;
  padding: 60px 84px 26px;
  min-height: 373px;
}

/* Brand column */
.footer__brand {
  flex-shrink: 0;
  width: 325px;
  padding-right: 40px;
}
.footer__logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 24px;
}
.footer__logo img { display: block; }

.footer__slogan {
  font-family: var(--font-h);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  color: rgba(255,255,255,0.85);
  margin-bottom: auto;
  letter-spacing: -0.1px;
  max-width: 240px;
}

.footer__tagline {
  font-family: var(--font-b);
  font-weight: 400;
  font-size: 12px;
  line-height: 20px;
  color: #fff;
  opacity: 0.8;
  margin-bottom: auto;
}
.footer__copyright {
  font-family: var(--font-b);
  font-weight: 400;
  font-size: 12px;
  line-height: 20px;
  color: #fff;
  opacity: 0.8;
  margin-top: 220px; /* push to bottom */
}

/* Nav columns (Platform, Solutions, Support) */
.footer__nav,
.footer__contact {
  width: 217px;
  padding-left: 0;
}
.footer__nav-heading {
  font-family: var(--font-h);
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  margin-bottom: 34px; /* gap between heading and links: 60 + 34 offset */
}
.footer__nav ul,
.footer__contact ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer__nav a,
.footer__contact a,
.footer__contact li span {
  font-family: var(--font-b);
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #fff;
}
.footer__contact li {
  font-family: var(--font-b);
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #fff;
}


/* ════════════════════════════════════════════════════════
   RESPONSIVE — scale mockup at large tablet (≤ 1280px)
   Strategy: scale-down via transform so mockup stays
   pixel-perfect regardless of viewport width.
   ════════════════════════════════════════════════════════ */
@media (max-width: 1280px) {
  .product__heading { font-size: 44px; line-height: 56px; }
  .product__florijn-card { width: 240px; left: -10px; }
  .product { padding: 80px 0 100px; }
}

/* ════════════════════════════════════════════════════════
   RESPONSIVE — tablet (≤ 1024px)
   ════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero { height: 100vh; min-height: 560px; max-height: none; }
  .agent { padding-top: 80px; }
  .hero__content { left: 0; right: 0; width: 100%; max-width: 640px; top: auto; bottom: 56px; align-items: center; }
  .nav { left: 40px; right: 40px; }
  .hero__heading { font-size: 42px; line-height: 50px; }

  .agent__inner { padding: 0 40px; }
  .agent__heading { font-size: 30px; line-height: 1.3; }

  .product { padding: 60px 0 80px; }
  .product__inner { padding: 0 24px; gap: 40px; }
  .product__heading { font-size: 36px; line-height: 48px; }
  .product__sub { font-size: 16px; line-height: 26px; }
  .product__florijn-card { width: 220px; left: 0; font-size: 11px; }
  .features-row { flex-direction: column; gap: 32px; }
  .feature-divider { width: 100%; height: 1px; align-self: auto; margin: 0; }
  .feature-col { padding: 0; }

  .testimonials__grid { gap: 20px; padding: 0 40px; }
  .testimonial-card { padding: 24px 28px; }
  .testimonial-card blockquote p { font-size: 18px; }

  .waitlist__text { left: 40px; width: 240px; }
  .waitlist__form-card { width: 440px; }
  .waitlist__phone { display: none; }

  .footer__inner { padding: 60px 40px 26px; gap: 0; }
  .footer__brand { width: 280px; }
}

/* ════════════════════════════════════════════════════════
   FOOTER — juridische onderbalk
   ════════════════════════════════════════════════════════ */
.footer__legal {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding: 18px 84px;
}
.footer__legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
}
.footer__legal-links a {
  font-family: var(--font-b);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transition: color 0.15s;
}
.footer__legal-links a:hover { color: #fff; }
@media (max-width: 900px) { .footer__legal { padding: 18px 40px; } }
@media (max-width: 768px) { .footer__legal { padding: 18px 20px; } }

/* ════════════════════════════════════════════════════════
   GEDEELDE TOPBAR (donker) — losse content/legal pagina's
   ════════════════════════════════════════════════════════ */
.ph-topbar { background: var(--anthracite); }
.ph-topbar__inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1272px; margin: 0 auto; padding: 18px 48px; gap: 24px;
}
.ph-links { display: flex; align-items: center; gap: 24px; }
.ph-links a {
  font-family: var(--font-b); font-size: 15px; font-weight: 500;
  color: rgba(255, 255, 255, 0.82); text-decoration: none; transition: color 0.15s;
}
.ph-links a:hover { color: #fff; }
.ph-links a[aria-current="page"] { color: #fff; }
.ph-login {
  font-family: var(--font-b); font-size: 15px; font-weight: 500;
  color: rgba(255, 255, 255, 0.82); text-decoration: none; transition: color 0.15s;
}
.ph-login:hover { color: #fff; }
@media (max-width: 560px) {
  .ph-topbar__inner { padding: 16px 20px; }
  .ph-links { display: none; }
  .ph-login { display: none; }
  .ph-topbar .nav-burger { display: inline-flex; }
}

/* ════════════════════════════════════════════════════════
   LEGAL / PROSE — privacy, voorwaarden, cookies, DPA, AI-beleid, over-ons
   ════════════════════════════════════════════════════════ */
.legal__head {
  background: var(--bg-page);
  padding: 64px 24px 44px;
  text-align: center;
  border-bottom: 1px solid var(--border-card);
}
.legal__eyebrow {
  display: inline-block; font-family: var(--font-h);
  font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 16px;
}
.legal__head h1 {
  font-family: var(--font-h); font-size: clamp(30px, 4vw, 42px); font-weight: 600;
  line-height: 1.15; color: var(--text-dark); margin: 0 auto; max-width: 720px;
}
.legal__updated {
  font-family: var(--font-b); font-size: 14px; color: var(--text-muted); margin-top: 14px;
}
.legal__body {
  max-width: 760px; margin: 0 auto; padding: 48px 24px 76px;
}
.legal__note {
  background: var(--bg-page); border: 1px solid var(--border-card); border-radius: 14px;
  padding: 16px 20px; margin-bottom: 32px;
  font-family: var(--font-b); font-size: 14px; line-height: 1.6; color: var(--text-body);
}
.legal__body h2 {
  font-family: var(--font-h); font-size: 22px; font-weight: 600;
  color: var(--text-dark); margin: 40px 0 12px; scroll-margin-top: 80px;
}
.legal__body > h2:first-of-type { margin-top: 0; }
.legal__body h3 {
  font-family: var(--font-h); font-size: 17px; font-weight: 600;
  color: var(--text-dark); margin: 26px 0 8px;
}
.legal__body p {
  font-family: var(--font-b); font-size: 15px; line-height: 1.7;
  color: var(--text-body); margin-bottom: 14px;
}
.legal__body ul {
  margin: 0 0 16px; padding-left: 22px;
}
.legal__body li {
  font-family: var(--font-b); font-size: 15px; line-height: 1.7;
  color: var(--text-body); margin-bottom: 6px;
}
.legal__body a {
  color: var(--brand-blue); text-decoration: underline; text-underline-offset: 2px;
}
.legal__body strong { color: var(--text-dark); font-weight: 600; }
.legal__placeholder {
  background: rgba(86, 111, 179, 0.08); border-radius: 4px; padding: 0 4px;
  color: var(--brand-blue); font-weight: 500;
}

/* ════════════════════════════════════════════════════════
   RESPONSIVE — mobile (≤ 768px)
   ════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .hero {
    margin: 0;
    height: auto;
    min-height: 580px;
    padding-bottom: 80px;
    overflow: hidden;
  }
  .nav { left: 12px; right: 12px; top: 12px; padding: 8px 8px 8px 16px; gap: 0; justify-content: space-between; }
  .nav__links { display: none; }
  .nav__actions { display: none; }
  .nav__logo { width: auto; }
  .nav .nav-burger,
  .sticky-nav .nav-burger { display: inline-flex; }
  .sticky-nav__inner { justify-content: space-between; }
  .sticky-nav__actions { display: none; }

  .hero__content {
    left: 20px; right: 20px; width: auto; top: auto; bottom: 64px;
    align-items: center; gap: 20px;
  }
  .hero__heading { font-size: 34px; line-height: 42px; text-align: center; margin-bottom: 0; }
  .hero__sub { width: 100%; font-size: 15px; text-align: center; }
  .hero__tagline { flex-direction: column; gap: 18px; width: 100%; }
  .hero__ctas { flex-direction: column; align-items: stretch; }
  .hero__ctas .btn { text-align: center; }

  .agent { padding: 80px 0 40px; }
  .agent__inner { padding: 0 20px; }
  .agent__header { margin-bottom: 28px; }
  .agent__heading { font-size: 26px; line-height: 1.3; }
  .agent__sub { font-size: 16px; line-height: 26px; }
  .agent__chat { padding: 18px 16px 20px; }
  .agent__msg { font-size: 14px; line-height: 22px; max-width: 92%; }
  .agent__cta { margin-top: 28px; }

  .product { padding: 60px 0; }
  .product__inner { padding: 0 16px; gap: 32px; }
  .product__heading { font-size: 30px; line-height: 40px; }
  .product__sub { font-size: 15px; }
  .product__florijn-card { display: none; }
  .features-row { flex-direction: column; gap: 28px; }
  .feature-divider { width: 100%; height: 1px; align-self: auto; margin: 0; }
  .feature-col { padding: 0; }

  .testimonials { padding: var(--section-pad) 0; }
  .testimonials__header { padding: 0 20px; margin-bottom: var(--space-block); }
  .testimonials__header h2 { font-size: 28px; }
  .trust-pillars { grid-template-columns: 1fr; gap: 16px; max-width: 440px; }
  .trust-pillar { padding: 24px 22px; }
  .testimonials__grid { padding: 8px 4px 16px; gap: 16px; }
  .testimonial-card { flex-basis: 100%; max-width: 440px; flex-direction: column; }
  .testimonial-card blockquote p { font-size: 16px; }

  .waitlist { height: auto; padding-bottom: 60px; }
  .waitlist__circles { display: none; }
  .waitlist__badge { display: none; }
  .waitlist__text { position: static; width: auto; padding: 60px 20px 40px; }
  .waitlist__form-card {
    position: static;
    transform: none;
    bottom: auto;
    width: auto;
    margin: 0 20px;
    border-radius: 16px;
  }

  .footer__inner { flex-direction: column; padding: 48px 20px 32px; gap: 40px; }
  .footer__brand { width: auto; padding-right: 0; }
  .footer__copyright { margin-top: 24px; }
  .footer__nav, .footer__contact { width: auto; }
}

/* ════════════════════════════════════════════════════════
   MOBIEL MENU — hamburger + full-screen drawer (alle pagina's)
   ════════════════════════════════════════════════════════ */
.nav-burger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #fff;
}
.nav-burger__line {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  background: var(--anthracite);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.mobile-menu[hidden] { display: none; }
.mobile-menu.is-open { opacity: 1; }
.mobile-menu__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
}
.mobile-menu__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
}
.mobile-menu__links {
  display: flex;
  flex-direction: column;
  padding: 8px 24px;
}
.mobile-menu__links a {
  font-family: var(--font-h);
  font-size: 22px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.mobile-menu__links a:hover,
.mobile-menu__links a[aria-current="page"] { color: #fff; }
.mobile-menu__actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
}
.mobile-menu__login {
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 12px;
}
.mobile-menu__actions .btn {
  width: 100%;
  text-align: center;
  justify-content: center;
}
body.menu-open { overflow: hidden; }

/* ════════════════════════════════════════════════════════
   SUBHERO — compacte donkere page-hero voor losse pagina's
   Titel hergebruikt dezelfde stijl als .hero__heading (standaard H1)
   ════════════════════════════════════════════════════════ */
.subhero { position: relative; background: var(--anthracite); overflow: hidden; }
.subhero__bg {
  position: absolute; inset: 0;
  background: radial-gradient(1200px 480px at 70% -10%, rgba(86,111,179,0.40), transparent 60%),
              radial-gradient(900px 420px at 10% 0%, rgba(69,191,159,0.22), transparent 55%);
  pointer-events: none;
}
.subhero__content {
  position: relative; z-index: 2; max-width: 820px; margin: 0 auto;
  padding: 150px 24px 72px; text-align: center;
}
.subhero__eyebrow {
  display: inline-block; font-family: var(--font-h);
  font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 16px;
}
/* Gelijk aan .hero__heading — standaard H1 over de hele site */
.subhero__title {
  font-family: var(--font-h);
  font-weight: 400;
  font-size: clamp(30px, 3.5vw, 44px);
  line-height: 1.28;
  color: #fff;
  margin-bottom: 18px;
}
.subhero__sub {
  font-family: var(--font-b);
  font-size: 18px; line-height: 28px;
  color: rgba(255,255,255,0.80);
  max-width: 620px; margin: 0 auto;
}
.subhero__facts { display: flex; flex-wrap: wrap; gap: 10px 22px; justify-content: center; margin-top: 26px; }
.subhero__fact { display: inline-flex; align-items: center; gap: 7px; font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.92); }
.subhero__fact svg { color: var(--accent); }
/* Smalle variant voor legal/prose-pagina's — titel op donkere subhero */
.subhero__content--narrow { max-width: 760px; }
.subhero__content--narrow h1 {
  font-family: var(--font-h); font-weight: 400;
  font-size: clamp(30px, 3.5vw, 44px); line-height: 1.28; color: #fff; margin: 0 0 12px;
}
.subhero__content--narrow .legal__eyebrow { color: var(--accent); margin-bottom: 16px; }
.subhero__content--narrow .legal__updated {
  font-family: var(--font-b); font-size: 14px; color: rgba(255, 255, 255, 0.7); margin: 0;
}
@media (max-width: 600px) { .subhero__content { padding: 120px 20px 52px; } }

/* ════════════════════════════════════════════════════════
   BLOG — overzichtspagina met zoeken + filteren
   ════════════════════════════════════════════════════════ */
.bloglist { background: var(--bg-page); padding: var(--section-pad) 24px; }
.bloglist__inner { max-width: 1120px; margin: 0 auto; }
.bloglist__tools {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 16px; margin-bottom: 30px;
}
.blog-search { position: relative; flex: 1 1 280px; max-width: 360px; }
.blog-search svg { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: var(--text-muted); pointer-events: none; }
.blog-search input {
  width: 100%; height: 46px; padding: 0 18px 0 44px;
  font-family: var(--font-b); font-size: 15px; color: var(--text-dark);
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 999px;
  outline: none; transition: border-color 0.15s, box-shadow 0.15s;
}
.blog-search input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(69,191,159,0.18); }
.blog-filters { display: flex; flex-wrap: wrap; gap: 8px; }
.blog-filter {
  font-family: var(--font-h); font-size: 13px; font-weight: 500;
  color: var(--text-body); background: var(--bg-card);
  border: 1px solid var(--border); border-radius: 999px;
  padding: 9px 16px; cursor: pointer; transition: all 0.15s;
}
.blog-filter:hover { border-color: var(--accent); color: var(--text-dark); }
.blog-filter.is-active { background: var(--anthracite); border-color: var(--anthracite); color: #fff; }
.bloglist__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.post-card {
  display: flex; flex-direction: column; gap: 12px;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 18px;
  padding: 26px 24px; text-decoration: none;
  box-shadow: 0 1px 2px rgba(20,30,55,0.05);
  transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
}
.post-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); border-color: var(--border-card, var(--border)); }
.post-card__cat { font-family: var(--font-h); font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent); }
.post-card__title { font-family: var(--font-h); font-size: 19px; font-weight: 600; color: var(--text-dark); line-height: 1.3; }
.post-card__excerpt { font-family: var(--font-b); font-size: 15px; line-height: 1.6; color: var(--text-body); flex: 1; }
.post-card__meta { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 500; color: var(--text-muted); }
.post-card__meta svg { color: var(--accent); }
.bloglist__empty { display: none; text-align: center; padding: 48px 0; color: var(--text-muted); font-size: 16px; }
.bloglist__empty.is-visible { display: block; }
@media (max-width: 900px) { .bloglist__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .bloglist__grid { grid-template-columns: 1fr; } .bloglist { padding: 64px 18px; } .bloglist__tools { flex-direction: column; align-items: stretch; } .blog-search { max-width: none; } }

/* ════════════════════════════════════════════════════════
   ARTICLE — detail-artikelpagina (hergebruikt subhero als kop)
   ════════════════════════════════════════════════════════ */
.article { background: var(--bg-page); }
.article__inner { max-width: 760px; margin: 0 auto; padding: 44px 24px 80px; }
.article__back {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-b); font-size: 14px; font-weight: 500;
  color: var(--brand-blue); text-decoration: none; margin-bottom: 28px;
}
.article__back:hover { text-decoration: underline; }
.article__meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px 18px;
  padding-bottom: 26px; margin-bottom: 30px; border-bottom: 1px solid var(--border);
}
.article__meta span { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-b); font-size: 14px; color: var(--text-muted); }
.article__meta svg { color: var(--accent); }
.article__body > p:first-of-type { font-size: 19px; line-height: 1.7; color: var(--text-dark); }
.article__body h2 { font-family: var(--font-h); font-size: 24px; font-weight: 600; line-height: 1.3; color: var(--text-dark); margin: 38px 0 14px; }
.article__body h3 { font-family: var(--font-h); font-size: 18px; font-weight: 600; color: var(--text-dark); margin: 26px 0 8px; }
.article__body p { font-family: var(--font-b); font-size: 16px; line-height: 1.75; color: var(--text-body); margin-bottom: 16px; }
.article__body ul, .article__body ol { margin: 0 0 18px; padding-left: 22px; }
.article__body li { font-family: var(--font-b); font-size: 16px; line-height: 1.7; color: var(--text-body); margin-bottom: 8px; }
.article__body strong { color: var(--text-dark); font-weight: 600; }
.article__body a { color: var(--brand-blue); text-decoration: underline; text-underline-offset: 2px; }
.article__body blockquote {
  margin: 24px 0; padding: 16px 22px; border-left: 3px solid var(--accent);
  background: var(--bg-card); border-radius: 0 12px 12px 0;
  font-family: var(--font-h); font-size: 18px; line-height: 1.5; color: var(--text-dark);
}
.article__callout {
  margin: 30px 0; padding: 22px 24px; border: 1px solid var(--border);
  background: var(--bg-card); border-radius: 16px;
}
.article__callout h3 { margin-top: 0; }
.article__callout p:last-child { margin-bottom: 0; }
@media (max-width: 600px) { .article__inner { padding: 36px 18px 64px; } }

/* ════════════════════════════════════════════════════════
   PRINT
   ════════════════════════════════════════════════════════ */
@media print {
  .hero__blur, .waitlist__circles, .waitlist__badge { display: none; }
  body { background: white; }
  .page { max-width: none; }
}
