/* ==========================================================================
   TvRexo — Premium IPTV Nederland
   Design system + componenten
   ========================================================================== */

/* ---------- 1. Design tokens ---------- */
:root {
  /* Achtergronden */
  --bg:            #f6f7fc;
  --bg-soft:       #edf0f8;
  --bg-elev:       #ffffff;

  /* Kaarten / randen */
  --surface:       #ffffff;
  --surface-hover: #f1f4fb;
  --border:        rgba(16, 20, 38, .10);
  --border-strong: rgba(16, 20, 38, .21);

  /* Tekst */
  --fg:            #0e1222;
  --text:          #1b2035;
  --text-dim:      #4e5670;
  --text-faint:    #737c96;

  /* Merkkleuren */
  --brand:         #5b4bf5;
  --brand-2:       #0b83c9;
  --accent:        #d81b56;
  --success:       #0f9c72;

  --grad:          linear-gradient(115deg, #5b4bf5 0%, #0b83c9 100%);
  --grad-warm:     linear-gradient(115deg, #d81b56 0%, #e8720f 100%);
  --on-accent:     #ffffff;

  /* Vorm & ritme */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 30px;
  --r-pill: 999px;

  --shadow-sm: 0 2px 10px rgba(16, 20, 38, .05);
  --shadow-md: 0 16px 40px rgba(16, 20, 38, .12);
  --shadow-glow: 0 18px 46px -16px rgba(91, 75, 245, .38);

  --container: 1240px;
  --nav-h: 78px;

  --ease: cubic-bezier(.4, 0, .2, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

/* ---------- 2. Reset & basis ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 20px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.nav-open { overflow: hidden; }

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
ul { margin: 0; padding: 0; list-style: none; }
figure, figcaption { margin: 0; }

h1, h2, h3, h4 {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -.02em;
  margin: 0;
  color: var(--fg);
}

h1 { font-size: clamp(2.3rem, 6vw, 4.15rem); font-weight: 800; }
h2 { font-size: clamp(1.85rem, 4vw, 2.9rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.32rem); }
p  { margin: 0; }

::selection { background: var(--brand); color: var(--on-accent); }

/* Scrollbar */
::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb {
  background: #c6ccdd;
  border-radius: var(--r-pill);
  border: 3px solid var(--bg);
}
::-webkit-scrollbar-thumb:hover { background: #aab3c9; }

/* ---------- 3. Layout helpers ---------- */
.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

/* overflow:hidden houdt de decoratieve gloed binnen de sectie — anders
   duwen de negatief gepositioneerde glows de pagina horizontaal open. */
.section { padding: clamp(30px, 3.6vw, 52px) 0; position: relative; overflow: hidden; }
.section--tight { padding: clamp(18px, 2.2vw, 30px) 0; }

.section-head {
  max-width: 720px;
  margin: 0 auto clamp(22px, 2.8vw, 36px);
  text-align: center;
}
.section-head p {
  color: var(--text-dim);
  margin-top: 16px;
  font-size: 1.03rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 16px 7px 12px;
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  background: var(--surface);
  backdrop-filter: blur(12px);
  font-size: .765rem;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 20px;
}
.eyebrow i {
  font-size: .8rem;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Sfeerverlichting op de achtergrond */
.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: .22;
  pointer-events: none;
  z-index: 0;
}
.glow--brand { background: rgba(91, 75, 245, .45); }
.glow--cyan  { background: rgba(11, 131, 201, .32); }
.glow--pink  { background: rgba(216, 27, 86, .26); }

/* ---------- 4. Knoppen ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 27px;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: .945rem;
  letter-spacing: -.01em;
  white-space: nowrap;
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease);
}
.btn i { font-size: .88em; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--grad);
  color: var(--on-accent);
  box-shadow: 0 12px 32px -10px rgba(109, 94, 248, .85);
}
.btn--primary:hover { box-shadow: 0 18px 42px -12px rgba(109, 94, 248, 1); }

.btn--ghost {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  backdrop-filter: blur(12px);
}
.btn--ghost:hover { background: var(--surface-hover); border-color: var(--border-strong); }

.btn--wa { background: #25d366; color: #05240f; font-weight: 700; }
.btn--wa:hover { box-shadow: 0 16px 38px -12px rgba(37, 211, 102, .8); }

.btn--block { width: 100%; }
.btn--lg { padding: 17px 34px; font-size: 1.005rem; }

/* ---------- 5. Navigatie ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  z-index: 100;
  display: flex;
  align-items: center;
  transition: background .35s var(--ease), border-color .35s var(--ease), height .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  height: 66px;
  background: rgba(255, 255, 255, .85);
  backdrop-filter: blur(22px) saturate(160%);
  border-bottom-color: var(--border);
}
.nav__inner {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 26px;
}

.brand { display: flex; align-items: center; gap: 11px; flex-shrink: 0; }
.brand__mark {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--grad);
  display: grid;
  place-items: center;
  color: var(--on-accent);
  font-size: 1.02rem;
  box-shadow: 0 8px 22px -8px rgba(109, 94, 248, .9);
}
.brand__name {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.28rem;
  letter-spacing: -.03em;
  color: var(--fg);
}
.brand__name span { color: var(--brand-2); }

.nav__menu { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav__menu a {
  padding: 9px 15px;
  border-radius: var(--r-pill);
  font-size: .925rem;
  font-weight: 500;
  color: var(--text-dim);
  transition: color .2s var(--ease), background .2s var(--ease);
}
.nav__menu a:hover { color: var(--fg); background: var(--surface); }

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

.nav__burger {
  display: none;
  width: 42px; height: 42px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--fg);
  font-size: 1.05rem;
  place-items: center;
}

/* ---------- 6. Hero ---------- */
.hero {
  position: relative;
  padding: calc(var(--nav-h) + clamp(38px, 5vw, 62px)) 0 clamp(28px, 3.5vw, 46px);
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(16, 20, 38, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 20, 38, .05) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: radial-gradient(ellipse 78% 62% at 50% 32%, #000 20%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 78% 62% at 50% 32%, #000 20%, transparent 78%);
  pointer-events: none;
  z-index: 0;
}
.hero .glow:nth-of-type(1) { width: 620px; height: 620px; top: -230px; left: -120px; }
.hero .glow:nth-of-type(2) { width: 560px; height: 560px; top: -120px; right: -160px; }

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(36px, 5vw, 66px);
  align-items: center;
}

.hero h1 { margin-bottom: 22px; }
.hero__lead {
  color: var(--text-dim);
  font-size: clamp(1rem, 1.5vw, 1.13rem);
  max-width: 46ch;
  margin-bottom: 32px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 13px; margin-bottom: 34px; }

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  color: var(--text-faint);
  font-size: .875rem;
}
.hero__trust li { display: flex; align-items: center; gap: 8px; }
.hero__trust i { color: var(--success); font-size: .85rem; }

/* Hero visual: gestapelde posters */
.hero__visual {
  position: relative;
  aspect-ratio: 1 / .92;
  display: grid;
  place-items: center;
}
.hero__stack { position: relative; width: 100%; height: 100%; }
.hero__card {
  position: absolute;
  width: 41%;
  aspect-ratio: 2 / 3;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-md);
  background: var(--bg-elev);
  transition: transform .55s var(--ease-out);
}
.hero__card img { width: 100%; height: 100%; object-fit: cover; }
.hero__card:nth-child(1) { top: 4%;  left: 6%;  transform: rotate(-8deg);  z-index: 1; }
.hero__card:nth-child(2) { top: 14%; left: 29%; transform: rotate(1.5deg); z-index: 3; width: 44%; }
.hero__card:nth-child(3) { top: 7%;  right: 6%; transform: rotate(9deg);   z-index: 2; }
.hero__stack:hover .hero__card:nth-child(1) { transform: rotate(-13deg) translate(-8px, -6px); }
.hero__stack:hover .hero__card:nth-child(3) { transform: rotate(14deg) translate(8px, -6px); }

.hero__badge {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 18px;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, .92);
  border: 1px solid var(--border);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-md);
  font-size: .82rem;
  animation: float 5.5s ease-in-out infinite;
}
.hero__badge i {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: var(--grad);
  color: var(--on-accent);
  font-size: .82rem;
}
.hero__badge b { display: block; color: var(--fg); font-size: .95rem; line-height: 1.25; }
.hero__badge span { color: var(--text-faint); }
.hero__badge--1 { bottom: 8%; left: 0; }
.hero__badge--2 { top: 3%; right: 0; animation-delay: -2.7s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}

/* ---------- 7. Statistieken ---------- */
.stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.stats__item {
  background: var(--surface);
  padding: 30px 22px;
  text-align: center;
  transition: background .3s var(--ease);
}
.stats__item:hover { background: var(--surface-hover); }
.stats__num {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stats__label {
  margin-top: 9px;
  font-size: .845rem;
  color: var(--text-dim);
  letter-spacing: .02em;
}

/* ---------- 8. Platformlogo's ---------- */
.logo-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.logo-card {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 9;
  padding: 22px;
  border-radius: var(--r-md);
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform .35s var(--ease-out), border-color .3s var(--ease), background .3s var(--ease);
}
.logo-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 120%, var(--c, var(--brand)) 0%, transparent 70%);
  opacity: 0;
  transition: opacity .4s var(--ease);
}
.logo-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-strong);
  background: var(--surface-hover);
}
.logo-card:hover::before { opacity: .16; }
.logo-card img {
  position: relative;
  max-height: 40px;
  max-width: 78%;
  width: auto;
  object-fit: contain;
  opacity: .82;
  transition: opacity .3s var(--ease), transform .35s var(--ease-out);
}
.logo-card:hover img { opacity: 1; transform: scale(1.06); }
.logo-card__name {
  position: absolute;
  bottom: 8px;
  left: 0; right: 0;
  text-align: center;
  font-size: .68rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-faint);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .3s var(--ease), transform .3s var(--ease-out);
}
.logo-card:hover .logo-card__name { opacity: 1; transform: translateY(0); }

