/* ═══════════════════════════════════════════════════════════════
   CLARO CLINIC — Design System Tokens + Homepage Styles
   Built from scratch using Figma MCP extraction (nodes 6:9–6:283)
   All values from DESIGN-SYSTEM.md — zero hardcoded colors/sizes
   ═══════════════════════════════════════════════════════════════ */

/* ── DESIGN TOKENS ─────────────────────────────────────────── */
:root {
  --color-cream-50:  #FFF6F1;
  --color-cream-100: #F9F6F0;
  --color-peach-200: #F3DFD1;
  --color-white:     #FFFFFF;
  --color-sage-400:  hsl(150, 22%, 58%); /* nieuw token: lichtste sage-tint, CTA gradient */
  --color-sage-500:  #4B6E5B;
  --color-sage-600:  #385545;
  --color-sage-700:  #2D4A3C; /* diepste sage, Trustindex badge */
  --color-ink-900:   #2C302E;
  --color-ink-700:   #4A4D4A;
  --color-brown-700: #5D4F45;
  --color-brown-600: #6A5C51;
  --color-muted:     #82807B;
  --overlay-header:  rgba(249,246,240,0.9);
  --overlay-modal:   rgba(0,0,0,0.5);
  --font-display: "Plus Jakarta Sans", sans-serif;
  --font-body:    "Public Sans", sans-serif;
  --radius-sm: 8px; --radius-md: 12px; --radius-lg: 16px;
  --radius-xl: 24px; --radius-card: 32px; --radius-pill: 48px;
  --radius-full: 9999px;
  --shadow-button:   0 1px 2px rgba(0,0,0,0.05);
  /* Upgrade B: gelaagde 3-laags shadows — realistische lichtval (soft-skill §3C Soft Structuralism) */
  --shadow-card:     0 1px 3px rgba(106,92,81,0.05),
                     0 4px 12px rgba(106,92,81,0.07),
                     0 8px 24px rgba(106,92,81,0.03);
  --shadow-featured: 0 2px 6px rgba(106,92,81,0.07),
                     0 8px 20px rgba(106,92,81,0.09),
                     0 16px 36px rgba(106,92,81,0.05);
  --shadow-lg:       0 4px 10px rgba(106,92,81,0.08),
                     0 12px 28px rgba(106,92,81,0.10),
                     0 24px 48px rgba(106,92,81,0.05);
  --shadow-modal:    0 24px 48px rgba(57,56,52,0.12), 0 4px 16px rgba(57,56,52,0.06);
  --border-warm: rgba(188,185,179,0.15);
  --ease-out-expo: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out-soft: cubic-bezier(0.2, 0.8, 0.2, 1);
  --ease-bounce:   cubic-bezier(0.2, 0.8, 0.2, 1.2);
}

/* ── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px; line-height: 24px;
  color: var(--color-ink-700);
  background: var(--color-cream-50);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--color-ink-900); }

/* ── LAYOUT ────────────────────────────────────────────────── */
.section-container { max-width: 1100px; margin: 0 auto; padding: 0 48px; }

/* ── SECTION HEADERS ───────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: block;
  font-family: var(--font-body); font-size: 13px; font-weight: 600;
  line-height: 1.4; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--color-sage-500); margin-bottom: 12px;
}
/* Perfect Fourth 1.333 type scale */

.section-title { font-size: 38px; font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 16px; }
.section-subtitle { font-size: 21px; line-height: 1.5; color: var(--color-ink-700); max-width: 520px; margin: 0 auto; font-weight: 400; }

/* ── BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-weight: 600; font-size: 16px; line-height: 24px;
  border-radius: var(--radius-pill);
  transition: transform 0.4s var(--ease-out-soft), box-shadow 0.4s var(--ease-out-soft), background 0.3s;
  cursor: pointer; text-decoration: none;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(1px) scale(0.97); transition-duration: 0.18s; }
.btn--primary {
  background: var(--color-sage-500); color: var(--color-cream-50);
  padding: 16px 32px; box-shadow: var(--shadow-button);
}
.btn--primary:hover { box-shadow: var(--shadow-lg); }
.btn--primary:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
.btn--ghost {
  background: transparent; color: var(--color-ink-900);
  border: 2px solid rgba(75,110,91,0.35);
  padding: 12px 24px; font-weight: 500; font-size: 16px; line-height: 22.5px;
  transition: transform 0.4s var(--ease-out-soft), box-shadow 0.4s var(--ease-out-soft),
              background 0.3s, border-color 0.2s var(--ease-out-soft);
}
.btn--ghost:hover { background: var(--color-cream-100); border-color: rgba(75,110,91,0.60); box-shadow: 0 2px 12px rgba(75,110,91,0.12); }
.btn--white {
  background: var(--color-white); color: var(--color-sage-500);
  padding: 16px 32px; font-weight: 600; box-shadow: var(--shadow-button);
}
.btn--white:hover { box-shadow: var(--shadow-lg); }
.btn--back {
  color: var(--color-brown-600); font-weight: 600; font-size: 16px; line-height: 22.5px;
  padding: 12px 0; gap: 8px;
}
.btn--back:hover { color: var(--color-ink-900); }

/* ═══ NAV — Figma 6:9 ════════════════════════════════════════ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: var(--overlay-header);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  transition: padding 0.3s ease, box-shadow 0.3s ease;
}
.nav--scrolled { padding: 0; box-shadow: var(--shadow-card); }
.nav-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 48px;
  transition: padding 0.3s ease;
}
.nav--scrolled .nav-inner { padding: 12px 48px; }
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.nav-logo-icon {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  background: var(--color-sage-500); color: var(--color-white);
  border-radius: var(--radius-full);
}
.nav-logo-text {
  font-family: var(--font-display); font-weight: 700; font-size: 20px;
  line-height: 30px; color: var(--color-ink-900);
}
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-link {
  font-family: var(--font-body); font-weight: 500; font-size: 16px;
  line-height: 22.5px; color: var(--color-ink-900);
  position: relative;
  transition: color 0.2s var(--ease-out-soft); /* Upgrade 9: cubic-bezier */
}
/* Upgrade 4: underline-reveal via scaleX — compositor-safe (transform only) */
.nav-link::after {
  content: '';
  position: absolute; bottom: -3px; left: 0;
  width: 100%; height: 1.5px;
  background: var(--color-sage-500);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.25s var(--ease-out-expo);
}
.nav-link:hover { color: var(--color-sage-500); }
.nav-link:hover::after { transform: scaleX(1); }
.nav-link--active { color: var(--color-sage-500); }
.nav-link--active::after { transform: scaleX(1); }
/* Werkwijze nav-link (geen tooltip meer — label is nu 'Werkwijze & Team') */
.nav-link--werkwijze { position: relative; }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--color-sage-500); color: var(--color-white);
  font-family: var(--font-body); font-weight: 600; font-size: 16px;
  line-height: 22.5px; padding: 12px 24px;
  border-radius: var(--radius-full);
  transition: transform 0.18s, box-shadow 0.3s, background 0.3s;
  /* Pulse vereist position + isolation */
  position: relative;
  isolation: isolate;
}
.nav-cta:hover { box-shadow: 0 4px 16px rgba(75,110,91,0.25); }
.nav-cta:active { transform: scale(0.97); }

/* Navbar pulse — sage-groene glow op lichte achtergrond */
.nav-cta::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  box-shadow: 0 0 0 0 rgba(75,110,91,0.30);
  animation: nav-cta-pulse 3s ease-out infinite;
  pointer-events: none;
  z-index: -1;
}
@keyframes nav-cta-pulse {
  0%   { box-shadow: 0 0 0 0px  rgba(75,110,91,0.30); }
  60%  { box-shadow: 0 0 0 10px rgba(75,110,91,0); }
  100% { box-shadow: 0 0 0 0px  rgba(75,110,91,0); }
}


/* ═══ HERO — Figma 6:37 ══════════════════════════════════════ */
/* Upgrade D: subtiele radiale peach-gradient — organische diepte op hero (soft-skill §3C) */
/* Upgrade F: border-bottom als section-scheiding */
.hero {
  padding: 84px 0 128px; /* §4C ×1.5: 56→84 top, 96→128 bottom (gecapt voor sectie-ritme) */
  background: radial-gradient(
    ellipse 80% 60% at 15% 50%,
    rgba(243,223,209,0.35) 0%,
    transparent 65%
  );
  border-bottom: 1px solid rgba(106,92,81,0.06);
}
.hero-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 48px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: stretch;
}
.hero-content { display: flex; flex-direction: column; gap: 24px; }
.hero-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.trust-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--color-white); padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 13px; font-weight: 500; line-height: 19.5px;
  color: var(--color-ink-900); box-shadow: var(--shadow-card);
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s var(--ease-out-expo), transform 0.6s var(--ease-out-expo),
              box-shadow 0.25s var(--ease-out-soft); /* Upgrade 5 */
}
.trust-badge.animate-in { opacity: 1; transform: translateY(0); }
/* Upgrade 5: haptic lift op hover — Saffer micro-interactie feedback */
.trust-badge.animate-in:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(106,92,81,0.10); }
.hero-title {
  font-family: var(--font-display); font-weight: 800; font-size: 67px;
  line-height: 67px; letter-spacing: -1.28px; color: var(--color-ink-900);
}
.hero-title--accent { color: var(--color-sage-500); }
.hero-subtitle { font-size: 21px; line-height: 28px; color: var(--color-ink-700); max-width: 460px; }
.hero-actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }

