/* =============================================================================
   ORANJESTER — Design System
   Donker, warm en premium. Oranje accenten (NL), goud-highlights.
   WCAG 2.1 AA: contrast, focus-states, reduced motion, leesbare typografie.
   ========================================================================== */

/* ---- Design tokens ------------------------------------------------------- */
:root {
  /* Achtergronden & oppervlakken */
  --bg-0: #0c0f1a;
  --bg-1: #121829;
  --surface-1: #171d31;
  --surface-2: #1f2740;
  --surface-3: #28324f;
  --elevated: #202842;

  /* Merk: oranje + goud */
  --brand: #ff7a18;
  --brand-600: #ff8c34;
  --brand-700: #e85f00;
  --brand-soft: rgba(255, 122, 24, 0.14);
  --gold: #ffc24b;
  --gold-soft: rgba(255, 194, 75, 0.14);

  /* Functioneel */
  --safe: #36d399;
  --safe-soft: rgba(54, 211, 153, 0.14);
  --danger: #ff6b6b;
  --danger-soft: rgba(255, 107, 107, 0.12);
  --info: #5fa8ff;

  /* Tekst */
  --text: #f3f6fc;
  --text-muted: #aeb8cf;
  --text-dim: #7d88a3;
  --on-brand: #2a1300;

  /* Lijnen & schaduw */
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.16);
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.5);
  --ring: 0 0 0 3px rgba(95, 168, 255, 0.6);

  /* Maatvoering */
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-pill: 999px;
  --container: 1200px;
  --header-h: 70px;

  --font: "Inter", "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---- Reset --------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background:
    radial-gradient(1200px 600px at 85% -10%, rgba(255, 122, 24, 0.10), transparent 60%),
    radial-gradient(900px 500px at -10% 5%, rgba(95, 168, 255, 0.06), transparent 55%),
    var(--bg-0);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; }
button, input, select, textarea { font: inherit; color: inherit; }
ul, ol { padding-left: 1.25rem; }
h1, h2, h3, h4 { line-height: 1.2; font-weight: 800; letter-spacing: -0.015em; }
h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.45rem); }
p { color: var(--text-muted); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* ---- Toegankelijkheid ---------------------------------------------------- */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; top: -60px; left: 12px; z-index: 200;
  background: var(--brand); color: var(--on-brand); padding: 10px 16px;
  border-radius: var(--radius-sm); font-weight: 700; transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 12px; text-decoration: none; }

:focus-visible { outline: none; box-shadow: var(--ring); border-radius: var(--radius-sm); }