/* Competitielogo's zijn vaker staand (wapenschilden), dus meer hoogte. */
.logo-grid--leagues .logo-card { aspect-ratio: 3 / 2; }
.logo-grid--leagues .logo-card img { max-height: 76px; max-width: 74%; }

/* ---------- 9. Poster-spinner (marquee) ---------- */
.spinner { position: relative; }
.spinner__row {
  overflow: hidden;
  padding: 8px 0;
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.spinner__track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marquee 68s linear infinite;
  will-change: transform;
}
.spinner__row--reverse .spinner__track { animation-direction: reverse; animation-duration: 82s; }

@keyframes marquee {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

.poster {
  position: relative;
  flex: 0 0 auto;
  width: clamp(140px, 15vw, 196px);
  aspect-ratio: 2 / 3;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-soft);
  transition: filter .35s var(--ease), border-color .3s var(--ease);
}
.poster img { width: 100%; height: 100%; object-fit: cover; }
.poster::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 7, 12, .95) 0%, rgba(6, 7, 12, .35) 42%, transparent 68%);
  opacity: 0;
  transition: opacity .35s var(--ease);
}
.poster__meta {
  position: absolute;
  left: 14px; right: 14px; bottom: 13px;
  z-index: 2;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .35s var(--ease), transform .4s var(--ease-out);
}
.poster__meta b {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: .92rem;
  font-weight: 700;
  color: var(--on-accent);
  line-height: 1.25;
}
.poster__tag {
  display: inline-block;
  margin-top: 6px;
  padding: 3px 10px;
  border-radius: var(--r-pill);
  background: var(--grad);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--on-accent);
}
.poster:hover { filter: brightness(1.08); border-color: var(--border-strong); z-index: 5; }
.poster:hover::after,
.poster:hover .poster__meta { opacity: 1; }
.poster:hover .poster__meta { transform: translateY(0); }