/* Hero Service Cards — Figma: 236×355, r=32, pad 32, gap 24 */
.hero-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 8px; } /* §4C ×1.4: 24→32px */
.service-card {
  background: var(--color-white); border-radius: var(--radius-card);
  padding: 40px; display: flex; flex-direction: column; gap: 24px;
  box-shadow: var(--shadow-featured);
  border: 1.5px solid rgba(75,110,91,0.14);
  transition: opacity 0.6s var(--ease-out-expo), transform 0.6s var(--ease-out-expo),
              box-shadow 0.4s var(--ease-out-soft), border-color 0.3s;
  /* scroll reveal */
  opacity: 0; transform: translateY(24px);
}
.service-card.animate-in { opacity: 1; transform: translateY(0); }
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(75,110,91,0.28);
}
.service-card.animate-in:hover { transform: translateY(-6px); }
.service-card-icon {
  width: 56px; height: 56px; border-radius: var(--radius-full);
  background: var(--color-cream-100);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-ink-900);
}
.service-card-body { display: flex; flex-direction: column; gap: 8px; flex: 1; }
.service-card-tag {
  font-size: 12px; font-weight: 600; line-height: 18px;
  letter-spacing: 0.96px; text-transform: uppercase;
  color: var(--color-brown-700);
}
.service-card-title { font-size: 32px; font-weight: 700; line-height: 32px; }
.service-card-desc { font-size: 16px; line-height: 24px; color: var(--color-ink-700); }
/* Upgrade 1: gap→translateX fix — gap-animatie triggerde layout reflow (motion-performance §2) */
.service-card-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 600; font-size: 14px; line-height: 21px;
  color: var(--color-sage-500);
  transition: color 0.2s var(--ease-out-soft);
}
.service-card-link i,
.service-card-link svg { transition: transform 0.25s var(--ease-out-soft); }
.service-card-link:hover i,
.service-card-link:hover svg { transform: translateX(4px); }

/* Hero Image — Figma: 496×620, r=48 */
.hero-image {
  position: relative;
  width: 496px;
  height: 100%;
  border-radius: var(--radius-pill);
  overflow: hidden;
  flex-shrink: 0;
}
.hero-image-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 75% center;
  display: block;
}
.hero-location-card {
  position: absolute; bottom: 24px; left: 24px;
  background: var(--color-white); border-radius: var(--radius-xl);
  padding: 24px; display: flex; align-items: center; gap: 16px;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s var(--ease-out-soft), box-shadow 0.3s var(--ease-out-soft); /* Upgrade 11 */
}
/* Upgrade 11: subtiele lift — soft-skill §4A haptic depth */
.hero-location-card:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(106,92,81,0.10); }
.hero-location-icon {
  width: 48px; height: 48px; border-radius: var(--radius-full);
  background: var(--color-peach-200);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-ink-900);
}
.hero-location-name {
  font-family: var(--font-display); font-weight: 700; font-size: 14px;
  line-height: 21px; color: var(--color-ink-900); display: block;
}
.hero-location-hours { font-size: 13px; line-height: 19.5px; color: var(--color-ink-700); }

