/* ══════════════════════════════════════════════════════
   Iron Lifestyle — shared styles
   Gedeeld door alle pagina's. Bevat:
   - Self-hosted fonts (Raleway + Open Sans, latin)
   - CSS variables
   - Nav + mobile menu + hamburger
   - WhatsApp floating button
   - Footer
   - Responsive breakpoints voor bovenstaande
   ══════════════════════════════════════════════════════ */

/* ── SELF-HOSTED FONTS (latin) ──
   Vervangt fonts.bunny.net: die werd door de CSP geblokkeerd waardoor er
   live geen webfonts laadden. Lokaal = 'self' → toegestaan, geen externe
   render-blocking request. Alleen de werkelijk gebruikte gewichten/subset. */
@font-face{font-family:'Raleway';font-style:normal;font-weight:400;font-display:optional;src:url('fonts/raleway-latin-400-normal.woff2') format('woff2');}
@font-face{font-family:'Raleway';font-style:normal;font-weight:600;font-display:optional;src:url('fonts/raleway-latin-600-normal.woff2') format('woff2');}
@font-face{font-family:'Raleway';font-style:normal;font-weight:700;font-display:optional;src:url('fonts/raleway-latin-700-normal.woff2') format('woff2');}
@font-face{font-family:'Raleway';font-style:normal;font-weight:800;font-display:optional;src:url('fonts/raleway-latin-800-normal.woff2') format('woff2');}
@font-face{font-family:'Raleway';font-style:normal;font-weight:900;font-display:optional;src:url('fonts/raleway-latin-900-normal.woff2') format('woff2');}
@font-face{font-family:'Raleway';font-style:italic;font-weight:300;font-display:optional;src:url('fonts/raleway-latin-300-italic.woff2') format('woff2');}
@font-face{font-family:'Open Sans';font-style:normal;font-weight:400;font-display:optional;src:url('fonts/open-sans-latin-400-normal.woff2') format('woff2');}
@font-face{font-family:'Open Sans';font-style:normal;font-weight:600;font-display:optional;src:url('fonts/open-sans-latin-600-normal.woff2') format('woff2');}

/* ── CSS VARS ── */
:root {
  --blue:        #233CC7;
  --blue-hover:  #1E35B5;  /* :hover/:active state van --blue (30x consistent gebruikt) */
  --blue-bright: #5C77F0;  /* hogere contrast op dark backgrounds (WCAG AA) */
  --blue-soft:   #8FA5FF;  /* voor secundaire elementen op dark */
  --black:       #121212;
  --dark:        #1A1A1A;
  --gray:        #5A5A5A;
  --light:       #F2F2F2;
  --white:       #FFFFFF;
}

/* Hero-titles op dark backgrounds gebruiken --blue-bright voor leesbaarheid */
.hero-title-blue,
.hero-title-accent {
  color: var(--blue-bright) !important;
}

/* Hero-eyebrow blijft brand-blauw maar net wat sterker op dark */
.hero .hero-eyebrow,
.hero-eyebrow {
  color: var(--blue-bright);
}

/* Secundaire hero-link — subtieler dan een button, voorkomt CTA-concurrentie */
.hero-link-secondary {
  display: inline-flex;
  align-items: center;
  color: rgba(255,255,255,0.55);
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  font-weight: 400;
  text-decoration: none;
  padding: 12px 4px;
  transition: color 0.2s;
}

.hero-link-secondary:hover {
  color: var(--blue-bright);
  text-decoration: underline;
}

/* ── GLOBAL RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* ══════════════════════════════════════════════════════
   SKIP-LINK — WCAG 2.4.1 "Bypass Blocks". Onzichtbaar tot
   keyboard-focus; springt direct naar #main-content.
   ══════════════════════════════════════════════════════ */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 10000;
  background: var(--blue);
  color: #fff;
  padding: 12px 20px;
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  transition: top 0.18s;
}
.skip-link:focus,
.skip-link:focus-visible {
  top: 12px;
  outline: 2px solid #fff;
  outline-offset: 2px;
}