/* ---------- 10. Kenmerken ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feature {
  position: relative;
  padding: 32px 28px;
  border-radius: var(--r-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform .35s var(--ease-out), border-color .3s var(--ease);
}
.feature::before {
  content: '';
  position: absolute;
  top: 0; left: 22px; right: 22px;
  height: 1px;
  background: var(--grad);
  opacity: 0;
  transition: opacity .35s var(--ease);
}
.feature:hover { transform: translateY(-6px); border-color: var(--border-strong); }
.feature:hover::before { opacity: 1; }
.feature__icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 15px;
  background: rgba(109, 94, 248, .13);
  border: 1px solid rgba(109, 94, 248, .28);
  color: var(--brand-2);
  font-size: 1.22rem;
  margin-bottom: 20px;
}
.feature h3 { margin-bottom: 10px; }
.feature p { color: var(--text-dim); font-size: .945rem; }

/* ---------- 11. Apparaten ---------- */
.device-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.device {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 24px 12px 20px;
  text-align: center;
  border-radius: var(--r-md);
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform .35s var(--ease-out), border-color .3s var(--ease), background .3s var(--ease);
}
.device::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(91, 75, 245, .45) 0%, transparent 68%);
  opacity: 0;
  transition: opacity .4s var(--ease);
}
.device:hover {
  transform: translateY(-6px);
  background: var(--surface-hover);
  border-color: var(--border-strong);
}
.device:hover::before { opacity: .13; }