/* ═══ WERKWIJZE — Figma 6:125 ════════════════════════════════ */
.werkwijze { padding: 128px 0; background: var(--color-peach-200); } /* §4C ×1.5: 96→128px */
.steps-grid {
  display: flex; align-items: flex-start; justify-content: center;
  gap: 44px; /* §4C ×1.4: 32→44px */
}
.step {
  text-align: center; max-width: 260px;
}
/* Sequentiële stappen: opacity-initialisatie ALLEEN op --seq klasse */
/* Zo pikt app.js (.step selector) de stappen WEL op maar stelt de */
/* opacity niet in — .step.animate-in overrided niets hier */
.step--seq {
  /* scroll reveal — gecontroleerd door arc-controller (inline script) */
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s var(--ease-out-expo), transform 0.6s var(--ease-out-expo);
}
.step--seq.animate-in { opacity: 0; } /* app.js neutraliseren: animate-in doet niets */
.step--seq.is-visible  { opacity: 1 !important; transform: translateY(0) !important; }
.step:nth-child(1) { transition-delay: 0.05s; }
.step:nth-child(3) { transition-delay: 0.1s; }
.step:nth-child(5) { transition-delay: 0.15s; }
.step-number {
  width: 72px; height: 72px; border-radius: var(--radius-full);
  background: var(--color-white);
  border: 1px solid var(--border-warm); /* Upgrade 7: materiality — soft-skill §4A */
  box-shadow: var(--shadow-card); /* Upgrade E: elevated badge — soft-skill §4B */
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  transition: transform 0.3s var(--ease-out-soft);
}
/* Upgrade 7: scale op step hover — compositor-safe */
.step:hover .step-number { transform: scale(1.05); }
.step-number span {
  font-family: var(--font-display); font-weight: 800; font-size: 38px;
  line-height: 38px; color: var(--color-ink-900);
}
.step-title {
  font-family: var(--font-display); font-weight: 600; font-size: 32px;
  line-height: 32px; color: var(--color-ink-900); margin-bottom: 8px;
}
.step-desc { font-size: 16px; line-height: 24px; color: var(--color-ink-700); }
.step-connector {
  display: flex; align-items: center; padding-top: 24px;
  color: var(--color-brown-600); opacity: 0.4;
}

/* ═══ ARC SVG ANIMATIE — Sequentiële boog-onthulling ════════ */
/* overflow: visible — boog 1 gaat bóven de baseline (negatieve y) */
.arc-svg { overflow: visible; display: block; }