/* ══════════════════════════════════════════════════════
   SHARED BUTTON SYSTEM
   Drie varianten gedeeld over alle pagina's:
   - .btn-primary  → primaire CTA (blauwe vulling)
   - .btn-outline  → secundair op donkere achtergrond
   - .btn-white    → omgekeerd (wit op donker, voor CTA-sectie)
   Pagina-specifieke mobile-overrides (bv. width:100%) blijven inline.
   ══════════════════════════════════════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: #fff;
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 28px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  width: fit-content;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--blue-hover); transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(255,255,255,0.75);
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 28px;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, transform 0.15s;
}
.btn-outline:hover {
  border-color: rgba(255,255,255,0.5);
  color: #fff;
  transform: translateY(-1px);
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--blue);
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 16px 32px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  transition: transform 0.15s, box-shadow 0.2s;
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.3);
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  box-sizing: border-box;
  background: rgba(18,18,18,0.62);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 64px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo img {
  height: 46px;
  width: auto;
  object-fit: contain;
}

.nav-logo-text {
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: #fff; }
.nav-links a.active { color: var(--blue-bright); }

.nav-cta {
  background: var(--blue);
  color: #fff;
  font-family: 'Raleway', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 22px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.2s, transform 0.15s;
}

.nav-cta:hover { background: var(--blue-hover); transform: translateY(-1px); }
.nav-cta-mobile { display: none; }

/* ── HAMBURGER ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,0.8);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: rgba(18,18,18,0.62);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  z-index: 99;
  padding: 24px 24px 32px;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-family: 'Raleway', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: #fff; }

.mobile-menu .mobile-cta {
  margin-top: 16px;
  background: var(--blue);
  color: #fff;
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 24px;
  border-radius: 4px;
  text-align: center;
  text-decoration: none;
  border-bottom: none;
}

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 9998;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4), 0 2px 8px rgba(0,0,0,0.3);
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.3s;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55), 0 2px 8px rgba(0,0,0,0.3);
}

.whatsapp-float svg { width: 28px; height: 28px; fill: #fff; }

/* WhatsApp wordt onzichtbaar wanneer een formulier in viewport is — voorkomt
   dat de groene knop submit-CTAs afdekt op mobiel. JS schakelt deze class. */
.whatsapp-float.hidden-by-form {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.8);
}

@media (max-width: 768px) {
  .whatsapp-float { width: 48px; height: 48px; bottom: 16px; right: 16px; }
  .whatsapp-float svg { width: 24px; height: 24px; }
  /* Body padding-bottom op mobiel zodat WhatsApp nooit content onderin afdekt */
  body { padding-bottom: env(safe-area-inset-bottom, 0); }
}

/* ── FOOTER ── */
footer {
  background: radial-gradient(ellipse 50% 80% at 50% 100%, rgba(35,60,199,0.08) 0%, transparent 60%), #0d0d0d;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
  opacity: 0.9;
}

.footer-logo-text {
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.55);   /* WCAG AA — was 0.3 (faalde) */
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.footer-links a:hover { color: rgba(255,255,255,0.7); }

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.55);   /* WCAG AA — was 0.2 (faalde 1.8:1) */
  letter-spacing: 0.04em;
}

.footer-social {
  display: flex;
  gap: 14px;
}

.footer-social a {
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
  display: flex;
}

.footer-social a:hover { color: var(--blue); }

/* ══════════════════════════════════════════════════════
   RESPONSIVE — Mobile (max-width: 768px)
   ══════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  nav { padding: 0 20px; height: 56px; }
  .nav-logo img { height: 36px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }

  .nav-cta-mobile {
    display: flex;
    align-items: center;
    padding: 7px 14px;
    border-radius: 4px;
    background: var(--blue);
    color: #fff;
    font-family: 'Raleway', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
  }

  .nav-hamburger {
    display: flex;
    width: 44px;
    height: 44px;
    justify-content: center;
    align-items: center;
  }

  .mobile-menu { top: 56px; }

  footer {
    padding: 40px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .footer-links { flex-wrap: wrap; gap: 14px; }
  .footer-logo img { height: 30px; }
  .footer-social a { width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center; }
}

/* ══════════════════════════════════════════════════════
   ULTRA-SMALL DEVICES (≤400px) — iPhone SE, oudere Android
   Alleen overrides waar de standaard mobile-styles tekortkomen.
   ══════════════════════════════════════════════════════ */