/* Vaste box met object-fit: de SVG-merklogo's hebben geen eigen afmetingen,
   dus width:auto zou ze tot 0 laten krimpen binnen deze flexkolom. */
.device__logo {
  position: relative;
  display: block;
  width: 100%;
  height: 34px;
}
.device__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: .84;
  transition: opacity .3s var(--ease), transform .35s var(--ease-out);
}
.device:hover .device__logo img { opacity: 1; transform: scale(1.07); }

.device__label {
  position: relative;
  font-size: .78rem;
  color: var(--text-faint);
  line-height: 1.45;
}
.device__label b {
  display: block;
  font-size: .855rem;
  font-weight: 600;
  color: var(--text-dim);
  transition: color .3s var(--ease);
}
.device:hover .device__label b { color: var(--fg); }

/* ---------- 12. Prijzen ---------- */
.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 34px 30px 32px;
  border-radius: var(--r-xl);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease-out), border-color .3s var(--ease);
}
.plan:hover { transform: translateY(-6px); border-color: var(--border-strong); }

.plan--featured {
  border-color: rgba(91, 75, 245, .42);
  background:
    radial-gradient(120% 100% at 50% 0%, rgba(91, 75, 245, .12) 0%, transparent 62%),
    var(--surface);
  box-shadow: var(--shadow-glow);
}
.plan--featured:hover { border-color: rgba(91, 75, 245, .7); }

.plan__flag {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  padding: 6px 18px;
  border-radius: var(--r-pill);
  background: var(--grad);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--on-accent);
  white-space: nowrap;
  box-shadow: 0 8px 20px -8px rgba(109, 94, 248, .95);
}

