/* ── Apple Garamond Light ─────────────────────────────────────── */
@font-face {
  font-family: "Apple Garamond";
  font-weight: 300;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/AppleGaramond-Light.ttf") format("truetype");
}

/* ── Design Tokens ────────────────────────────────────────────── */
:root {
  --navy:         #010418;
  --navy-light:   #0B1535;
  --accent:       #010418;
  --accent-light: #010418;
  --accent-soft:  #E7E8EC;
  --surface:      #FFFFFF;
  --surface-alt:  #F8F8FB;
  --muted:        #64748B;

  --font-display: "HelveticaNeue-Bold", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-body:    "HelveticaNeue-Medium", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-accent:  "Apple Garamond", Garamond, Georgia, "Times New Roman", serif;

  --radius-card: 0.875rem;
  --radius-btn:  0.375rem;

  --shadow-card:  0 1px 3px rgba(1,4,24,.06), 0 8px 24px rgba(1,4,24,.08);
  --shadow-hover: 0 4px 16px rgba(1,4,24,.10), 0 20px 48px rgba(1,4,24,.14);

  --px: clamp(1.25rem, 5vw, 3rem);
}

/* ── Reset ────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: hidden; }
html { background: #0B1535; }       /* fallback = lichte top van gradient */
body {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--navy);
  background: transparent;          /* laat .site-bg gradient doorkomen */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;               /* geen horizontaal scrollen op mobiel */
  width: 100%;
}
/* Site-brede achtergrond — een echte position:fixed laag (in plaats van
   background-attachment:fixed) → geen repaint per scrollframe, vlot. */
.site-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(145deg, #0B1535 0%, #010418 100%);
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

/* ── Typography ───────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.02em;
}
.accent-word {
  font-family: var(--font-accent);
  font-weight: 300;
  font-style: italic;
  font-synthesis: style;
  font-size: 1.08em;
  letter-spacing: .01em;
}

/* ── Layout ───────────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 var(--px); }
.section-pad { padding: 5rem 0; }
@media (min-width: 1024px) { .section-pad { padding: 7rem 0; } }

/* ── Subtiel rasterpatroon — achtergrond op de hele site ──────── */
/* per sectie een ::before achter de content (z-index:-1, boven de
   sectie-achtergrond), met een radiale fade zodat het subtiel blijft */
section:not(.hero-section),
.site-footer {
  position: relative;
  isolation: isolate;
}
/* raster-patroon site-breed uitgeschakeld */
section:not(.hero-section)::before,
.site-footer::before { content: none; }

/* ── Section label ────────────────────────────────────────────── */
.section-label {
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--accent);
}
.eyebrow { display: flex; align-items: center; gap: .75rem; margin-bottom: 1.5rem; }
.eyebrow .line { width: 2rem; height: 1px; background: var(--accent); flex-shrink: 0; }
.eyebrow-center { justify-content: center; }

/* ── Buttons ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .625rem;
  padding: .875rem 1.5rem;
  border-radius: var(--radius-btn);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .875rem;
  cursor: pointer;
  transition: all .25s cubic-bezier(.25,1,.5,1);
  border: none;
  text-decoration: none;
  position: relative;
  isolation: isolate;
}
/* Glass lens highlight layer */
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow:
    inset 0 1.5px 1px rgba(255,255,255,.70),
    inset 0 -1px 1px rgba(255,255,255,.12),
    inset 1px 0 1px rgba(255,255,255,.10),
    inset -1px 0 1px rgba(255,255,255,.10);
}
.btn-primary {
  background: rgba(1,4,24,.72);
  backdrop-filter: blur(8px) saturate(180%);
  -webkit-backdrop-filter: blur(8px) saturate(180%);
  color: #fff;
  box-shadow: 0 1px 2px rgba(1,4,24,.25), 0 4px 14px rgba(1,4,24,.28), 0 0 40px -4px rgba(1,4,24,.5);
}
.btn-primary:hover {
  background: rgba(1,4,24,.88);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(1,4,24,.35), 0 8px 26px rgba(1,4,24,.30), 0 0 56px -2px rgba(1,4,24,.7);
}
.btn-outline {
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px) saturate(140%);
  -webkit-backdrop-filter: blur(8px) saturate(140%);
  border: 1.5px solid rgba(255,255,255,.40);
  color: #fff;
}
.btn-outline:hover {
  background: rgba(255,255,255,.22);
  border-color: rgba(255,255,255,.65);
  color: #fff;
}
.btn-outline-dark {
  background: rgba(11,21,53,.06);
  backdrop-filter: blur(8px) saturate(140%);
  -webkit-backdrop-filter: blur(8px) saturate(140%);
  border: 1.5px solid rgba(11,21,53,.28);
  color: var(--navy);
  box-shadow: 0 0 36px -8px rgba(1,4,24,.22);
}
.btn-outline-dark:hover {
  background: rgba(11,21,53,.12);
  border-color: rgba(11,21,53,.45);
  color: var(--navy);
  box-shadow: 0 0 48px -6px rgba(1,4,24,.32);
}

/* ── Cards ────────────────────────────────────────────────────── */
.card {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 2rem;
  /* gloed reveal-t het raster eronder — kleur per kaart via --glow */
  box-shadow: var(--shadow-card), 0 0 64px -14px var(--glow, rgba(1,4,24,.22));
  transition: box-shadow .3s, transform .25s;
}
.card:hover {
  box-shadow: var(--shadow-hover), 0 0 84px -8px var(--glow-hover, rgba(1,4,24,.36));
  transform: translateY(-2px);
}

/* ── Grid overlay — site-breed uitgeschakeld ──────────────────── */
.grid-overlay { display: none; }


/* ── Animated Nav ─────────────────────────────────────────────── */
.anav-wrap {
  position: fixed;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  pointer-events: none;
}
.anav {
  display: flex;
  align-items: center;
  height: 48px;
  width: 640px;
  max-width: calc(100vw - 2rem);
  border-radius: 9999px;
  border: none;
  background: linear-gradient(135deg, rgba(255,255,255,.08) 0%, rgba(255,255,255,.01) 100%);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow:
    0 0 0 1px rgba(255,255,255,.10),
    0 25px 50px -12px rgba(0,0,0,.80),
    inset 0 1px 1px rgba(255,255,255,.20),
    inset 0 -1px 1px rgba(0,0,0,.50);
  overflow: hidden;
  position: relative;
  cursor: default;
  /* Hidden until shown — initial state voor de blur-in reveal */
  opacity: 0;
  transform: translateY(-30px) scale(0.95);
  filter: blur(14px) brightness(0.6);
  pointer-events: none;
  will-change: filter, transform, opacity;
  transition:
    transform 2s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    opacity 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    filter 2.2s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    width 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.3s ease;
}
.anav.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0) brightness(1);
  pointer-events: auto;
}
.anav.is-collapsed {
  width: 48px;
  cursor: pointer;
  transition:
    width 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s,
    box-shadow 0.3s ease;
}
.anav.is-collapsed:hover {
  box-shadow:
    0 0 0 1px rgba(255,255,255,.14),
    0 30px 60px -12px rgba(0,0,0,.85),
    inset 0 1px 1px rgba(255,255,255,.22),
    inset 0 -1px 1px rgba(0,0,0,.55);
  transform: scale(1.08);
  transition:
    width 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s,
    box-shadow 0.25s ease,
    transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.anav.is-collapsed:active {
  transform: scale(0.96);
}

/* Logo icon (left, visible when expanded) */
.anav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding-left: 1rem;
  padding-right: 0.5rem;
  color: rgba(255,255,255,.75);
  opacity: 1;
  transform: none;
  transition: opacity 0.25s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.anav.is-collapsed .anav-logo {
  opacity: 0;
  transform: translateX(-20px) rotate(-180deg);
  transition: opacity 0.15s ease, transform 0.2s ease;
}

/* Nav links */
.anav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding-right: 1rem;
}
.anav-item {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  padding: 0.25rem 0.55rem;
  border-radius: 9999px;
  text-decoration: none;
  white-space: nowrap;
  opacity: 1;
  transform: none;
  transition: opacity 0.25s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.15s;
}
.anav-item:hover { color: #fff; }
.anav-item.active { color: #fff; font-weight: 600; }
.anav.is-collapsed .anav-item {
  opacity: 0;
  transform: translateX(-20px) scale(0.95);
  pointer-events: none;
  transition: opacity 0.12s ease, transform 0.12s ease;
}

/* Scheidingsstreepjes tussen nav-secties — alleen zichtbaar op
   telefoon (zie media query); op desktop blijft de nav ongewijzigd. */
.anav-sep { display: none; }
.anav.is-collapsed .anav-sep {
  opacity: 0;
  transition: opacity 0.12s ease;
}

/* ── Theme toggle button (sun ↔ moon) in de nav pill ──────────── */
.anav-theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: rgba(255,255,255,.75);
  cursor: pointer;
  padding: 0.4rem 0.6rem;
  margin-right: 0.4rem;
  border-radius: 9999px;
  flex-shrink: 0;
  transition: color 0.2s, opacity 0.25s;
}
.anav-theme-toggle:hover { color: #fff; }
.anav-theme-toggle svg { display: block; }
.anav-theme-toggle .theme-sun,
.anav-theme-toggle .theme-moon {
  transform-origin: 12.5px 12.5px;
  transition: transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1),
              opacity 0.3s ease;
}
/* Dark mode default: toon de maan (huidige staat) */
.anav-theme-toggle .theme-sun  { transform: scale(0) rotate(-90deg); opacity: 0; }
.anav-theme-toggle .theme-moon { transform: scale(1) rotate(0); opacity: 1; }
/* Light mode: toon de zon */
[data-theme="light"] .anav-theme-toggle .theme-sun  { transform: scale(1) rotate(0); opacity: 1; }
[data-theme="light"] .anav-theme-toggle .theme-moon { transform: scale(0) rotate(90deg); opacity: 0; }
.anav.is-collapsed .anav-theme-toggle {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.12s ease;
}


/* Menu icon (centre, visible when collapsed) */
.anav-menu {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  color: rgba(255,255,255,.80);
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.2s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.anav.is-collapsed .anav-menu {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.2s ease 0.18s, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) 0.18s;
}

/* ── Nav op mobiel: compacte pill (logo + hamburger) + dropdown ── */
@media (max-width: 640px) {
  .anav {
    width: auto;
    max-width: calc(100vw - 1.5rem);
    overflow: visible;
    gap: 0.1rem;
  }
  .anav-logo {
    display: flex;
    padding-left: 0.6rem;
    padding-right: 0.5rem;
  }
  .nav-logo-img { width: 18px; height: 18px; }

  /* Hamburger-knop — altijd zichtbaar, rechts in de pill */
  .anav-menu {
    position: static;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    width: 2rem;
    height: 2rem;
    margin-right: 0.35rem;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.2s ease;
  }
  .anav.menu-open .anav-menu { background: rgba(1,4,24,.07); }

  /* Links → dropdown-paneel onder de pill, zelfde glas-stijl */
  .anav-links {
    position: absolute;
    top: calc(100% + 0.55rem);
    left: 50%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.1rem;
    width: max-content;
    min-width: 11.5rem;
    padding: 0.45rem;
    border-radius: 1.15rem;
    background: #FFFFFF;
    box-shadow:
      0 0 0 1px rgba(1,4,24,.08),
      0 25px 50px -12px rgba(1,4,24,.22),
      inset 0 1px 1px rgba(255,255,255,.9);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, -10px);
    transition: opacity 0.2s ease,
                transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1),
                visibility 0.2s;
  }
  .anav.menu-open .anav-links {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
  }
  .anav-item {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 0.82rem;
    padding: 0.62rem 1rem;
    border-radius: 0.7rem;
    letter-spacing: 0;
    transition: background 0.15s ease, color 0.15s ease;
  }
  .anav-item:hover,
  .anav-item.active { background: rgba(1,4,24,.06); }
}

/* ── Page hero (inner pages) ──────────────────────────────────── */
.page-hero {
  padding: 5rem var(--px) 5rem; position: relative; overflow: hidden;
  background: transparent;        /* toont de site-brede gradient */
}
.page-hero .glow {
  position: absolute; border-radius: 50%;
  background: var(--accent); opacity: .06; filter: blur(100px); pointer-events: none;
}