/* ---- Layout -------------------------------------------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 20px; }
main { flex: 1 0 auto; }
.section { padding-block: clamp(2.5rem, 6vw, 4.5rem); }
.section--tight { padding-block: clamp(1.75rem, 4vw, 2.75rem); }
.section-head { max-width: 720px; margin-bottom: 1.75rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .eyebrow {
  color: var(--brand-600); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.12em; font-size: 0.8rem;
}
.section-head p { margin-top: 0.6rem; font-size: 1.05rem; }
.lead { font-size: 1.15rem; color: var(--text-muted); }
.grid { display: grid; gap: 1.25rem; }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .cols-3, .cols-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr; } }

/* ---- Knoppen ------------------------------------------------------------- */
.btn {
  --btn-bg: var(--surface-2); --btn-fg: var(--text);
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.8rem 1.4rem; border-radius: var(--radius-pill);
  background: var(--btn-bg); color: var(--btn-fg);
  font-weight: 700; border: 1px solid var(--border-strong); cursor: pointer;
  transition: transform 0.15s var(--ease), background 0.2s var(--ease), box-shadow 0.2s var(--ease);
  text-decoration: none; white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary {
  --btn-fg: var(--on-brand);
  background: linear-gradient(135deg, var(--gold), var(--brand));
  border-color: transparent; box-shadow: 0 8px 22px rgba(255, 122, 24, 0.32);
}
.btn--primary:hover { box-shadow: 0 12px 30px rgba(255, 122, 24, 0.45); }
.btn--ghost { background: transparent; border-color: var(--border-strong); }
.btn--ghost:hover { background: rgba(255, 255, 255, 0.05); }
.btn--soft { background: var(--brand-soft); border-color: transparent; color: var(--gold); }
.btn--block { display: flex; width: 100%; }
.btn--lg { padding: 1rem 1.8rem; font-size: 1.05rem; }
.btn--sm { padding: 0.5rem 0.9rem; font-size: 0.9rem; }

/* ---- Badges & chips ------------------------------------------------------ */
.badge {
  display: inline-flex; align-items: center; gap: 0.35rem;
  padding: 0.25rem 0.6rem; border-radius: var(--radius-pill);
  font-size: 0.78rem; font-weight: 700; border: 1px solid var(--border);
}
.badge--18 { background: var(--danger-soft); color: #ffb4b4; border-color: rgba(255, 107, 107, 0.4); }
.badge--live { background: var(--danger-soft); color: #ff9a9a; }
.badge--safe { background: var(--safe-soft); color: var(--safe); border-color: rgba(54, 211, 153, 0.35); }
.badge--gold { background: var(--gold-soft); color: var(--gold); }
.badge--rtp { background: rgba(255, 255, 255, 0.06); color: var(--text-muted); font-weight: 600; }

.chip {
  appearance: none; cursor: pointer;
  padding: 0.5rem 1rem; border-radius: var(--radius-pill);
  background: var(--surface-1); border: 1px solid var(--border); color: var(--text-muted);
  font-weight: 600; font-size: 0.92rem; transition: all 0.18s var(--ease);
}
.chip:hover { color: var(--text); border-color: var(--border-strong); }
.chip[aria-pressed="true"], .chip.is-active {
  background: var(--brand-soft); color: var(--gold); border-color: rgba(255, 122, 24, 0.45);
}

/* ---- Cards --------------------------------------------------------------- */
.card {
  background: linear-gradient(180deg, var(--surface-1), var(--bg-1));
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.5rem; box-shadow: var(--shadow-sm);
}
.card--pad-lg { padding: 2rem; }
.feature { display: flex; flex-direction: column; gap: 0.75rem; }
.feature .ico {
  width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center;
  background: var(--brand-soft); color: var(--gold); flex: none;
}
.feature h3 { margin-bottom: 0.1rem; }

/* ---- Hero ---------------------------------------------------------------- */
.hero { position: relative; padding-block: clamp(2.5rem, 6vw, 5rem); overflow: hidden; }
.hero__grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 2.5rem; align-items: center; }
.hero h1 { margin-bottom: 1rem; }
.hero h1 .accent { color: var(--gold); }
.hero p.lead { margin-bottom: 1.5rem; max-width: 38ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-bottom: 1.5rem; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 0.6rem 1.25rem; color: var(--text-dim); font-size: 0.9rem; }
.hero__trust span { display: inline-flex; align-items: center; gap: 0.4rem; }
.hero__art {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow-lg);
  background: var(--surface-1); aspect-ratio: 4 / 3;
}
.hero__art .stack { position: absolute; inset: 0; padding: 1.25rem;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
.hero__art .stack img { border-radius: 10px; width: 100%; height: 100%; object-fit: cover; box-shadow: var(--shadow-md); }
.hero__art .stack img:nth-child(2) { transform: translateY(-14px); }
.hero__art .stack img:nth-child(4) { transform: translateY(14px); }
.hero__art .stack img:nth-child(6) { transform: translateY(-10px); }
@media (max-width: 880px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__art { order: -1; aspect-ratio: 16 / 10; }
}

/* ---- Strip met logo's ---------------------------------------------------- */
.logo-strip { display: flex; flex-wrap: wrap; align-items: center; gap: 1.5rem 2.25rem; }
.logo-strip img { height: 30px; width: auto; opacity: 0.75; filter: grayscale(0.2); transition: opacity 0.2s; }
.logo-strip img:hover { opacity: 1; }
.logo-strip--sm img { height: 24px; }

/* ---- Spelraster (game grid) --------------------------------------------- */
.game-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 1rem; }
@media (max-width: 520px) { .game-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; } }
.game {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background: var(--surface-1); border: 1px solid var(--border);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s;
}
.game:hover, .game:focus-within { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--border-strong); }
.game__thumb { position: relative; aspect-ratio: 1 / 1; background: var(--bg-1); }
.game__thumb img { width: 100%; height: 100%; object-fit: cover; }
.game__tags { position: absolute; top: 8px; left: 8px; display: flex; gap: 4px; flex-wrap: wrap; }
.game__body { padding: 0.7rem 0.8rem 0.85rem; }
.game__title { font-weight: 700; font-size: 0.95rem; line-height: 1.25; }
.game__meta { display: flex; justify-content: space-between; align-items: center;
  margin-top: 0.35rem; color: var(--text-dim); font-size: 0.8rem; }
