/* ============================================================
   INFITNITY CLUB — design system
   Tokens bovenaan; pas hier 1x aan en het werkt overal door.
   ============================================================ */
:root {
  /* Merk */
  --green: #00e997;
  --green-bright: #00ffa5;
  --green-deep: #003b2f;
  --green-mid: #007e6c;

  /* Vlakken */
  --bg: #000000;
  --bg-2: #060d0a;
  --ink: #ffffff;
  --muted: #b6c7c0;
  --line: rgba(255, 255, 255, 0.12);
  --card: rgba(255, 255, 255, 0.04);
  --card-2: rgba(0, 0, 0, 0.45);

  /* Maatvoering */
  --max: 1240px;
  --radius: 18px;
  --radius-lg: 28px;
  --edge: 16px; /* gelijke marge boven/naast header + secties */

  /* Type */
  --font-display: "Anton", "Arial Narrow", sans-serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --grad: linear-gradient(135deg, #00352c 0%, #007e6c 55%, #00e997 130%);
  --grad-hero: linear-gradient(150deg, rgba(0, 0, 0, 0.72) 10%, rgba(0, 40, 30, 0.4) 50%, rgba(0, 233, 151, 0.5) 95%);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: #00463a;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
/* Vaste achtergrond-gradient als GPU-laag (smooth scroll i.p.v. background-attachment:fixed) */
body::before { content: ''; position: fixed; inset: 0; z-index: -1; pointer-events: none; background: linear-gradient(180deg, #008a70 0%, #00463a 100%); }

/* Brand-scrollbar (minimalistisch) */
html { scrollbar-width: thin; scrollbar-color: var(--green) #000; }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: #000; }
::-webkit-scrollbar-thumb { background: var(--green); border-radius: 999px; border: 3px solid transparent; background-clip: padding-box; }
::-webkit-scrollbar-thumb:hover { background: var(--green-bright); background-clip: padding-box; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin: 0;
}
h1 { font-size: clamp(2.8rem, 7vw, 5.5rem); }
h2 { font-size: clamp(2.1rem, 5vw, 3.6rem); }
h3 { font-size: clamp(1.4rem, 3vw, 2rem); }

.green { color: var(--green); }

/* Appear-on-scroll (fade + lift); alleen actief met JS via html.reveal-on */
html.reveal-on [data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
html.reveal-on [data-reveal].is-visible { opacity: 1; transform: none; }

/* ---------- Layout helpers ---------- */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

.section { padding: clamp(56px, 9vw, 120px) 0; position: relative; margin: 16px var(--edge); border-radius: var(--radius-lg); }
.section--black { background: var(--bg); }
.section--alt { background: var(--bg-2); }
.section--gradient { background: var(--grad); }
.section--deep { background: var(--green-deep); }

.kicker {
  display: inline-block;
  color: var(--green);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 0 0 14px;
}
/* kicker = altijd var(--green) (#00e997), ook op gradient-/zwarte containers */

.section-head { max-width: 720px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { color: var(--muted); margin: 14px 0 0; }
.section--gradient .section-head p { color: rgba(255, 255, 255, 0.85); }

/* ---------- Buttons ---------- */
.btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.btn--primary { background: var(--green); color: #00231b; box-shadow: 0 8px 24px rgba(0, 233, 151, 0.22); }
.btn--primary:hover { background: var(--green-bright); }
/* shine-sweep op groene knoppen (geen lift) */
.btn--primary::after {
  content: ''; position: absolute; top: 0; left: -120%; width: 60%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.65), transparent);
  transform: skewX(-20deg); transition: left 0.6s ease; pointer-events: none;
}
.btn--primary:hover::after { left: 130%; }
.btn--ghost { background: rgba(0, 0, 0, 0.25); color: #fff; border-color: rgba(255, 255, 255, 0.55); backdrop-filter: blur(4px); }
.btn--ghost:hover { border-color: #fff; background: rgba(255, 255, 255, 0.1); }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }

/* Proefles-tutorial (boeken via de rooster-widget) */
.proefles-steps { list-style: none; padding: 0; margin: 6px auto 0; max-width: 620px; display: flex; flex-direction: column; gap: 14px; }
.proefles-steps li { display: flex; align-items: flex-start; gap: 14px; }
.proefles-steps li > span { flex: 0 0 auto; width: 30px; height: 30px; border-radius: 50%; background: #00231b; color: var(--green); font-weight: 800; display: grid; place-items: center; font-size: 0.92rem; }
.proefles-steps li > div { color: rgba(255, 255, 255, 0.94); font-size: 1.02rem; line-height: 1.5; padding-top: 3px; }
.proefles-steps strong { color: var(--green); font-weight: 800; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: var(--edge); left: var(--edge); right: var(--edge); z-index: 100;
  display: flex; align-items: center; gap: 20px;
  padding: 12px 26px;
  background: #000;
  border: 1px solid #000;
  border-radius: 16px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.4);
  transition: box-shadow 0.25s ease;
}
.site-header.scrolled {
  background: #000;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.55);
}
/* 3-koloms: logo links · menu midden · knoppen rechts */
.site-header .brand { flex: 1 1 0; display: flex; justify-content: flex-start; }
.site-header .brand img { height: 82px; width: auto; }
.main-nav { flex: 0 0 auto; display: flex; gap: 22px; justify-content: center; }
.main-nav a { white-space: nowrap; }
.main-nav a {
  font-weight: 800; font-size: 0.86rem; letter-spacing: 0.005em; text-transform: uppercase;
  color: #fff; opacity: 1; transition: color 0.15s;
}
.main-nav a:hover { color: var(--green); opacity: 1; }
.header-ctas { flex: 1 1 0; display: flex; gap: 12px; justify-content: flex-end; }
.header-ctas .btn { padding: 11px 20px; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: #fff; margin: 6px 0; transition: 0.2s; }
/* "Lid worden"-knop altijd zichtbaar in de mobiele header (links naast hamburger) */
.header-cta-mobile { display: none; }

/* Tablet/mobiel: hamburger, logo links */
@media (max-width: 1199px) {
  :root { --edge: 12px; }
  .site-header { padding: 10px 18px; }
  .site-header .main-nav, .site-header .header-ctas { display: none; }
  .site-header .nav-toggle { display: block; }
  .site-header .header-cta-mobile { display: inline-flex; margin-left: auto; padding: 9px 16px; font-size: 0.8rem; }
  .site-header .brand img { height: 70px; }
}

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 110;
  background: rgba(0, 0, 0, 0.97);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 22px;
  transform: translateX(100%); transition: transform 0.3s ease;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a { font-family: var(--font-display); font-size: 1.8rem; text-transform: uppercase; }
.mobile-menu a:hover { color: var(--green); }
.mobile-menu .btn { font-family: var(--font-body); font-size: 0.9rem; }
.mobile-close { position: absolute; top: 22px; right: 26px; background: none; border: 0; color: #fff; font-size: 2.4rem; line-height: 1; cursor: pointer; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding: 175px 0 90px;
  background-image: var(--grad-hero), url("/assets/img/hero-bg.webp");
  background-size: cover; background-position: center;
}
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center; width: 100%; }
.hero h1 { margin-bottom: 26px; }
.hero-text {
  background: rgba(0, 0, 0, 0.62);
  border-radius: var(--radius);
  padding: 18px 24px;
  max-width: 620px;
  font-size: 1.02rem;
}
.hero-text .green { font-weight: 700; }
.hero-stamp { width: 120px; height: auto; display: block; margin-bottom: 22px; }
.hero-badge { justify-self: end; display: flex; justify-content: center; width: 100%; max-width: 380px; }
.wallball { width: 100%; max-width: 320px; }
.wb-svg { width: 100%; height: auto; display: block; }

/* ---------- Pricing ---------- */
.price-toggle { display: inline-flex; gap: 6px; padding: 5px; background: transparent; border: 1.5px solid var(--green); border-radius: 999px; margin: 0 auto 44px; }
.price-toggle button {
  border: 0; cursor: pointer; background: transparent; color: #eafff7;
  font-weight: 800; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 10px 22px; border-radius: 999px; transition: 0.15s;
}
.price-toggle button.active { background: var(--green); color: #00231b; }

.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: center; }
.price-card {
  background: rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 255, 165, 0.32);
  border-radius: 16px;
  padding: 34px 28px;
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.price-card.featured { border-color: var(--green); box-shadow: 0 0 0 1px rgba(0, 233, 151, 0.55), 0 10px 44px rgba(0, 233, 151, 0.18); }
.price-card .plan-icon { height: 52px; margin: 0 auto 16px; width: auto; }
.price-card h3 { margin-bottom: 8px; }
.price-from { color: var(--muted); font-size: 1rem; margin: 0 0 4px; }
.price-from b { color: #fff; font-family: var(--font-display); font-size: 1.7rem; font-weight: 400; }
.price-divider { border: 0; border-top: 1px dashed rgba(255, 255, 255, 0.25); margin: 22px 0; }
.price-rows-label { font-weight: 800; margin: 0 0 10px; }
.price-rows { list-style: none; margin: 0 0 8px; padding: 0; color: var(--muted); }
.price-rows li { padding: 5px 0; }
.feature-list { list-style: none; margin: 18px 0 26px; padding: 0; text-align: left; }
.feature-list li { display: flex; gap: 10px; align-items: flex-start; padding: 3px 0; font-size: 0.96rem; }
.feature-list svg { flex: 0 0 auto; margin-top: 3px; color: var(--green); }
.price-card .btn { width: auto; padding-left: 34px; padding-right: 34px; margin-top: 6px; }

/* price tab visibility (pvi = inline price, pvb = block rows) */
.pvi, .pvb { display: none; }
body.plan-2jaar .pvi-2jaar, body.plan-1jaar .pvi-1jaar, body.plan-flex .pvi-flex { display: inline-block; }
body.plan-2jaar .pvb-2jaar, body.plan-1jaar .pvb-1jaar, body.plan-flex .pvb-flex { display: block; }

/* ---------- Media + checklist (split) ---------- */
.media-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.media-split.reverse .media-split__media { order: -1; }
.media-split__media img { border-radius: var(--radius-lg); width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.media-split__media.tall img { aspect-ratio: 3 / 4; }
.media-split p .green { font-weight: 700; }
.check-head { font-weight: 800; margin: 22px 0 6px; }

/* ---------- Weekrooster (roosterplaat, zie roosterSection() in components.js) ---------- */
.rooster-figure { display: block; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #000; transition: border-color 0.2s ease; }
.rooster-figure:hover { border-color: rgba(0, 233, 151, 0.5); }
.rooster-figure img { width: 100%; height: auto; }

/* ---------- Embed ---------- */
.embed-frame { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
.embed-frame iframe { width: 100%; height: 720px; border: 0; display: block; }
.shop-embed { max-width: 1240px; margin: 0 auto; position: relative; }
.btn-fs { position: absolute; top: 12px; right: 12px; z-index: 5; display: inline-flex; align-items: center; gap: 8px; background: rgba(0, 35, 27, 0.88); border: 1px solid rgba(255, 255, 255, 0.35); color: #fff; padding: 8px 14px; border-radius: 999px; font: inherit; font-size: 0.85rem; font-weight: 700; cursor: pointer; backdrop-filter: blur(4px); transition: background 0.2s ease, border-color 0.2s ease; }
.btn-fs:hover { background: rgba(0, 35, 27, 1); border-color: var(--green); }
.btn-fs svg { width: 16px; height: 16px; }
.embed-frame--shop { margin: 0; padding-top: clamp(20px, 3vw, 36px); }
.embed-frame--shop iframe { height: 860px; }
/* Coming-soon overlay over de webshop (toggle in content.js) */
.shop-embed.is-coming-soon .embed-frame--shop { filter: blur(7px); pointer-events: none; user-select: none; }
.shop-embed.is-coming-soon .btn-fs { display: none; }
.coming-soon { position: absolute; inset: 0; z-index: 10; display: grid; place-items: center; padding: 24px; border-radius: var(--radius); background: rgba(0, 35, 27, 0.6); }
.coming-soon__card { max-width: 460px; text-align: center; background: var(--bg-2); border: 1px solid rgba(255, 255, 255, 0.14); border-radius: var(--radius); padding: clamp(28px, 4vw, 40px); box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5); }
.coming-soon__card h3 { margin: 10px 0 12px; font-size: clamp(1.4rem, 3vw, 1.9rem); }
.coming-soon__card p { margin: 0 0 22px; color: rgba(255, 255, 255, 0.85); line-height: 1.6; }
.shop-embed:fullscreen { max-width: none; background: #00231b; display: flex; flex-direction: column; padding: clamp(16px, 2.5vw, 28px); box-sizing: border-box; }
.shop-embed:-webkit-full-screen { max-width: none; background: #00231b; display: flex; flex-direction: column; padding: clamp(16px, 2.5vw, 28px); box-sizing: border-box; }
.shop-embed:fullscreen .embed-frame--shop { flex: 1; border-radius: var(--radius); }
.shop-embed:-webkit-full-screen .embed-frame--shop { flex: 1; border-radius: var(--radius); }
.shop-embed:fullscreen .embed-frame--shop iframe { height: 100%; }
.shop-embed:-webkit-full-screen .embed-frame--shop iframe { height: 100%; }

/* ---------- Keuze-sectie (Aanmelden / Gratis proefles) ---------- */
.choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(14px, 2vw, 22px); max-width: 860px; margin: 8px auto 0; }
.choice-card { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; width: 100%; text-align: left; padding: clamp(22px, 3vw, 34px); border-radius: var(--radius); background: var(--card); border: 1px solid rgba(255, 255, 255, 0.12); color: #fff; font: inherit; cursor: pointer; text-decoration: none; transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease; }
.choice-card:hover { border-color: var(--green); background: rgba(0, 233, 151, 0.06); box-shadow: 0 12px 36px rgba(0, 233, 151, 0.14); }
.choice-card.active { border-color: var(--green); background: rgba(0, 233, 151, 0.08); }
.choice-icon { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; background: var(--green); color: #00231b; }
.choice-icon svg { width: 28px; height: 28px; }
.choice-card h3 { margin: 4px 0 0; font-size: clamp(1.3rem, 2.4vw, 1.6rem); }
.choice-card p { margin: 0; color: rgba(255, 255, 255, 0.82); line-height: 1.5; }
.choice-cta { margin-top: 6px; font-weight: 800; color: var(--green); letter-spacing: 0.2px; }
.choice-panel { max-width: 720px; margin: clamp(20px, 3vw, 34px) auto 0; opacity: 0; transform: translateY(12px); transition: opacity 0.45s ease, transform 0.45s ease; }
.choice-panel.open { opacity: 1; transform: none; }
@media (max-width: 600px) { .choice-grid { grid-template-columns: 1fr; } }
@media (prefers-reduced-motion: reduce) { .choice-panel { transition: none; } }

/* ---------- Geïllustreerde proefles-guide (met mini-animaties) ---------- */
.proefles-guide { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2.5vw, 28px); max-width: 920px; margin: 8px auto 0; }
@media (max-width: 640px) { .proefles-guide { grid-template-columns: 1fr; max-width: 420px; } }
.guide-step { position: relative; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 6px; padding: clamp(24px, 3vw, 32px) 20px; border-radius: var(--radius); background: var(--card); border: 1px solid rgba(255, 255, 255, 0.12); }
.guide-num { position: absolute; top: 14px; left: 14px; width: 28px; height: 28px; border-radius: 50%; background: var(--green); color: #00231b; font-weight: 800; display: grid; place-items: center; font-size: 0.85rem; }
.guide-step h3 { margin: 12px 0 0; font-size: 1.18rem; }
.guide-step p { margin: 0; color: rgba(255, 255, 255, 0.82); font-size: 0.95rem; line-height: 1.5; }
.guide-step strong { color: var(--green); }
.guide-visual { position: relative; width: 100%; height: 96px; display: grid; place-items: center; }

/* Stap 1 — ronde rooster-knop + tikkende muis (klikbaar) */
.rooster-demo { position: relative; width: 64px; height: 64px; border-radius: 50%; background: var(--green); color: #00231b; border: none; cursor: pointer; display: grid; place-items: center; box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35); animation: roosterPress 2.8s ease-in-out infinite; }
.rooster-demo__icon { display: grid; place-items: center; }
.rooster-demo__icon svg { width: 30px; height: 30px; }
.rooster-demo__ring { position: absolute; inset: -2px; border-radius: 50%; border: 2px solid var(--green); animation: roosterRing 2.6s ease-out infinite; pointer-events: none; }
.guide-cursor { position: absolute; left: 50%; top: 50%; width: 22px; height: 22px; pointer-events: none; filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.4)); animation: guideTap 2.8s ease-in-out infinite; }
.guide-cursor svg { width: 22px; height: 22px; display: block; }
@keyframes roosterRing { 0% { transform: scale(1); opacity: 0.5; } 80%, 100% { transform: scale(1.6); opacity: 0; } }
@keyframes roosterPress { 0%, 45%, 80%, 100% { transform: scale(1); } 55%, 68% { transform: scale(0.92); } }
@keyframes guideTap { 0%, 100% { transform: translate(10px, 10px); } 45% { transform: translate(0, 0); } 55% { transform: translate(-1px, -1px) scale(0.92); } 68% { transform: translate(0, 0); } }

/* Stap 2 — rooster-rijen, gekozen les licht op */
.sched-demo { display: flex; flex-direction: column; gap: 8px; width: 124px; }
.sched-row { height: 16px; border-radius: 6px; background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.12); }
.sched-row.is-pick { animation: schedPick 2.6s ease-in-out infinite; }
@keyframes schedPick { 0%, 100% { background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.12); transform: scale(1); } 40%, 70% { background: rgba(0, 233, 151, 0.18); border-color: var(--green); transform: scale(1.05); } }

/* Stap 3 — vinkje dat zich intekent */
.check-demo { color: var(--green); }
.check-demo svg { width: 64px; height: 64px; display: block; }
.check-demo__tick { stroke-dasharray: 44; stroke-dashoffset: 44; animation: checkDraw 2.6s ease-in-out infinite; }
@keyframes checkDraw { 0%, 15% { stroke-dashoffset: 44; } 45%, 80% { stroke-dashoffset: 0; } 100% { stroke-dashoffset: 44; } }

@media (prefers-reduced-motion: reduce) {
  .rooster-demo, .rooster-demo__ring, .guide-cursor, .sched-row.is-pick, .check-demo__tick { animation: none; }
  .guide-cursor { transform: translate(2px, 2px); }
  .check-demo__tick { stroke-dashoffset: 0; }
  .sched-row.is-pick { background: rgba(0, 233, 151, 0.18); border-color: var(--green); }
}

/* ---------- Reviews (TrustIndex-stijl, lichte kaarten) ---------- */
.hscroll { position: relative; }
.hscroll-viewport {
  display: flex; gap: 18px; overflow-x: auto; scroll-behavior: smooth;
  padding: 6px clamp(16px, 4vw, 48px) 22px;
  scrollbar-width: none; -ms-overflow-style: none; cursor: grab;
}
.hscroll-viewport::-webkit-scrollbar { display: none; }
.hscroll-viewport.dragging { cursor: grabbing; scroll-behavior: auto; }
.hscroll-arrow {
  position: absolute; top: 46%; transform: translateY(-50%); z-index: 5;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(0, 0, 0, 0.42); color: #fff; border: 0; cursor: pointer;
  font-size: 1.5rem; line-height: 1; display: grid; place-items: center;
  transition: background 0.15s;
}
.hscroll-arrow:hover { background: rgba(0, 0, 0, 0.68); }
.hscroll-prev { left: 12px; }
.hscroll-next { right: 12px; }
.review-card {
  flex: 0 0 300px; scroll-snap-align: start;
  background: #f6f7f5; color: #1a1a1a;
  border-radius: 12px; padding: 22px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.2);
}
.review-top { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.review-avatar {
  position: relative; width: 46px; height: 46px; border-radius: 50%;
  color: #fff; font-weight: 800; font-size: 1.2rem; display: grid; place-items: center; flex: 0 0 auto;
}
.review-g {
  position: absolute; right: -3px; bottom: -3px; width: 18px; height: 18px;
  background: #fff; border-radius: 50%; display: grid; place-items: center; padding: 2px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}
.review-g svg { width: 100%; height: 100%; }
.review-name { font-weight: 800; font-size: 0.98rem; }
.review-ago { color: #70757a; font-size: 0.8rem; }
.review-stars { color: #fbbc04; letter-spacing: 1px; font-size: 1.05rem; display: flex; align-items: center; gap: 6px; margin-bottom: 10px; }
.review-text {
  color: #3c4043; font-size: 0.92rem; line-height: 1.5; margin: 0 0 10px;
  display: -webkit-box; -webkit-line-clamp: 5; -webkit-box-orient: vertical; overflow: hidden;
}
.review-more { color: #70757a; font-size: 0.85rem; font-weight: 600; }
.review-more:hover { color: #1a73e8; }

/* ---------- Partners (grote logo-tegels) ---------- */
.partner-marquee {
  overflow: hidden; padding: 6px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.partner-track { display: flex; gap: 24px; width: max-content; animation: pmarquee 40s linear infinite; }
.partner-marquee:hover .partner-track { animation-play-state: paused; }
@keyframes pmarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.partner-card {
  display: block; width: 230px; height: 230px; border-radius: 16px; overflow: hidden;
  background: #0a0f0d; box-shadow: 0 10px 26px rgba(0, 0, 0, 0.25);
  text-decoration: none; transition: transform .25s ease, box-shadow .25s ease;
}
.partner-card:hover { transform: translateY(-4px); box-shadow: 0 16px 34px rgba(0, 0, 0, 0.35); }
.partner-card img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- FAQ ---------- */
.faq { max-width: 840px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; text-align: left; background: none; border: 0; color: #fff; cursor: pointer;
  font-family: var(--font-body); font-weight: 800; font-size: 1.1rem; padding: 22px 40px 22px 0; position: relative; }
.faq-q::after { content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%); color: var(--green); font-size: 1.6rem; }
.faq-item.open .faq-q::after { content: "–"; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; color: var(--muted); }
.faq-item.open .faq-a { max-height: 720px; }
.faq-a p { margin: 0 0 22px; }

/* ---------- Forms ---------- */
.form-card {
  max-width: 820px; background: rgba(8, 12, 10, 0.78); border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg); padding: clamp(24px, 4vw, 48px); backdrop-filter: blur(6px);
}
#contact .form-card { background: #062620; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label { font-weight: 700; font-size: 0.85rem; color: #fff; }
.field input, .field textarea, .field select {
  background: #ffffff; border: 1px solid #d8e0dc; border-radius: 999px;
  color: #0a1410; padding: 13px 18px; font: inherit; font-size: 0.95rem;
}
.field textarea { border-radius: 16px; min-height: 130px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { outline: 2px solid var(--green); border-color: transparent; }
.field input::placeholder, .field textarea::placeholder { color: #8a948f; }
.form-consent { display: flex; gap: 10px; align-items: flex-start; margin: 18px 0; font-size: 0.85rem; color: var(--muted); }
.form-consent a { color: var(--green); }
.form-note { margin-top: 14px; font-size: 0.85rem; color: var(--muted); }
.form-status { margin-top: 14px; font-weight: 700; }
.btn--block { width: 100%; }

/* Multi-step wizard */
.steps { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 36px; }
.step { display: flex; flex-direction: column; align-items: center; gap: 8px; flex: 1; position: relative; }
.step:not(:last-child)::after {
  content: ''; position: absolute; top: 18px; left: 50%; width: 100%; height: 2px;
  background: rgba(255, 255, 255, 0.2); z-index: 0;
}
.step.done:not(:last-child)::after { background: var(--green); }
.step-num {
  position: relative; z-index: 1; width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center; font-weight: 800; font-family: var(--font-body);
  background: #0a0f0d; color: #fff; border: 2px solid rgba(255, 255, 255, 0.3); transition: 0.2s;
}
.step.active .step-num, .step.done .step-num { background: var(--green); color: #00231b; border-color: var(--green); }
.step-label { font-size: 0.76rem; font-weight: 700; color: var(--muted); max-width: 120px; text-align: center; }
.step.active .step-label { color: #fff; }
.form-nav { display: flex; gap: 12px; margin-top: 24px; }
.form-nav .next, .form-nav button[type="submit"] { flex: 1; }
.form-nav .prev { flex: 0 0 auto; }

/* dot-markers (i.p.v. vinkjes) */
.feature-list.is-dot li .li-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--green); margin-top: 9px; flex: 0 0 auto; }

/* ---------- Footer ---------- */
.site-footer { background: var(--grad); padding: 70px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px; }
.footer-logo img { width: 150px; margin-bottom: 18px; }
.site-footer h4 { font-family: var(--font-display); text-transform: uppercase; font-weight: 400; font-size: 1.2rem; margin: 0 0 16px; }
.footer-col a, .footer-contact a, .footer-contact span { display: block; padding: 5px 0; color: rgba(255,255,255,0.9); }
.footer-col a:hover, .footer-contact a:hover { color: #00231b; }
.footer-socials { display: flex; gap: 14px; margin-top: 16px; }
.footer-socials a { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: rgba(0,0,0,0.25); color: rgba(255,255,255,0.9); transition: background 0.15s ease, color 0.15s ease; }
.footer-socials a:hover { background: rgba(0,233,151,0.14); color: var(--green); }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: space-between; align-items: center;
  margin-top: 48px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.18); font-size: 0.85rem; color: rgba(255,255,255,0.85); }
.footer-bottom nav { display: flex; gap: 20px; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-badge { justify-self: center; justify-content: center; max-width: 320px; }
  .hero-stamp { width: 104px; margin-bottom: 16px; }
  .wallball { max-width: 260px; }
  .price-grid { grid-template-columns: 1fr; }
  .media-split { grid-template-columns: 1fr; }
  .media-split.reverse .media-split__media { order: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .partner-card { width: 150px; height: 150px; }
  .step-label { font-size: 0.68rem; }
}

/* ---------- Subpagina's ---------- */
body.subpage main { padding-top: 104px; }
body.subpage main > section:first-child { padding-top: clamp(30px, 4vw, 48px); }
.page-hero { text-align: center; }
.page-hero h1 { margin: 0; }

/* ---------- Team (over ons) ---------- */
.team-list { display: flex; flex-direction: column; gap: clamp(44px, 6vw, 84px); margin-top: 28px; }
.team-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.team-row.reverse .team-photo { order: 2; }
.team-photo img { width: 100%; border-radius: var(--radius-lg); aspect-ratio: 3 / 2; object-fit: cover; }
.team-bio .kicker { display: block; }
.team-bio h3 { margin: 6px 0 14px; }
.team-bio p { color: var(--muted); margin: 0; }

/* ---------- Juridische pagina's ---------- */
.legal-content { max-width: 820px; margin: 0 auto; }
.legal-content .legal-lead { color: #fff; font-size: 1.08rem; margin: 0 0 18px; }
.legal-content h2 { font-family: var(--font-body); font-weight: 800; text-transform: none; font-size: 1.4rem; margin: 36px 0 12px; }
.legal-content p, .legal-content li { color: var(--muted); }
.legal-content ul { padding-left: 20px; margin: 0 0 16px; }
.legal-content li { margin: 5px 0; }
.legal-content a { color: var(--green); }

/* ---------- Cookie-consent ---------- */
.cookie-banner { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 200; }
.cookie-banner[hidden] { display: none; }
.cookie-inner {
  max-width: 1080px; margin: 0 auto;
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px 24px;
  background: rgba(8, 14, 11, 0.94); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12); border-radius: 16px;
  padding: 18px 22px; box-shadow: 0 16px 50px rgba(0, 0, 0, 0.45);
}
.cookie-inner p { margin: 0; flex: 1; min-width: 260px; color: var(--muted); font-size: 0.9rem; }
.cookie-inner a { color: var(--green); }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-actions .btn { padding: 11px 22px; }
@media (max-width: 560px) {
  .cookie-actions { width: 100%; }
  .cookie-actions .btn { flex: 1; }
}

/* ---------- Gallerij ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-item { display: block; border-radius: var(--radius); overflow: hidden; }
.gallery-item.feature { grid-column: 1 / -1; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3 / 4; transition: transform 0.4s ease; }
.gallery-item.feature img { aspect-ratio: 16 / 7; }
.gallery-item:hover img { transform: scale(1.05); }

/* ---------- Locatie ---------- */
.locatie-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 56px); align-items: center; }
.locatie-text p { margin: 0 0 14px; }
.locatie-addr { font-weight: 800; color: #fff; }
.locatie-map { display: block; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4 / 3; }
.locatie-map iframe { width: 100%; height: 100%; border: 0; display: block; pointer-events: none; }

/* ---------- HYROX Timer ---------- */
#timer-app { background: #0c1310; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(22px, 4vw, 40px); }
#timer-app h1 { text-transform: uppercase; }
.timer-intro { color: var(--muted); max-width: 70ch; margin: 12px 0 26px; }
.timer-controls { display: flex; flex-wrap: wrap; gap: 22px; align-items: flex-end; margin-bottom: 18px; }
.timer-controls .ctrl { display: flex; flex-direction: column; gap: 6px; }
.timer-controls label { font-weight: 700; font-size: 0.8rem; color: var(--muted); }
.ctrl-row { display: flex; gap: 8px; }
#timer-count { width: 90px; background: #fff; color: #0a1410; border: 1px solid #d8e0dc; border-radius: 999px; padding: 10px 14px; font: inherit; }
#zoom-slider { width: 200px; accent-color: var(--green); }
.timer-main-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }
.timer-main-actions .btn, .timer-controls .btn { padding: 11px 20px; }
#timers-container { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 18px; align-items: start; }
.timer-box {
  position: relative; background: #050807; border: 1px solid rgba(0, 233, 151, 0.3);
  border-radius: 16px; padding: 22px 20px 20px; text-align: center;
  transform: scale(var(--scale, 1)); transform-origin: top center;
}
.timer-box.running { border-color: var(--green); box-shadow: 0 0 0 1px var(--green), 0 0 30px rgba(0, 233, 151, 0.2); }
.timer-box-link { display: block; text-decoration: none; color: inherit; transition: transform 0.2s ease; }
.timer-box-link:hover { transform: translateY(-4px); }
.timer-box-link:hover .timer-box { border-color: var(--green); box-shadow: 0 0 0 1px var(--green), 0 0 30px rgba(0, 233, 151, 0.2); }
.timer-zoom { position: absolute; top: 10px; right: 10px; background: none; border: 0; color: #fff; cursor: pointer; font-size: 1.1rem; opacity: 0.7; }
.timer-zoom:hover { opacity: 1; }
.timer-name { font-family: var(--font-display); font-size: 1.3rem; text-transform: uppercase; margin-bottom: 6px; }
.timer-finish-label { font-size: 0.7rem; letter-spacing: 0.18em; color: var(--muted); text-transform: uppercase; }
.timer-active { color: var(--green); margin-left: 6px; }
.timer-display { font-family: "Courier New", monospace; font-weight: 700; font-size: clamp(2.2rem, 6vw, 3rem); color: #fff; margin: 8px 0; letter-spacing: 0.02em; }
.timer-accent { height: 3px; width: 60px; background: #ffd23f; margin: 8px auto 14px; border-radius: 3px; }
.timer-logos { display: flex; align-items: center; justify-content: center; gap: 18px; margin: 2px auto 14px; }
.timer-logos img { height: 36px; width: auto; opacity: 0.92; }
.timer-toggle { width: 100%; }
#names-container { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 14px; margin-top: 24px; }
.name-input { display: flex; flex-direction: column; gap: 6px; }
.name-input label { font-size: 0.8rem; font-weight: 700; color: var(--muted); }
.name-input input { background: #fff; color: #0a1410; border: 1px solid #d8e0dc; border-radius: 999px; padding: 10px 16px; font: inherit; }
.timer-box.photo-mode {
  position: fixed; inset: 0; z-index: 200; transform: none; border-radius: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  padding: 3vh 24px;
}
.timer-box.photo-mode .timer-display { font-size: clamp(3.5rem, 15vw, 9.5rem); }
.timer-box.photo-mode .timer-name { font-size: clamp(2rem, 6vw, 4rem); }
.timer-box.photo-mode .timer-finish-label { font-size: clamp(1rem, 2.4vw, 1.6rem); letter-spacing: 0.28em; margin-bottom: 4px; }
.timer-box.photo-mode .timer-zoom { font-size: 2rem; top: 24px; right: 28px; }
.timer-box.photo-mode .timer-accent { height: 6px; width: clamp(140px, 18vw, 240px); margin: 12px auto 16px; flex-shrink: 0; }
.timer-box.photo-mode .timer-logos { gap: 40px; margin-top: 20px; }
.timer-box.photo-mode .timer-logos img { height: clamp(54px, 8vw, 104px); }
.timer-box.photo-mode .timer-toggle { display: none; }

/* Rooster/Virtuagym-launcher niet tonen op de HYROX-timer pagina */
body.timer-page vg-widget { display: none !important; }
.timer-howto { margin-top: 44px; }
.timer-howto h2 { margin-bottom: 14px; }
.timer-howto ol { color: var(--muted); padding-left: 20px; line-height: 1.9; }

/* Snel voorbereiden — line-up vooraf klaarzetten (namen importeren / exporteren / deel-link) */
.timer-prep { background: rgba(0, 233, 151, 0.05); border: 1px solid rgba(0, 233, 151, 0.22); border-radius: 16px; padding: 20px 22px; margin: 26px 0; }
.timer-prep-head h2 { margin: 0 0 6px; }
.timer-prep-head p { color: var(--muted); font-size: 0.9rem; max-width: 80ch; margin: 0 0 18px; }
.prep-card { display: flex; flex-direction: column; gap: 10px; }
.prep-card label { font-weight: 700; font-size: 0.8rem; color: var(--muted); }
.prep-card textarea { background: #fff; color: #0a1410; border: 1px solid #d8e0dc; border-radius: 14px; padding: 12px 16px; font: inherit; resize: vertical; min-height: 120px; }
.prep-card .btn { padding: 11px 18px; }
.prep-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 2px; }

/* Sync-sessie (remote / multi-scherm) */
.timer-sync { margin: -4px 0 24px; }
.timer-sync .sync-on { background: rgba(0, 233, 151, 0.08); border: 1px solid rgba(0, 233, 151, 0.32); border-radius: 14px; padding: 14px 18px; }
.sync-dot { display: inline-block; width: 9px; height: 9px; border-radius: 50%; background: var(--green); margin-right: 6px; box-shadow: 0 0 8px var(--green); animation: syncpulse 1.6s ease-in-out infinite; }
@keyframes syncpulse { 50% { opacity: 0.4; } }
.sync-status { color: var(--muted); font-size: 0.85rem; }
.sync-share { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; align-items: center; }
.sync-share input { flex: 1; min-width: 200px; background: #fff; color: #0a1410; border: 1px solid #d8e0dc; border-radius: 999px; padding: 10px 16px; font: inherit; font-size: 0.85rem; }
.sync-share .btn { padding: 10px 18px; }
.sync-hint { color: var(--muted); font-size: 0.82rem; margin: 10px 0 0; }

@media (max-width: 760px) {
  .team-row { grid-template-columns: 1fr; }
  .team-row.reverse .team-photo { order: 0; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.feature img { aspect-ratio: 4 / 3; }
  .locatie-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