/* Boog-pad: begint volledig verborgen (dashoffset = padlengte) */
/* Dasharray + dashoffset worden dynamisch gezet via JS getTotalLength() */
.arc-path {
  transition: stroke-dashoffset 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Pijlpunt: verborgen tot boog klaar is */
.arc-arrowhead {
  opacity: 0;
  transition: opacity 0.2s ease-out 0.55s; /* kleine delay = verschijnt ná boog */
}

/* .is-drawn op de wrapper-div triggert beide overgangen */
.step-connector--arc.is-drawn .arc-path {
  stroke-dashoffset: 0 !important;
}
.step-connector--arc.is-drawn .arc-arrowhead {
  opacity: 1;
}

/* .step.is-visible = alias voor .animate-in — zelfde CSS-effect */
.step.is-visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Mobiel: bogen verbergen — verticale stapeling zonder connectors */
@media (max-width: 767px) {
  .arc-svg { display: none; }
}


/* ═══ REVIEWS — Figma 6:159 ══════════════════════════════════ */
/* Upgrade F: border-bottom scheidt reviews van FAQ */
.reviews { padding: 128px 0; background: var(--color-cream-100); border-bottom: 1px solid rgba(106,92,81,0.07); } /* §4C ×1.5: 96→128px */
.reviews-grid {
  display: flex; gap: 32px; /* §4C ×1.4: 24→32px */
  align-items: flex-start; justify-content: center;
}
.review-card {
  flex: 1; max-width: 313px;
  background: var(--color-white); border-radius: var(--radius-card);
  padding: 40px; display: flex; flex-direction: column; gap: 24px; /* §4C ×1.35: 32→40px */
  box-shadow: var(--shadow-card); border: 1px solid var(--border-warm);
  transition: transform 0.4s var(--ease-out-soft), box-shadow 0.4s var(--ease-out-soft);
  /* scroll reveal */
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s var(--ease-out-expo), transform 0.6s var(--ease-out-expo),
              box-shadow 0.4s var(--ease-out-soft);
}
.review-card.animate-in { opacity: 1; transform: translateY(0); }
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.review-card.animate-in:hover { transform: translateY(-4px); }
/* Carousel: geen nth-child margin-top — positie wordt bepaald door track */
.review-card:nth-child(1) { transition-delay: 0s; }
.review-card:nth-child(2) { transition-delay: 0.08s; }
.review-card:nth-child(3) { transition-delay: 0.16s; }
.review-card:nth-child(4) { transition-delay: 0.0s; }
.review-card:nth-child(5) { transition-delay: 0.08s; }
.review-card:nth-child(6) { transition-delay: 0.16s; }

/* Carousel card: design-system stijl (crème/sage palet) */
.reviewer-header {
  display: flex; align-items: center; gap: 14px;
}
.reviewer-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 16px; font-weight: 700;
  flex-shrink: 0;
  border: 1px solid var(--border-warm);
}
.reviewer-meta {
  display: flex; flex-direction: column; gap: 2px; flex: 1; min-width: 0;
}
.reviewer-name {
  font-family: var(--font-display); font-weight: 600; font-size: 14px;
  line-height: 20px; color: var(--color-ink-900);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.reviewer-date { font-size: 12px; line-height: 16px; color: var(--color-muted); }
.review-stars {
  color: #C9973E; /* warm goud — past bij crème palet, niet te schreeuwend */
  font-size: 16px; letter-spacing: 2px;
  line-height: 1;
}
.review-text {
  font-family: var(--font-body); font-size: 16px; line-height: 26px;
  color: var(--color-ink-700); margin: 0; font-style: italic;
}

/* ═══ CAROUSEL WRAPPER ════════════════════════════════════════ */
.reviews-carousel-wrapper {
  position: relative;
  display: flex; align-items: center; gap: 0;
}

.reviews-carousel-viewport {
  overflow: hidden;
  width: 100%;
  border-radius: var(--radius-lg);
}

.reviews-carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 400ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

/* Desktop: elke card 1/3 van viewport minus gap */
.reviews-carousel-track .review-card {
  flex: 0 0 calc(33.333% - 16px);
  max-width: calc(33.333% - 16px);
  min-width: calc(33.333% - 16px);
  /* scroll reveal — carousel start direct zichtbaar */
  opacity: 1; transform: translateY(0);
}

/* Carousel pijlknoppen */
.carousel-btn {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--color-white);
  border: 1px solid var(--border-warm);
  box-shadow: var(--shadow-card);
  color: var(--color-sage-700, #2D4A3C);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: transform 0.2s var(--ease-out-soft), box-shadow 0.2s var(--ease-out-soft), opacity 0.2s;
  z-index: 2;
}
.carousel-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.carousel-btn:disabled { opacity: 0.28; cursor: default; }

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

/* Dot indicators */
.carousel-dots {
  display: flex; align-items: center; gap: 8px;
  justify-content: center; margin-top: 32px;
}
.carousel-dot {
  height: 8px; width: 8px;
  border-radius: var(--radius-full);
  background: rgba(188,185,179,0.55);
  border: none; cursor: pointer; padding: 0;
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.carousel-dot--active {
  width: 24px;
  background: var(--color-sage-500);
}

/* Trustindex badge */
.trustindex-badge {
  display: inline-flex; align-items: center; gap: 6px;
  margin: 16px auto 0; padding: 8px 20px;
  background: var(--color-sage-700, #2D4A3C);
  color: var(--color-white);
  border-radius: var(--radius-full);
  font-size: 13px; font-weight: 500; line-height: 20px;
  width: fit-content;
}
.trustindex-badge strong { font-weight: 700; }

/* Mobile carousel: 1 kaart per view */
@media (max-width: 767px) {
  .reviews-carousel-wrapper { gap: 0; }
  .carousel-btn--prev { margin-right: 8px; }
  .carousel-btn--next { margin-left: 8px; }
  .reviews-carousel-track .review-card {
    flex: 0 0 100%; max-width: 100%; min-width: 100%;
  }
}

/* ═══ FAQ — Figma 6:226 ══════════════════════════════════════ */
/* Upgrade A: white i.p.v. cream-100 — section-ritme cream→peach→cream→WHITE→cream */
.faq { padding: 128px 0; background: var(--color-white); } /* §4C ×1.5: 96→128px */
.faq-container { max-width: 768px; margin: 0 auto; padding: 0 48px; }
.faq-list { display: flex; flex-direction: column; gap: 20px; list-style: none; padding: 0; margin: 0; } /* §4C ×1.4: 16→20px */
.faq-item {
  /* Fix B: cream-50 op witte sectie = zichtbaar materieel vlak */
  background: var(--color-cream-50);
  border-radius: var(--radius-card);
  /* overflow:hidden VERWIJDERD — conflicteerde met grid-template-rows:0fr */
  /* De padding van .faq-summary lekte als minimale hoogte (bug root cause) */
  border: 1.5px solid rgba(75,110,91,0.18);
  box-shadow: var(--shadow-card);
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s var(--ease-out-expo), transform 0.6s var(--ease-out-expo),
              border-color 0.2s var(--ease-out-soft), box-shadow 0.2s var(--ease-out-soft);
}
.faq-item.animate-in { opacity: 1; transform: translateY(0); }
.faq-item.animate-in:hover {
  border-color: rgba(75,110,91,0.32);
  box-shadow: var(--shadow-featured);
}
.faq-summary {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; /* Nodig als button-element binnen li */
  padding: 24px 32px; cursor: pointer;
  font-family: var(--font-display); font-weight: 600; font-size: 16px;
  line-height: 24px; color: var(--color-ink-900);
  list-style: none; text-align: left;
  transition: color 0.2s var(--ease-out-soft);
}
/* Upgrade 10: sage kleur op hover — Nielsen H4: consistentie met andere interactieve elementen */
.faq-summary:hover { color: var(--color-sage-500); }
.faq-summary::-webkit-details-marker { display: none; }
.faq-icon {
  width: 32px; height: 32px; border-radius: var(--radius-full);
  background: var(--color-cream-100);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s var(--ease-out-expo);
  flex-shrink: 0;
}
.faq-item.is-open .faq-icon { transform: rotate(180deg); }

/* Boterzachte Accordion via CSS Grid */
.faq-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s var(--ease-out-expo);
}
.faq-item.is-open .faq-body {
  grid-template-rows: 1fr;
}
.faq-answer {
  /* overflow:hidden hier — klapt samen met grid-template-rows:0fr */
  overflow: hidden;
  padding: 0;
}
/* Padding op inner wrapper zodat die bij 0fr volledig verdwijnt */
.faq-answer-inner {
  padding: 0 32px 24px;
}
.faq-answer-inner p { font-size: 16px; line-height: 26px; color: var(--color-ink-700); }

/* ═══ CTA BANNER — Optie 1 + 2 + 4 ═══════════════════════════ */
/* Optie 1: diagonale gradient als basis */
/* Optie 2: decoratieve blobs via ::before + ::after */
/* Optie 4: button pulse gecoped binnen .cta-banner-inner */
.cta-banner { padding: 128px 0; } /* §4C ×1.5 */
.cta-banner .section-container { max-width: 1100px; margin: 0 auto; padding: 0 48px; }

.cta-banner-inner {
  /* Optie 1: 135° gradient sage-600 → sage-500 → sage-400 */
  background: linear-gradient(
    135deg,
    var(--color-sage-600) 0%,
    var(--color-sage-500) 55%,
    var(--color-sage-400) 100%
  );
  border-radius: var(--radius-pill);
  padding: 64px; display: flex; align-items: center;
  justify-content: space-between; gap: 48px;
  /* Optie 2: vereist voor blob-clipping */
  position: relative; overflow: hidden;
  /* scroll reveal */
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s var(--ease-out-expo), transform 0.6s var(--ease-out-expo);
}
.cta-banner-inner.animate-in { opacity: 1; transform: translateY(0); }

/* Optie 2A: grote blob rechtsachter — organische diepte */
.cta-banner-inner::before {
  content: '';
  position: absolute;
  top: -130px; right: -90px;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  pointer-events: none;
  z-index: 0;
}
/* Optie 2B: kleine blob linksonder als tegenwicht */
.cta-banner-inner::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -60px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
  z-index: 0;
}
/* Zorg dat content BOVEN de blobs staat */
.cta-banner-inner > * { position: relative; z-index: 1; }

.cta-title {
  font-family: var(--font-display); font-weight: 700; font-size: 38px;
  line-height: 40px; letter-spacing: -0.76px; color: var(--color-white);
  margin-bottom: 16px;
}
.cta-desc { font-size: 21px; line-height: 32px; color: var(--color-white); max-width: 520px; }

/* Optie 4: button pulse — GECOPED op .cta-banner-inner .btn--white */
/* Niet globaal: werkt alleen op CTA-knoppen binnen de banner */
.cta-banner-inner .btn--white {
  position: relative;
  isolation: isolate;
}
.cta-banner-inner .btn--white::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  box-shadow: 0 0 0 0 rgba(255,255,255,0.30);
  animation: cta-btn-pulse 3s ease-out infinite;
  pointer-events: none;
  z-index: -1;
}
@keyframes cta-btn-pulse {
  0%   { box-shadow: 0 0 0 0px rgba(255,255,255,0.30); }
  55%  { box-shadow: 0 0 0 10px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0px rgba(255,255,255,0); }
}