.game__play {
  position: absolute; inset: 0; display: grid; place-items: center;
  background: linear-gradient(180deg, rgba(12, 15, 26, 0.1), rgba(12, 15, 26, 0.75));
  opacity: 0; transition: opacity 0.2s var(--ease);
}
.game:hover .game__play, .game:focus-within .game__play { opacity: 1; }
.game__play .btn { pointer-events: auto; }
.empty-state { text-align: center; padding: 3rem 1rem; color: var(--text-dim); }

/* ---- Filterbalk ---------------------------------------------------------- */
.toolbar { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; }
.filters { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.search {
  display: flex; align-items: center; gap: 0.5rem;
  background: var(--surface-1); border: 1px solid var(--border); border-radius: var(--radius-pill);
  padding: 0.55rem 1rem; min-width: 240px;
}
.search input { background: none; border: none; outline: none; width: 100%; }
.search svg { color: var(--text-dim); flex: none; }

/* ---- Header & navigatie -------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(12, 15, 26, 0.82); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.site-header__inner { display: flex; align-items: center; gap: 1.25rem; height: var(--header-h); }
.brand { display: inline-flex; align-items: center; gap: 0.6rem; font-weight: 900; font-size: 1.3rem; color: var(--text); letter-spacing: -0.02em; }
.brand:hover { text-decoration: none; }
.brand__mark {
  width: 34px; height: 34px; border-radius: 10px; flex: none;
  background: linear-gradient(135deg, var(--gold), var(--brand)); color: var(--on-brand);
  display: grid; place-items: center; font-weight: 900; box-shadow: 0 6px 16px rgba(255, 122, 24, 0.4);
}
.brand b { color: var(--gold); }
.main-nav { display: flex; align-items: center; gap: 0.25rem; margin-left: auto; }
.main-nav a { color: var(--text-muted); font-weight: 600; padding: 0.5rem 0.8rem; border-radius: var(--radius-sm); }
.main-nav a:hover { color: var(--text); background: rgba(255, 255, 255, 0.05); text-decoration: none; }
.main-nav a[aria-current="page"] { color: var(--gold); }
.has-sub { position: relative; }
.has-sub > .submenu {
  position: absolute; top: calc(100% + 6px); left: 0; min-width: 200px;
  background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 0.4rem; box-shadow: var(--shadow-md); display: none; flex-direction: column;
}
.has-sub:hover > .submenu, .has-sub:focus-within > .submenu { display: flex; }
.submenu a { padding: 0.6rem 0.8rem; }
.header-actions { display: flex; align-items: center; gap: 0.6rem; }
.header-18 {
  display: inline-grid; place-items: center; width: 38px; height: 38px; border-radius: 50%;
  background: var(--danger-soft); color: #ffb4b4; border: 1.5px solid rgba(255, 107, 107, 0.5);
  font-weight: 800; font-size: 0.8rem; flex: none;
}
.nav-toggle { display: none; background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius-sm); width: 44px; height: 44px; cursor: pointer; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  display: block; width: 20px; height: 2px; background: var(--text); position: relative; margin: 0 auto; transition: 0.2s var(--ease); content: "";
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }

@media (max-width: 1000px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed; inset: var(--header-h) 0 auto 0; flex-direction: column; align-items: stretch;
    background: var(--bg-1); border-bottom: 1px solid var(--border); padding: 1rem;
    gap: 0.25rem; margin-left: 0; max-height: calc(100vh - var(--header-h)); overflow-y: auto;
    transform: translateY(-110%); transition: transform 0.25s var(--ease); box-shadow: var(--shadow-lg);
  }
  .main-nav.open { transform: translateY(0); }
  .has-sub > .submenu { position: static; display: flex; box-shadow: none; background: var(--surface-1); margin: 0.25rem 0 0.5rem; }
  .header-actions .btn { display: none; }
}

/* ---- Verantwoord-spelen balk -------------------------------------------- */
.rg-bar {
  background: linear-gradient(90deg, var(--brand-700), var(--brand));
  color: #fff; font-weight: 600; font-size: 0.92rem;
}
.rg-bar__inner { display: flex; align-items: center; justify-content: center; gap: 0.75rem; padding: 0.5rem 20px; text-align: center; flex-wrap: wrap; }
.rg-bar a { color: #fff; text-decoration: underline; font-weight: 700; }
.rg-bar .age { background: rgba(0, 0, 0, 0.25); padding: 0.05rem 0.5rem; border-radius: var(--radius-pill); }

/* ---- Footer -------------------------------------------------------------- */
.site-footer { background: var(--bg-1); border-top: 1px solid var(--border); margin-top: 2rem; }
.footer-rg { padding: 1.5rem 0; border-bottom: 1px solid var(--border); }
.footer-rg__inner { display: flex; flex-wrap: wrap; gap: 1.25rem; align-items: center; justify-content: space-between; }
.footer-rg .slogan { font-weight: 800; font-size: 1.05rem; color: var(--text); }
.footer-rg .badges { display: flex; flex-wrap: wrap; align-items: center; gap: 1.25rem; }
.footer-rg .badges img { height: 38px; width: auto; opacity: 0.9; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 2rem; padding: 2.5rem 0; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-col h4 { font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text); margin-bottom: 0.9rem; }
.footer-col ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col a { color: var(--text-muted); font-weight: 500; }
.footer-col a:hover { color: var(--gold); }
.footer-about p { font-size: 0.92rem; }
.footer-payments { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1rem; }
.footer-payments img { height: 26px; background: #fff; border-radius: 6px; padding: 3px 6px; }
.footer-legal {
  border-top: 1px solid var(--border); padding: 1.5rem 0;
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between;
  font-size: 0.85rem; color: var(--text-dim);
}
.footer-legal .lic { display: flex; flex-wrap: wrap; gap: 0.5rem 1rem; align-items: center; }
.footer-legal .lic img { height: 30px; }
.license-box {
  background: var(--surface-1); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1rem 1.25rem; font-size: 0.85rem; color: var(--text-muted); line-height: 1.6;
}
.license-box strong { color: var(--text); }

/* ---- Breadcrumbs --------------------------------------------------------- */
.breadcrumbs { font-size: 0.88rem; color: var(--text-dim); padding-top: 1.25rem; }
.breadcrumbs ol { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 0.4rem; }
.breadcrumbs li::after { content: "›"; margin-left: 0.4rem; color: var(--text-dim); }
.breadcrumbs li:last-child::after { content: ""; }
.breadcrumbs a { color: var(--text-muted); }
.breadcrumbs [aria-current="page"] { color: var(--text); }

/* ---- Pagina-koppen (legal / content) ------------------------------------ */
.page-hero { padding: 2.5rem 0 1.5rem; }
.page-hero h1 { margin-bottom: 0.5rem; }
.page-hero .meta { color: var(--text-dim); font-size: 0.9rem; }

/* ---- Inhoud / proza (juridische pagina's) ------------------------------- */
.prose { max-width: 820px; }
.prose h2 { margin: 2.25rem 0 0.75rem; padding-top: 0.5rem; }
.prose h3 { margin: 1.5rem 0 0.5rem; color: var(--text); }
.prose h4 { margin: 1.1rem 0 0.4rem; color: var(--text); font-size: 1.02rem; }
.prose p, .prose li { color: var(--text-muted); }
.prose p { margin-bottom: 0.9rem; }
.prose ul, .prose ol { margin-bottom: 1rem; display: flex; flex-direction: column; gap: 0.4rem; }
.prose a { color: var(--gold); }
.prose strong { color: var(--text); }
.prose hr { border: none; border-top: 1px solid var(--border); margin: 2rem 0; }
.prose table { width: 100%; border-collapse: collapse; margin: 1rem 0 1.5rem; font-size: 0.9rem; }
.prose th, .prose td { text-align: left; padding: 0.7rem 0.85rem; border: 1px solid var(--border); vertical-align: top; }
.prose th { background: var(--surface-1); color: var(--text); }
.prose td { color: var(--text-muted); }
.toc { background: var(--surface-1); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.25rem 1.5rem; margin-bottom: 2rem; }
.toc h2 { margin: 0 0 0.6rem; font-size: 1.1rem; padding: 0; }
.toc ol { columns: 2; gap: 1.5rem; }
@media (max-width: 600px) { .toc ol { columns: 1; } }
.callout {
  display: flex; gap: 0.85rem; background: var(--brand-soft); border: 1px solid rgba(255, 122, 24, 0.3);
  border-radius: var(--radius); padding: 1rem 1.25rem; margin: 1.25rem 0;
}
.callout--safe { background: var(--safe-soft); border-color: rgba(54, 211, 153, 0.3); }
.callout--info { background: rgba(95, 168, 255, 0.1); border-color: rgba(95, 168, 255, 0.3); }
.callout .ico { flex: none; color: var(--gold); }
.callout--safe .ico { color: var(--safe); }
.callout p:last-child { margin-bottom: 0; }

/* Tweekoloms layout met aside */
.with-aside { display: grid; grid-template-columns: 1fr 300px; gap: 2.5rem; align-items: start; }
.with-aside .aside { position: sticky; top: calc(var(--header-h) + 16px); }
@media (max-width: 920px) { .with-aside { grid-template-columns: 1fr; } .with-aside .aside { position: static; } }

/* ---- Accordion (FAQ) ----------------------------------------------------- */
.accordion { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; background: var(--surface-1); }
.accordion + .accordion { margin-top: 1rem; }
details.qa { border-bottom: 1px solid var(--border); }
details.qa:last-child { border-bottom: none; }
details.qa summary {
  cursor: pointer; list-style: none; padding: 1.1rem 1.25rem; font-weight: 700; color: var(--text);
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
details.qa summary::-webkit-details-marker { display: none; }
details.qa summary::after { content: "+"; font-size: 1.4rem; color: var(--gold); transition: transform 0.2s; }
details.qa[open] summary::after { content: "–"; }
details.qa .qa__body { padding: 0 1.25rem 1.2rem; color: var(--text-muted); }

/* ---- Promo-kaarten ------------------------------------------------------- */
.promo {
  display: flex; flex-direction: column; gap: 0.75rem;
  background: linear-gradient(160deg, var(--surface-2), var(--bg-1));
  border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.5rem; position: relative; overflow: hidden;
}
.promo::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 4px; background: linear-gradient(90deg, var(--gold), var(--brand)); }
.promo__cat { color: var(--brand-600); font-weight: 700; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em; }
.promo__highlight { font-size: 1.9rem; font-weight: 900; color: var(--gold); letter-spacing: -0.02em; }
.promo__terms { font-size: 0.88rem; color: var(--text-muted); padding-left: 1.1rem; }
.promo__terms li { margin-bottom: 0.3rem; }
.promo__foot { margin-top: auto; padding-top: 0.5rem; font-size: 0.8rem; color: var(--text-dim); }

/* ---- Forms --------------------------------------------------------------- */
.form-grid { display: grid; gap: 1.1rem; }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label { font-weight: 600; font-size: 0.92rem; }
.field .req { color: var(--brand-600); }
.field input, .field select, .field textarea {
  background: var(--bg-0); border: 1px solid var(--border-strong); border-radius: var(--radius-sm);
  padding: 0.75rem 0.9rem; outline: none; transition: border-color 0.15s, box-shadow 0.15s; width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--brand); box-shadow: 0 0 0 3px var(--brand-soft); }
.field textarea { resize: vertical; min-height: 130px; }
.field .hint { font-size: 0.82rem; color: var(--text-dim); }
.field.invalid input, .field.invalid textarea, .field.invalid select { border-color: var(--danger); }
.field .err { color: var(--danger); font-size: 0.82rem; display: none; }
.field.invalid .err { display: block; }
.check { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.9rem; color: var(--text-muted); }
.check input { width: 18px; height: 18px; margin-top: 3px; flex: none; accent-color: var(--brand); }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-note { font-size: 0.85rem; color: var(--text-dim); }
.alert { padding: 1rem 1.25rem; border-radius: var(--radius); margin-bottom: 1.25rem; border: 1px solid var(--border); }
.alert--ok { background: var(--safe-soft); border-color: rgba(54, 211, 153, 0.4); color: #b7f0d6; }
.alert--err { background: var(--danger-soft); border-color: rgba(255, 107, 107, 0.4); color: #ffc9c9; }

/* ---- Stat / info rijen --------------------------------------------------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
@media (max-width: 700px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat { text-align: center; padding: 1.25rem 1rem; background: var(--surface-1); border: 1px solid var(--border); border-radius: var(--radius); }
.stat b { display: block; font-size: 1.6rem; color: var(--gold); }
.stat span { font-size: 0.85rem; color: var(--text-muted); }

/* ---- Stappen / lijst met nummers ---------------------------------------- */
.steps { counter-reset: s; display: grid; gap: 1rem; }
.steps li { list-style: none; display: flex; gap: 1rem; }
.steps li::before {
  counter-increment: s; content: counter(s); flex: none;
  width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center;
  background: var(--brand-soft); color: var(--gold); font-weight: 800; border: 1px solid rgba(255, 122, 24, 0.35);
}
.steps li h4 { margin-bottom: 0.15rem; }

/* ---- Cookiebanner & modals ----------------------------------------------- */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 300; background: rgba(5, 7, 13, 0.78);
  backdrop-filter: blur(4px); display: none; align-items: center; justify-content: center; padding: 1rem;
}
.modal-backdrop.open { display: flex; }
.modal {
  background: var(--surface-2); border: 1px solid var(--border-strong); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); max-width: 520px; width: 100%; padding: 2rem; animation: pop 0.25s var(--ease);
}
.modal--wide { max-width: 640px; }
@keyframes pop { from { transform: scale(0.95); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.modal h2 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.modal p { margin-bottom: 1rem; }
.modal__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.25rem; }
.modal__actions .btn { flex: 1 1 160px; }

/* Age gate */
.age-gate { text-align: center; }
.age-gate .logo-big { font-size: 2rem; font-weight: 900; margin-bottom: 0.5rem; }
.age-gate .age-big {
  display: inline-grid; place-items: center; width: 84px; height: 84px; border-radius: 50%;
  background: var(--danger-soft); color: #ffb4b4; border: 2px solid rgba(255, 107, 107, 0.5);
  font-weight: 900; font-size: 1.4rem; margin: 0.5rem auto 1rem;
}

/* Cookie consent */
.cookie-banner {
  position: fixed; left: 50%; transform: translateX(-50%); bottom: 16px; z-index: 280;
  width: min(720px, calc(100% - 24px)); background: var(--surface-2);
  border: 1px solid var(--border-strong); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  padding: 1.5rem; display: none;
}
.cookie-banner.open { display: block; }
.cookie-banner h2 { font-size: 1.2rem; margin-bottom: 0.4rem; }
.cookie-banner p { font-size: 0.92rem; margin-bottom: 1rem; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.cookie-actions .btn { flex: 1 1 150px; }
.cookie-prefs { display: none; margin-top: 1rem; border-top: 1px solid var(--border); padding-top: 1rem; }
.cookie-prefs.open { display: block; }
.cookie-cat { display: flex; gap: 0.75rem; padding: 0.75rem 0; border-bottom: 1px solid var(--border); }
.cookie-cat:last-child { border-bottom: none; }
.cookie-cat .switch { flex: none; }
.cookie-cat .meta { flex: 1; }
.cookie-cat .meta strong { display: block; }
.cookie-cat .meta small { color: var(--text-dim); }
.switch { position: relative; display: inline-block; width: 46px; height: 26px; }
.switch input { opacity: 0; width: 0; height: 0; }
.switch .slider { position: absolute; inset: 0; background: var(--surface-3); border-radius: 999px; transition: 0.2s; cursor: pointer; }
.switch .slider::before { content: ""; position: absolute; height: 18px; width: 18px; left: 4px; top: 4px; background: var(--text); border-radius: 50%; transition: 0.2s; }
.switch input:checked + .slider { background: var(--brand); }
.switch input:checked + .slider::before { transform: translateX(20px); background: var(--on-brand); }
.switch input:disabled + .slider { opacity: 0.6; cursor: not-allowed; }
.switch input:focus-visible + .slider { box-shadow: var(--ring); }

/* ---- CTA-band ------------------------------------------------------------ */
.cta-band {
  background: linear-gradient(135deg, rgba(255, 122, 24, 0.16), rgba(255, 194, 75, 0.08));
  border: 1px solid rgba(255, 122, 24, 0.3); border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 4vw, 2.75rem); text-align: center;
}
.cta-band h2 { margin-bottom: 0.6rem; }
.cta-band p { max-width: 52ch; margin: 0 auto 1.5rem; }

/* ---- Diversen ------------------------------------------------------------ */
.muted { color: var(--text-dim); }
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; }
.divider { height: 1px; background: var(--border); border: none; margin: 2rem 0; }
.tag-line { display: inline-flex; align-items: center; gap: 0.4rem; color: var(--safe); font-weight: 600; font-size: 0.9rem; }
.back-to-top {
  position: fixed; right: 18px; bottom: 18px; z-index: 90; width: 46px; height: 46px; border-radius: 50%;
  background: var(--surface-2); border: 1px solid var(--border-strong); color: var(--text); cursor: pointer;
  display: grid; place-items: center; opacity: 0; pointer-events: none; transition: opacity 0.2s; box-shadow: var(--shadow-md);
}
.back-to-top.show { opacity: 1; pointer-events: auto; }