.plan__name {
  font-family: 'Outfit', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--brand-2);
  margin-bottom: 16px;
}
.plan__price {
  display: flex;
  align-items: baseline;
  gap: 5px;
  font-family: 'Outfit', sans-serif;
  color: var(--fg);
}
.plan__price .amount { font-size: 3.15rem; font-weight: 800; letter-spacing: -.045em; line-height: 1; }
.plan__price .cur { font-size: 1.5rem; font-weight: 700; }
.plan__period {
  margin-top: 8px;
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.plan__note {
  margin-top: 14px;
  padding-top: 16px;
  border-top: 1px dashed var(--border);
  font-size: .845rem;
  color: var(--text-faint);
}

.plan__screens {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 7px 15px;
  border-radius: var(--r-pill);
  background: rgba(255, 61, 113, .12);
  border: 1px solid rgba(255, 61, 113, .32);
  color: var(--accent);
  font-size: .775rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.plan__list { margin: 24px 0 28px; display: grid; gap: 12px; }
.plan__list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: .9rem;
  color: var(--text-dim);
}
.plan__list i {
  flex-shrink: 0;
  margin-top: 4px;
  width: 17px; height: 17px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(46, 230, 168, .14);
  color: var(--success);
  font-size: .55rem;
}
.plan .btn { margin-top: auto; }

.plans__footnote {
  margin-top: 26px;
  text-align: center;
  font-size: .875rem;
  color: var(--text-faint);
}
.plans__footnote i { color: var(--success); margin-right: 7px; }

/* ---------- 13. Stappen ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
}
.step {
  position: relative;
  padding: 34px 28px;
  border-radius: var(--r-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: transform .35s var(--ease-out), border-color .3s var(--ease);
}
.step:hover { transform: translateY(-6px); border-color: var(--border-strong); }
.step__num {
  font-family: 'Outfit', sans-serif;
  font-size: 3.1rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.05em;
  background: linear-gradient(180deg, rgba(16, 20, 38, .26), rgba(16, 20, 38, .07));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 14px;
}
.step h3 { margin-bottom: 10px; }
.step p { color: var(--text-dim); font-size: .945rem; }
.step__icon {
  position: absolute;
  top: 30px; right: 28px;
  font-size: 1.28rem;
  color: var(--brand);
  opacity: .6;
}

/* ---------- 14. Reviews (bewegende carrousel) ---------- */
.rev-marquee { position: relative; }
.rev-marquee__row {
  overflow: hidden;
  padding: 8px 0;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.rev-marquee__track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marquee 72s linear infinite;
  will-change: transform;
}
.rev-marquee__row--reverse .rev-marquee__track {
  animation-direction: reverse;
  animation-duration: 88s;
}
.rev-marquee:hover .rev-marquee__track { animation-play-state: paused; }

.review {
  flex: 0 0 auto;
  width: clamp(290px, 27vw, 372px);
  display: flex;
  flex-direction: column;
  padding: 26px 26px 22px;
  border-radius: var(--r-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.review:hover { border-color: var(--border-strong); background: var(--surface-hover); }
.review__stars { display: flex; gap: 3px; color: #ffb020; font-size: .8rem; margin-bottom: 14px; }
.review p { color: var(--text-dim); font-size: .93rem; flex: 1; }
.review__by {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.review__photo {
  width: 44px; height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(16, 20, 38, .12);
}
.review__by b { display: block; font-size: .9rem; color: var(--fg); font-weight: 600; }
.review__by span { font-size: .775rem; color: var(--text-faint); }
.review__source {
  margin-left: auto;
  flex-shrink: 0;
  color: var(--text-faint);
  font-size: 1rem;
}

/* ---------- 15. FAQ ---------- */
.faq { max-width: 860px; margin-inline: auto; display: grid; gap: 12px; }
.faq__item {
  border-radius: var(--r-md);
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.faq__item.is-open { border-color: rgba(109, 94, 248, .45); background: var(--surface-hover); }
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 21px 24px;
  text-align: left;
  font-family: 'Outfit', sans-serif;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--fg);
  line-height: 1.4;
}
.faq__q .idx {
  flex-shrink: 0;
  font-size: .82rem;
  font-weight: 700;
  color: var(--brand-2);
  font-variant-numeric: tabular-nums;
}
.faq__q .chev {
  margin-left: auto;
  flex-shrink: 0;
  width: 30px; height: 30px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--surface-hover);
  border: 1px solid var(--border);
  color: var(--text-dim);
  font-size: .72rem;
  transition: transform .35s var(--ease-out), background .3s var(--ease), color .3s var(--ease);
}
.faq__item.is-open .chev {
  transform: rotate(180deg);
  background: var(--grad);
  color: var(--on-accent);
  border-color: transparent;
}
.faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .38s var(--ease-out);
}
.faq__item.is-open .faq__a { grid-template-rows: 1fr; }
.faq__a > div { overflow: hidden; }
.faq__a p {
  padding: 0 24px 23px 62px;
  color: var(--text-dim);
  font-size: .94rem;
}

/* ---------- 16. CTA-blok ---------- */
.cta {
  position: relative;
  overflow: hidden;
  padding: clamp(48px, 6vw, 76px) clamp(28px, 5vw, 68px);
  border-radius: var(--r-xl);
  border: 1px solid var(--border-strong);
  background:
    radial-gradient(90% 130% at 12% 0%, rgba(91, 75, 245, .16) 0%, transparent 58%),
    radial-gradient(80% 120% at 92% 100%, rgba(11, 131, 201, .13) 0%, transparent 60%),
    var(--surface);
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.cta h2 { margin-bottom: 16px; }
.cta p {
  color: var(--text-dim);
  max-width: 56ch;
  margin: 0 auto 30px;
}
.cta__actions { display: flex; flex-wrap: wrap; gap: 13px; justify-content: center; }

/* ---------- 17. Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.contact-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 30px 28px;
  border-radius: var(--r-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: transform .35s var(--ease-out), border-color .3s var(--ease);
}
.contact-card:hover { transform: translateY(-6px); border-color: var(--border-strong); }
.contact-card i {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: rgba(109, 94, 248, .13);
  border: 1px solid rgba(109, 94, 248, .28);
  color: var(--brand-2);
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.contact-card b { font-family: 'Outfit', sans-serif; font-size: 1.06rem; color: var(--fg); }
.contact-card span { color: var(--text-dim); font-size: .92rem; }
.contact-card a { color: var(--brand-2); font-size: .95rem; font-weight: 600; margin-top: 6px; }
.contact-card a:hover { text-decoration: underline; }

/* ---------- 18. Footer ---------- */
.footer {
  border-top: 1px solid var(--border);
  background: var(--bg-soft);
  padding: clamp(50px, 6vw, 74px) 0 0;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 46px;
}
.footer__about p {
  color: var(--text-dim);
  font-size: .92rem;
  margin: 18px 0 20px;
  max-width: 40ch;
}
.footer__social { display: flex; gap: 10px; }
.footer__social a {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 11px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-dim);
  transition: all .25s var(--ease);
}
.footer__social a:hover {
  background: var(--grad);
  color: var(--on-accent);
  border-color: transparent;
  transform: translateY(-3px);
}
.footer h4 {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--fg);
  margin-bottom: 18px;
}
.footer__links { display: grid; gap: 11px; }
.footer__links a {
  color: var(--text-dim);
  font-size: .915rem;
  transition: color .2s var(--ease), padding-left .25s var(--ease-out);
}
.footer__links a:hover { color: var(--fg); padding-left: 5px; }

.footer__pay { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 6px; }
.footer__pay span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 13px;
  border-radius: var(--r-sm);
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: .8rem;
  color: var(--text-dim);
}
.footer__pay i { font-size: 1rem; color: var(--text); }

