/* ==========================================================================
   Mantella.nl — gedeelde stylesheet
   Design tokens + gedeelde componenten. Pagina-specifieke styles staan in
   assets/css/pages/*.css
   ========================================================================== */

/* ---- Fonts (Caecilia is gelicenseerd; alleen voor Mantella gebruiken) ---- */
@font-face {
  font-family: 'Caecilia LT Std';
  src: url('../fonts/CaeciliaLTStd-Heavy.woff2') format('woff2'),
       url('../fonts/CaeciliaLTStd-Heavy.woff') format('woff');
  font-weight: 100 900;
  font-display: swap;
}
@font-face {
  font-family: 'Caecilia LT Pro It';
  src: url('../fonts/CaeciliaLTPro76BoldIt.woff2') format('woff2'),
       url('../fonts/CaeciliaLTPro76BoldIt.TTF') format('truetype');
  font-weight: 100 900;
  font-display: swap;
}

/* ---- Tokens ---- */
:root {
  --c-black: #0a0a0a;
  --c-black-2: #0d0d0d;
  --c-panel: #141414;
  --c-panel-glass: rgba(16, 16, 16, 0.85);
  --c-border-dark: #262626;
  --c-border-dark-2: #333;
  --c-bg-light: #faf9f7;
  --c-card-light: #ffffff;
  --c-border-light: #e8e5df;
  --c-border-light-2: #e3e0da;
  --c-red: #e4003a;
  --c-orange: #f39200;
  --c-success: #2fbf7f;
  --c-success-bg: rgba(31, 138, 91, 0.14);
  --c-error: #ff4d75;
  --c-error-bg: rgba(228, 0, 58, 0.12);
  --c-trustpilot: #00b67a;
  --grad: linear-gradient(135deg, #e4003a, #f39200);
  --grad-text: linear-gradient(100deg, #e4003a, #f39200);
  --grad-footer: linear-gradient(120deg, #e4003a, #f39200);
  --font-head: 'Caecilia LT Std', 'Roboto Slab', serif;
  --font-logo: 'Caecilia LT Pro It', 'Roboto Slab', serif;
  --font-body: 'Roboto', sans-serif;
  --r-card: 16px;
  --r-card-lg: 18px;
  --r-input: 10px;
  --r-pill: 999px;
  --sh-grad: 0 12px 36px rgba(228, 0, 58, 0.4);
  --container: 1296px; /* 1440 - 2 x 72 */
  --pad-x: 72px;
}

/* ---- Reset / basis ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  margin: 0;
  overflow-x: clip;
  background: var(--c-black);
  color: #fff;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.page-light { background: var(--c-bg-light); color: var(--c-black-2); }
img { max-width: 100%; display: block; }
[id] { scroll-margin-top: 120px; } /* ankers landen onder de sticky nav */
h1, h2, h3, h4 { font-family: var(--font-head); margin: 0; }
p { margin: 0; }
a { color: inherit; }

.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  user-select: none;
}

/* ---- Layout ---- */
.container { max-width: var(--container); margin: 0 auto; }
.sec { position: relative; overflow: hidden; padding: 100px var(--pad-x); }
.sec > .container { position: relative; z-index: 2; }
.sec--dark { background: var(--c-black); color: #fff; }
.sec--light { background: var(--c-bg-light); color: var(--c-black-2); }

/* Subtiele sterrenstippen op donkere secties */
.sec--stars {
  background-image:
    radial-gradient(1.5px 1.5px at 12% 22%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1px 1px at 28% 64%, rgba(255,255,255,0.35), transparent),
    radial-gradient(1.5px 1.5px at 45% 15%, rgba(255,255,255,0.4), transparent),
    radial-gradient(1px 1px at 62% 48%, rgba(255,255,255,0.3), transparent),
    radial-gradient(2px 2px at 76% 25%, rgba(255,255,255,0.45), transparent),
    radial-gradient(1px 1px at 88% 60%, rgba(255,255,255,0.3), transparent),
    radial-gradient(1px 1px at 35% 85%, rgba(255,255,255,0.25), transparent),
    radial-gradient(1.5px 1.5px at 55% 72%, rgba(255,255,255,0.3), transparent),
    radial-gradient(1px 1px at 8% 78%, rgba(255,255,255,0.3), transparent),
    radial-gradient(1.5px 1.5px at 93% 12%, rgba(255,255,255,0.4), transparent);
}
.sec--stars-soft {
  background-image:
    radial-gradient(1px 1px at 18% 30%, rgba(255,255,255,0.22), transparent),
    radial-gradient(1.5px 1.5px at 72% 20%, rgba(255,255,255,0.18), transparent),
    radial-gradient(1px 1px at 88% 70%, rgba(255,255,255,0.16), transparent),
    radial-gradient(1px 1px at 40% 80%, rgba(255,255,255,0.14), transparent);
}
/* Stippenraster + warme gloed op lichte secties */
.sec--dotgrid {
  background-image:
    radial-gradient(rgba(13,13,13,0.05) 1px, transparent 1px),
    linear-gradient(160deg, rgba(243,146,0,0.13), transparent 45%);
  background-size: 30px 30px, 100% 100%;
}

/* ---- Decoratie-elementen (positioneer per pagina met inline top/left) ---- */
.deco { position: absolute; pointer-events: none; }
.deco-circle { border-radius: 50%; border: 1px solid transparent; }
.deco-glow { border-radius: 50%; filter: blur(60px); }
.deco-dot { border-radius: 50%; }
.watermark {
  position: absolute;
  font-family: var(--font-head);
  font-weight: 900;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.13);
  letter-spacing: -6px;
  pointer-events: none;
  user-select: none;
}
.watermark--light { -webkit-text-stroke: 1px rgba(13, 13, 13, 0.14); }

/* ---- Logo ---- */
.logo { display: flex; align-items: baseline; gap: 5px; text-decoration: none; }
.logo__word { font-family: var(--font-logo); font-weight: 800; font-size: 27px; color: #fff; }
.logo__dot { width: 9px; height: 9px; background: var(--grad); border-radius: 50%; display: inline-block; }
.nav--light .logo__word, .page-light .logo__word { color: var(--c-black-2); }

/* ---- Navigatie ---- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px var(--pad-x);
  max-width: calc(var(--container) + 2 * var(--pad-x)); /* 1440px — logo en menu blijven binnen het contentraster op brede schermen */
  margin: 0 auto;
}
/* Full-bleed achtergrond achter de (gecentreerde) sticky nav */
.nav::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0; left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background: rgba(10, 10, 10, 0.92);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  z-index: -1;
  transition: box-shadow 0.25s ease;
}
.nav--light::before { background: rgba(250, 249, 247, 0.94); }
.nav.is-scrolled::before { box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35); }
.nav--light.is-scrolled::before { box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); }