/* ═══ FOOTER — Figma 6:283 ═══════════════════════════════════ */
.footer { padding: 96px 0 48px; background: var(--color-cream-100); } /* §4C ×1.5 top: 64→96px */
.footer-inner { max-width: 1100px; margin: 0 auto; padding: 0 48px; }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-logo-text {
  font-family: var(--font-display); font-weight: 700; font-size: 20px;
  line-height: 30px; color: var(--color-ink-900);
}
.footer-desc { font-size: 16px; line-height: 24px; color: var(--color-ink-700); }
.footer-phone {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; line-height: 21px; color: var(--color-ink-700);
  transition: color 0.2s var(--ease-out-soft); /* Upgrade 9: cubic-bezier */
}
.footer-phone:hover { color: var(--color-sage-500); }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-heading {
  font-family: var(--font-display); font-weight: 700; font-size: 14px;
  line-height: 21px; letter-spacing: 1.12px; text-transform: uppercase;
  color: var(--color-ink-900); margin-bottom: 4px;
}
.footer-link {
  font-size: 14px; line-height: 21px; color: var(--color-ink-700);
  transition: color 0.2s var(--ease-out-soft); /* Upgrade 9: cubic-bezier */
}
.footer-link:hover { color: var(--color-sage-500); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 32px; border-top: 1px solid var(--border-warm);
}
.footer-copyright { font-size: 13px; line-height: 19.5px; color: var(--color-ink-700); }
.footer-badges { font-size: 13px; line-height: 19.5px; color: var(--color-ink-700); }