@media (max-width: 400px) {
  nav { padding: 0 16px; }
  footer { padding: 32px 16px; }
  .footer-links { gap: 12px; font-size: 11px; }
  .cookie-banner { left: 12px; right: 12px; bottom: 78px; padding: 18px; }
  .cookie-banner h4 { font-size: 13px; }
  .cookie-banner p { font-size: 12px; }
}

/* ══════════════════════════════════════════════════════
   COOKIE BANNER
   ══════════════════════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 520px;
  margin: 0 auto;
  z-index: 9999;
  background: rgba(18,18,18,0.96);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 2px 8px rgba(0,0,0,0.3);
  font-family: 'Open Sans', sans-serif;
  color: rgba(255,255,255,0.85);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s, transform 0.4s;
  pointer-events: none;
}

.cookie-banner.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-banner h4 {
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
  color: #fff;
}

.cookie-banner p {
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.7);
}

.cookie-banner p a {
  color: var(--blue);
  text-decoration: underline;
}

.cookie-banner-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-btn {
  flex: 1;
  min-width: 120px;
  padding: 11px 18px;
  border: none;
  border-radius: 6px;
  font-family: 'Raleway', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}

.cookie-btn-accept {
  background: var(--blue);
  color: #fff;
}

.cookie-btn-accept:hover {
  background: var(--blue-hover);
  transform: translateY(-1px);
}

.cookie-btn-deny {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.2);
}

.cookie-btn-deny:hover {
  border-color: rgba(255,255,255,0.4);
  color: #fff;
}

@media (max-width: 600px) {
  .cookie-banner {
    left: 16px;
    right: 16px;
    bottom: 88px;
    padding: 20px;
  }
}

/* ══════════════════════════════════════════════════════
   ACCESSIBILITY — tap-targets ≥44px op touch devices
   en consistente focus-states voor keyboard navigation
   ══════════════════════════════════════════════════════ */

/* Cookie-banner buttons: van 38px naar 44px hoog */
.cookie-btn {
  min-height: 44px;
  padding: 12px 20px;
}

/* Mobile nav-CTA: was 27px, nu 44px */
@media (max-width: 768px) {
  .nav-cta-mobile {
    min-height: 44px;
    padding: 12px 18px;
  }

  /* Footer tel/mail/links: rond 19px hoog → 44px tap-area zonder visuele verschuiving */
  .footer-links a,
  footer a[href^="tel:"],
  footer a[href^="mailto:"] {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 8px 0;
  }

  /* Form submit-knoppen: minimaal 48px hoogte op alle pagina's */
  .btn-submit,
  .form-submit,
  .btn-primary,
  .pakket-form-submit {
    min-height: 48px;
  }

  /* WhatsApp floating button is al 56×56 — laat met rust */
}

/* Focus-visible voor keyboard navigation (a11y) */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
  border-radius: 3px;
}

/* Cookie-banner: position:fixed zit buiten de layout-flow → geen CLS bij injectie.
   `contain` voorkomt dat repaints van de banner andere elementen raken.
   aria-hidden wordt door site.js toggled zodat screen readers de banner
   pas aankondigen wanneer hij zichtbaar is. */
.cookie-banner {
  contain: layout style;
}

/* ══════════════════════════════════════════════════════
   IMAGE-CLS PREVENTIE
   Voorkomt layout-shift wanneer lazy-loaded images binnen komen.
   Specifieke aspect-ratios per image-type zorgen dat de plek
   gereserveerd wordt vóór de bytes binnen zijn.
   ══════════════════════════════════════════════════════ */
