/* =========================================================
   Eros Health Coaching — main.css
   Premium editorial dark: marine basis, onyx accent, wit highlight.
   Mobile-first.
   ========================================================= */

:root {
  /* Kleur-tokens — Onyx Outline */
  --marine:      #101A28;
  --surface:     #16212F;
  --onyx:        #08090C;
  --onyx-zacht:  #0C0E13;
  --wit:         #E9EEF3;
  --tekst:       #EEF2F6;
  --tekst-dim:   #93A7BD;
  --lijn:        rgba(255, 255, 255, 0.10);
  --lijn-zacht:  rgba(255, 255, 255, 0.06);
  --fout:        #E5534B;

  /* Type */
  --font-display: "Archivo", system-ui, sans-serif;
  --font-body: "Hanken Grotesk", system-ui, -apple-system, sans-serif;

  /* Ritme */
  --wrap: 1080px;
  --pad-x: clamp(1.25rem, 5vw, 2.5rem);
  --section-y: clamp(4rem, 9vw, 6.5rem);
  --radius: 12px;
  --radius-lg: 20px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --sticky-h: 72px;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.97rem + 0.2vw, 1.1rem);
  line-height: 1.65;
  color: var(--tekst);
  background: var(--marine);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  padding-bottom: var(--sticky-h);
}
@media (min-width: 860px) {
  body { padding-bottom: 0; }
}

/* Fijne noise/grain zodat het donker rijk wordt i.p.v. vlak */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 500;
  pointer-events: none;
  opacity: 0.032;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { max-width: 100%; display: block; }
a { color: var(--wit); }
h1, h2 { margin: 0; }

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

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 600;
  background: var(--onyx);
  color: var(--wit);
  border: 1.5px solid var(--wit);
  padding: 0.7rem 1.1rem;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 1rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(16, 26, 40, 0.86);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--lijn-zacht);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  gap: 1rem;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--tekst);
}
.monogram {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--wit);
  border: 1.5px solid var(--lijn);
  border-radius: 7px;
  padding: 0.22em 0.45em;
  font-size: 0.78rem;
  line-height: 1;
  background: var(--onyx);
}
.wordmark-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}

.btn.btn--header { display: none; }
@media (min-width: 860px) {
  .btn.btn--header { display: inline-flex; padding: 0.6rem 1.25rem; font-size: 0.95rem; }
}

/* ---------- Knoppen ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  transition: color 0.18s var(--ease), border-color 0.18s var(--ease),
              transform 0.18s var(--ease), box-shadow 0.18s var(--ease);
}
/* Primaire CTA — Onyx Outline: zwarte vulling, witte rand & tekst */
.btn--azuur {
  background: var(--onyx);
  color: var(--wit);
  border: 1.5px solid var(--wit);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.45);
}
.btn--azuur:hover {
  color: #FFFFFF;
  border-color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.55), 0 0 16px rgba(233, 238, 243, 0.14);
}
.btn--lg { padding: 1.05rem 1.9rem; font-size: 1.08rem; }
.btn-icon { width: 20px; height: 20px; flex: 0 0 auto; }

.btn--ghost {
  background: transparent;
  color: var(--tekst);
  border: 1.5px solid var(--lijn);
  box-shadow: none;
}
.btn--ghost:hover { border-color: var(--wit); color: var(--wit); }
.btn--block { width: 100%; }

.btn-link {
  font-weight: 600;
  color: var(--tekst-dim);
  text-decoration: none;
  border-bottom: 1.5px solid var(--lijn);
  padding-bottom: 2px;
  transition: border-color 0.18s var(--ease), color 0.18s var(--ease);
}
.btn-link:hover { border-color: var(--wit); color: var(--tekst); }

/* ---------- Pad-motief: lijn + voortgang + knooppunten ---------- */
main { position: relative; }
main > section { position: relative; z-index: 2; }