.nav__inner { display: contents; }
.nav__links { display: flex; align-items: center; gap: 36px; }
.nav__link { position: relative; color: #cfcfcf; text-decoration: none; font-size: 16px; transition: color 0.2s ease; }
.nav__link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px; border-radius: 2px;
  background: #fff; transform: scaleX(0); transform-origin: left; transition: transform 0.22s ease;
}
.nav__link:hover { color: #fff; }
.nav__link:hover::after { transform: scaleX(1); }
.nav__link[aria-current="page"] { color: #fff; }
.nav__link[aria-current="page"]::after { background: var(--grad); transform: scaleX(1); }
.nav--light .nav__link { color: #555; }
.nav--light .nav__link:hover, .nav--light .nav__link[aria-current="page"] { color: var(--c-black-2); }
.nav--light .nav__link:hover::after { background: var(--c-black-2); }
.nav--light .nav__link[aria-current="page"]::after { background: var(--grad); }
.nav__cta {
  background: var(--grad);
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: var(--r-pill);
  box-shadow: 0 8px 28px rgba(228, 0, 58, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  white-space: nowrap;
}
.nav__cta:hover { transform: translateY(-2px); box-shadow: 0 12px 34px rgba(228,0,58,0.5); filter: brightness(1.06); }
.nav__mobile-actions { display: none; }
.nav__burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: none;
  border: 0;
  color: #fff;
  cursor: pointer;
  padding: 0;
}
.nav--light .nav__burger { color: var(--c-black-2); }

/* Mobiel menu (overlay) */
.mobilemenu {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.98);
  display: none;
  flex-direction: column;
  padding: 14px 20px 40px;
}
.mobilemenu.is-open { display: flex; }
.mobilemenu__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.mobilemenu__close {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; background: none; border: 0; color: #fff; cursor: pointer; padding: 0;
}
.mobilemenu__links { display: flex; flex-direction: column; }
.mobilemenu__link {
  display: flex; align-items: center; min-height: 52px;
  color: #fff; text-decoration: none;
  font-family: var(--font-head); font-weight: 700; font-size: 26px;
  border-bottom: 1px solid var(--c-border-dark);
}
.mobilemenu__link[aria-current="page"] {
  background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.mobilemenu__cta { margin-top: 28px; }
body.menu-open { overflow: hidden; }

/* ---- Knoppen ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  padding: 17px 36px;
  border-radius: var(--r-pill);
  border: 0;
  cursor: pointer;
  font-family: var(--font-body);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.btn--grad { background: var(--grad); color: #fff; box-shadow: var(--sh-grad); }
.btn--grad:hover { transform: translateY(-2px); box-shadow: 0 18px 48px rgba(228,0,58,0.55); filter: brightness(1.07); }
.btn--outline { border: 1px solid rgba(255,255,255,0.25); color: #fff; font-weight: 500; padding: 16px 35px; }
.btn--outline:hover { background: rgba(255,255,255,0.08); border-color: rgba(243,146,0,0.8); }
.btn--dark { background: var(--c-black-2); color: #fff; box-shadow: 0 16px 40px rgba(0,0,0,0.3); }
.btn--dark:hover { transform: translateY(-2px); background: #000; box-shadow: 0 22px 52px rgba(0,0,0,0.5); }
.btn--outline-dark { border: 2px solid var(--c-black-2); color: var(--c-black-2); background: none; }
.btn--outline-dark:hover { background: var(--c-black-2); color: #fff; }
.btn--sm { font-size: 17px; padding: 15px 32px; }

/* Tekstlink met pijl */
.arrowlink { font-weight: 700; font-size: 16px; text-decoration: none; color: var(--c-orange); }
.arrowlink:hover { text-decoration: underline; text-underline-offset: 4px; }
.arrowlink--grad {
  background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.arrowlink--grad:hover { text-decoration: underline; text-decoration-color: var(--c-red); text-underline-offset: 4px; }

/* Ronde pijl-knop (sliders) */
.circle-btn {
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid #3a3a3a; background: none; color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 19px;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.circle-btn:hover { border-color: var(--c-orange); background: rgba(255,255,255,0.06); }
.circle-btn--light { border-color: #d5d2cc; color: var(--c-black-2); }
.circle-btn--light:hover { background: rgba(13,13,13,0.05); }

/* ---- Badges / labels ---- */
.badge {
  display: inline-flex; align-items: center; gap: 10px;
  align-self: flex-start; width: fit-content;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
  border-radius: var(--r-pill);
  padding: 8px 18px;
  color: #ddd; font-size: 15px; font-weight: 500;
}
.badge__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--c-orange); display: inline-block; }
.badge--grad {
  background: var(--grad); border: 0; color: #fff;
  font-size: 14px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 8px 20px;
}
.badge--grad .material-symbols-outlined { font-size: 18px; }
.kicker {
  font-size: 14px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

/* ---- Gradient-tekst ---- */
.grad-text {
  background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
/* Optellende tellers: gradient-clipped tekst rendert zachter dan effen kleur,
   dus krijgen de cijfers effen merkrood — scherp, en op korte getallen vrijwel
   identiek aan de gradient. */
[data-counter] {
  background: none;
  -webkit-text-fill-color: var(--c-red);
  color: var(--c-red);
}

/* ---- Koppen ---- */
.h-hero { font-weight: 900; font-size: 88px; line-height: 1.02; text-wrap: balance; }
.h-sec { font-weight: 800; font-size: 46px; text-wrap: balance; }
.h-sec--lg { font-size: 48px; line-height: 1.06; }
.lead { font-size: 21px; line-height: 1.65; color: #a9a9a9; text-wrap: pretty; }
.sec--light .lead, .page-light .lead { color: #555; }

/* ---- Kaarten ---- */
.card-dark {
  position: relative;
  background: rgba(19, 19, 19, 0.85);
  border: 1px solid var(--c-border-dark);
  border-radius: var(--r-card);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.card-dark:hover { border-color: var(--c-red); transform: translateY(-4px); }
.card-light {
  background: var(--c-card-light);
  border-radius: var(--r-card);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card-light:hover { transform: translateY(-6px); box-shadow: 0 28px 64px rgba(0, 0, 0, 0.14); }

/* Checklijst-regels */
.checks { display: flex; flex-direction: column; gap: 13px; font-size: 17px; line-height: 1.5; }
.checks__row { display: flex; gap: 12px; align-items: center; }
.checks__row .material-symbols-outlined { font-size: 19px; color: var(--c-orange); flex: 0 0 auto; }

/* ---- Filterchips ---- */
.chips { display: flex; flex-wrap: wrap; gap: 12px; }
.chip {
  display: inline-flex; align-items: center;
  border: 1px solid var(--c-border-dark-2);
  background: none; color: #b0b0b0;
  border-radius: var(--r-pill);
  padding: 10px 22px;
  font-size: 15px; font-weight: 500; font-family: var(--font-body);
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  min-height: 44px;
}
.chip:hover { color: #fff; border-color: #555; }
.chip.is-active { background: var(--grad); border-color: transparent; color: #fff; font-weight: 700; }
.page-light .chip, .chips--light .chip { border-color: var(--c-border-light-2); color: #555; }
.page-light .chip:hover, .chips--light .chip:hover { color: var(--c-black-2); border-color: #bbb; }
.page-light .chip.is-active, .chips--light .chip.is-active { background: var(--grad); border-color: transparent; color: #fff; }

/* ---- Paginering (cirkels) ---- */
.paging { display: flex; align-items: center; justify-content: center; gap: 10px; }
.paging__btn {
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid var(--c-border-dark-2); background: none; color: #b0b0b0;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 700; font-family: var(--font-body); cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.paging__btn:hover { border-color: var(--c-orange); color: #fff; }
.paging__btn.is-active { background: var(--grad); border-color: transparent; color: #fff; }
.paging--light .paging__btn { border-color: var(--c-border-light-2); color: #555; }
.paging--light .paging__btn:hover { color: var(--c-black-2); }
.paging--light .paging__btn.is-active { background: var(--grad); border-color: transparent; color: #fff; }

/* ---- Slider-dots (knop is 26px groot voor aanraakbaarheid, het zichtbare bolletje 8px) ---- */
.dots { display: flex; gap: 2px; justify-content: center; }
.dots__dot {
  width: 26px; height: 26px; border-radius: 50%;
  background: none; border: 0; padding: 0; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.dots__dot::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: #3a3a3a; transition: background 0.2s ease;
}
.dots__dot.is-active::before { background: var(--c-orange); }
.dots--light .dots__dot::before { background: #d5d2cc; }
.dots--light .dots__dot.is-active::before { background: var(--c-orange); }
.dots--light .dots__dot.is-active { background: var(--c-orange); }

/* ---- Formulieren ---- */
.field { display: flex; flex-direction: column; gap: 8px; }
.field__label { font-size: 14px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: #b0b0b0; }
.field__input {
  background: var(--c-panel);
  border: 1px solid var(--c-border-dark-2);
  border-radius: var(--r-input);
  color: #fff;
  font-family: var(--font-body);
  font-size: 16px;
  padding: 14px 16px;
  width: 100%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field__input::placeholder { color: #666; }
.field__input:focus { outline: none; border-color: var(--c-orange); box-shadow: 0 0 0 3px rgba(243,146,0,0.15); }
textarea.field__input { resize: vertical; min-height: 140px; }

.form-msg {
  display: none;
  align-items: flex-start; gap: 12px;
  border-radius: var(--r-input);
  padding: 16px 18px;
  font-size: 16px; line-height: 1.5;
}
.form-msg.is-visible { display: flex; }
.form-msg--success { background: var(--c-success-bg); color: var(--c-success); }
.form-msg--error { background: var(--c-error-bg); color: var(--c-error); }
.form-msg .material-symbols-outlined { font-size: 22px; flex: 0 0 auto; }
.form-msg strong { display: block; }

/* ---- Gradient ticker (schuine band) ---- */
.ticker {
  background: linear-gradient(90deg, #e4003a, #f39200);
  width: 108%;
  margin: -24px -4% -20px;
  /* Caecilia rendert hoog in de regelbox; minder padding onder houdt de marges visueel gelijk */
  padding: 16px 0 10px;
  overflow: hidden;
  white-space: nowrap;
  transform: rotate(-1.2deg);
  position: relative;
  z-index: 1;
}
.ticker__inner { display: inline-block; }
.ticker__text {
  font-family: var(--font-head);
  font-weight: 700; font-size: 19px; color: #fff; letter-spacing: 2px;
  display: inline-block;
  padding-right: 0.5em;
  line-height: 1;
}

/* ---- Logo-marquee ---- */
@keyframes m-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee { overflow: hidden; white-space: nowrap; }
.marquee__track { display: inline-flex; align-items: center; will-change: transform; }
.marquee--a .marquee__track { animation: m-marquee 26s linear infinite; }
.marquee--b .marquee__track { animation: m-marquee 32s linear infinite reverse; }

/* ---- Accordions ---- */
.acc { border: 1px solid var(--c-border-dark); border-radius: 14px; overflow: hidden; background: var(--c-panel-glass); }
.acc + .acc { margin-top: 14px; }
.acc__head {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: none; border: 0; cursor: pointer; text-align: left;
  padding: 22px 26px; color: #fff;
  font-family: var(--font-head); font-weight: 700; font-size: 19px;
}
.acc__head .material-symbols-outlined { transition: transform 0.3s ease; color: var(--c-orange); }
.acc.is-open .acc__head .material-symbols-outlined { transform: rotate(180deg); }
.acc__body { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.acc__inner { padding: 0 26px 24px; color: #a9a9a9; font-size: 16px; line-height: 1.7; }

/* ---- "Beeld volgt"-placeholder (gestreept vlak, vervang t.z.t. door <img>) ---- */
.ph {
  position: relative;
  background: repeating-linear-gradient(45deg, #ddd 0 14px, #ccc 14px 28px);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.ph--grad { background: linear-gradient(135deg, rgba(228,0,58,0.85), rgba(243,146,0,0.75)), repeating-linear-gradient(45deg, #ddd 0 14px, #ccc 14px 28px); }
.ph--dark { background: linear-gradient(135deg, rgba(13,13,13,0.82), rgba(228,0,58,0.72)), repeating-linear-gradient(45deg, #ddd 0 14px, #ccc 14px 28px); }
.ph--orange { background: linear-gradient(135deg, rgba(243,146,0,0.85), rgba(228,0,58,0.7)), repeating-linear-gradient(45deg, #ddd 0 14px, #ccc 14px 28px); }
.ph__label {
  font-family: monospace;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(0, 0, 0, 0.3);
  padding: 4px 10px;
  border-radius: 4px;
}

/* ---- Trustpilot sterren ---- */
.stars { display: flex; gap: 3px; }
.stars__star {
  width: 24px; height: 24px; background: var(--c-trustpilot);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 14px;
}
.stars--sm .stars__star { width: 19px; height: 19px; font-size: 11px; }

/* ---- Footer (gradientband met CTA) ---- */
.footer { position: relative; background: var(--grad-footer); padding: 90px var(--pad-x) 48px; overflow: hidden; color: #fff; }
.footer__watermark {
  position: absolute; bottom: -70px; right: -20px;
  font-family: var(--font-logo); font-weight: 900; font-size: 260px; line-height: 1;
  color: rgba(255, 255, 255, 0.12); letter-spacing: -8px; pointer-events: none; user-select: none;
}
.footer__inner { position: relative; display: flex; flex-direction: column; gap: 56px; }
.footer__top { display: flex; align-items: center; justify-content: space-between; gap: 48px; }
/* Kleine kicker-regel boven de footer-titel; pagina's vullen hem met eigen copy */
.footer__kicker { display: block; font-size: 16px; font-weight: 500; color: rgba(255, 255, 255, 0.85); margin-bottom: 12px; }
.footer__title { font-weight: 800; font-size: 52px; line-height: 1.1; max-width: 750px; text-wrap: balance; }
.footer__cta { font-size: 18px; padding: 20px 44px; }
.footer__legal {
  display: flex; flex-wrap: wrap; gap: 14px 36px; align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.3); padding-top: 30px;
}
.footer__copy { font-size: 14px; color: rgba(255, 255, 255, 0.85); }
.footer__links { display: flex; gap: 28px; margin-left: auto; }
.footer__link { font-size: 14px; color: rgba(255, 255, 255, 0.85); text-decoration: none; }
.footer__link:hover { text-decoration: underline; }

/* ==========================================================================
   Responsive — tablet (834-ontwerp)
   ========================================================================== */
@media (max-width: 1080px) {
  :root { --pad-x: 40px; }
  .sec { padding-top: 80px; padding-bottom: 80px; }

  .nav { padding-top: 20px; padding-bottom: 20px; }
  .logo__word { font-size: 24px; }
  .logo__dot { width: 8px; height: 8px; }
  .nav__links { gap: 28px; }
  .nav__link { font-size: 15px; }
  .nav__cta { font-size: 15px; padding: 12px 24px; }

  .h-hero { font-size: 62px; line-height: 1.04; }
  .h-sec { font-size: 36px; }
  .h-sec--lg { font-size: 38px; }
  .lead { font-size: 19px; }

  .btn { font-size: 17px; padding: 0 32px; height: 54px; }
  .btn--outline { padding: 0 31px; }

  .footer { padding-top: 70px; padding-bottom: 40px; }
  .footer__title { font-size: 40px; }
  .footer__top { flex-direction: column; align-items: flex-start; gap: 28px; }
}

/* ==========================================================================
   Responsive — mobiel (390-ontwerp)
   ========================================================================== */
@media (max-width: 700px) {
  :root { --pad-x: 22px; }
  .sec { padding-top: 64px; padding-bottom: 64px; }

  .nav { padding: 14px 20px; }
  .logo__word { font-size: 22px; }
  .logo__dot { width: 7px; height: 7px; }
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .nav__mobile-actions { display: flex; align-items: center; gap: 6px; }
  .nav__cta--mobile {
    display: inline-flex; align-items: center; justify-content: center;
    height: 44px; padding: 0 18px; font-size: 15px; box-shadow: none;
  }

  .h-hero { font-size: 42px; line-height: 1.06; }
  .h-sec { font-size: 29px; }
  .h-sec--lg { font-size: 30px; line-height: 1.1; }
  .lead { font-size: 16.5px; }

  .btn { width: 100%; height: 52px; padding: 0; font-size: 17px; }
  .btn--inline { width: auto; padding: 0 24px; }

  .badge { padding: 7px 14px; font-size: 13px; gap: 8px; }
  .badge__dot { width: 7px; height: 7px; }
  .badge--grad { font-size: 12px; padding: 7px 16px; }

  .checks { gap: 11px; font-size: 15.5px; }
  .checks__row { gap: 10px; }
  .checks__row .material-symbols-outlined { font-size: 18px; }

  .card-dark { border-radius: 14px; }

  .ticker { width: 112%; margin: -18px -6% -14px; padding: 10px 0 6px; transform: rotate(-1.5deg); }
  .ticker__text { font-size: 13px; letter-spacing: 1.5px; }

  .circle-btn { width: 44px; height: 44px; font-size: 17px; }
  .stars__star { width: 18px; height: 18px; font-size: 10px; }

  .acc__head { padding: 18px 20px; font-size: 17px; min-height: 44px; }
  .acc__inner { padding: 0 20px 20px; font-size: 15px; }

  .footer { padding: 56px 22px 32px; }
  .footer__watermark { font-size: 110px; bottom: -30px; right: -14px; letter-spacing: -4px; }
  .footer__inner { gap: 28px; }
  .footer__title { font-size: 28px; line-height: 1.15; }
  .footer__cta { width: 100%; height: 54px; padding: 0; font-size: 17px; }
  .footer__legal { flex-direction: column; align-items: flex-start; gap: 4px; padding-top: 20px; }
  .footer__links { flex-direction: column; gap: 4px; margin-left: 0; width: 100%; }
  .footer__link { display: flex; align-items: center; min-height: 44px; font-size: 15px; }
  .footer__copy { order: 10; font-size: 13px; margin-top: 8px; }
}

/* ---- Toegankelijkheid ---- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
.skiplink {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: #fff; color: var(--c-black-2); padding: 12px 20px; border-radius: 0 0 10px 0;
  font-weight: 700; text-decoration: none;
}
.skiplink:focus { left: 0; }
.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;
}