.trainer-img img,
.expert-img img {
  aspect-ratio: 4 / 5;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.verzekeraar-card img {
  aspect-ratio: 5 / 2;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.health-image-frame img,
.hero-right img {
  aspect-ratio: 4 / 5;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.footer-logo img,
.nav-logo img {
  aspect-ratio: auto;
}

/* Lazy-loaded body-images krijgen een placeholder-tint zodat
   de plek niet als gat verschijnt voordat de pixels er zijn */
img[loading="lazy"] {
  background: linear-gradient(180deg, rgba(35,60,199,0.04) 0%, rgba(35,60,199,0.02) 100%);
}

/* ══════════════════════════════════════════════════════
   SCROLL ANIMATIES — fade-up
   Globaal beschikbaar; site.js triggered .visible bij scroll.
   Pagina's met afwijkende timing (zoals pt-apeldoorn) kunnen
   deze waarden overriden via inline <style>.
   ══════════════════════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s cubic-bezier(.25,.46,.45,.94),
              transform 0.6s cubic-bezier(.25,.46,.45,.94);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }
.fade-up.delay-4 { transition-delay: 0.4s; }
.fade-up.delay-5 { transition-delay: 0.5s; }
.fade-up.delay-6 { transition-delay: 0.55s; }

/* Respect prefers-reduced-motion: geen beweging, wel direct zichtbaar */
@media (prefers-reduced-motion: reduce) {
  .fade-up { opacity: 1; transform: none; transition: none; }
}

/* ══════════════════════════════════════════════════════
   QUOTE SPOTLIGHT — herbruikbare review-rotator voor service-
   pagina's (PT, fysio). Toont één quote tegelijk, fade-rotate
   elke 8s, klik op dot om te wisselen. Pause bij hover/focus.
   Data komt uit /reviews-curated.json, gefilterd op category.
   ══════════════════════════════════════════════════════ */
.quote-spotlight {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.quote-spotlight-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Open Sans', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-bright);
  margin-bottom: 28px;
}

.quote-spotlight-stage {
  position: relative;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quote-spotlight-card {
  opacity: 1;
  transition: opacity 0.32s ease;
}
.quote-spotlight-card.is-switching {
  opacity: 0;
}

.quote-spotlight-stars {
  display: inline-flex;
  gap: 2px;
  color: #FBBF24;
  margin-bottom: 18px;
}
.quote-spotlight-stars svg { width: 16px; height: 16px; }

.quote-spotlight-text {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 700;
  font-style: italic;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: rgba(255,255,255,0.95);
  margin-bottom: 20px;
  /* Italic-weight 1,300 staat al in Google Fonts request voor andere
     pagina's; voor zekerheid: bij ontbreken fallt browser terug op
     synthetic italic. Geen FOUC. */
}
.quote-spotlight-text::before { content: '"'; }
.quote-spotlight-text::after  { content: '"'; }

.quote-spotlight-meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}
.quote-spotlight-author {
  font-weight: 700;
  color: rgba(255,255,255,0.85);
}
.quote-spotlight-source {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.4);
}
.quote-spotlight-source::before {
  content: '·';
  margin-right: 2px;
}

.quote-spotlight-dots {
  display: inline-flex;
  gap: 10px;
  margin-top: 32px;
}
.quote-spotlight-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
  transition: background 0.2s, width 0.25s, border-radius 0.25s;
}
/* Onzichtbare tap-target 28×28 (WCAG AA 2.5.8). */
.quote-spotlight-dot::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 28px; height: 28px;
  transform: translate(-50%, -50%);
}
.quote-spotlight-dot:hover { background: rgba(255,255,255,0.4); }
.quote-spotlight-dot.is-active {
  width: 20px;
  border-radius: 100px;
  background: var(--blue);
}
.quote-spotlight-dot:focus-visible {
  outline: 2px solid var(--blue-bright);
  outline-offset: 4px;
}

.quote-spotlight-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 24px;
  font-family: 'Open Sans', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.quote-spotlight-cta:hover { color: #fff; }
.quote-spotlight-cta svg { width: 11px; height: 11px; }

/* Fallback wanneer JSON niet laadt of geen reviews voor deze category */
.quote-spotlight-empty {
  color: rgba(255,255,255,0.45);
  font-size: 14px;
  font-style: italic;
}

@media (max-width: 600px) {
  .quote-spotlight { padding: 48px 20px; }
  .quote-spotlight-stage { min-height: 240px; }
  .quote-spotlight-text { font-size: 18px; }
  .quote-spotlight-meta { flex-direction: column; gap: 4px; }
  .quote-spotlight-source::before { display: none; }
}

/* ══════════════════════════════════════════════════════
   SR-ONLY — visueel verborgen content, wél accessible voor
   screen readers. Gebruikt voor o.a. H1 op /keuzehulp.
   ══════════════════════════════════════════════════════ */
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ══════════════════════════════════════════════════════
   HONEYPOT — onzichtbaar veld voor spam-bots.
   Bots vullen alle velden in; mensen zien dit niet.
   Submit-handlers bailen out als dit veld een waarde heeft.
   ══════════════════════════════════════════════════════ */
.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