/* ── MICRO-INTERACTION: Error Shake ────────────────────────── */
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-6px); }
  40% { transform: translateX(6px); }
  60% { transform: translateX(-4px); }
  80% { transform: translateX(4px); }
}
.shake { animation: shake 0.4s ease; }

/* ── RESPONSIVE DESIGN (TABLET: <1024px) ─────────────────── */
@media (max-width: 1024px) {
  /* Layout Padding - Geef tablet ademruimte */
  .section-container, .hero-inner, .faq-container, .footer-inner {
    padding-left: 32px;
    padding-right: 32px;
  }
  .nav-inner, .nav--scrolled .nav-inner {
    padding-left: 32px;
    padding-right: 32px;
  }
  
  /* Typografie schalen */
  .section-title { font-size: 36px; line-height: 42px; }
  .hero-title { font-size: 48px; line-height: 52px; }

  /* Hero: Flex column + Display contents voor de volgorde */
  .hero-inner {
    display: flex;
    flex-direction: column;
    gap: 24px; /* Algemene gap tussen alle platgeslagen elementen */
  }
  .hero-content {
    display: contents; /* Zorgt dat de child-elementen direct in .hero-inner flex vallen */
  }
  
  /* Volgorde afdwingen via CSS Order */
  .hero-badges { order: 1; }
  .hero-title { order: 2; }
  .hero-subtitle { order: 3; }
  .hero-actions { order: 4; margin-bottom: 16px; }
  .hero-image { 
    order: 5; 
    width: 100%; 
    height: 480px; 
    border-radius: var(--radius-card); 
  }
  .hero-cards { order: 6; margin-top: 16px; }

  /* Werkwijze */
  .steps-grid {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .step { max-width: 100%; }
  .step-connector {
    transform: rotate(90deg);
    padding: 16px 0;
  }

  /* Reviews: 2x2 grid voor tablet */
  .reviews-grid {
    flex-wrap: wrap;
  }
  .review-card {
    flex: 1 1 calc(50% - 24px);
    max-width: none;
  }
  .review-card:nth-child(2) { margin-top: 0; }

  /* Footer: 2x2 grid voor tablet */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

/* ── RESPONSIVE DESIGN (MOBILE: <768px) ──────────────────── */
@media (max-width: 768px) {
  /* Strakkere paddings voor kleine schermen */
  .section-container, .hero-inner, .faq-container, .footer-inner {
    padding-left: 20px;
    padding-right: 20px;
  }
  .nav-inner, .nav--scrolled .nav-inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-title { font-size: 40px; line-height: 44px; }
  .section-title { font-size: 32px; line-height: 38px; }
  .cta-title { font-size: 32px; line-height: 38px; }

  .nav-links { display: none; }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  
  .hero-cards {
    grid-template-columns: 1fr;
  }
  .hero-image {
    height: 400px;
  }
  .hero-location-card {
    bottom: 16px;
    left: 16px;
    right: 16px;
    padding: 16px;
    justify-content: center;
  }

  .reviews-grid {
    flex-direction: column;
  }
  .review-card {
    flex: 1 1 100%;
  }

  .cta-banner-inner {
    flex-direction: column;
    text-align: center;
    padding: 40px 24px;
    gap: 32px;
  }
  .cta-banner-inner .btn {
    width: 100%;
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}
/* ═══ PLAN 4: Werkwijze stappen extra klasses (ww-step op subpagina) ════════ */
/* De subpagina gebruikt dezelfde .steps-grid als homepage maar met stap-content */
/* over de klinische beleving i.p.v. het digitale proces */
.ww-step { } /* Erft van .step — geen extra stijlen nodig */
.ww-connector { } /* Erft van .step-connector */

/* ═══ PLAN 5: Team Sectie Premium Upgrade ════════════════════════════════════ */
/* Minder witruimte, grotere typografie, grayscale→kleur on hover */
.editorial-team {
  display: flex;
  flex-direction: column;
  gap: 56px;       /* Was 80px — compacter */
  padding: 40px 0; /* Was 64px */
}
.team-editorial-row {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
}
@media(min-width: 768px) {
  .team-editorial-row { flex-direction: row; gap: 56px; align-items: center; }
  .team-editorial-row:nth-child(even) { flex-direction: row-reverse; }
}
.team-photo-wrap {
  flex: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-cream-100);
  aspect-ratio: 4/3;
}
.team-photo-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  /* PLAN 5: standaard zwart-wit, kleur op hover */
  filter: grayscale(100%) contrast(1.05);
  transition: filter 0.6s var(--ease-out-expo);
}
.team-editorial-row:hover .team-photo-wrap img {
  filter: grayscale(0%) contrast(1);
}
.team-bio-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
/* PLAN 5: grotere, prominentere typografie */
.team-name {
  font-family: var(--font-display);
  font-size: 28px; /* Was impliciet kleiner */
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--color-ink-900);
}
.team-role {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-sage-500);
}
.team-quote {
  font-family: var(--font-display);
  font-size: 21px; /* Perfect Fourth: lead-niveau */
  line-height: 1.5;
  color: var(--color-ink-700);
  font-style: italic;
  border: none;
  padding: 0;
  margin: 8px 0 0 0;
}
.team-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 4px 0;
}
.team-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  background: rgba(75,110,91,0.08);
  border: 1px solid rgba(75,110,91,0.18);
  border-radius: 99px;
  font-family: var(--font-body, 'Public Sans', sans-serif);
  font-size: 12px;
  font-weight: 600;
  color: var(--color-sage-500, #4B6E5B);
  letter-spacing: 0.02em;
}
.team-badge svg {
  flex-shrink: 0;
}
.team-bio-text {
  font-family: var(--font-body, 'Public Sans', sans-serif);
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-ink-700, #4A4D4A);
  margin: 0;
}