.path-line {
  position: absolute;
  inset-block: 0;
  left: max(calc((100vw - var(--wrap)) / 2 - 2rem), 1.05rem);
  width: 2px;
  z-index: 1;
  pointer-events: none;
}
.path-track {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, var(--wit) 6%, var(--wit) 94%, transparent);
  opacity: 0.14;
}
.path-progress {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 0;
  background: linear-gradient(to bottom, transparent, var(--wit) 60px, #FFFFFF);
  box-shadow: 0 0 14px rgba(233, 238, 243, 0.45);
  opacity: 0.85;
}
.path-node {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 11px; height: 11px;
  border-radius: 50%;
  background: var(--onyx);
  border: 2px solid var(--lijn);
  transition: border-color 0.4s var(--ease), background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.path-node.is-lit {
  background: var(--wit);
  border-color: #FFFFFF;
  box-shadow: 0 0 12px rgba(233, 238, 243, 0.6);
}

@media (prefers-reduced-motion: reduce) {
  .path-progress { height: 100% !important; }
  .path-node { background: var(--wit); border-color: #FFFFFF; }
}

/* ---------- Secties & dividers ---------- */
.section { padding-block: var(--section-y); }

.section--surface {
  background: var(--surface);
  position: relative;
}
/* Verlopende hairline-dividers i.p.v. harde randen */
.section--surface::before,
.section--surface::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(233, 238, 243, 0.22) 18%, var(--lijn) 50%, transparent);
}
.section--surface::before { top: 0; }
.section--surface::after { bottom: 0; }

/* Subtiele witte glow achter sleutelsecties */
.section--glow {
  background:
    radial-gradient(60% 45% at 50% 0%, rgba(233, 238, 243, 0.05), transparent 70%),
    var(--surface);
}

/* Genummerde sectie-labels */
.sec-label {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--wit);
}
.sec-num { color: var(--wit); letter-spacing: 0.1em; }
.sec-label::before {
  content: "";
  width: 26px;
  height: 1.5px;
  background: linear-gradient(90deg, var(--wit), transparent);
  border-radius: 1px;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.7rem, 1.2rem + 2.6vw, 2.7rem);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

/* ---------- 1. Hero ---------- */
.hero {
  position: relative;
  padding-block: clamp(1.5rem, 4vw, 4rem) var(--section-y);
  min-height: calc(100svh - 64px - var(--sticky-h));
  display: flex;
  align-items: center;
  overflow: hidden;
  /* Atmosfeer: subtiele witte gloed + onyx-verdieping op marine */
  background:
    radial-gradient(55% 60% at 22% 30%, rgba(233, 238, 243, 0.045), transparent 65%),
    radial-gradient(45% 50% at 88% 75%, rgba(8, 9, 12, 0.5), transparent 70%),
    var(--marine);
}
@media (min-width: 860px) {
  .hero { min-height: calc(100svh - 64px); }
}
.hero-inner {
  display: grid;
  gap: clamp(1.75rem, 4.5vw, 3.5rem);
  align-items: center;
}
@media (min-width: 760px) {
  .hero-inner { grid-template-columns: 1.08fr 0.92fr; }
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.4rem, 1.2rem + 5.6vw, 4.6rem);
  letter-spacing: -0.02em;
  line-height: 1.02;
}
.hero-sub {
  margin: 1.2rem 0 1.9rem;
  font-size: clamp(1.05rem, 1rem + 0.4vw, 1.28rem);
  line-height: 1.55;
  color: var(--tekst-dim);
  max-width: 30rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.6rem;
}
.hero-trust { margin: 1.5rem 0 0; font-size: 0.92rem; }
.hero-trust a {
  color: var(--tekst-dim);
  text-decoration: none;
  transition: color 0.18s var(--ease);
}
.hero-trust a:hover { color: var(--tekst); }
.trust-stars { color: var(--wit); }

/* Zachte fade/rise bij laden (alleen hero, geen scroll-vertraging) */
@media (prefers-reduced-motion: no-preference) {
  .hero-copy > * {
    animation: heroRise 0.65s var(--ease) both;
  }
  .hero-copy > :nth-child(2) { animation-delay: 0.08s; }
  .hero-copy > :nth-child(3) { animation-delay: 0.16s; }
  .hero-copy > :nth-child(4) { animation-delay: 0.24s; }
  .hero-media { animation: heroRise 0.7s var(--ease) 0.12s both; }
}
@keyframes heroRise {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}

/* Scroll-indicator */
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 1.1rem;
  transform: translateX(-50%);
  width: 34px; height: 34px;
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--tekst-dim);
  border: 1px solid var(--lijn);
  border-radius: 50%;
  transition: color 0.18s var(--ease), border-color 0.18s var(--ease);
}
.scroll-cue:hover { color: var(--wit); border-color: var(--wit); }
.scroll-cue svg { width: 16px; height: 16px; }
@media (min-width: 860px) {
  .scroll-cue { display: inline-flex; }
  @media (prefers-reduced-motion: no-preference) {
    .scroll-cue { animation: cueFloat 2.4s ease-in-out 1.2s infinite; }
  }
}
@keyframes cueFloat {
  0%, 100% { transform: translate(-50%, 0); }
  50%      { transform: translate(-50%, 6px); }
}