/* ── Footer ───────────────────────────────────────────────────── */
.site-footer { background: transparent; padding: 4rem 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 1fr; gap: 2.5rem;
  padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.08);
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; } }
.footer-brand p {
  font-family: var(--font-body); font-size: .875rem; color: rgba(255,255,255,.5);
  line-height: 1.6; margin-top: 1rem; max-width: 28ch;
}
.footer-social { display: flex; gap: .75rem; margin-top: 1.5rem; }
.footer-social a {
  width: 2.25rem; height: 2.25rem; border-radius: .375rem;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5); transition: all .2s;
}
.footer-social a:hover { background: rgba(255,255,255,.1); color: #fff; }
.footer-col h4 {
  font-family: var(--font-display); font-size: .75rem; text-transform: uppercase;
  letter-spacing: .1em; color: rgba(255,255,255,.35); margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li + li { margin-top: .625rem; }
.footer-col a {
  font-family: var(--font-body); font-size: .875rem; color: rgba(255,255,255,.6); transition: color .2s;
}
.footer-col a:hover { color: #fff; }
.footer-nap { display: flex; flex-direction: column; gap: .875rem; }
.footer-nap-item { display: flex; align-items: flex-start; gap: .625rem; }
.footer-nap-item svg { width: 15px; height: 15px; color: var(--accent); flex-shrink: 0; margin-top: 1px; }
.footer-nap-item span {
  font-family: var(--font-body); font-size: .875rem; color: rgba(255,255,255,.6); line-height: 1.5;
}
.footer-nap-item a { color: rgba(255,255,255,.6); transition: color .2s; }
.footer-nap-item a:hover { color: #fff; }
.footer-bottom {
  padding: 1.5rem 0; display: flex; flex-wrap: wrap; gap: .5rem 1.5rem;
  align-items: center; justify-content: center;
}
@media (min-width: 640px) { .footer-bottom { justify-content: space-between; } }
.footer-bottom p, .footer-bottom a {
  font-family: var(--font-body); font-size: .8125rem; color: rgba(255,255,255,.3);
}
.footer-bottom a:hover { color: rgba(255,255,255,.6); }
.footer-bottom-links { display: flex; gap: 1.5rem; }

/* ── WhatsApp float ───────────────────────────────────────────── */
.whatsapp-float {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 90;
  width: 3.5rem; height: 3.5rem; border-radius: 50%;
  background: rgba(37,211,102,.72); display: flex; align-items: center; justify-content: center;
  color: #fff; isolation: isolate;
  backdrop-filter: blur(10px) saturate(160%);
  -webkit-backdrop-filter: blur(10px) saturate(160%);
  box-shadow: 0 4px 20px rgba(37,211,102,.38), inset 0 1.5px 1px rgba(255,255,255,.55);
  transition: transform .2s, box-shadow .2s, background .2s;
}
.whatsapp-float:hover {
  background: rgba(37,211,102,.86);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 28px rgba(37,211,102,.48), inset 0 1.5px 1px rgba(255,255,255,.55);
}

/* ── Scroll reveals ───────────────────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s cubic-bezier(.16,1,.3,1), transform .6s cubic-bezier(.16,1,.3,1); }
  .reveal.visible { opacity: 1; transform: none; }
}

/* ════════════════════════════════════════════════════════════════
   CINEMATIC HERO
════════════════════════════════════════════════════════════════ */
.gsap-reveal { visibility: hidden; }

.hero-section {
  position: relative; width: 100%; height: 100vh; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  background: transparent; perspective: 1500px;
}
.film-grain { display: none; }    /* korrel uit — gaf zichtbare naad bij hero → regio */
.bg-grid-theme { display: none; }

/* Hero text */
.hero-text-wrapper {
  position: absolute; z-index: 10;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; width: 100vw; padding: 0 1rem;
  will-change: transform; transform-style: preserve-3d;
}
.text-3d-matte {
  color: #fff;
  text-shadow: 0 10px 30px rgba(255,255,255,.2), 0 2px 4px rgba(255,255,255,.1);
  font-size: clamp(2.5rem, 7vw, 6rem);
  font-family: var(--font-display); font-weight: 700;
  letter-spacing: -.025em; margin-bottom: .5rem;
}
.text-silver-matte {
  background: linear-gradient(180deg, #fff 0%, rgba(255,255,255,.45) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  transform: translateZ(0);
  filter: drop-shadow(0px 10px 20px rgba(255,255,255,.15)) drop-shadow(0px 2px 4px rgba(255,255,255,.1));
  font-size: clamp(2.5rem, 7vw, 6rem);
  font-family: var(--font-display); font-weight: 700;
  letter-spacing: -.025em;
}

/* CTA finale */
.cta-wrapper {
  position: absolute; z-index: 10;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; width: 100vw; padding: 0 1rem;
  pointer-events: auto; will-change: transform;
  perspective: 1000px;
}
.phone-section-title {
  color: #fff;
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.5rem, 4vw, 3rem);
  letter-spacing: -.025em; line-height: 1.15;
  max-width: 22ch;
  margin-bottom: 0;
  /* zakt omlaag zodat de onderkant achter de telefoon verdwijnt */
  transform: translateY(clamp(1.75rem, 5.5vh, 4rem));
  position: relative;
  z-index: 0;
}
/* achtergrond van de video-/reels-sectie — #08102E met fadend raster,
   zelfde stijl als de hero-achtergrond */
.reel-section-bg {
  position: absolute;
  inset: 0;
  z-index: 5;
  background: transparent;       /* laat de site-brede body-gradient erdoorheen — geen aparte laag = geen naad */
  pointer-events: none;
}
.reel-section-bg::before { content: none; }

/* video-adaptieve omgevingsgloed achter de reels-telefoon — de gemiddelde
   kleur van de spelende video valt als licht op de grid-achtergrond.
   --reel-glow ("r g b") wordt door main.js per frame bijgewerkt */
.reel-ambient {
  position: absolute;
  left: 50%; top: 52%;
  width: min(80vw, 920px);
  height: min(78vh, 820px);
  transform: translate(-50%, -50%);
  z-index: -1;
  pointer-events: none;
  /* radial-gradient fadet zelf naar transparant — geen blur-filter
     meer nodig (was zwaar: groot element + animerende kleur). */
  background: radial-gradient(closest-side,
    rgb(var(--reel-glow, 244 123 32) / .35),
    rgb(var(--reel-glow, 244 123 32) / .10) 55%,
    transparent 80%);
  transition: background .5s ease;
}

/* ── Curtain-reveal — clean prijzen-pagina onder de video-sectie ── */
/* gewone sectie in de flow — geen curtain-reveal meer */
.curtain-wrap {
  position: relative;
  width: 100%;
}
.curtain-page {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background: transparent;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.curtain-grid { display: none; }
.curtain-aurora { display: none; }
.curtain-giant { display: none; }
.curtain-content {
  position: absolute; inset: 0; z-index: 10;
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 0;
}
.curtain-heading {
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 700; letter-spacing: -.03em;
  background: linear-gradient(180deg, #fff 0%, rgba(255,255,255,.45) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin: .25rem 0 1rem;
}
.curtain-sub {
  color: rgba(180,210,255,.55);
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 40ch;
}

/* ── Feature-orbit — werkgebied rond Waddinxveen ──────────────── */
.feature-orbit {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0 clamp(1.5rem, 7vw, 7rem);
  overflow: hidden;
  text-align: left;
}
.feature-orbit-left {
  width: 50%;
  max-width: 34rem;
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}
.feature-orbit-title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.05;
  color: #fff;
}
.feature-orbit-text {
  font-family: var(--font-body);
  font-size: .95rem;
  line-height: 1.65;
  color: rgba(180,210,255,.6);
  max-width: 38ch;
}
/* rechterhelft: orbit met een zachte fade aan alle vier de randen —
   twee gradiënten met intersect, gegarandeerd transparant op de randen */
.feature-orbit-right {
  position: relative;
  width: 50%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  -webkit-mask-image:
    linear-gradient(to right,  transparent 0%, #000 16%, #000 84%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, #000 16%, #000 84%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to right,  transparent 0%, #000 16%, #000 84%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, #000 16%, #000 84%, transparent 100%);
  mask-composite: intersect;
}
.orbit-stage {
  position: relative;
  width: 52rem;
  height: 52rem;
  flex-shrink: 0;
  transform: translateX(20%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.orbit-center {
  position: relative;
  z-index: 5;
  padding: .7rem 1.15rem;
  border-radius: 9999px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: -.01em;
  white-space: nowrap;
  box-shadow: 0 0 44px -4px rgba(1,4,24,.65);
}
.orbit-ring {
  position: absolute;
  border: none;                  /* geen zichtbare ring — chips zweven op onzichtbare orbits */
  border-radius: 50%;
}
.orbit-ring-1 { width: 17rem; height: 17rem; animation: orbit-spin 26s linear infinite; }
.orbit-ring-2 { width: 32rem; height: 32rem; animation: orbit-spin 38s linear infinite; }
.orbit-ring-3 { width: 47rem; height: 47rem; animation: orbit-spin 52s linear infinite; }
.orbit-item {
  position: absolute;
  transform: translate(-50%, -50%);
}
/* tegen-rotatie zodat de plaatsnamen rechtop blijven staan */
.orbit-chip {
  display: block;
  padding: .4rem .8rem;
  border-radius: 9999px;
  /* iets dekkender i.p.v. backdrop-filter — 15 spinnende blur-chips
     waren te zwaar tijdens het scrollen */
  background: linear-gradient(145deg, rgba(20,30,58,.92), rgba(8,14,32,.92));
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.85);
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 6px 20px -6px rgba(0,0,0,.6);
}
.orbit-ring-1 .orbit-chip { animation: orbit-spin 26s linear infinite reverse; }
.orbit-ring-2 .orbit-chip { animation: orbit-spin 38s linear infinite reverse; }
.orbit-ring-3 .orbit-chip { animation: orbit-spin 52s linear infinite reverse; }
@keyframes orbit-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .orbit-ring, .orbit-ring .orbit-chip { animation: none; }
}
@media (max-width: 820px) {
  .feature-orbit {
    flex-direction: column;
    height: auto;
    padding: 2.5rem;
    gap: 2rem;
    text-align: center;
  }
  .feature-orbit-left { width: 100%; align-items: center; }
  .feature-orbit-right { width: 100%; height: 17rem; }
  .orbit-stage { transform: translateX(0); }
}
.cta-wrapper .mockup-wrapper { z-index: 1; }
.cta-heading {
  font-size: clamp(2rem, 6vw, 5rem);
  font-family: var(--font-display); font-weight: 700;
  letter-spacing: -.025em; margin-bottom: 1.5rem;
}
.cta-sub {
  color: rgba(255,255,255,.5); font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: 3rem; max-width: 44ch; font-family: var(--font-body); line-height: 1.6;
}
.cta-btns { display: flex; flex-direction: column; gap: 1rem; align-items: center; }
@media (min-width: 480px) { .cta-btns { flex-direction: row; justify-content: center; } }

/* Physical buttons */
.btn-modern-light, .btn-modern-dark {
  display: inline-flex; align-items: center; gap: .75rem;
  padding: 1rem 2rem; border-radius: 1.25rem; border: none; cursor: pointer;
  transition: all .4s cubic-bezier(.25,1,.5,1); text-decoration: none;
  position: relative; isolation: isolate;
}
.btn-modern-light::before, .btn-modern-dark::before {
  content: '';
  position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  box-shadow:
    inset 0 1.5px 1px rgba(255,255,255,.65),
    inset 0 -1px 1px rgba(255,255,255,.12),
    inset 1px 0 1px rgba(255,255,255,.10),
    inset -1px 0 1px rgba(255,255,255,.10);
}
.btn-modern-light {
  background: rgba(1,4,24,.68); color: #fff;
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  box-shadow: 0 0 0 1px rgba(1,4,24,.32), 0 2px 4px rgba(0,0,0,.35), 0 12px 24px -4px rgba(1,4,24,.42), 0 0 50px -6px rgba(1,4,24,.55);
}
.btn-modern-light:hover {
  background: rgba(1,4,24,.84);
  transform: translateY(-3px);
  box-shadow: 0 0 0 1px rgba(1,4,24,.42), 0 6px 12px -2px rgba(1,4,24,.32), 0 20px 32px -6px rgba(1,4,24,.52), 0 0 68px -4px rgba(1,4,24,.72);
}
.btn-modern-light:active { transform: translateY(1px); }
.btn-modern-dark {
  background: rgba(255,255,255,.09); color: #fff;
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  box-shadow: 0 0 0 1px rgba(255,255,255,.14), 0 2px 4px rgba(0,0,0,.55), 0 12px 24px -4px rgba(0,0,0,.75), 0 0 46px -8px rgba(150,180,255,.32);
}
.btn-modern-dark:hover {
  background: rgba(255,255,255,.14);
  transform: translateY(-3px);
  box-shadow: 0 0 0 1px rgba(255,255,255,.20), 0 6px 12px -2px rgba(0,0,0,.65), 0 20px 32px -6px rgba(0,0,0,.88), 0 0 62px -6px rgba(150,180,255,.45);
}
.btn-modern-dark:active { transform: translateY(1px); }
.btn-label-sub { font-size: .7rem; text-transform: uppercase; letter-spacing: .08em; opacity: .7; margin-bottom: -2px; display: block; }
.btn-label-main { font-size: 1.1rem; font-weight: 700; line-height: 1; display: block; }

/* The card */
.card-layer {
  position: absolute; inset: 0; z-index: 20;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none; perspective: 1500px;
}
.main-card {
  background: linear-gradient(145deg, #0B1535 0%, #010418 100%);
  box-shadow: 0 40px 100px -20px rgba(0,0,0,.9), 0 20px 40px -20px rgba(0,0,0,.8), inset 0 1px 2px rgba(255,255,255,.08), inset 0 -2px 4px rgba(0,0,0,.8);
  border: 1px solid rgba(255,255,255,.04);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  pointer-events: auto;
  width: 92vw; height: 92vh;
  border-radius: 2rem;
  will-change: transform;
}
@media (min-width: 768px) { .main-card { width: 85vw; height: 85vh; border-radius: 2.5rem; } }

.card-sheen {
  position: absolute; inset: 0; border-radius: inherit; pointer-events: none; z-index: 50;
  background: radial-gradient(800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(1,4,24,.06) 0%, transparent 40%);
  mix-blend-mode: screen; transition: opacity .3s;
}

/* Card inner grid */
.card-inner {
  position: relative; width: 100%; height: 100%; max-width: 1280px;
  margin: 0 auto; padding: 1.5rem 1rem;
  display: flex; flex-direction: column; justify-content: space-evenly; align-items: center;
  z-index: 10;
}
@media (min-width: 1024px) {
  .card-inner { display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; gap: 2rem; padding: 0 3rem; }
}

/* Pulled-back card — jaarcijfers */
.card-metrics {
  position: absolute; inset: 0; z-index: 15;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: clamp(1.5rem, 4vh, 3rem);
  padding: clamp(1.5rem, 5vw, 4rem);
  text-align: center; pointer-events: none;
}
.card-metrics-head { display: flex; flex-direction: column; align-items: center; }
.card-metrics-title {
  color: #fff; font-size: clamp(1.35rem, 3vw, 2.5rem); letter-spacing: -.02em;
}
.metrics-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.5rem, 4vh, 3rem) clamp(1.5rem, 5vw, 4rem);
  width: 100%; max-width: 1000px;
}
@media (min-width: 900px) { .metrics-grid { grid-template-columns: repeat(4, 1fr); } }
.metric { display: flex; flex-direction: column; align-items: center; }
.metric-ring {
  position: relative; width: clamp(112px, 13vw, 168px); aspect-ratio: 1;
}
/* overflow:visible zodat de SVG-eigen feDropShadow vrij buiten het
   viewBox mag tekenen i.p.v. tot een rechthoek geknipt te worden. */
.metric-ring svg { width: 100%; height: 100%; display: block; overflow: visible; }
.metric-progress {
  transform: rotate(-90deg); transform-origin: center;
  stroke-dasharray: 402; stroke-dashoffset: 402;
}
.metric-center {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.metric-val {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.35rem, 2.4vw, 2.25rem); color: #fff;
  letter-spacing: -.03em; font-variant-numeric: tabular-nums;
}
.metric-label {
  margin-top: 1rem; color: #fff; font-weight: 700;
  font-size: clamp(.85rem, 1.4vw, 1rem); letter-spacing: -.01em;
}
.metric-sub {
  margin-top: .25rem; color: rgba(180,210,255,.5);
  font-family: var(--font-body); font-size: .75rem;
}

/* Card text areas */
.card-right-text { order: 1; display: flex; justify-content: center; width: 100%; }
@media (min-width: 1024px) { .card-right-text { order: 3; justify-content: flex-end; } }
.card-brand-name {
  font-size: clamp(4rem, 10vw, 8rem); font-family: var(--font-display); font-weight: 900;
  text-transform: uppercase; letter-spacing: -.04em;
  background: linear-gradient(180deg, #fff 0%, #A1A1AA 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  transform: translateZ(0);
  filter: drop-shadow(0px 12px 24px rgba(0,0,0,.8)) drop-shadow(0px 4px 8px rgba(0,0,0,.6));
}
.card-brand-logo {
  width: clamp(180px, 22vw, 320px);
  height: auto;
  object-fit: contain;
  display: block;
}

.card-left-text {
  order: 3; display: flex; flex-direction: column; justify-content: center;
  text-align: center; width: 100%; padding: 0 1rem;
}
@media (min-width: 1024px) { .card-left-text { order: 1; text-align: left; padding: 0; } }
.card-left-text h3 {
  color: #fff; font-size: clamp(1.6rem, 3.4vw, 2.75rem); margin-bottom: .75rem; letter-spacing: -.02em;
}
.card-left-text p {
  color: rgba(100,180,255,.6); font-family: var(--font-body); font-size: .9375rem;
  line-height: 1.65; display: none;
}
@media (min-width: 768px) { .card-left-text p { display: block; } }

/* ── Flip words ───────────────────────────────────────────────── */
.flip-words {
  position: relative;
  display: inline-block;
  text-align: left;
  color: #fff;
}
.flip-word {
  display: inline-block;
  white-space: nowrap;
}
.flip-word.is-exiting {
  position: absolute;
  left: 0;
  top: 0;
  animation: flip-word-exit .4s cubic-bezier(.4,0,.2,1) forwards;
}
@keyframes flip-word-exit {
  to { opacity: 0; transform: translate(40px,-40px) scale(2); filter: blur(8px); }
}
.flip-letter {
  display: inline-block;
  opacity: 0;
  animation: flip-letter-in .35s cubic-bezier(.2,.8,.2,1) forwards;
}
@keyframes flip-letter-in {
  from { opacity: 0; transform: translateY(10px); filter: blur(8px); }
  to   { opacity: 1; transform: translateY(0); filter: blur(0); }
}
@media (prefers-reduced-motion: reduce) {
  .flip-word.is-exiting { animation: none; opacity: 0; }
  .flip-letter { animation: none; opacity: 1; }
}

/* Hero logos strip */
.hero-logos-strip {
  position: absolute;
  bottom: -4.5rem;
  left: 0;
  right: 0;
  padding: 2.75rem 0;
  overflow: hidden;
  perspective: 1200px;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 14%, black 86%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 14%, black 86%, transparent 100%);
}
/* 3D-gekantelde laag — perspective marquee */
.hero-logos-3d {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  transform: rotateX(8deg) rotateY(28deg);
  transform-style: preserve-3d;
  will-change: transform;
}
.hero-logos-track {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: max-content;
  white-space: nowrap;
  will-change: transform;
}
.hero-logo-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  /* blur + opacity worden per frame door JS gezet (afstand tot midden) */
  will-change: filter, opacity;
}
.hero-logo-item img {
  height: 200px;
  width: auto;
  max-width: 560px;
  object-fit: contain;
}
.hero-logo-item img.logo-invert { filter: invert(1); }
.hero-logo-item img.logo-large { height: 290px; max-width: 620px; }

/* iPhone mockup */
.mockup-wrapper {
  order: 2; position: relative; width: 100%; height: 380px;
  display: flex; align-items: center; justify-content: center; perspective: 1000px;
  will-change: transform;
}
@media (min-width: 1024px) { .mockup-wrapper { height: 600px; } }
.mockup-inner {
  position: relative;
  transform: scale(.65);
  display: flex; align-items: center; justify-content: center;
}
@media (min-width: 1024px) { .mockup-inner { transform: scale(1); } }

.iphone-bezel {
  position: relative; width: 280px; height: 580px; border-radius: 3rem;
  background: #111;
  box-shadow: inset 0 0 0 2px #52525B, inset 0 0 0 7px #000, 0 30px 60px -18px rgba(1,4,24,.32), 0 12px 24px -10px rgba(1,4,24,.20);
  transform-style: preserve-3d; will-change: transform;
}
.hw-btn {
  position: absolute; width: 3px; border-radius: .25rem;
  background: linear-gradient(90deg, #404040 0%, #171717 100%);
  box-shadow: -2px 0 5px rgba(0,0,0,.8), inset -1px 0 1px rgba(255,255,255,.15), inset 1px 0 2px rgba(0,0,0,.8);
  border-left: 1px solid rgba(255,255,255,.05);
}
.hw-btn.right { border-left: none; border-right: 1px solid rgba(255,255,255,.05); box-shadow: 2px 0 5px rgba(0,0,0,.8), inset 1px 0 1px rgba(255,255,255,.15), inset -1px 0 2px rgba(0,0,0,.8); }
.iphone-screen {
  position: absolute; inset: 7px; background: #050914;
  border-radius: 2.5rem; overflow: hidden;
  box-shadow: inset 0 0 15px rgba(0,0,0,1); color: #fff; z-index: 10;
}
.screen-glare {
  position: absolute; inset: 0; z-index: 40; pointer-events: none;
  background: linear-gradient(110deg, rgba(255,255,255,.08) 0%, rgba(255,255,255,0) 45%);
}
.dynamic-island {
  position: absolute; top: 5px; left: 50%; transform: translateX(-50%);
  width: 100px; height: 28px; background: #000; border-radius: 9999px; z-index: 50;
  display: flex; align-items: center; justify-content: flex-end; padding: 0 .75rem;
  box-shadow: inset 0 -1px 2px rgba(255,255,255,.1);
}
.di-dot {
  width: 6px; height: 6px; border-radius: 50%; background: #010418;
  box-shadow: 0 0 8px rgba(1,4,24,.8); animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.4} }

.app-ui { position: relative; width: 100%; height: 100%; padding: 3rem 1.25rem 2rem; display: flex; flex-direction: column; }
.app-header {
  display: flex; flex-direction: column; align-items: center;
  gap: .4rem; margin-bottom: 2rem; text-align: center;
}
.app-title-sub { font-size: 10px; color: #A3A3A3; text-transform: uppercase; letter-spacing: .15em; font-weight: 700; margin-bottom: 2px; }
.app-title { font-size: 1.25rem; font-weight: 700; letter-spacing: -.01em; color: #fff; }
.app-avatar {
  width: 2.25rem; height: 2.25rem; border-radius: 50%;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .875rem; color: #E5E5E5;
}
.app-logo { height: 1.05rem; width: auto; opacity: .9; }

.ring-widget {
  position: relative; width: 11rem; height: 11rem;
  margin: 0 auto 2rem; display: flex; align-items: center; justify-content: center;
  filter: drop-shadow(0 15px 25px rgba(0,0,0,.8));
}
.ring-widget svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.progress-ring {
  transform: rotate(-90deg); transform-origin: center;
  stroke-dasharray: 402; stroke-dashoffset: 402; stroke-linecap: round;
}
.ring-center { position: relative; z-index: 10; text-align: center; }
.counter-val { font-size: 2.25rem; font-weight: 800; letter-spacing: -.04em; color: #fff; }
.counter-label { font-size: 8px; color: rgba(255,200,100,.5); text-transform: uppercase; letter-spacing: .1em; font-weight: 700; margin-top: 2px; }

.widget-list { display: flex; flex-direction: column; gap: .75rem; }
.phone-widget {
  background: linear-gradient(180deg, rgba(255,255,255,.04) 0%, rgba(255,255,255,.01) 100%);
  box-shadow: 0 10px 20px rgba(0,0,0,.3), inset 0 1px 1px rgba(255,255,255,.05), inset 0 -1px 1px rgba(0,0,0,.5);
  border: 1px solid rgba(255,255,255,.03);
  border-radius: 1rem; padding: .75rem; display: flex; align-items: center; gap: .75rem;
}
.widget-icon {
  width: 2.5rem; height: 2.5rem; border-radius: .75rem; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.widget-icon svg { width: 16px; height: 16px; }
.widget-icon.orange { background: linear-gradient(135deg, rgba(1,4,24,.2), rgba(1,4,24,.05)); border: 1px solid rgba(1,4,24,.2); }
.widget-icon.orange svg { color: #010418; }
.widget-icon.blue { background: linear-gradient(135deg, rgba(1,4,24,.2), rgba(1,4,24,.05)); border: 1px solid rgba(1,4,24,.2); }
.widget-icon.blue svg { color: #010418; }
.widget-lines { flex: 1; }
.wl1 { height: 8px; width: 5rem; background: #D4D4D4; border-radius: 9999px; margin-bottom: 6px; }
.wl2 { height: 6px; width: 3rem; background: #525252; border-radius: 9999px; }
.home-bar {
  position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%);
  width: 7.5rem; height: 4px; background: rgba(255,255,255,.2); border-radius: 9999px;
}

/* Reels-layout in de telefoon */
.reels-ui {
  position: absolute; inset: 0; overflow: hidden;
  font-family: var(--font-body); color: #fff;
}
/* verticale feed — door JS/scroll omhoog geschoven */
.reels-feed {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  will-change: transform;
  /* door de pijltjes bestuurd — JS zet translateY, CSS animeert het */
  transition: transform .55s cubic-bezier(.16, 1, .3, 1);
}
.reels-slide {
  position: relative;
  width: 100%; height: 100%;
  flex-shrink: 0;
  overflow: hidden;
  background: #050914;
}
.reels-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  background: #050914;
}
.reels-shade {
  position: absolute; left: 0; right: 0; bottom: 0; height: 58%;
  background: linear-gradient(to top, rgba(0,0,0,.72) 0%, rgba(0,0,0,.25) 45%, transparent 100%);
  pointer-events: none;
}
/* voortgangsstipjes — blijven vast t.o.v. het scherm */
.reels-dots {
  position: absolute; top: 2.4rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: .3rem; z-index: 30;
}
.reels-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: rgba(255,255,255,.35);
  transition: background .25s, width .25s;
}
.reels-dot.is-active { width: 16px; border-radius: 3px; background: #fff; }
/* geluid aan/uit knop */
.reels-mute {
  position: absolute; top: 2.1rem; right: .7rem; z-index: 35;
  width: 1.9rem; height: 1.9rem; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,.45); border: 1px solid rgba(255,255,255,.18);
  color: #fff; cursor: pointer; padding: 0;
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  transition: transform .2s, background .2s;
}
.reels-mute:hover { transform: scale(1.08); background: rgba(0,0,0,.6); }
.reels-mute:active { transform: scale(.94); }
.reels-mute .ico { width: 15px; height: 15px; }
.reels-mute .ico-unmuted { display: none; }
.reels-mute.is-unmuted .ico-muted { display: none; }
.reels-mute.is-unmuted .ico-unmuted { display: block; }

/* pijltjes-navigatie — naast de telefoon, buiten het scherm */
.reels-nav {
  position: absolute; left: 100%; top: 50%;
  transform: translateY(-50%);
  margin-left: clamp(.75rem, 2.5vw, 2.25rem);
  z-index: 35;
  display: flex; flex-direction: row; align-items: center; gap: .65rem;
}
.reels-nav-btns {
  display: flex; flex-direction: column; gap: .7rem;
}
.reels-nav-hint {
  font-family: var(--font-body, inherit);
  font-size: .72rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: .01em;
  color: var(--muted, #6b7280);
  text-align: right;
  white-space: nowrap;
}
.reels-nav-btn {
  width: 2.5rem; height: 2.5rem; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  color: #fff; cursor: pointer; padding: 0;
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  box-shadow: 0 8px 24px -6px rgba(0,0,0,.6);
  transition: transform .2s, background .2s, opacity .2s;
}
.reels-nav-btn:hover { transform: scale(1.1); background: rgba(255,255,255,.15); }
.reels-nav-btn:active { transform: scale(.92); }
.reels-nav-btn:disabled { opacity: .3; cursor: default; }
.reels-nav-btn:disabled:hover { transform: none; background: rgba(255,255,255,.08); }
.reels-nav-btn svg { width: 18px; height: 18px; }
.reels-actions {
  position: absolute; right: .5rem; bottom: 4.25rem; z-index: 20;
  display: flex; flex-direction: column; align-items: center; gap: 1.05rem;
}
.reel-action {
  display: flex; flex-direction: column; align-items: center; gap: .22rem;
}
.reel-action svg {
  width: 25px; height: 25px;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,.55));
}
.reel-action span {
  font-size: 10px; font-weight: 600; letter-spacing: -.01em;
  text-shadow: 0 1px 3px rgba(0,0,0,.55);
}
.reels-meta {
  position: absolute; left: .85rem; right: 3.4rem; bottom: 1.35rem; z-index: 20;
  text-align: left;
}
.reels-user { display: flex; align-items: center; gap: .5rem; margin-bottom: .5rem; }
.reels-avatar {
  width: 1.75rem; height: 1.75rem; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, #010418, #010418);
  display: flex; align-items: center; justify-content: center;
  font-size: .68rem; font-weight: 700; color: #fff;
  border: 1.5px solid rgba(255,255,255,.9);
}
.reels-username { font-size: .8rem; font-weight: 700; letter-spacing: -.01em; }
.reels-follow {
  font-size: .68rem; font-weight: 600; padding: .15rem .55rem;
  border: 1px solid rgba(255,255,255,.65); border-radius: .35rem;
}
.reels-caption {
  font-size: .72rem; line-height: 1.4; color: rgba(255,255,255,.95);
  margin-bottom: .5rem; text-shadow: 0 1px 3px rgba(0,0,0,.5);
}
.reels-audio {
  display: flex; align-items: center; gap: .35rem;
  font-size: .68rem; color: rgba(255,255,255,.88);
}
.reels-audio svg { width: 12px; height: 12px; flex-shrink: 0; }

/* Reels-UI verborgen — shade, like-knoppen, gebruikersnaam/caption,
   stipjes weg zodat alleen de schone video + mute-knop zichtbaar zijn. */
.reels-shade,
.reels-actions,
.reels-meta,
.reels-dots { display: none; }

/* Floating badges */
.floating-badge {
  position: absolute;
  background: linear-gradient(135deg, rgba(255,255,255,.08) 0%, rgba(255,255,255,.01) 100%);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 0 0 1px rgba(255,255,255,.1), 0 25px 50px -12px rgba(0,0,0,.8), inset 0 1px 1px rgba(255,255,255,.2), inset 0 -1px 1px rgba(0,0,0,.5);
  border-radius: 1rem; padding: .75rem 1rem;
  display: flex; align-items: center; gap: .75rem; z-index: 30;
}
.badge-left { top: 1.5rem; left: -1rem; }
.badge-right { bottom: 3rem; right: -1rem; }
@media (min-width: 1024px) { .badge-left { top: 3rem; left: -5rem; } .badge-right { bottom: 5rem; right: -5rem; } }
.badge-icon {
  width: 2.5rem; height: 2.5rem; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 1.125rem;
}
.badge-icon.orange { background: linear-gradient(180deg, rgba(1,4,24,.2), rgba(1,4,24,.1)); border: 1px solid rgba(1,4,24,.3); }
.badge-icon.blue { background: linear-gradient(180deg, rgba(1,4,24,.2), rgba(1,4,24,.1)); border: 1px solid rgba(1,4,24,.3); }
.badge-title { color: #fff; font-size: .875rem; font-weight: 700; letter-spacing: -.01em; }
.badge-sub { color: rgba(180,210,255,.5); font-size: .75rem; margin-top: 1px; }

/* ════════════════════════════════════════════════════════════════
   HOME — sections below hero
════════════════════════════════════════════════════════════════ */
.stats-section { background: var(--surface-alt); border-bottom: 1px solid rgba(1,4,24,.06); padding: 3rem 0; }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
@media (min-width: 1024px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-num { font-family: var(--font-display); font-size: clamp(1.75rem, 4vw, 2.5rem); color: var(--navy); margin-bottom: .25rem; }
.stat-label { font-family: var(--font-body); font-size: .875rem; color: var(--muted); }

/* ── Logo Marquee ────────────────────────────────────────── */
.logos-section {
  padding: 3.5rem 0;
  background: var(--navy-light);
}
.logos-heading {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: rgba(255,255,255,.5);
  margin-bottom: 2.5rem;
  letter-spacing: -.02em;
  line-height: 1.2;
}
.logos-marquee-outer {
  position: relative;
  overflow: hidden;
}
.logos-marquee-outer::before,
.logos-marquee-outer::after {
  content: '';
  position: absolute;
  top: 0;
  z-index: 2;
  height: 100%;
  width: 8rem;
  pointer-events: none;
}
.logos-marquee-outer::before {
  left: 0;
  background: linear-gradient(to right, var(--navy-light), transparent);
}
.logos-marquee-outer::after {
  right: 0;
  background: linear-gradient(to left, var(--navy-light), transparent);
}
.logos-track {
  display: flex;
  align-items: center;
  gap: 4.5rem;
  width: max-content;
  animation: logo-marquee 26s linear infinite;
}
.logos-track:hover { animation-play-state: paused; }
@keyframes logo-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.logo-slide {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-slide img {
  height: 48px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  opacity: .55;
  transition: opacity .3s;
}
.logo-slide img:hover { opacity: .9; }
.logo-slide img.logo-invert { filter: invert(1); }

.packages-grid { display: grid; gap: 1.5rem; max-width: 48rem; margin: 0 auto; }
@media (min-width: 768px) { .packages-grid { grid-template-columns: repeat(2, 1fr); } }
.pkg {
  border-radius: var(--radius-card); padding: 2rem; display: flex; flex-direction: column; transition: all .3s;
}
.pkg.light { background: var(--surface-alt); border: 1px solid rgba(1,4,24,.06); box-shadow: 0 0 58px -16px rgba(1,4,24,.20); transition: box-shadow .3s, transform .25s; }
.pkg.light:hover { box-shadow: var(--shadow-hover), 0 0 78px -10px rgba(1,4,24,.34); }
.pkg.dark { background: var(--navy-light); color: #fff; border: 1px solid rgba(255,255,255,.08); box-shadow: 0 0 80px -14px rgba(1,4,24,.45); transition: box-shadow .3s, transform .25s; }
.pkg.dark:hover { box-shadow: 0 0 100px -8px rgba(1,4,24,.6); }
.pkg-badge {
  align-self: flex-start; margin-bottom: 1rem; padding: .25rem .75rem;
  border-radius: 9999px; background: var(--accent); color: #fff;
  font-family: var(--font-body); font-size: .75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .05em;
}
.pkg-price { display: flex; align-items: baseline; gap: .25rem; margin-bottom: 1.5rem; }
.pkg-price .amount { font-family: var(--font-display); font-size: 2.25rem; }
.pkg-price .period { font-family: var(--font-body); font-size: .875rem; color: var(--muted); }
.pkg.dark .pkg-price .period { color: rgba(255,255,255,.5); }
.pkg-sub { font-family: var(--font-body); font-size: .75rem; color: rgba(1,4,24,.4); margin-top: -.75rem; margin-bottom: .75rem; }
.pkg.dark .pkg-sub { color: rgba(255,255,255,.35); }
.pkg-features { list-style: none; display: flex; flex-direction: column; gap: .75rem; flex: 1; margin-bottom: 2rem; }
.pkg-features li { display: flex; align-items: flex-start; gap: .625rem; font-family: var(--font-body); font-size: .875rem; }
.pkg-features li svg { width: 15px; height: 15px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }

/* ── Pakketten-showcase — toggle tussen Starter & Groei ───────── */
.pkg-showcase {
  --pkg-accent: 96 150 255;          /* Starter — koel blauw */
}
.pkg-showcase[data-active="groei"] {
  --pkg-accent: 244 123 32;          /* Groei — oranje */
}

/* switcher */
.pkg-switch {
  position: relative;
  display: flex;
  width: max-content;
  margin: 0 auto 3.5rem;
  padding: .35rem;
  border-radius: 9999px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
}
.pkg-switch-btn {
  position: relative; z-index: 2;
  width: 7.5rem; height: 2.75rem;
  border: none; background: none; cursor: pointer; padding: 0;
  font-family: var(--font-body); font-weight: 600; font-size: .9rem;
  color: rgba(255,255,255,.5);
  transition: color .3s ease;
}
.pkg-switch-btn.is-active { color: #fff; }
.pkg-switch-pill {
  position: absolute; z-index: 1;
  top: .35rem; left: 0; height: 2.75rem;
  border-radius: 9999px;
  background: linear-gradient(180deg, rgb(var(--pkg-accent) / .38), rgb(var(--pkg-accent) / .16));
  border: 1px solid rgb(var(--pkg-accent) / .45);
  box-shadow: 0 0 28px -4px rgb(var(--pkg-accent) / .55);
  transition: transform .42s cubic-bezier(.34,1.56,.64,1),
              width .42s cubic-bezier(.34,1.56,.64,1),
              background .42s ease, border-color .42s ease, box-shadow .42s ease;
}

/* stage */
.pkg-stage {
  display: flex; align-items: center; justify-content: center;
  gap: clamp(2rem, 6vw, 6rem);
  flex-wrap: wrap;
}
/* Groei behoudt zelfde links→rechts layout als Starter (geen mirror) */

/* visual — prijs-orb */
.pkg-visual {
  position: relative;
  width: clamp(15rem, 30vw, 21rem);
  aspect-ratio: 1;
  flex-shrink: 0;
}
.pkg-ring {
  position: absolute; inset: -13%;
  border-radius: 50%;
  border: 1.5px dashed rgba(255,255,255,.12);
  border-top-color: rgb(var(--pkg-accent) / .55);
  animation: pkg-ring-spin 22s linear infinite;
  transition: border-top-color .5s ease;
}
.pkg-glow {
  position: absolute; inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgb(var(--pkg-accent) / .42), transparent 65%);
  filter: blur(28px);
  animation: pkg-glow-pulse 4s ease-in-out infinite;
  transition: background .5s ease;
}
.pkg-orb {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.07);
  background: rgba(5,9,20,.5);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  box-shadow: inset 0 1px 1px rgba(255,255,255,.06), 0 30px 60px -20px rgba(0,0,0,.85);
  overflow: hidden;
}
.pkg-orb-inner {
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  animation: pkg-float 6s ease-in-out infinite;
}
.pkg-orb-eyebrow {
  font-family: var(--font-body); font-size: .7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .2em;
  color: rgb(var(--pkg-accent)); margin-bottom: .5rem;
  transition: color .5s ease;
}
.pkg-orb-price {
  display: flex; align-items: flex-start; gap: .08rem;
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(3rem, 7vw, 4.4rem); line-height: 1;
  letter-spacing: -.03em; color: #fff;
}
.pkg-cur { font-size: .5em; margin-top: .35em; color: rgba(255,255,255,.65); }
.pkg-orb-period {
  font-family: var(--font-body); font-size: .8rem;
  color: rgba(180,210,255,.5); margin-top: .4rem;
}
.pkg-status {
  position: absolute; bottom: -1rem; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; gap: .5rem; white-space: nowrap;
  font-family: var(--font-body); font-size: .68rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .14em;
  color: rgba(255,255,255,.55);
  background: rgba(5,9,20,.9);
  padding: .5rem 1rem; border-radius: 9999px;
  border: 1px solid rgba(255,255,255,.07);
}
.pkg-status-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgb(var(--pkg-accent));
  box-shadow: 0 0 8px rgb(var(--pkg-accent));
  animation: pulse 2s infinite;
  transition: background .5s ease, box-shadow .5s ease;
}

/* details */
.pkg-details {
  width: 100%; max-width: 26rem;
  display: flex; flex-direction: column;
  /* Fixed min-height: voorkomt dat de container groeit/krimpt bij
     switchen tussen Starter en Groei, anders verspringt de heading */
  min-height: 26rem;
}

/* Pricing component visueel iets omhoog trekken zonder de heading
   te raken (transform = geen layout-impact = heading blijft staan) */
.pkg-showcase { transform: translateY(-3rem); }
.pkg-details > * { animation: pkg-item-in .5s cubic-bezier(.16,1,.3,1) both; }
.pkg-details > *:nth-child(1) { animation-delay: .04s; }
.pkg-details > *:nth-child(2) { animation-delay: .10s; }
.pkg-details > *:nth-child(3) { animation-delay: .16s; }
.pkg-details > *:nth-child(4) { animation-delay: .22s; }
.pkg-details > *:nth-child(5) { animation-delay: .28s; }
.pkg-details > *:nth-child(6) { animation-delay: .34s; }
.pkg-detail-label {
  font-family: var(--font-body); font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .2em;
  color: rgba(255,255,255,.4); margin-bottom: .5rem;
}
.pkg-detail-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.25rem); letter-spacing: -.02em;
  color: #fff; margin-bottom: .65rem;
}
.pkg-detail-desc {
  font-family: var(--font-body); font-size: .9rem; line-height: 1.6;
  color: rgba(180,210,255,.6); margin-bottom: 1.25rem;
}
.pkg-detail-note {
  font-family: var(--font-body); font-size: .72rem;
  color: rgba(255,255,255,.35); margin-top: -.75rem; margin-bottom: 1.25rem;
}
.pkg-detail-features {
  list-style: none; display: flex; flex-direction: column; gap: .7rem;
  margin-bottom: 1.75rem; padding: 1.35rem;
  border-radius: 1.1rem;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
}
.pkg-detail-features li {
  display: flex; align-items: flex-start; gap: .6rem;
  font-family: var(--font-body); font-size: .875rem;
  color: rgba(255,255,255,.82);
}
.pkg-detail-features li svg {
  width: 15px; height: 15px; flex-shrink: 0; margin-top: 2px;
  color: rgb(var(--pkg-accent)); transition: color .5s ease;
}
.pkg-detail-cta { justify-content: center; }

@keyframes pkg-ring-spin { to { transform: rotate(360deg); } }
@keyframes pkg-glow-pulse { 0%,100% { opacity: .5; } 50% { opacity: .85; } }
@keyframes pkg-float { 0%,100% { transform: translateY(-8px); } 50% { transform: translateY(8px); } }
@keyframes pkg-item-in {
  from { opacity: 0; transform: translateY(18px); filter: blur(8px); }
  to   { opacity: 1; transform: translateY(0); filter: blur(0); }
}
@media (prefers-reduced-motion: reduce) {
  .pkg-ring, .pkg-glow, .pkg-orb-inner, .pkg-status-dot,
  .pkg-details > * { animation: none; }
}
@media (max-width: 760px) {
  .pkg-stage { flex-direction: column; gap: 3.5rem; }
  .pkg-details { max-width: 100%; align-items: center; text-align: center; }
}

.about-grid { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }
.about-photo {
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
/* grote oranje gloed achter de telefoons — faadt in op de eindpositie */
.about-glow {
  position: absolute;
  inset: -8% -14%;
  border-radius: 50%;
  /* gradient fadet al naar transparant — geen blur-filter (zwaar
     bij scroll-animatie) */
  background: radial-gradient(closest-side,
    rgba(1,4,24,.38), rgba(1,4,24,.10) 55%, transparent 82%);
  opacity: 1;        /* standaard zichtbaar (about zit in hero-overlay) */
  pointer-events: none;
  z-index: 0;
}
/* drie échte iPhone-mockups (zelfde als op de hero), geschaald.
   --ps = schaal van de zijtelefoons; middelste is --pm × groter */
.about-phones {
  --ps: 0.66;
  --pm: 1.26;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-phone {
  position: relative;
  flex-shrink: 0;
}
.about-phone .iphone-bezel { transform-origin: top left; }

.about-phone--side {
  z-index: 1;
  width:  calc(280px * var(--ps));
  height: calc(580px * var(--ps));
}
.about-phone--side .iphone-bezel { transform: scale(var(--ps)); }

.about-phone--mid {
  z-index: 2;
  width:  calc(280px * var(--ps) * var(--pm));
  height: calc(580px * var(--ps) * var(--pm));
  margin-inline: calc(var(--ps) * -2.4rem);
}
.about-phone--mid .iphone-bezel { transform: scale(calc(var(--ps) * var(--pm))); }

.about-phone-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

@media (max-width: 1024px) { .about-phones { --ps: 0.56; } }
@media (max-width: 600px)  { .about-phones { --ps: 0.40; } }

/* ── CTA-sectie — telefoon links + rechts naast "Laten we kennismaken" ── */
.cta-flank {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.5rem, 5vw, 4rem);
}
.cta-center { flex-shrink: 1; text-align: center; }

/* sterren-effect achter de telefoons — zelfde sparkles als bij de reviews */
.phone-stars {
  position: absolute; inset: 0;
  z-index: 0;
  pointer-events: none;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 35%, transparent 88%);
  mask-image: radial-gradient(ellipse at center, #000 35%, transparent 88%);
}
.cta-phone {
  --cps: 0.62;
  flex-shrink: 0;
  position: relative;
  width:  calc(280px * var(--cps));
  height: calc(580px * var(--cps));
}
.cta-phone .iphone-bezel { transform-origin: top left; transform: scale(var(--cps)); position: relative; z-index: 1; }
.cta-phone--left  { transform: rotate(-5deg); }
.cta-phone--right { transform: rotate(5deg); }
.cta-phone-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
/* gloed achter elke CTA-telefoon — faadt in tijdens het scrollen */
.cta-phone-glow {
  position: absolute;
  inset: -26% -32%;
  z-index: 0;
  border-radius: 50%;
  background: radial-gradient(closest-side,
    rgba(1,4,24,.42), rgba(1,4,24,.12) 55%, transparent 82%);
  opacity: 0;
  pointer-events: none;
}
@media (max-width: 1024px) { .cta-phone { --cps: 0.5; } }
@media (max-width: 760px)  { .cta-phone { display: none; } }

.reviews-grid { display: grid; gap: 1.5rem; }
@media (min-width: 640px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }
.review-card {
  display: flex; flex-direction: column; gap: 1rem;
  /* op de donkere reviews-sectie: koele blauwe gloed i.p.v. oranje */
  --glow: rgba(1,4,24,.26);
  --glow-hover: rgba(1,4,24,.42);
}
.review-stars { display: flex; gap: 2px; }
.review-stars svg { width: 14px; height: 14px; color: var(--accent); fill: var(--accent); }
.review-text { font-family: var(--font-body); font-size: .875rem; color: rgba(1,4,24,.75); line-height: 1.6; flex: 1; }
.review-name { font-family: var(--font-body); font-size: .875rem; font-weight: 600; color: var(--navy); }
.review-role { font-family: var(--font-body); font-size: .75rem; color: var(--muted); }

/* ── Testimonials — verticale marquee-kolommen ────────────────── */
.testimonials-columns {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  height: clamp(420px, 62vh, 620px);
  overflow: hidden;
  /* boven + onder zacht laten faden — geen harde rand */
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 12%, #000 88%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, #000 12%, #000 88%, transparent 100%);
}
.testimonials-column { flex: 1 1 0; max-width: 22rem; min-width: 0; }
.testimonials-marquee {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-bottom: 1.5rem;  /* zorgt dat -50% naadloos loopt */
  animation: testimonials-scroll var(--dur, 32s) linear infinite;
  will-change: transform;
}
.testimonials-marquee.reverse { animation-direction: reverse; }
@keyframes testimonials-scroll {
  to { transform: translateY(-50%); }
}
.testimonial-card {
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 1.5rem;
  padding: 1.6rem 1.7rem;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  box-shadow: 0 14px 44px -14px rgba(0,0,0,.55);
}
.t-text {
  color: rgba(255,255,255,.85);
  font-family: var(--font-body);
  font-size: .9rem;
  line-height: 1.6;
}
.t-author { display: flex; align-items: center; gap: .7rem; margin-top: 1.1rem; }
.t-avatar {
  width: 2.4rem; height: 2.4rem; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--accent), #b43c00);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: .9rem;
}
.t-name { color: #fff; font-weight: 600; font-size: .85rem; letter-spacing: -.01em; }
.t-role { color: rgba(180,210,255,.5); font-size: .78rem; }
@media (prefers-reduced-motion: reduce) {
  .testimonials-marquee { animation: none; }
}
@media (max-width: 900px) { .testimonials-column:nth-child(3) { display: none; } }
@media (max-width: 600px) { .testimonials-column:nth-child(2) { display: none; } }

/* ════════════════════════════════════════════════════════════════
   DIENSTEN PAGE
════════════════════════════════════════════════════════════════ */
.faq-list { display: flex; flex-direction: column; gap: .75rem; max-width: 48rem; }
.faq-item { border: 1px solid rgba(1,4,24,.08); border-radius: var(--radius-card); overflow: hidden; }
.faq-q {
  width: 100%; background: none; border: none; text-align: left;
  padding: 1.25rem 1.5rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  cursor: pointer; font-family: var(--font-display); font-size: .9375rem; font-weight: 700; color: var(--navy);
  transition: background .15s;
}
.faq-q:hover { background: rgba(1,4,24,.02); }
.faq-q svg { width: 16px; height: 16px; color: var(--muted); flex-shrink: 0; transition: transform .3s; }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a-inner { padding: 0 1.5rem 1.25rem; font-family: var(--font-body); font-size: .9375rem; color: var(--muted); line-height: 1.65; }

/* ════════════════════════════════════════════════════════════════
   OVER ONS PAGE
════════════════════════════════════════════════════════════════ */
.story-grid { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .story-grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }
.waarden-grid { display: grid; gap: 1.5rem; }
@media (min-width: 640px) { .waarden-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .waarden-grid { grid-template-columns: repeat(4, 1fr); } }
.waarde-icon {
  width: 2.75rem; height: 2.75rem; border-radius: var(--radius-card);
  background: var(--accent-soft); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.waarde-icon svg { width: 20px; height: 20px; color: var(--accent); }

.tijdlijn { position: relative; display: flex; flex-direction: column; gap: 2rem; }
.tijdlijn-item { display: flex; gap: 1.5rem; align-items: flex-start; }
.tijdlijn-jaar {
  width: 3rem; height: 3rem; border-radius: var(--radius-card);
  background: rgba(1,4,24,.1); border: 1px solid rgba(1,4,24,.2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: .75rem; color: var(--accent); flex-shrink: 0;
}
.tijdlijn-body { flex: 1; padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,.1); padding-top: .25rem; }
.tijdlijn-item:last-child .tijdlijn-body { border-bottom: none; padding-bottom: 0; }

/* ════════════════════════════════════════════════════════════════
   CONTACT PAGE
════════════════════════════════════════════════════════════════ */
.contact-grid { display: grid; gap: 2.5rem; align-items: start; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 2fr; gap: 4rem; } }
.contact-info-list { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2rem; }
.contact-info-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-info-icon {
  width: 2.5rem; height: 2.5rem; border-radius: var(--radius-btn);
  background: var(--accent-soft); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px;
}
.contact-info-icon svg { width: 17px; height: 17px; color: var(--accent); }
.contact-info-label { font-family: var(--font-body); font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); display: block; margin-bottom: 2px; }
.contact-info-value { font-family: var(--font-body); font-size: .875rem; font-weight: 500; color: var(--navy); display: block; transition: color .2s; }
a.contact-info-value:hover { color: var(--accent); }
.contact-info-extra { font-family: var(--font-body); font-size: .75rem; color: var(--muted); display: block; margin-top: 2px; }

.form-group { margin-bottom: 1.25rem; }
.field-label { display: block; font-family: var(--font-body); font-size: .875rem; font-weight: 500; color: var(--navy); margin-bottom: .375rem; }
.field-input {
  width: 100%; padding: .75rem 1rem; border-radius: var(--radius-btn);
  border: 1px solid rgba(1,4,24,.12); background: #fff;
  font-family: var(--font-body); font-size: .875rem; color: var(--navy);
  transition: border-color .15s, box-shadow .15s; outline: none; appearance: none;
}
.field-input::placeholder { color: var(--muted); }
.field-input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(1,4,24,.12); }
textarea.field-input { resize: vertical; min-height: 140px; }
select.field-input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem;
}
.form-status {
  display: none; padding: 1rem 1.25rem; border-radius: var(--radius-card);
  font-family: var(--font-body); font-size: .875rem; margin-top: 1rem;
}
.form-status.success { display: block; background: #F0FDF4; color: #15803D; border: 1px solid #BBF7D0; }
.form-status.error-state { display: block; background: #FEF2F2; color: #B91C1C; border: 1px solid #FECACA; }

.hours-bar { background: var(--navy); padding: 1.5rem 0; }
.hours-bar .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1rem; }
@media (min-width: 640px) { .hours-bar .container { justify-content: space-between; } }
.hours-bar span { font-family: var(--font-body); font-size: .875rem; color: rgba(255,255,255,.75); }
.hours-bar a { font-family: var(--font-body); font-size: .875rem; font-weight: 500; color: var(--accent); transition: color .2s; display: flex; align-items: center; gap: .5rem; }
.hours-bar a:hover { color: var(--accent-light); }

/* ── Scroll-laptop wrap voor CTA + footer ──────────────────────
   Recreatie van de Framer-Motion ContainerScroll component:
   header translatie -100, card rotateX 20→0 + scale.
   Card is op eindpositie ongeveer fullscreen (100vw × 100vh) zodat
   de "MacBook-screen" volledig in beeld komt na het kantelen.
   GSAP-aangestuurd via main.js. */
.scroll-laptop-wrap {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 0;
  overflow: hidden;
  /* Negatieve margin: card schuift omhoog en overlapt de pakketten-sectie */
  margin-top: -8rem;
  z-index: 10;
  /* geen min-height: wrap = exacte content-hoogte */
}
.scroll-laptop-perspective {
  width: 100%;
  position: relative;
  padding: 0;               /* geen padding meer: card zit meteen bovenin */
  perspective: 800px;
}
.scroll-laptop-header {
  max-width: 64rem;
  margin: 0 auto;
  text-align: center;
  will-change: transform;
}
.scroll-laptop-card {
  width: 100%;
  max-width: 100%;
  margin: 0;
  /* Auto-hoogte: groeit mee met content (CTA + footer) — geen extra
     min-height zodat er geen lege ruimte onder de footer ontstaat */
  height: auto;
  /* Border matcht de rest van de site (subtiele highlight zoals
     de hero-card en overlays) i.p.v. MacBook-grijs */
  border: 1px solid rgba(255,255,255,0.08);
  background: #0B1535;
  border-radius: 24px;
  padding: 0.5rem;
  box-shadow:
    0 0 #0000004d,
    0 9px 20px #0000004a,
    0 37px 37px #00000042,
    0 84px 50px #00000026,
    0 149px 60px #0000000a,
    0 233px 65px #00000003;
  will-change: transform;
}
@media (min-width: 768px) {
  .scroll-laptop-card { padding: 0.75rem; border-radius: 28px; }
}
.scroll-laptop-card-inner {
  width: 100%;
  overflow: hidden;
  border-radius: 1rem;
  /* Zelfde navy-gradient als de site-bg, zodat de footer er identiek
     uitziet als voorheen (footer heeft zelf transparante achtergrond) */
  background: linear-gradient(145deg, #0B1535 0%, #010418 100%);
}


/* ── Page loader — navy gradient (matcht site-bg) met MVG-logo
   in het midden + shimmer animatie. Zichtbaar bij refresh op een
   non-hero scroll-positie. Fadet weg via JS. ──────────────────── */
#page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  background: linear-gradient(145deg, #0B1535 0%, #010418 100%);
  opacity: 1;
  transition: opacity 0.5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
#page-loader.fade-out { opacity: 0; }
/* SVG spinner met orange gradient + reflection (skugga) onder de main */
#page-loader .loader-gegga { width: 0; height: 0; position: absolute; }
#page-loader .loader-spinner-wrap {
  position: relative;
  width: 200px;
  height: 200px;
}
#page-loader .loader-snurra,
#page-loader .loader-skugga {
  position: absolute;
  inset: 0;
}
#page-loader .loader-snurra {
  filter: url(#gegga);
  z-index: 2;
}
#page-loader .stopp1 { stop-color: #010418; }
#page-loader .stopp2 { stop-color: #010418; }
#page-loader .halvan {
  animation: loader-snurra 10s infinite linear;
  stroke-dasharray: 180 800;
  fill: none;
  stroke: url(#loaderGradient);
  stroke-width: 23;
  stroke-linecap: round;
}
#page-loader .strecken {
  animation: loader-snurra 3s infinite linear;
  stroke-dasharray: 26 54;
  fill: none;
  stroke: url(#loaderGradient);
  stroke-width: 23;
  stroke-linecap: round;
}
/* Reflection: dezelfde paths, geblurd + offset, ZONDER de gegga filter
   en met hogere opacity zodat het effect duidelijk zichtbaar is */
#page-loader .loader-skugga {
  filter: blur(8px);
  opacity: 0.55;
  transform: translate(4px, 6px);
  z-index: 1;
}
@keyframes loader-snurra {
  0%   { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -403px; }
}

/* ── LIGHT MODE — voor sections die niet in de cinematic hero zitten.
   Hero blijft dark (intentioneel cinematic), de rest schakelt om. ── */
[data-theme="light"] .site-bg {
  background:
    linear-gradient(to right, rgba(1,4,24,0.06) 1px, transparent 1px) 0 0 / 56px 56px,
    linear-gradient(to bottom, rgba(1,4,24,0.06) 1px, transparent 1px) 0 0 / 56px 56px,
    #FFFFFF;
  /* mask weg → grid uniform zichtbaar over alle secties */
}
[data-theme="light"] html { background: #FFFFFF; }
[data-theme="light"] body { color: var(--navy); }

/* Nav pill light: lichtere glass met donkere tekst */
[data-theme="light"] .anav {
  background: linear-gradient(135deg, rgba(255,255,255,.85) 0%, rgba(255,255,255,.7) 100%);
  box-shadow:
    0 0 0 1px rgba(1,4,24,.08),
    0 25px 50px -12px rgba(1,4,24,.18),
    inset 0 1px 1px rgba(255,255,255,.9),
    inset 0 -1px 1px rgba(1,4,24,.06);
}
[data-theme="light"] .anav-logo { color: var(--navy); }
[data-theme="light"] .anav-item { color: rgba(1,4,24,.65); }
[data-theme="light"] .anav-item:hover,
[data-theme="light"] .anav-item.active { color: var(--navy); }
[data-theme="light"] .anav-theme-toggle { color: rgba(1,4,24,.65); }
[data-theme="light"] .anav-theme-toggle:hover { color: var(--navy); }
[data-theme="light"] .anav-menu { color: rgba(1,4,24,.75); }

/* Scroll-laptop card content (laten we kennismaken + footer) → licht */
[data-theme="light"] .scroll-laptop-card {
  border-color: rgba(1,4,24,.08);
  background: #ffffff;
}
[data-theme="light"] .scroll-laptop-card-inner {
  background: linear-gradient(145deg, #F4F6FB 0%, #E2E8F2 100%);
}
/* CTA in card */
[data-theme="light"] .scroll-laptop-card-inner #cta-heading,
[data-theme="light"] .scroll-laptop-card-inner h2,
[data-theme="light"] .scroll-laptop-card-inner h3,
[data-theme="light"] .scroll-laptop-card-inner h4 { color: var(--navy) !important; }
[data-theme="light"] .scroll-laptop-card-inner p,
[data-theme="light"] .scroll-laptop-card-inner .reveal p,
[data-theme="light"] .scroll-laptop-card-inner span:not(.accent-word) { color: rgba(1,4,24,.7) !important; }
[data-theme="light"] .scroll-laptop-card-inner .grid-overlay {
  background-image:
    linear-gradient(rgba(1,4,24,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(1,4,24,.05) 1px, transparent 1px);
}
/* Footer in card → light */
[data-theme="light"] .scroll-laptop-card-inner .site-footer {
  color: rgba(1,4,24,.75);
}
[data-theme="light"] .scroll-laptop-card-inner .site-footer h4,
[data-theme="light"] .scroll-laptop-card-inner .site-footer a,
[data-theme="light"] .scroll-laptop-card-inner .site-footer span,
[data-theme="light"] .scroll-laptop-card-inner .site-footer p { color: rgba(1,4,24,.75); }
[data-theme="light"] .scroll-laptop-card-inner .site-footer a:hover { color: var(--accent); }
[data-theme="light"] .scroll-laptop-card-inner .footer-bottom { border-top-color: rgba(1,4,24,.08); }
[data-theme="light"] .scroll-laptop-card-inner .logo-mark {
  background: var(--accent) !important;
  color: #fff !important;
}

/* Page loader → light variant */
[data-theme="light"] #page-loader {
  background: linear-gradient(145deg, #F4F6FB 0%, #E2E8F2 100%);
}

/* ════════════════════════════════════════════════════════════════════
   ── LIGHT MODE — COMPREHENSIVE OVERRIDES ──────────────────────────
   Design tokens (light):
   - bg page:       linear-gradient(145deg, #F7F8FC 0%, #E8EDF6 100%)
   - surface:       #FFFFFF
   - text primary:  #010418 (navy, 19:1 contrast on white)
   - text secondary: rgba(1,4,24,0.65)
   - text muted:    rgba(1,4,24,0.5)
   - border subtle: rgba(1,4,24,0.08)
   - border default: rgba(1,4,24,0.14)
   - shadow:        rgba(1,4,24,0.10)
   - glass:         rgba(255,255,255,0.85) + backdrop-blur
   - accent:        #010418 (unchanged)
   ════════════════════════════════════════════════════════════════════ */

/* ── Cinematic Hero — container + intro text ─────────────────── */
[data-theme="light"] .hero-section { background: transparent !important; }
[data-theme="light"] .bg-grid-theme {
  background-image:
    linear-gradient(rgba(1,4,24,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(1,4,24,.04) 1px, transparent 1px);
}
[data-theme="light"] .film-grain { opacity: 0.02; mix-blend-mode: multiply; }
[data-theme="light"] .text-3d-matte {
  color: #010418;
  text-shadow:
    0 10px 30px rgba(1,4,24,0.10),
    0 2px 4px rgba(1,4,24,0.06);
}
[data-theme="light"] .text-silver-matte {
  background: linear-gradient(180deg, #010418 0%, rgba(1,4,24,.55) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter:
    drop-shadow(0 10px 20px rgba(1,4,24,0.08))
    drop-shadow(0 2px 4px rgba(1,4,24,0.06));
}
[data-theme="light"] .text-card-silver-matte {
  background: linear-gradient(180deg, #010418 0%, #4A5568 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter:
    drop-shadow(0 12px 24px rgba(1,4,24,0.15))
    drop-shadow(0 4px 8px rgba(1,4,24,0.08));
}

/* ── Reels phone & reel section bg ─────────────────────────── */
[data-theme="light"] .reel-section-bg {
  background: linear-gradient(145deg, #F7F8FC 0%, #E8EDF6 100%) !important;
}
[data-theme="light"] .phone-section-title { color: #010418 !important; }
[data-theme="light"] .reel-ambient { opacity: 0.5; }

/* ── Main card (iPhone mockup wrap) — keep card dark (it's a phone),
   but pull-back state uses card-metrics which we light-ify below.   */
[data-theme="light"] .premium-depth-card,
[data-theme="light"] .main-card {
  background: linear-gradient(145deg, #FFFFFF 0%, #F4F6FB 100%) !important;
  border: 1px solid rgba(1,4,24,.08) !important;
  box-shadow:
    0 40px 100px -20px rgba(1,4,24,0.18),
    0 20px 40px -20px rgba(1,4,24,0.12),
    inset 0 1px 2px rgba(255,255,255,1),
    inset 0 -2px 4px rgba(1,4,24,0.04) !important;
}
/* Card-content (left/right text in the cinematic card) */
[data-theme="light"] .card-left-text h3,
[data-theme="light"] .card-left-text p { color: #010418 !important; }
[data-theme="light"] .card-left-text p { color: rgba(1,4,24,.65) !important; }

/* ── Card metrics (Resultaten voor X klanten) ─────────────── */
[data-theme="light"] .card-metrics { color: #010418; }
[data-theme="light"] .card-metrics-title { color: #010418 !important; }
[data-theme="light"] .metric-ring svg circle:first-of-type {
  stroke: rgba(1,4,24,.06) !important;
}
[data-theme="light"] .metric-val { color: #010418 !important; }
[data-theme="light"] .metric-label { color: #010418 !important; }
[data-theme="light"] .metric-sub { color: rgba(1,4,24,.55) !important; }

/* ── Curtain (Regio card) ─────────────────────────────────── */
[data-theme="light"] .curtain-page {
  background: linear-gradient(145deg, #FFFFFF 0%, #F4F6FB 100%) !important;
  border-color: rgba(1,4,24,.08) !important;
  box-shadow:
    0 40px 100px -20px rgba(1,4,24,0.18),
    0 20px 40px -20px rgba(1,4,24,0.12),
    inset 0 1px 2px rgba(255,255,255,1) !important;
}
[data-theme="light"] .curtain-giant { color: rgba(1,4,24,.04) !important; }
[data-theme="light"] .curtain-grid {
  background-image:
    linear-gradient(rgba(1,4,24,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(1,4,24,.04) 1px, transparent 1px);
}
[data-theme="light"] .curtain-aurora { opacity: 0.4; }
[data-theme="light"] .feature-orbit-title { color: #010418 !important; }
[data-theme="light"] .feature-orbit-text { color: rgba(1,4,24,.65) !important; }
[data-theme="light"] .orbit-ring { border-color: rgba(1,4,24,.06) !important; }
[data-theme="light"] .orbit-chip {
  background: rgba(1,4,24,.04) !important;
  color: rgba(1,4,24,.75) !important;
  border-color: rgba(1,4,24,.08) !important;
}

/* ── About overlay ────────────────────────────────────────── */
[data-theme="light"] .hero-about-overlay h2,
[data-theme="light"] #over-heading { color: #010418 !important; }
[data-theme="light"] .hero-about-overlay p { color: rgba(1,4,24,.65) !important; }
[data-theme="light"] .about-glow {
  background: radial-gradient(closest-side,
    rgba(1,4,24,.32), rgba(1,4,24,.10) 55%, transparent 82%) !important;
}

/* ── Reviews card ─────────────────────────────────────────── */
[data-theme="light"] .hero-reviews-card {
  background: linear-gradient(145deg, #FFFFFF 0%, #F4F6FB 100%) !important;
  border: 1px solid rgba(1,4,24,.08) !important;
  box-shadow:
    0 40px 100px -20px rgba(1,4,24,0.18),
    0 20px 40px -20px rgba(1,4,24,0.12),
    inset 0 1px 2px rgba(255,255,255,1) !important;
}
[data-theme="light"] .reviews-card-inner h2,
[data-theme="light"] #reviews-heading { color: #010418 !important; }
[data-theme="light"] .testimonial-card {
  background: #FFFFFF !important;
  border-color: rgba(1,4,24,.08) !important;
  box-shadow: 0 4px 16px rgba(1,4,24,.06) !important;
}
[data-theme="light"] .t-text { color: rgba(1,4,24,.85) !important; }
[data-theme="light"] .t-name { color: #010418 !important; }
[data-theme="light"] .t-role { color: rgba(1,4,24,.55) !important; }
[data-theme="light"] .t-avatar {
  background: rgba(1,4,24,.06) !important;
  color: #010418 !important;
}

/* ── Pricing overlay ──────────────────────────────────────── */
[data-theme="light"] .hero-pricing-overlay h2,
[data-theme="light"] #pkg-heading { color: #010418 !important; }
[data-theme="light"] .pkg-switch {
  background: rgba(1,4,24,.05) !important;
  border-color: rgba(1,4,24,.08) !important;
}
[data-theme="light"] .pkg-switch-pill {
  background: rgba(1,4,24,.08) !important;
}
[data-theme="light"] .pkg-switch-btn { color: rgba(1,4,24,.6) !important; }
[data-theme="light"] .pkg-switch-btn.is-active { color: #010418 !important; }
[data-theme="light"] .pkg-orb {
  background: linear-gradient(145deg, #FFFFFF 0%, #F4F6FB 100%) !important;
  border-color: rgba(1,4,24,.08) !important;
  box-shadow:
    0 20px 50px -10px rgba(1,4,24,0.15),
    inset 0 1px 1px rgba(255,255,255,1) !important;
}
[data-theme="light"] .pkg-orb-eyebrow { color: rgba(1,4,24,.55) !important; }
[data-theme="light"] .pkg-orb-price,
[data-theme="light"] .pkg-orb-amount,
[data-theme="light"] .pkg-cur { color: #010418 !important; }
[data-theme="light"] .pkg-orb-period { color: rgba(1,4,24,.55) !important; }
[data-theme="light"] .pkg-status {
  background: rgba(1,4,24,.05) !important;
  color: rgba(1,4,24,.75) !important;
  border-color: rgba(1,4,24,.08) !important;
}
[data-theme="light"] .pkg-detail-label { color: rgba(1,4,24,.55) !important; }
[data-theme="light"] .pkg-detail-title { color: #010418 !important; }
[data-theme="light"] .pkg-detail-desc { color: rgba(1,4,24,.65) !important; }
[data-theme="light"] .pkg-detail-features li { color: rgba(1,4,24,.85) !important; }
[data-theme="light"] .pkg-ring { border-color: rgba(1,4,24,.3) !important; }

/* ── Section labels & eyebrow ─────────────────────────────── */
[data-theme="light"] .section-label { color: var(--accent); }
[data-theme="light"] .eyebrow .line { background: rgba(1,4,24,.2) !important; }

/* ── Buttons (outline variants on light bg) ───────────────── */
[data-theme="light"] .btn-outline {
  border-color: rgba(1,4,24,.2);
  color: #010418;
}
[data-theme="light"] .btn-outline:hover {
  background: #010418;
  color: #FFFFFF;
}

/* ── WhatsApp float button ────────────────────────────────── */
[data-theme="light"] .whatsapp-float {
  box-shadow: 0 8px 24px rgba(37,211,102,0.4), 0 4px 12px rgba(1,4,24,0.15) !important;
}

/* ── Site-wide eyebrow / accent-word stays orange ─────────── */
[data-theme="light"] .accent-word { color: var(--accent); }

/* ═══════════════════════════════════════════════════════════════════
   ── NEW STACKED LAYOUT (cinematic removed) — section styles ─────
   Default: light. Wit/light-grey background + navy text + blue accent.
   ═══════════════════════════════════════════════════════════════════ */

/* Force default = light theme via base styles */
html { background: #FFFFFF; scroll-behavior: smooth; }
body { background: transparent; color: #010418; }

/* ── Site background: light gradient + subtle grid pattern ─────
   Stacked backgrounds: two crossing line-gradients = grid. Soft
   radial mask fades the grid towards edges so content blijft
   centraal duidelijk leesbaar. */
.site-bg {
  background:
    linear-gradient(to right, rgba(1,4,24,0.06) 1px, transparent 1px) 0 0 / 56px 56px,
    linear-gradient(to bottom, rgba(1,4,24,0.06) 1px, transparent 1px) 0 0 / 56px 56px,
    linear-gradient(180deg, #FFFFFF 0%, #F4F6FB 55%, #FFFFFF 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at center, #000 25%, rgba(0,0,0,0.55) 60%, transparent 100%);
          mask-image: radial-gradient(ellipse 80% 60% at center, #000 25%, rgba(0,0,0,0.55) 60%, transparent 100%);
}
/* Dark mode: zelfde grid concept maar witte lijnen op navy */
[data-theme="dark"] .site-bg {
  background:
    linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px) 0 0 / 56px 56px,
    linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px) 0 0 / 56px 56px,
    linear-gradient(180deg, #0B1535 0%, #010418 100%);
}

/* ── Common section primitives ───────────────────────────────── */
.section-pad { padding: 1.5rem var(--px); position: relative; }
@media (min-width: 1024px) { .section-pad { padding: 2.5rem var(--px); } }
.container { max-width: 1200px; margin: 0 auto; padding: 0 var(--px); position: relative; }
.container-narrow { max-width: 720px; }
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #010418;
  margin-bottom: 1.25rem;
}
.section-heading-large { font-size: clamp(2rem, 4.5vw, 3.5rem); }
.section-heading-center { text-align: center; }
.section-intro {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: rgba(1,4,24,.65);
  max-width: 56ch;
  margin-bottom: 2.5rem;
}
.section-intro-center { margin-left: auto; margin-right: auto; text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .75rem;
  margin-bottom: 1.25rem;
}
.eyebrow-center { display: flex; justify-content: center; }
.eyebrow .line { width: 2rem; height: 1px; background: rgba(1,4,24,.2); flex-shrink: 0; }
.eyebrow .section-label {
  font-family: var(--font-body);
  font-size: .8125rem; font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .15em;
}

/* ── HERO (simple) ───────────────────────────────────────────── */
.hero-simple {
  padding: 8rem var(--px) 5rem;
  text-align: left;
}
@media (min-width: 768px) {
  .hero-simple { padding: 10rem var(--px) 6rem; }
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.75rem);
  line-height: 1.05;
  letter-spacing: -.022em;
  color: #010418;
  margin-bottom: 1.5rem;
  max-width: 18ch;
}
.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
  line-height: 1.6;
  color: rgba(1,4,24,.65);
  max-width: 52ch;
  margin-bottom: 2.5rem;
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center;
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 1.5rem;
  border-radius: 9999px;
  font-family: var(--font-body); font-size: .9375rem; font-weight: 600;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s, box-shadow .25s, transform .15s;
  white-space: nowrap;
}
.btn-large { padding: 1.05rem 1.75rem; font-size: 1rem; }
.btn-primary {
  background: var(--accent);
  color: #FFFFFF;
  border-color: var(--accent);
  box-shadow: 0 2px 8px rgba(1,4,24,.20), 0 8px 24px rgba(1,4,24,.15);
}
.btn-primary:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
  box-shadow: 0 4px 12px rgba(1,4,24,.30), 0 12px 32px rgba(1,4,24,.20);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: #010418;
  border-color: rgba(1,4,24,.2);
}
.btn-outline:hover {
  background: #010418;
  color: #FFFFFF;
  border-color: #010418;
}

/* ── Client logo marquee (flat horizontal, right→left) ───────── */
.client-marquee {
  margin-top: 0;
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
}
.client-marquee-track {
  display: flex; align-items: center;
  width: max-content;
  animation: client-scroll 40s linear infinite;
  white-space: nowrap;
  /* Will-change zorgt voor smooth GPU-accelerated animatie */
  will-change: transform;
  /* Padding zodat drop-shadows niet clip-pen door overflow:hidden */
  padding: 1.5rem 0;
}
/* Seamless loop: élke logo (ook de laatste) draagt z'n eigen tussenruimte
   als margin-right — niet via flex 'gap'. Zo is de track exact 2× één
   set breed en landt translateX(-50%) precies op één periode → geen cut. */
.client-logo {
  flex-shrink: 0;
  margin-right: clamp(4rem, 8vw, 8rem);
}
.client-logo img {
  height: clamp(170px, 20vw, 280px);
  width: auto;
  /* Alle bron-PNG's zijn vierkant (2000×2000). aspect-ratio reserveert
     de juiste breedte vóór de afbeelding geladen is → de track-breedte
     is meteen correct, geen sprong/cut in de loop bij het laden. */
  aspect-ratio: 1;
  opacity: 1;
  /* brightness(0) maakt elke bron-PNG volledig zwart (alfa blijft) */
  filter:
    brightness(0)
    drop-shadow(0 6px 14px rgba(1,4,24,.10));
  transition: opacity .25s, filter .25s, transform .25s;
}
/* Sikkens (en andere logo's die natuurlijk groter zijn) — kleinere
   render-grootte zodat ze proportioneel overeenkomen met de rest */
.client-logo-sm img {
  height: clamp(110px, 13vw, 180px);
}
/* Brede landscape-logo's (zoals Simonis ~2.58:1) — veel lagere hoogte
   omdat de breedte 2.58× de hoogte is. Op deze hoogte is de horizontale
   voetafdruk vergelijkbaar met een vierkant logo van regular size. */
.client-logo-wide img {
  aspect-ratio: 258 / 100;
  height: clamp(55px, 6.2vw, 88px);
}
.client-logo img:hover {
  opacity: 1;
  filter:
    brightness(0)
    drop-shadow(0 10px 22px rgba(1,4,24,.16));
  transform: translateY(-3px);
}
/* Logo's met een eigen (niet-transparante) achtergrond of donkere bron
   (Sikkens-badge, Lemkes) — negative/inverted look i.p.v. brightness(0)
   zodat ze niet tot een zwarte vlek worden. */
.client-logo-keep img {
  filter:
    grayscale(100%)
    invert(1)
    drop-shadow(0 6px 14px rgba(1,4,24,.10));
}
.client-logo-keep img:hover {
  filter:
    grayscale(100%)
    invert(1)
    drop-shadow(0 10px 22px rgba(1,4,24,.16));
}
@keyframes client-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .client-marquee-track { animation: none; }
}

/* ── Metrics grid ────────────────────────────────────────────── */
.metrics-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem 2.5rem;
  margin: 2.5rem auto 0;
  max-width: 1000px;
}
.metric {
  flex: 0 0 200px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.metric-ring {
  position: relative;
  width: 11rem; height: 11rem; max-width: 70vw;
  margin: 0 auto 1rem;
}
.metric-ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.metric-progress { stroke-dasharray: 402; stroke-dashoffset: 402; }
.metric-center {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
}
.metric-val {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #010418;
  letter-spacing: -.02em;
}
.metric-label {
  font-family: var(--font-body);
  font-size: 1rem; font-weight: 600;
  color: #010418;
  margin-top: .5rem;
}
.metric-sub {
  font-family: var(--font-body);
  font-size: .85rem;
  color: rgba(1,4,24,.55);
  margin-top: .25rem;
}

/* ── Mobiel: Resultaten-metrics als 2×2 grid ───────────────────────
   Basis-CSS zet .metric op flex:0 0 200px → op een ~390px telefoon
   past er maar één per rij (1-koloms stapel). Hier forceren we een
   echt 2-koloms grid zodat alle 4 cirkels in beeld passen. */
@media (max-width: 640px) {
  #matrics .metrics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.25rem 1rem;
  }
  #matrics .metric-ring {
    width: 100%;
    height: auto;
    max-width: 150px;
    aspect-ratio: 1;
  }
  #matrics .metric-sub { font-size: 0.78rem; }
}

/* ── Cases grid (Fris-Social stijl) ──────────────────────────── */
.cases-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}
@media (min-width: 640px) { .cases-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .cases-grid { grid-template-columns: repeat(3, 1fr); } }
.case-card {
  display: block;
  text-decoration: none;
  background: #FFFFFF;
  border-radius: 1.25rem;
  border: 1px solid rgba(1,4,24,.06);
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(1,4,24,.04), 0 8px 24px rgba(1,4,24,.06);
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.case-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 16px rgba(1,4,24,.08), 0 20px 48px rgba(1,4,24,.12);
  border-color: rgba(1,4,24,.18);
}
.case-thumb {
  width: 100%;
  aspect-ratio: 16 / 11;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.case-body {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.5rem;
  color: #010418;
}
.case-name {
  font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 700;
  letter-spacing: -.01em;
}
.case-arrow {
  color: var(--accent);
  flex-shrink: 0;
  transition: transform .25s;
}
.case-card:hover .case-arrow { transform: translateX(4px); }

/* ── About section (Marvin, geen phones) ─────────────────────── */
.about-section { background: #F8F9FC; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 768px) {
  .about-grid { grid-template-columns: 1fr 1.1fr; gap: 4rem; }
}
.about-photo-wrap { position: relative; }
.about-photo-placeholder {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, #E7E8EC 0%, #DDDEE3 100%);
  border-radius: 1.5rem;
  display: flex; align-items: center; justify-content: center;
  color: rgba(1,4,24,.4);
  font-family: var(--font-body); font-weight: 500;
  border: 1px solid rgba(1,4,24,.06);
}
/* Wanneer Marvin een echte foto aanlevert: vervang de placeholder div
   door <img src="..." class="about-photo"> en de styling hieronder pakt 'm */
.about-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 1.5rem;
}
.about-text h2 { margin-bottom: 1.5rem; }
.about-text p {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(1,4,24,.7);
  margin-bottom: 1.25rem;
}
.about-actions {
  display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2rem;
}

/* ── Reviews section (existing testimonials-columns marquee) ── */
.reviews-section { background: #FFFFFF; }
.testimonials-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
  max-height: 36rem;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
          mask-image: linear-gradient(180deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
}
@media (min-width: 768px) { .testimonials-columns { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .testimonials-columns { grid-template-columns: repeat(3, 1fr); } }
.t-column { overflow: hidden; }
.t-track {
  display: flex; flex-direction: column; gap: 1.25rem;
  animation: t-scroll 30s linear infinite;
}
.t-track-reverse { animation-direction: reverse; }
@keyframes t-scroll {
  from { transform: translateY(0); }
  to   { transform: translateY(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .t-track { animation: none; }
}
.testimonial-card {
  background: #FFFFFF;
  border-radius: 1.25rem;
  padding: 1.75rem;
  border: 1px solid rgba(1,4,24,.06);
  box-shadow: 0 2px 8px rgba(1,4,24,.04);
}
.t-text {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.125rem;
  line-height: 1.55;
  color: #010418;
  margin-bottom: 1.25rem;
}
.t-author { display: flex; align-items: center; gap: .75rem; }
.t-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(1,4,24,.1);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700; font-size: .9rem;
}
.t-name { font-family: var(--font-body); font-weight: 600; font-size: .95rem; color: #010418; }
.t-role { font-family: var(--font-body); font-size: .825rem; color: rgba(1,4,24,.55); }

/* ── Pricing section ─────────────────────────────────────────── */
.pricing-section { background: #F8F9FC; }
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
  max-width: 920px;
  margin-left: auto; margin-right: auto;
}
@media (min-width: 768px) { .pricing-grid { grid-template-columns: 1fr 1fr; } }
.pricing-card {
  background: #FFFFFF;
  border: 1px solid rgba(1,4,24,.08);
  border-radius: 1.5rem;
  padding: 2rem;
  position: relative;
  display: flex; flex-direction: column;
  box-shadow: 0 1px 3px rgba(1,4,24,.04), 0 8px 24px rgba(1,4,24,.06);
}
.pricing-card-feature {
  border-color: var(--accent);
  box-shadow: 0 4px 16px rgba(1,4,24,.12), 0 20px 48px rgba(1,4,24,.14);
}
.pricing-badge {
  position: absolute; top: -.75rem; left: 2rem;
  background: var(--accent);
  color: #FFFFFF;
  font-family: var(--font-body); font-size: .75rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: .35rem .75rem;
  border-radius: 9999px;
}
.pricing-card-name {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 700;
  color: #010418;
  margin-bottom: .25rem;
  letter-spacing: -.01em;
}
.pricing-card-tagline {
  font-family: var(--font-body);
  font-size: .95rem;
  color: rgba(1,4,24,.6);
  margin-bottom: 1.25rem;
}
.pricing-card-price-small {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.125rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.pricing-card-features {
  list-style: none; padding: 0; margin: 0 0 2rem;
  flex: 1;
}
.pricing-card-features li {
  display: flex; align-items: flex-start; gap: .65rem;
  font-family: var(--font-body); font-size: .9375rem;
  color: rgba(1,4,24,.8);
  padding: .55rem 0;
  border-bottom: 1px solid rgba(1,4,24,.05);
}
.pricing-card-features li:last-child { border-bottom: none; }
.pricing-card-features li svg {
  width: 18px; height: 18px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}
.pricing-card-cta {
  align-self: stretch;
  justify-content: center;
}

/* ── Contact section ─────────────────────────────────────────── */
.contact-section { background: #FFFFFF; }
.contact-actions {
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center;
  margin-top: 2.5rem;
}
.contact-meta {
  margin-top: 2.5rem;
  text-align: center;
  font-family: var(--font-body);
  font-size: .95rem;
  color: rgba(1,4,24,.65);
}
.contact-meta a { color: var(--accent); font-weight: 600; }
.contact-meta a:hover { text-decoration: underline; }
.contact-meta-sep { margin: 0 .75rem; color: rgba(1,4,24,.3); }

/* ── Footer adjustments (light theme baseline) ─────────────── */
.site-footer {
  background: #F4F6FB;
  border-top: 1px solid rgba(1,4,24,.06);
  padding: 4rem 0 2rem;
  color: rgba(1,4,24,.75);
}
.site-footer .container { padding: 0 var(--px); }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 3rem; } }
.footer-brand p {
  margin-top: 1.25rem;
  font-family: var(--font-body);
  font-size: .9rem;
  line-height: 1.6;
  color: rgba(1,4,24,.6);
  max-width: 28ch;
}
.footer-social { display: flex; gap: .5rem; margin-top: 1rem; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(1,4,24,.06);
  color: #010418;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.footer-social a:hover { background: var(--accent); color: #FFFFFF; }
.footer-col h4 {
  font-family: var(--font-display);
  font-size: .95rem; font-weight: 700;
  color: #010418;
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: .5rem; }
.footer-col a {
  font-family: var(--font-body);
  font-size: .9rem;
  color: rgba(1,4,24,.65);
  transition: color .15s;
}
.footer-col a:hover { color: var(--accent); }
.footer-nap-item {
  display: flex; align-items: flex-start; gap: .5rem;
  font-family: var(--font-body); font-size: .9rem;
  color: rgba(1,4,24,.65);
  margin-bottom: .65rem;
}
.footer-nap-item svg {
  width: 15px; height: 15px;
  color: var(--accent);
  flex-shrink: 0; margin-top: 3px;
}
.footer-nap-item a { color: rgba(1,4,24,.75); }
.footer-bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(1,4,24,.06);
  font-family: var(--font-body); font-size: .85rem;
  color: rgba(1,4,24,.55);
}
.footer-bottom-links { display: flex; gap: 1.25rem; }
.footer-bottom-links a { color: rgba(1,4,24,.55); }
.footer-bottom-links a:hover { color: var(--accent); }

/* ── Whatsapp float (kleur consistent met theme) ───────────── */
.whatsapp-float {
  position: fixed; bottom: 1.5rem; right: 1.5rem;
  z-index: 100;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366; color: #FFFFFF;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,.4), 0 4px 12px rgba(1,4,24,.15);
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}
.whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 10px 32px rgba(37,211,102,.5), 0 6px 16px rgba(1,4,24,.18); }

/* ── DARK MODE — alternative theme als user toggle aan zet ───── */
[data-theme="dark"] html, [data-theme="dark"] { background: #010418; }
[data-theme="dark"] body { color: #FFFFFF; }
[data-theme="dark"] .site-bg { background: linear-gradient(180deg, #0B1535 0%, #010418 100%); }
[data-theme="dark"] .section-heading,
[data-theme="dark"] .hero-headline,
[data-theme="dark"] .metric-val,
[data-theme="dark"] .metric-label,
[data-theme="dark"] .case-name,
[data-theme="dark"] .pricing-card-name,
[data-theme="dark"] .footer-col h4,
[data-theme="dark"] .t-text,
[data-theme="dark"] .t-name { color: #FFFFFF; }
[data-theme="dark"] .hero-sub,
[data-theme="dark"] .section-intro,
[data-theme="dark"] .about-text p,
[data-theme="dark"] .metric-sub,
[data-theme="dark"] .pricing-card-tagline,
[data-theme="dark"] .footer-col a,
[data-theme="dark"] .footer-brand p,
[data-theme="dark"] .footer-nap-item,
[data-theme="dark"] .t-role { color: rgba(255,255,255,.65); }
[data-theme="dark"] .pricing-card-features li { color: rgba(255,255,255,.8); border-bottom-color: rgba(255,255,255,.06); }
[data-theme="dark"] .about-section { background: #0B1535; }
[data-theme="dark"] .reviews-section { background: #010418; }
[data-theme="dark"] .pricing-section { background: #0B1535; }
[data-theme="dark"] .contact-section { background: #010418; }
[data-theme="dark"] .case-card { background: #0B1535; border-color: rgba(255,255,255,.08); }
[data-theme="dark"] .pricing-card { background: #0B1535; border-color: rgba(255,255,255,.08); }
[data-theme="dark"] .testimonial-card { background: #0B1535; border-color: rgba(255,255,255,.08); }
[data-theme="dark"] .site-footer { background: #0B1535; border-top-color: rgba(255,255,255,.08); }
[data-theme="dark"] .btn-outline { border-color: rgba(255,255,255,.25); color: #FFFFFF; }
[data-theme="dark"] .btn-outline:hover { background: #FFFFFF; color: #010418; border-color: #FFFFFF; }
[data-theme="dark"] .eyebrow .line { background: rgba(255,255,255,.2); }
[data-theme="dark"] .about-photo-placeholder { background: linear-gradient(135deg, #010418 0%, #010418 100%); color: rgba(255,255,255,.5); border-color: rgba(255,255,255,.08); }
[data-theme="dark"] .pricing-card-features li svg { color: var(--accent-light); }
[data-theme="dark"] .case-arrow { color: var(--accent-light); }
[data-theme="dark"] .footer-social a { background: rgba(255,255,255,.08); color: #FFFFFF; }
[data-theme="dark"] .footer-bottom { border-top-color: rgba(255,255,255,.08); color: rgba(255,255,255,.55); }
[data-theme="dark"] .footer-bottom-links a { color: rgba(255,255,255,.55); }
[data-theme="dark"] .client-logo img { filter: grayscale(100%) invert(1); opacity: .45; }
[data-theme="dark"] #page-loader { background: linear-gradient(145deg, #0B1535 0%, #010418 100%); }

/* ── Voorbeelden section met iPhone reels mockup ───────────────── */
.voorbeelden-section { background: #FFFFFF; }
.voorbeelden-stage {
  display: flex; align-items: center; justify-content: center;
  margin-top: 0;
  padding: 1rem 0;
  position: relative;
}
.voorbeelden-stage .mockup-wrapper {
  position: relative;
  margin: -4rem 0 0;
  z-index: 2;
}
/* Zorg dat de pijltjes ook in light mode goed contrast hebben */
.voorbeelden-section .reels-nav-btn {
  background: rgba(1,4,24,.85);
  border-color: rgba(255,255,255,.18);
  color: #FFFFFF;
  box-shadow: 0 8px 24px -6px rgba(1,4,24,.35);
}
.voorbeelden-section .reels-nav-btn:hover {
  background: var(--accent);
}
/* Op kleine schermen pijltjes naast/onder de telefoon */
@media (max-width: 640px) {
  .voorbeelden-stage .reels-nav {
    left: auto; right: auto;
    top: auto; bottom: -3.5rem;
    transform: translateX(0);
    margin-left: 0;
    flex-direction: row;
    width: 100%;
    justify-content: center;
    gap: 1rem;
  }
  .voorbeelden-stage .reels-nav-btns { flex-direction: row; }
  .voorbeelden-stage .reels-nav-hint { text-align: center; }
}

/* ── Force alle secties transparent zodat de site-bg grid overal doorkomt.
   Footer houdt z'n eigen lichte tint voor visuele afsluiting. */
.about-section,
.reviews-section,
.pricing-section,
.contact-section,
.voorbeelden-section,
.cases-section,
.region-section,
.hero-simple,
.section-pad {
  background: transparent !important;
}
/* Footer: subtiele tint zodat 'ie afgebakend voelt, maar nog steeds licht */
.site-footer {
  background: rgba(244,246,251,0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* ═══════════════════════════════════════════════════════════════════
   CINEMATIC HERO — light theme card + analytics widgets
   ═══════════════════════════════════════════════════════════════════ */

/* Card is licht in light mode (eerder al !important gezet, override hier voor specificity) */
.hero-section { background: transparent; }

/* Phone analytics widgets layout */
.phone-app {
  position: absolute; inset: 0;
  padding: 2.75rem 1rem 1.25rem;
  display: flex; flex-direction: column;
  gap: .65rem;
  font-family: var(--font-body);
  color: #fff;
}
.phone-widget {
  background: linear-gradient(180deg, rgba(255,255,255,.04) 0%, rgba(255,255,255,.01) 100%);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 1rem;
  padding: .75rem .9rem;
  box-shadow: 0 8px 16px rgba(0,0,0,.25), inset 0 1px 1px rgba(255,255,255,.05);
}
.app-header {
  display: flex; justify-content: space-between; align-items: center;
  background: transparent !important; border: none !important; box-shadow: none !important;
  padding: 0 .25rem !important;
}
.app-header-eyebrow {
  font-size: .6rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .15em;
  color: rgba(255,255,255,.45);
  margin-bottom: 2px;
}
.app-header-name {
  font-family: var(--font-display);
  font-size: 1.05rem; font-weight: 700;
  color: #fff; letter-spacing: -.02em;
}
.app-avatar {
  width: 2rem; height: 2rem; border-radius: 50%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem; font-weight: 700; color: rgba(255,255,255,.85);
}
.ring-widget {
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
  margin: .5rem auto;
  width: 11rem; height: 11rem;
  position: relative;
}
.ring-widget .ring-svg {
  position: absolute; inset: 0; width: 100%; height: 100%; transform: rotate(-90deg);
}
.ring-widget .progress-ring {
  transition: stroke-dashoffset .6s;
}
.ring-widget .ring-center {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  position: relative; z-index: 1;
}
.counter-val {
  font-family: var(--font-display); font-weight: 800;
  font-size: 2rem; color: #fff;
  letter-spacing: -.04em;
  line-height: 1;
}
.ring-label {
  margin-top: .35rem;
  font-size: .5rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .14em;
  color: rgba(255,255,255,.5);
}
.ring-pre-label {
  text-align: center;
  font-size: .5rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .16em;
  color: rgba(1,4,24,.55);
  margin: .55rem auto -.15rem;
}
[data-theme="dark"] .ring-pre-label { color: rgba(255,255,255,.5); }
.widget-row {
  display: flex; align-items: center; gap: .75rem;
}
.widget-icon {
  width: 2rem; height: 2rem; border-radius: .625rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.widget-icon.blue {
  background: linear-gradient(135deg, rgba(1,4,24,.2), rgba(1,4,24,.05));
  border: 1px solid rgba(1,4,24,.25);
  color: #010418;
}
.widget-icon.blue-light {
  background: linear-gradient(135deg, rgba(1,4,24,.2), rgba(1,4,24,.05));
  border: 1px solid rgba(1,4,24,.25);
  color: #010418;
}
.widget-icon svg { width: 1rem; height: 1rem; }
.widget-text { flex: 1; }
.widget-title {
  font-size: .75rem; font-weight: 600;
  color: rgba(255,255,255,.85);
}
.widget-sub {
  font-size: .65rem; color: rgba(255,255,255,.5);
  margin-top: 1px;
}

/* card-left-text styling */
.card-left-text { order: 3; padding: 1rem; }
@media (min-width: 1024px) { .card-left-text { order: 1; padding: 0 1.5rem; } }
.card-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700; letter-spacing: -.02em;
  margin-bottom: 1rem;
}
.card-left-text p {
  font-family: var(--font-body);
  font-size: 1rem; line-height: 1.6;
  margin-bottom: 1.5rem;
}
.card-actions {
  display: flex; flex-wrap: wrap; gap: .75rem;
}

/* Logo strip standalone section — strakke padding, geen losse witruimte */
.logo-strip-section {
  padding: 0.5rem 0 !important;
}

/* ── Light theme overrides voor cinematic hero card ──────────── */
[data-theme="light"] .main-card {
  background: linear-gradient(145deg, #FFFFFF 0%, #F4F6FB 100%) !important;
  border: 1px solid rgba(1,4,24,.08) !important;
  box-shadow:
    0 40px 100px -20px rgba(1,4,24,0.18),
    0 20px 40px -20px rgba(1,4,24,0.12),
    inset 0 1px 2px rgba(255,255,255,1) !important;
}
[data-theme="light"] .text-3d-matte {
  color: #010418;
  text-shadow: 0 10px 30px rgba(1,4,24,0.10), 0 2px 4px rgba(1,4,24,0.06);
}
[data-theme="light"] .text-silver-matte {
  background: linear-gradient(180deg, #010418 0%, rgba(1,4,24,.55) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
[data-theme="light"] .card-brand-name {
  background: linear-gradient(180deg, #010418 0%, #4A5568 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 6px 16px rgba(1,4,24,0.15));
}
[data-theme="light"] .card-left-text h3,
[data-theme="light"] .card-tagline { color: #010418; }
[data-theme="light"] .card-left-text p { color: rgba(1,4,24,.65); }

/* iPhone bezel content stays dark (phones are dark) */
[data-theme="light"] .iphone-bezel { background: #0A0A0F; }

/* Floating badges in light: subtiel glass met donkere tekst */
[data-theme="light"] .floating-badge {
  background: linear-gradient(135deg, rgba(255,255,255,.95) 0%, rgba(255,255,255,.85) 100%);
  border: 1px solid rgba(1,4,24,.08);
  box-shadow:
    0 0 0 1px rgba(1,4,24,.04),
    0 25px 50px -12px rgba(1,4,24,.25),
    inset 0 1px 1px rgba(255,255,255,1);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}
[data-theme="light"] .badge-title { color: #010418; }
[data-theme="light"] .badge-sub { color: rgba(1,4,24,.55); }

/* ── 3D laptop scroll card — light theme met grid pattern ──────── */
[data-theme="light"] .scroll-laptop-card {
  background: #FFFFFF !important;
  border: 1px solid rgba(1,4,24,.12) !important;
  box-shadow:
    0 1px 0 rgba(255,255,255,1),
    0 4px 8px rgba(1,4,24,.04),
    0 20px 40px rgba(1,4,24,.08),
    0 40px 80px rgba(1,4,24,.10) !important;
}
[data-theme="light"] .scroll-laptop-card-inner {
  background:
    linear-gradient(to right, rgba(1,4,24,0.06) 1px, transparent 1px) 0 0 / 56px 56px,
    linear-gradient(to bottom, rgba(1,4,24,0.06) 1px, transparent 1px) 0 0 / 56px 56px,
    #FFFFFF !important;
}
/* Voorkom dat de force-transparent rule de site-footer in de card uit zet */
.scroll-laptop-card-inner .site-footer {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}
.scroll-laptop-wrap {
  background: transparent !important;
  padding: 4rem 0 2rem;
}

/* ═══════════════════════════════════════════════════════════════════
   HERO STANDALONE — geen card, geen intro animatie, light theme
   ═══════════════════════════════════════════════════════════════════ */
.hero-standalone {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 80vh;
  padding: 6rem var(--px) 1rem;
  overflow: visible;
  display: flex; align-items: center;
}
.hero-standalone-grid {
  position: relative;
  width: 100%; max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-standalone-grid {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
  }
}
.hero-standalone-text { position: relative; z-index: 2; }
.hero-standalone-phone {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  padding: 2rem 0;
}

/* ── iPhone in LIGHT theme — content matcht site (white + blue) ─ */
.iphone-screen-light {
  background: #FFFFFF !important;
  color: #010418;
}
.phone-app-light .phone-widget {
  background: linear-gradient(180deg, #FFFFFF 0%, #F4F6FB 100%);
  border: 1px solid rgba(1,4,24,.08);
  box-shadow: 0 2px 8px rgba(1,4,24,.04), inset 0 1px 1px rgba(255,255,255,1);
}
.phone-app-light .app-header {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}
.phone-app-light .app-header-eyebrow {
  color: var(--accent);
  font-weight: 700;
}
.phone-app-light .app-header-name { color: #010418; }
.phone-app-light .app-avatar {
  background: rgba(1,4,24,.1);
  border: 1px solid rgba(1,4,24,.18);
  color: var(--accent);
}
/* MVG-logo in het avatar-rondje — zelfde blauwe tint als de nav-pill */
.app-avatar-img {
  width: 1.5rem;
  height: 1.5rem;
  display: block;
  background-color: #010418;
  -webkit-mask: url(../images/MVGlogolight.png) center / contain no-repeat;
  mask: url(../images/MVGlogolight.png) center / contain no-repeat;
}
.phone-app-light .ring-widget {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  /* filter:drop-shadow van de basis-.ring-widget verwijderen — die
     rendert tijdens de hero parallax/tilt soms als rechthoekige box. */
  filter: none !important;
}
.phone-app-light .counter-val { color: #010418; }
.phone-app-light .ring-label { color: rgba(1,4,24,.55); }
.phone-app-light .widget-title { color: #010418; }
.phone-app-light .widget-sub { color: var(--accent); font-weight: 600; }
.phone-app-light .widget-icon.blue {
  background: rgba(1,4,24,.10);
  border-color: rgba(1,4,24,.18);
  color: var(--accent);
}
.phone-app-light .widget-icon.blue-light {
  background: rgba(1,4,24,.10);
  border-color: rgba(1,4,24,.18);
  color: var(--accent-light);
}
/* Screen glare iets gedempt voor de witte achtergrond */
.iphone-screen-light .screen-glare {
  background: linear-gradient(110deg, rgba(255,255,255,.5) 0%, rgba(255,255,255,0) 45%);
}

/* Floating badges blijven floating, op correcte plek in nieuwe layout */
.hero-standalone-phone .mockup-wrapper { position: relative; }
.hero-standalone-phone .floating-badge {
  position: absolute;
  background: linear-gradient(135deg, rgba(255,255,255,.95) 0%, rgba(255,255,255,.85) 100%);
  border: 1px solid rgba(1,4,24,.08);
  box-shadow:
    0 0 0 1px rgba(1,4,24,.04),
    0 20px 40px -12px rgba(1,4,24,.18),
    inset 0 1px 1px rgba(255,255,255,1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.hero-standalone-phone .badge-left  { top: 1.5rem;    left: -2rem;  }
.hero-standalone-phone .badge-right { bottom: 3rem;   right: -2rem; }
@media (min-width: 1024px) {
  .hero-standalone-phone .badge-left  { top: 3rem;  left: -3rem; }
  .hero-standalone-phone .badge-right { bottom: 4rem; right: -3rem; }
}
.hero-standalone-phone .badge-title { color: #010418; }
.hero-standalone-phone .badge-sub   { color: rgba(1,4,24,.55); }

/* Geen overflow:hidden meer op de hero — anders worden de badges geclipt */
.hero-section.hero-standalone { overflow: visible !important; height: auto; }

/* ── Pricing — simpele centered cards (Motion-style spring-in) ── */
.pricing-simple-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  margin: 3rem auto 0;
  width: 100%;
}
@media (min-width: 768px) {
  .pricing-simple-grid {
    flex-direction: row;
    align-items: stretch;
  }
}
.pricing-simple-card {
  position: relative;
  width: 24rem;
  max-width: 100%;
  background: #FFFFFF;
  color: #010418;
  border: 1px solid rgba(1,4,24,.10);
  border-radius: 0.75rem;
  padding: 2.5rem 2.75rem;
  text-align: center;
  display: flex; flex-direction: column;
  box-shadow: 0 1px 3px rgba(1,4,24,.04);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.35s ease;
  /* spring-in initial state (JS toggles 'is-in' class for animate) */
  opacity: 0;
  transform: scale(0.9);
}
.pricing-simple-card.is-in { opacity: 1; transform: scale(1); }
.pricing-simple-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(1,4,24,.08), 0 2px 8px rgba(1,4,24,.04);
}
.pricing-simple-card.is-in:hover { transform: scale(1.05); }
.pricing-simple-feature {
  border-color: var(--accent);
  box-shadow: 0 4px 12px rgba(1,4,24,.10), 0 1px 3px rgba(1,4,24,.06);
}
.pricing-simple-badge {
  position: absolute;
  top: -.7rem; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .75rem;
  border-radius: 9999px;
}
.pricing-simple-price {
  margin-bottom: .5rem;
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -.02em;
  line-height: 1;
}
.pricing-simple-name {
  color: rgba(1,4,24,.55);
  font-family: var(--font-body);
  font-size: .975rem;
  margin-bottom: 1.5rem;
}
.pricing-simple-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  text-align: left;
  flex: 1;
}
.pricing-simple-list li {
  font-family: var(--font-body);
  font-size: .925rem;
  color: rgba(1,4,24,.75);
  padding: .45rem 0;
  position: relative;
  padding-left: 1.6rem;
}
.pricing-simple-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.pricing-simple-cta {
  width: 100%;
  justify-content: center;
}

/* ── Hero headline — rotating word effect (motion / spring) ───── */
.hero-headline .word-rotator {
  position: relative;
  display: block;
  height: 1.1em;
  overflow: hidden;
  margin-top: .15em;
}
.hero-headline .word-rotator .word {
  position: absolute;
  top: 0; left: 0;
  opacity: 0;
  transform: translateY(120%);
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--accent);
  white-space: nowrap;
  will-change: transform, opacity;
  /* Spring-achtige curve voor ease-out, snappy fade */
  transition:
    opacity 0.45s ease-out,
    transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.hero-headline .word-rotator .word.is-active {
  opacity: 1;
  transform: translateY(0);
}
.hero-headline .word-rotator .word.is-prev {
  opacity: 0;
  transform: translateY(-120%);
}

/* ── Sparkles particles bg achter de logo-strook ──────────────── */
.logo-strip-section {
  position: relative;
  overflow: hidden;
}
.logo-sparkles-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.logo-strip-section .client-marquee {
  position: relative;
  z-index: 1;
}

/* ── Getinte logo's (#010418) ─────────────────────────────────────
   De bron-PNG's worden als CSS-mask gebruikt: de vorm (alfa-kanaal)
   maskeert een effen #010418 achtergrond → exact de juiste kleur. */
.nav-logo-img,
.footer-logo-img {
  display: block;
  background-color: #010418;
}
.nav-logo-img {
  width: 32px;
  height: 32px;
  -webkit-mask: url(../images/MVGlogolight.png) center / contain no-repeat;
  mask: url(../images/MVGlogolight.png) center / contain no-repeat;
}
.footer-logo-img {
  width: 87.66px;
  height: 48px;
  -webkit-mask: url(../images/MVGlogofade.png) center / contain no-repeat;
  mask: url(../images/MVGlogofade.png) center / contain no-repeat;
}

/* ═══════════════════════════════════════════════════════════════════
   HERO CENTERED — phone in midden, logos als marquee band erachter
   ═══════════════════════════════════════════════════════════════════ */
.hero-centered {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 11rem var(--px) 9rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Logos marquee — laag onderaan, deels onder de viewport-rand */
.hero-marquee-bg {
  position: absolute;
  bottom: -4.5rem; left: 0; right: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 1;
}
.hero-marquee-bg .client-marquee-track { padding: 0.5rem 0; }
.hero-marquee-bg .client-marquee { margin-top: 0; }

/* Centered content: text → phone → buttons */
.hero-centered-content {
  position: relative;
  z-index: 2;
  display: flex; flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  gap: 2.5rem;
}
.hero-centered-text { max-width: 640px; }
.hero-headline-center { text-align: center; max-width: 100%; }
.hero-headline-center .word-rotator { text-align: center; display: block; }
.hero-headline-center .word-rotator .word { left: 50%; transform: translate(-50%, 120%); }
.hero-headline-center .word-rotator .word.is-active { transform: translate(-50%, 0); }
.hero-headline-center .word-rotator .word.is-prev { transform: translate(-50%, -120%); }
.hero-sub-center { margin: 0 auto; max-width: 56ch; text-align: center; }
.hero-centered-phone {
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
/* Schaal-wrapper om de telefoon. display:contents → op desktop/tablet
   onzichtbaar voor de layout (niets verandert). Op telefoon wordt het
   een echt blok dat de hele telefoon-unit kleiner schaalt. */
.hero-phone-scale { display: contents; }
.hero-actions-center { justify-content: center; }

/* iPhone in nieuwe layout — geen 2-koloms grid meer nodig */
.hero-centered-phone .floating-badge {
  position: absolute;
  background: linear-gradient(135deg, rgba(255,255,255,.95) 0%, rgba(255,255,255,.85) 100%);
  border: 1px solid rgba(1,4,24,.08);
  box-shadow:
    0 0 0 1px rgba(1,4,24,.04),
    0 20px 40px -12px rgba(1,4,24,.18),
    inset 0 1px 1px rgba(255,255,255,1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.hero-centered-phone .badge-left  { top: 1.5rem;  left: -3rem; }
.hero-centered-phone .badge-right { bottom: 3rem; right: -3rem; }
@media (max-width: 640px) {
  /* Compacter + verder naar buiten → de telefoon-content blijft zichtbaar,
     de cards overlappen alleen nog de rand van de telefoon. */
  /* Náást de circle tegen de schermrand — overlappen alleen de
     buitenrand van de ring; het midden + "847" blijft vrij. */
  .hero-centered-phone .floating-badge {
    padding: 0.5rem 0.6rem;
    gap: 0.5rem;
  }
  .hero-centered-phone .badge-icon { width: 2rem; height: 2rem; }
  .hero-centered-phone .badge-icon svg { width: 15px; height: 15px; }
  .hero-centered-phone .badge-title { font-size: 0.72rem; }
  .hero-centered-phone .badge-sub   { font-size: 0.6rem; }
  .hero-centered-phone .badge-left  {
    top: 2.5rem; bottom: auto;
    left: calc(50% - 185px); right: auto;
  }
  .hero-centered-phone .badge-right {
    top: 14rem; bottom: auto;
    right: calc(50% - 185px); left: auto;
  }
}
.hero-centered-phone .badge-title { color: #010418; }
.hero-centered-phone .badge-sub   { color: rgba(1,4,24,.55); }

/* ── Hero 3-koloms layout: tekst links | phone midden | tekst rechts ─ */
.hero-3col-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .hero-3col-content {
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
  }
}
/* Linker tekstkolom — rechts uitgelijnd, "wijst" naar phone in midden */
.hero-text-left { text-align: right; }
@media (max-width: 1023px) { .hero-text-left { text-align: center; } }
.hero-text-left .eyebrow { justify-content: flex-end; }
@media (max-width: 1023px) {
  .hero-text-left .eyebrow { justify-content: center; }
}
/* Heading rechts uitgelijnd op left col */
.hero-headline-right { text-align: right; max-width: 100%; }
@media (max-width: 1023px) { .hero-headline-right { text-align: center; } }
.hero-headline-right .word-rotator {
  display: block;
  text-align: right;
}
.hero-headline-right .word-rotator .word {
  left: auto;
  right: 0;
  transform: translateY(120%);
}
.hero-headline-right .word-rotator .word.is-active { transform: translateY(0); }
.hero-headline-right .word-rotator .word.is-prev   { transform: translateY(-120%); }
@media (max-width: 1023px) {
  .hero-headline-right .word-rotator { text-align: center; }
  .hero-headline-right .word-rotator .word {
    left: 50%; right: auto;
    transform: translate(-50%, 120%);
  }
  .hero-headline-right .word-rotator .word.is-active { transform: translate(-50%, 0); }
  .hero-headline-right .word-rotator .word.is-prev   { transform: translate(-50%, -120%); }
}

/* Rechter tekstkolom — links uitgelijnd, sub + buttons */
.hero-text-right { text-align: left; }
@media (max-width: 1023px) { .hero-text-right { text-align: center; } }
.hero-text-right .hero-sub {
  margin-bottom: 1.5rem;
  max-width: 36ch;
}
@media (max-width: 1023px) {
  .hero-text-right .hero-sub { margin-left: auto; margin-right: auto; }
}
.hero-text-right .hero-actions {
  justify-content: flex-start;
}
@media (max-width: 1023px) {
  .hero-text-right .hero-actions { justify-content: center; }
}

/* ── Hero 2-koloms: tekst links | telefoon rechts (oude layout) ── */
.hero-2col-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .hero-2col-content {
    grid-template-columns: 1.05fr 1fr;
    gap: 4rem;
  }
}
.hero-text-block { text-align: left; }
@media (max-width: 1023px) {
  .hero-text-block { text-align: center; }
  .hero-text-block .eyebrow { justify-content: center; }
  .hero-text-block .hero-actions { justify-content: center; }
}
.hero-text-block .hero-headline { text-align: left; }
.hero-text-block .hero-headline .word-rotator {
  display: block; text-align: left;
}
.hero-text-block .hero-headline .word-rotator .word {
  left: 0; right: auto;
  transform: translateY(120%);
}
.hero-text-block .hero-headline .word-rotator .word.is-active { transform: translateY(0); }
.hero-text-block .hero-headline .word-rotator .word.is-prev   { transform: translateY(-120%); }
@media (max-width: 1023px) {
  .hero-text-block .hero-headline { text-align: center; }
  .hero-text-block .hero-headline .word-rotator { text-align: center; }
  .hero-text-block .hero-headline .word-rotator .word {
    left: 50%; right: auto;
    transform: translate(-50%, 120%);
  }
  .hero-text-block .hero-headline .word-rotator .word.is-active { transform: translate(-50%, 0); }
  .hero-text-block .hero-headline .word-rotator .word.is-prev   { transform: translate(-50%, -120%); }
}
.hero-text-block .hero-sub { margin-bottom: 1.75rem; max-width: 46ch; }
@media (max-width: 1023px) {
  .hero-text-block .hero-sub { margin-left: auto; margin-right: auto; }
}

/* ═══════════════════════════════════════════════════════════════════
   HERO — mobiele layout & spacing
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 1023px) {
  /* Vaste 100vh → auto: anders knipt overflow:hidden de gestapelde
     telefoon + marquee af op kleinere schermen. */
  .hero-section.hero-centered {
    height: auto;
    min-height: 100svh;
    padding-top: 7.5rem;
    padding-bottom: 7.5rem;
  }
  .hero-2col-content { gap: 2.5rem; }

  /* Hero-telefoon (280×580 bezel) schalen — past anders nooit netjes
     in de gestapelde mobiele layout. */
  .hero-centered-phone .iphone-bezel {
    transform: scale(0.72);
    transform-origin: center;
  }
  .hero-centered-phone .mockup-wrapper { height: 430px; }
}

/* Floating badges alleen op tablet verbergen — op telefoon (≤640) en
   desktop (≥1024) staan ze wel. */
@media (min-width: 641px) and (max-width: 1023px) {
  .hero-centered-phone .floating-badge { display: none; }
}

@media (max-width: 640px) {
  .hero-section.hero-centered {
    padding-top: 6.5rem;
    padding-bottom: 3rem;
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }
  /* Content vult exact de eerste viewport; rijen bovenaan vastzetten
     (niet uitrekken) zodat headline + telefoon tegen elkaar staan. */
  .hero-2col-content {
    gap: 1.5rem;
    min-height: calc(100svh - 6.5rem);
    align-content: start;
  }

  /* Tekstblok valt achter de telefoon (z-index 1 < telefoon z-index 2) */
  .hero-text-block {
    position: relative;
    z-index: 1;
  }
  /* Eyebrow "MVG Marketing Agency" weg op mobiel */
  .hero-text-block .eyebrow { display: none; }

  /* Headline gecentreerd op één rechte regel. Het roterende woord
     staat inline; JS geeft de rotator exact de breedte van het actieve
     woord (vloeiend) → "Marketing die <woord>" blijft perfect midden. */
  .hero-text-block .hero-headline {
    white-space: nowrap;
    text-align: center;
    /* basis-CSS heeft max-width:18ch → smal links-uitgelijnd blok.
       Op mobiel weghalen zodat de h1 volle breedte pakt en de tekst
       echt in het midden staat. */
    max-width: none;
    width: 100%;
    font-size: clamp(1.95rem, 9vw, 3.1rem);
    margin-bottom: 0;
  }
  .hero-text-block .hero-headline .word-rotator {
    display: inline-block;
    width: auto;
    margin-top: 0;
    vertical-align: bottom;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .hero-text-block .hero-headline .word-rotator .word {
    left: 50%; right: auto;
    transform: translate(-50%, 120%);
  }
  .hero-text-block .hero-headline .word-rotator .word.is-active {
    transform: translate(-50%, 0);
  }
  .hero-text-block .hero-headline .word-rotator .word.is-prev {
    transform: translate(-50%, -120%);
  }

  /* Sub-tekst weg op mobiel */
  .hero-text-block .hero-sub { display: none; }

  /* Telefoon staat vóór de headline en overlapt 'm net iets — de
     headline valt er dus achter weg. */
  .hero-centered-phone {
    margin-top: -1.8rem;
    z-index: 2;
  }
  /* Hele telefoon-unit (bezel + badges + knoppen) kleiner schalen.
     Schaalt vanaf de bovenkant zodat de overlap met de headline
     gelijk blijft; margin-bottom haalt de lege ruimte na het
     verkleinen weer weg. */
  .hero-phone-scale {
    display: block;
    width: 100%;
    transform: scale(0.8);
    transform-origin: 50% 0%;
    margin-bottom: -108px;
  }

  /* CTA-knoppen op de telefoon (JS verplaatst ze in .mockup-wrapper) */
  .hero-centered-phone .hero-actions {
    position: absolute;
    z-index: 50;
    left: 50%;
    bottom: 80px;
    transform: translateX(-50%);
    width: 82%;
    max-width: 216px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 0.6rem;
  }
  .hero-centered-phone .hero-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 0.8rem 1rem;
    font-size: 0.85rem;
  }

  /* Telefoon groter op mobiel */
  .hero-centered-phone .iphone-bezel { transform: scale(0.92); }
  .hero-centered-phone .mockup-wrapper { height: 540px; }
  /* Widget-rijen (Instagram bereik / TikTok views) weg op mobiel */
  .hero-centered-phone .widget-row { display: none; }

  /* Marquee groter, verankerd aan de onderkant van de viewport,
     achter de telefoon (z-index 1 < content z-index 2). */
  /* Marquee in de hero-viewport, onder de telefoon; de bovenrand
     valt deels achter de telefoon weg (telefoon heeft z-index 2). */
  .hero-marquee-bg { bottom: calc(100% - 100svh - 3rem); }
  /* Logo's even groot als de Sikkens-badge oogt — de woordmerken
     hebben witruimte in hun vierkante PNG, dus krijgen ze een groter
     vlak; Sikkens (dicht gevuld) blijft compacter. */
  .hero-marquee-bg .client-logo img { height: clamp(175px, 52vw, 290px); }
  .hero-marquee-bg .client-logo-sm img { height: clamp(85px, 25vw, 135px); }
  /* Simonis (wide landscape) op mobile — 4× kleiner dan de andere
     logo's, want de 2.58:1 breedte maakt 'm anders te dominant. */
  .hero-marquee-bg .client-logo-wide img { height: clamp(44px, 13vw, 73px); }
  .hero-marquee-bg .client-logo { margin-right: clamp(0.35rem, 2vw, 0.9rem); }
}

/* ═══════════════════════════════════════════════════════════════════
   ABOUT CAROUSEL — foto links, overlappende card rechts
   ═══════════════════════════════════════════════════════════════════ */
.about-carousel {
  width: 100%;
  max-width: 1000px;
  margin: 2.5rem auto 0;
}
.ac-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .ac-stage { flex-direction: row; align-items: center; justify-content: center; }
}
/* Foto */
.ac-image {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1 / 1;
  border-radius: 1.5rem;
  overflow: hidden;
  background: #E8EDF6;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .ac-image { width: 420px; height: 420px; }
}
.ac-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.4s ease;
}
.ac-img.is-fading { opacity: 0; }
/* Overlappende card */
.ac-card {
  background: #FFFFFF;
  border: 1px solid rgba(1,4,24,.08);
  border-radius: 1.5rem;
  box-shadow: 0 20px 60px -15px rgba(1,4,24,.22), 0 4px 16px rgba(1,4,24,.06);
  padding: 2rem;
  z-index: 2;
  flex: 0 1 auto;
  width: 100%;
  margin-top: -3rem;
  transition: opacity 0.4s ease;
}
@media (min-width: 768px) {
  .ac-card {
    margin-top: 0;
    margin-left: -5rem;
    max-width: 28rem;
    padding: 2.5rem;
  }
}
.ac-card.is-fading { opacity: 0; }
.ac-card-head { margin-bottom: 1.25rem; }
.ac-name {
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 700;
  color: #010418; letter-spacing: -.02em;
  margin-bottom: .35rem;
}
.ac-title {
  font-family: var(--font-body);
  font-size: .9rem; font-weight: 500;
  color: var(--accent);
}
.ac-desc {
  font-family: var(--font-body);
  font-size: 1rem; line-height: 1.65;
  color: rgba(1,4,24,.7);
  margin-bottom: 1.75rem;
}
.ac-card-actions {
  display: flex; flex-wrap: wrap; gap: .75rem;
}
/* Onderste navigatie */
.ac-nav {
  display: flex; align-items: center; justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}
.ac-btn {
  width: 3rem; height: 3rem;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid rgba(1,4,24,.14);
  box-shadow: 0 2px 8px rgba(1,4,24,.06);
  color: #010418;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .2s, color .2s, transform .15s;
}
.ac-btn:hover { background: var(--accent); border-color: var(--accent); color: #FFFFFF; transform: scale(1.06); }
.ac-btn:active { transform: scale(.96); }
.ac-dots { display: flex; gap: .5rem; }
.ac-dot {
  width: .75rem; height: .75rem;
  border-radius: 50%;
  background: rgba(1,4,24,.2);
  border: none; padding: 0;
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.ac-dot.is-active { background: var(--accent); transform: scale(1.15); }

/* ── Mobiel: about-Marvin compacter + Voorbeelden-telefoon groter ── */
@media (max-width: 640px) {
  /* About-Marvin carousel kleiner */
  .about-carousel { margin-top: 1.5rem; }
  .ac-image { max-width: 250px; }
  .ac-card {
    width: 90%;
    max-width: 300px;
    margin: -2.5rem auto 0;
    padding: 1.5rem;
  }
  .ac-name { font-size: 1.3rem; }
  .ac-title { font-size: 0.82rem; }
  .ac-desc { font-size: 0.9rem; line-height: 1.55; margin-bottom: 1.25rem; }
  .ac-card-head { margin-bottom: 0.9rem; }
  .ac-nav { margin-top: 1.5rem; gap: 1rem; }
  .ac-btn { width: 2.6rem; height: 2.6rem; }

  /* Voorbeelden-telefoon groter */
  .voorbeelden-stage .mockup-wrapper { height: 545px; }
  .voorbeelden-stage .mockup-inner { transform: scale(0.92); }
  /* Extra ruimte onder de Voorbeelden-telefoon — de pijltjes hangen
     onder de telefoon, dus meer padding zodat Werkgebied niet botst. */
  .voorbeelden-section { padding-bottom: 8rem; }

  /* Werkgebied gecentreerd */
  .region-section .eyebrow { display: flex; justify-content: center; }
  .region-section .section-heading,
  .region-section .section-intro { text-align: center; }
  .region-section .section-intro { margin-left: auto; margin-right: auto; }
}