.footer__bottom {
  border-top: 1px solid var(--border);
  padding: 22px 0 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  align-items: center;
  justify-content: space-between;
  font-size: .855rem;
  color: var(--text-faint);
}
.footer__bottom nav { display: flex; flex-wrap: wrap; gap: 20px; }
.footer__bottom nav a:hover { color: var(--fg); }

/* ---------- 19. Zwevende knoppen ---------- */
.fab-wa {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 90;
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: #05240f;
  font-size: 1.5rem;
  box-shadow: 0 14px 34px -10px rgba(37, 211, 102, .85);
  transition: transform .3s var(--ease-out);
}
.fab-wa:hover { transform: scale(1.09); }
.fab-wa::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #25d366;
  animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse {
  0%   { transform: scale(1); opacity: .8; }
  100% { transform: scale(1.75); opacity: 0; }
}

.to-top {
  position: fixed;
  right: 22px; bottom: 90px;
  z-index: 90;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  border: 1px solid var(--border);
  backdrop-filter: blur(14px);
  color: var(--text);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all .3s var(--ease);
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--grad); border-color: transparent; color: var(--on-accent); }

/* ---------- 20. Scroll-onthulling ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- 23. Hero-beoordeling & kenmerkchips ---------- */
.hero__rating {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 18px;
  margin-bottom: 26px;
  border-radius: var(--r-pill);
  background: var(--surface);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  font-size: .875rem;
  color: var(--text-faint);
}
.hero__rating .stars { display: flex; gap: 2px; color: #ffb020; font-size: .78rem; }
.hero__rating b { color: var(--fg); font-family: 'Outfit', sans-serif; font-size: .95rem; }

.chips {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 520px;
}
.chips li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: var(--r-md);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.chips li:hover { border-color: var(--border-strong); background: var(--surface-hover); }
.chips i {
  flex-shrink: 0;
  width: 32px; height: 32px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: rgba(109, 94, 248, .14);
  border: 1px solid rgba(109, 94, 248, .28);
  color: var(--brand-2);
  font-size: .82rem;
}
.chips span { font-size: .76rem; color: var(--text-faint); line-height: 1.35; }
.chips b { display: block; font-size: .855rem; color: var(--fg); font-weight: 600; }

/* ---------- 24. Logobalk ---------- */
.band__title {
  text-align: center;
  font-size: .775rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 26px;
}
.band__row {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.band__track {
  display: flex;
  align-items: center;
  gap: 54px;
  width: max-content;
  animation: marquee 58s linear infinite;
  will-change: transform;
}
.band__item {
  flex: 0 0 auto;
  height: 34px;
  display: grid;
  place-items: center;
}
.band__item img {
  max-height: 34px;
  max-width: 140px;
  width: auto;
  object-fit: contain;
  opacity: .58;
  transition: opacity .3s var(--ease);
}
.band__item:hover img { opacity: 1; }

/* ---------- 25. Vertrouwensbalk onder de prijzen ---------- */
.trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 26px;
}
.trust__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 18px 22px;
  border-radius: var(--r-md);
  background: var(--surface);
  border: 1px solid var(--border);
}
.trust__item i {
  flex-shrink: 0;
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: rgba(46, 230, 168, .12);
  border: 1px solid rgba(46, 230, 168, .28);
  color: var(--success);
  font-size: .95rem;
}
.trust__item span { font-size: .8rem; color: var(--text-faint); line-height: 1.4; }
.trust__item b { display: block; font-size: .9rem; color: var(--fg); font-weight: 600; }

/* ---------- 26. Het verschil ---------- */
.compare {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(32px, 5vw, 60px);
  align-items: center;
  padding: clamp(34px, 5vw, 54px);
  border-radius: var(--r-xl);
  border: 1px solid var(--border);
  background:
    radial-gradient(80% 120% at 8% 0%, rgba(91, 75, 245, .13) 0%, transparent 58%),
    var(--surface);
  box-shadow: var(--shadow-sm);
}
.compare__text h2 { margin-bottom: 16px; }
.compare__text p { color: var(--text-dim); margin-bottom: 28px; }