/* ---------- Media-frames (foto's) ---------- */
.hero-media { position: relative; }
/* Zachte witte gloed achter het kader */
.hero-media::before {
  content: "";
  position: absolute;
  inset: -12% -10%;
  background: radial-gradient(60% 60% at 50% 45%, rgba(233, 238, 243, 0.07), transparent 70%);
  pointer-events: none;
}

.media-frame {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 1px;
  /* Dunne verlopende rand: wit → transparant */
  background: linear-gradient(165deg, rgba(233, 238, 243, 0.5), rgba(233, 238, 243, 0.08) 38%, rgba(255, 255, 255, 0.05) 80%);
}
.media-frame-inner {
  position: relative;
  border-radius: calc(var(--radius-lg) - 1px);
  overflow: hidden;
  background: var(--onyx-zacht);
}
/* Duotone/marine-overlay: houdt elke (toekomstige) foto in het palet */
.media-frame-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(16, 26, 40, 0.10), rgba(8, 9, 12, 0.42)),
    radial-gradient(80% 60% at 30% 20%, rgba(233, 238, 243, 0.05), transparent 60%);
  mix-blend-mode: normal;
}
.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.05);
}

.photo-placeholder {
  aspect-ratio: 4 / 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  color: var(--tekst-dim);
  background:
    radial-gradient(90% 80% at 70% 20%, rgba(233, 238, 243, 0.05), transparent 60%),
    var(--onyx-zacht);
}
.media-frame--hero .photo-placeholder { max-height: 64svh; width: 100%; }
@media (max-width: 759px) {
  .media-frame--hero .photo-placeholder { aspect-ratio: 16 / 10; max-height: 32svh; }
}
.photo-note {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.7;
}
.monogram--lg { font-size: 1.3rem; }
.monogram--xl { font-size: 2rem; border-width: 2px; }

/* Zwevende proof-badge over de hoek van het hero-kader */
.hero-badge {
  position: absolute;
  left: -0.6rem;
  bottom: 1.4rem;
  z-index: 3;
  display: inline-flex;
  align-items: baseline;
  gap: 0.45rem;
  background: rgba(8, 9, 12, 0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid var(--lijn);
  border-radius: 12px;
  padding: 0.6rem 0.95rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}
.hero-badge::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding-top: 1px;
  background: linear-gradient(90deg, var(--wit), transparent 60%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box exclude, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box exclude, linear-gradient(#fff 0 0);
  pointer-events: none;
  opacity: 0.7;
}
.hero-badge-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--wit);
  letter-spacing: -0.01em;
}
.hero-badge-label { font-size: 0.82rem; color: var(--tekst-dim); font-weight: 500; }

/* ---------- 2. Waarom ik ---------- */
.about-inner {
  display: grid;
  gap: clamp(1.75rem, 4vw, 3.25rem);
  align-items: center;
}
@media (min-width: 800px) {
  .about-inner { grid-template-columns: 0.8fr 1.2fr; }
}
.about-text {
  margin: 0 0 1.3rem;
  font-size: clamp(1.12rem, 1rem + 0.65vw, 1.35rem);
  line-height: 1.55;
  max-width: 44ch;
}
.value-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 0 0 1.6rem;
  padding: 0;
}
.value-tags li {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  padding: 0.42rem 0.95rem;
  border-radius: 999px;
  border: 1px solid var(--lijn);
  background: var(--onyx-zacht);
  color: var(--wit);
  transition: border-color 0.18s var(--ease), background 0.18s var(--ease);
}
.value-tags li:hover { border-color: var(--wit); background: var(--onyx); }