/* ═══ PLAN 3: Reviews Infinity Marquee ══════════════════════════════════════ */
.reviews-marquee-wrapper {
  overflow: hidden;
  /* Elegante fade-edges links en rechts */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  cursor: grab;
}
.reviews-marquee-wrapper:active { cursor: grabbing; }
.reviews-marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: reviews-marquee 35s linear infinite;
  user-select: none; /* Voorkomt tekst-selectie tijdens drag */
}
.reviews-marquee-wrapper:hover .reviews-marquee-track,
.reviews-marquee-wrapper.is-dragging .reviews-marquee-track {
  animation-play-state: paused;
}
@keyframes reviews-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); } /* -50% = eerste set bereikt einde, naadloos */
}
/* Reviews marquee card stijl — compacter dan de oude carousel cards */
.reviews-marquee-track .review-card {
  flex: 0 0 320px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(188,185,179,0.2);
  box-shadow: var(--shadow-card);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.3s var(--ease-out-soft), transform 0.3s var(--ease-out-soft);
}
.reviews-marquee-track .review-card:hover {
  box-shadow: var(--shadow-featured);
  transform: translateY(-2px);
}
.marquee-stars {
  color: #C9973E; /* Warm amber — geen generieke geel */
  font-size: 14px;
  letter-spacing: 2px;
}
.marquee-review-text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-ink-700);
  font-style: italic;
  flex: 1;
}
.marquee-reviewer {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.marquee-reviewer-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-ink-900);
}
.marquee-reviewer-date {
  font-size: 12px;
  color: var(--color-muted);
}