.compare__list { display: grid; gap: 14px; }
.compare__list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 22px;
  border-radius: var(--r-md);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: transform .35s var(--ease-out), border-color .3s var(--ease);
}
.compare__list li:hover { transform: translateX(5px); border-color: var(--border-strong); }
.compare__list i {
  flex-shrink: 0;
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--grad);
  color: var(--on-accent);
  font-size: .95rem;
}
.compare__list span { font-size: .885rem; color: var(--text-dim); line-height: 1.6; }
.compare__list b {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 3px;
  line-height: 1.3;
}

/* ---------- 27. Over ons (tekstblok) ---------- */
.about {
  max-width: 860px;
  margin-inline: auto;
  padding: clamp(30px, 4vw, 46px);
  border-radius: var(--r-xl);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.about h2 { margin-bottom: 22px; }
.about h3 {
  margin: 30px 0 12px;
  font-size: 1.16rem;
  color: var(--fg);
}
.about p { color: var(--text-dim); font-size: .95rem; }
.about p + p { margin-top: 14px; }
.about b { color: var(--text); font-weight: 600; }
.about a { color: var(--brand-2); font-weight: 500; }
.about a:hover { text-decoration: underline; }

.tags { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 30px; }
.tags li {
  padding: 7px 15px;
  border-radius: var(--r-pill);
  background: rgba(109, 94, 248, .1);
  border: 1px solid rgba(109, 94, 248, .24);
  font-size: .78rem;
  font-weight: 500;
  color: var(--text-dim);
}

/* ---------- 28. Footer-disclaimer ---------- */
.footer__disclaimer {
  padding: 22px 0 20px;
  border-top: 1px solid var(--border);
  font-size: .8rem;
  line-height: 1.65;
  color: var(--text-faint);
  max-width: 92ch;
}

/* ---------- 29. Beleidspagina's ---------- */
.legal {
  position: relative;
  padding: calc(var(--nav-h) + clamp(34px, 4.5vw, 56px)) 0 clamp(36px, 4.5vw, 64px);
}
.legal__head {
  max-width: 820px;
  margin: 0 auto clamp(26px, 3vw, 40px);
  text-align: center;
}
.legal__head h1 { font-size: clamp(1.9rem, 4.4vw, 3rem); margin-bottom: 14px; }
.legal__updated {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 16px;
  border-radius: var(--r-pill);
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: .8rem;
  color: var(--text-faint);
}
.legal__updated i { color: var(--brand-2); font-size: .78rem; }

.legal__body {
  max-width: 820px;
  margin-inline: auto;
  padding: clamp(26px, 3.5vw, 46px);
  border-radius: var(--r-xl);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.legal__body > *:first-child { margin-top: 0; }
.legal__body h2 {
  font-size: clamp(1.12rem, 2vw, 1.34rem);
  margin: 34px 0 12px;
  scroll-margin-top: calc(var(--nav-h) + 20px);
}
.legal__body h2:first-of-type { margin-top: 6px; }
.legal__body h3 { font-size: 1.02rem; margin: 22px 0 8px; }
.legal__body p { color: var(--text-dim); font-size: .95rem; }
.legal__body p + p { margin-top: 12px; }
.legal__body b, .legal__body strong { color: var(--text); font-weight: 600; }
.legal__body a { color: var(--brand-2); font-weight: 500; }
.legal__body a:hover { text-decoration: underline; }

.legal__body ul { margin: 12px 0 0; display: grid; gap: 9px; }
.legal__body ul li {
  position: relative;
  padding-left: 26px;
  color: var(--text-dim);
  font-size: .95rem;
}
.legal__body ul li::before {
  content: '';
  position: absolute;
  left: 6px; top: .62em;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--grad);
}

/* Inhoudsopgave bovenaan de pagina */
.legal__toc {
  margin: 0 0 30px;
  padding: 20px 22px;
  border-radius: var(--r-md);
  background: var(--bg-soft);
  border: 1px solid var(--border);
}
.legal__toc h2 {
  margin: 0 0 12px !important;
  font-size: .78rem !important;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.legal__toc ol {
  margin: 0; padding: 0;
  list-style: none;
  counter-reset: toc;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px 24px;
}
.legal__toc li { counter-increment: toc; }
.legal__toc a { font-size: .885rem; color: var(--text-dim); font-weight: 400; }
.legal__toc a::before {
  content: counter(toc) '.';
  margin-right: 8px;
  color: var(--brand-2);
  font-variant-numeric: tabular-nums;
}
.legal__toc a:hover { color: var(--fg); }

/* Waarschuwing dat de tekst nog juridisch nagekeken moet worden */
.legal__notice {
  display: flex;
  gap: 14px;
  margin-top: 34px;
  padding: 18px 20px;
  border-radius: var(--r-md);
  background: rgba(216, 27, 86, .06);
  border: 1px solid rgba(216, 27, 86, .24);
}
.legal__notice i { flex-shrink: 0; color: var(--accent); margin-top: 3px; }
.legal__notice p { font-size: .875rem; color: var(--text-dim); }

.legal__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 820px;
  margin: 26px auto 0;
}
.legal__nav a {
  padding: 10px 18px;
  border-radius: var(--r-pill);
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: .875rem;
  color: var(--text-dim);
  transition: all .25s var(--ease);
}
.legal__nav a:hover { border-color: var(--border-strong); color: var(--fg); transform: translateY(-2px); }
.legal__nav a.is-current { background: var(--grad); border-color: transparent; color: var(--on-accent); }

@media (max-width: 620px) {
  .legal__toc ol { grid-template-columns: 1fr; }
}

/* ---------- 21. Responsief ---------- */
@media (max-width: 1080px) {
  .logo-grid   { grid-template-columns: repeat(4, 1fr); }
  .device-grid { grid-template-columns: repeat(4, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 34px; }
  .compare     { grid-template-columns: 1fr; }
  .trust       { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .nav__menu {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    margin: 0;
    padding: 30px;
    background: rgba(246, 247, 252, .98);
    backdrop-filter: blur(24px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s var(--ease);
  }
  .nav__menu.is-open { opacity: 1; visibility: visible; }
  /* Logo blijft zichtbaar boven de open menu-overlay. */
  .nav .brand { position: relative; z-index: 101; }
  .nav__menu a { font-size: 1.28rem; font-family: 'Outfit', sans-serif; font-weight: 600; padding: 13px 26px; }
  .nav__cta { margin-left: auto; }
  .nav__cta .btn--ghost { display: none; }
  .nav__burger { display: grid; z-index: 101; }

  .hero__inner { grid-template-columns: 1fr; }
  /* width:100% is nodig — een auto-marge zou het grid-item anders
     laten krimpen tot 0 (alle kaarten zijn absoluut gepositioneerd). */
  .hero__visual { width: 100%; max-width: 460px; margin-inline: auto; order: -1; }
  .hero__badge--1 { left: 0; }
  .hero__badge--2 { right: 0; }

  .stats        { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: 1fr; }
  .steps        { grid-template-columns: 1fr; }
  .plans        { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .plan--featured { order: -1; }
  .contact-grid { grid-template-columns: 1fr; }
  .chips        { max-width: none; }
  .band__track  { gap: 40px; }
}

@media (max-width: 620px) {
  :root { --nav-h: 68px; }
  .container, .nav__inner { width: min(100% - 2rem, var(--container)); }
  .nav__inner { gap: 12px; }
  .brand__mark { width: 36px; height: 36px; border-radius: 11px; font-size: .95rem; }
  .brand__name { font-size: 1.12rem; }
  .nav__cta { gap: 8px; }
  .nav__cta .btn--primary { padding: 11px 18px; font-size: .875rem; }
  .logo-grid   { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .logo-card   { padding: 16px; }
  .logo-card img { max-height: 30px; }
  /* Wapenschilden hebben op smalle schermen een vierkante kaart nodig,
     anders lopen ze buiten de padding. */
  .logo-grid--leagues .logo-card { aspect-ratio: 1 / 1; }
  .logo-grid--leagues .logo-card img { max-height: 56px; max-width: 78%; }
  .device-grid { grid-template-columns: repeat(2, 1fr); }
  .chips       { grid-template-columns: 1fr; }
  .band__track { gap: 32px; }
  .band__item, .band__item img { max-height: 26px; height: 26px; }
  .footer__top { grid-template-columns: 1fr; }
  .stats__item { padding: 22px 14px; }
  .faq__q      { padding: 17px 18px; gap: 12px; font-size: .96rem; }
  .faq__a p    { padding: 0 18px 20px 18px; }
  .hero__badge { display: none; }
  .footer__bottom { justify-content: center; text-align: center; }
}

/* ---------- 22. Toegankelijkheid ---------- */
:where(a, button, .faq__q):focus-visible {
  outline: 2px solid var(--brand-2);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