/* Pijlers als verfijnde kaarten met iconen */
.pillar-cards {
  list-style: none;
  margin: 0 0 1.9rem;
  padding: 0;
  display: grid;
  gap: 0.8rem;
}
.pillar-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 0.95rem;
  background: rgba(8, 9, 12, 0.5);
  border: 1px solid var(--lijn-zacht);
  border-radius: var(--radius);
  padding: 1rem 1.15rem;
  overflow: hidden;
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
/* Dunne bovenrand die van wit naar transparant verloopt */
.pillar-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(233, 238, 243, 0.5), transparent 65%);
}
.pillar-card:hover { border-color: rgba(233, 238, 243, 0.3); transform: translateY(-2px); }
.pillar-icon {
  width: 24px; height: 24px;
  flex: 0 0 auto;
  color: var(--wit);
  margin-top: 0.15rem;
}
.pillar-card p { margin: 0; color: var(--tekst-dim); font-size: 0.98rem; }
.pillar-card strong { color: var(--tekst); font-weight: 600; }

/* ---------- Stats-band (onyx contrast-band tegen het marine) ---------- */
.stats {
  position: relative;
  padding-block: clamp(1.5rem, 3.5vw, 2.25rem);
  background: var(--onyx-zacht);
}
.stats::before,
.stats::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(233, 238, 243, 0.18) 20%, var(--lijn-zacht) 55%, transparent);
}
.stats::before { top: 0; }
.stats::after { bottom: 0; }
.stats-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem 1rem;
}
@media (min-width: 700px) {
  .stats-inner { grid-template-columns: repeat(4, 1fr); }
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 1.2rem + 1.6vw, 2.1rem);
  letter-spacing: -0.01em;
  color: var(--wit);
  line-height: 1.1;
}
.stat-label {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.85rem;
  color: var(--tekst-dim);
}

/* ---------- 3. Bewijs ---------- */
.cred-groups { display: grid; gap: 1.4rem; max-width: 54rem; }
.cred-caption {
  margin: 0 0 0.6rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--tekst-dim);
}
.chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 0;
  padding: 0;
}
.chips li {
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--lijn-zacht);
  color: var(--tekst);
  transition: border-color 0.18s var(--ease), transform 0.18s var(--ease);
}
.chips li:hover { border-color: rgba(233, 238, 243, 0.4); transform: translateY(-1px); }

/* ---------- Reviews ---------- */
.reviews { margin-top: clamp(2.5rem, 6vw, 4rem); }
.reviews-head {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}
/* Marquee: doorlopende, traag scrollende band met alle reviews */
.reviews-marquee {
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  margin: 0 0 1.5rem;
  scrollbar-width: none;
  /* Zachte fade aan beide randen i.p.v. hard afsnijden */
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.reviews-marquee::-webkit-scrollbar { display: none; }

.reviews-track {
  list-style: none;
  margin: 0;
  padding: 0.25rem 0;
  display: flex;
  align-items: stretch;
  width: max-content;
  /* Duur geschaald op 15 kaarten (~8s per kaart) — rustig, leesbaar tempo */
  animation: marqueeScroll 120s linear infinite;
  will-change: transform;
}
/* Pauzeer bij hover, keyboard-focus en touch (JS zet .is-paused) */
.reviews-marquee:hover .reviews-track,
.reviews-marquee:focus-within .reviews-track,
.reviews-marquee:focus .reviews-track,
.reviews-marquee.is-paused .reviews-track { animation-play-state: paused; }

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Vaste breedte + rechter-marge (geen flex-gap: -50% moet exact één set zijn) */
.reviews-track .review-card {
  flex: 0 0 auto;
  width: min(76vw, 320px);
  margin-right: 1rem;
}
/* Gelijke hoogte: lange teksten netjes clampen */
.review-text {
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Reduced-motion: geen auto-scroll — gewone swipebare rij met snap, zonder duplicaat-set */
@media (prefers-reduced-motion: reduce) {
  .reviews-track { animation: none; will-change: auto; }
  .reviews-track .is-clone { display: none; }
  .reviews-marquee { scroll-snap-type: x mandatory; }
  .reviews-track .review-card { scroll-snap-align: start; }
}

.review-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--lijn-zacht);
  border-radius: var(--radius);
  padding: 1.4rem 1.25rem 1.2rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.review-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(233, 238, 243, 0.45), transparent 70%);
}
.review-quote {
  position: absolute;
  top: 0.4rem;
  right: 0.9rem;
  font-family: var(--font-display);
  font-size: 3.2rem;
  line-height: 1;
  color: var(--wit);
  opacity: 0.12;
  pointer-events: none;
}
.review-stars {
  color: var(--wit);
  font-size: 0.95rem;
  letter-spacing: 0.18em;
}
.review-text {
  margin: 0;
  font-size: 0.95rem;
  color: var(--tekst-dim);
  flex: 1;
}
.review-meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.4rem;
}
.review-avatar {
  width: 30px; height: 30px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--onyx);
  border: 1px solid var(--lijn);
  color: var(--wit);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
}
.review-name { font-weight: 600; font-size: 0.88rem; }
.review-source {
  margin-left: auto;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--tekst-dim);
  border: 1px solid var(--lijn-zacht);
  border-radius: 999px;
  padding: 0.15rem 0.6rem;
}

.proof-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.25rem;
}
.reviews-note { color: var(--tekst-dim); font-size: 0.88rem; }

/* ---------- 4. Contact / formulier ---------- */
.contact-inner { max-width: 44rem; }
.contact-intro { color: var(--tekst-dim); margin: 0 0 1.75rem; max-width: 38rem; }

.lead-form {
  position: relative;
  display: grid;
  gap: 1.1rem;
  background: var(--onyx-zacht);
  border: 1px solid var(--lijn-zacht);
  border-radius: var(--radius-lg);
  padding: clamp(1.25rem, 4vw, 2.25rem);
  overflow: hidden;
}
.lead-form::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(233, 238, 243, 0.5), transparent 70%);
}
@media (min-width: 640px) {
  .lead-form { grid-template-columns: 1fr 1fr; }
  .field { grid-column: 1 / -1; }
  .field--half { grid-column: auto; }
  .form-actions { grid-column: 1 / -1; }
}
.field { display: flex; flex-direction: column; gap: 0.35rem; }
.field label { font-weight: 600; font-size: 0.9rem; }
.req { color: var(--fout); }

.field input,
.field textarea {
  font: inherit;
  color: var(--tekst);
  background: var(--surface);
  border: 1.5px solid var(--lijn);
  border-radius: 10px;
  padding: 0.7rem 0.9rem;
  width: 100%;
  transition: border-color 0.15s var(--ease), box-shadow 0.15s var(--ease);
}
.field input::placeholder,
.field textarea::placeholder { color: var(--tekst-dim); opacity: 0.75; }
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--wit);
  box-shadow: 0 0 0 3px rgba(233, 238, 243, 0.16);
}
.field textarea { resize: vertical; }

.field.is-invalid input,
.field.is-invalid textarea {
  border-color: var(--fout);
  background: rgba(229, 83, 75, 0.06);
}
.field-error {
  min-height: 1em;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--fout);
}

.form-actions { display: grid; gap: 0.7rem; margin-top: 0.4rem; }
.form-fallback { margin: 0; text-align: center; color: var(--tekst-dim); font-size: 0.9rem; }
.form-fallback a { color: var(--wit); font-weight: 600; }

/* ---------- Footer ---------- */
.site-footer {
  position: relative;
  padding-block: clamp(2rem, 5vw, 3rem);
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--lijn) 30%, var(--lijn) 70%, transparent);
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem 2rem;
}
.footer-brand { display: inline-flex; align-items: center; gap: 0.6rem; }
.footer-name { font-family: var(--font-display); font-weight: 600; font-size: 0.92rem; }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.5rem;
  align-items: center;
}
.footer-links a {
  color: var(--tekst-dim);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.92rem;
  transition: color 0.15s var(--ease);
}
.footer-links a:hover { color: var(--tekst); }
.footer-domain { color: var(--tekst-dim); font-size: 0.92rem; }
.footer-copy { margin: 0; color: var(--tekst-dim); font-size: 0.85rem; }

/* ---------- Sticky WhatsApp-CTA (mobiel) — Onyx Outline ---------- */
.sticky-wa {
  position: fixed;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.9rem;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  background: var(--onyx);
  color: var(--wit);
  border: 1.5px solid var(--wit);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  text-decoration: none;
  padding: 0.95rem 1.2rem;
  border-radius: 999px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.55), 0 0 16px rgba(233, 238, 243, 0.10);
}
.sticky-wa-icon { width: 21px; height: 21px; flex: 0 0 auto; }

@media (min-width: 860px) {
  .sticky-wa { display: none; }
}

/* ---------- Reveals + stagger ---------- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* Lichte stagger binnen gemarkeerde groepen */
.stagger > .reveal:nth-child(2) { transition-delay: 0.08s; }
.stagger > .reveal:nth-child(3) { transition-delay: 0.16s; }
.stagger > .reveal:nth-child(4) { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .pillar-card, .chips li { transition: none; }
  .hero-copy > *, .hero-media, .scroll-cue { animation: none; }
}
