/* ============================================================
   NL MOTION — styles
   Donker als basis, afgewisseld met paper-secties.
   Koppen: Bebas Neue Expanded Pro (fallback Bebas Neue), -1% ls.
   Body: Inter Tight, -3% ls. Buttons: Bebas, 12px.
   ============================================================ */

/* Als de licentie-files aanwezig zijn, winnen deze; anders valt
   de heading-stack terug op de Google-versie van Bebas Neue. */
@font-face {
  font-family: "Bebas Neue Expanded Pro";
  src: url("fonts/BebasNeueExpandedPro.woff2") format("woff2");
  font-weight: 400 700;
  font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  --font-display: "Bebas Neue Expanded Pro", "Bebas Neue", sans-serif;
  --font-body: "Inter Tight", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  /* kleuren */
  --ink: #0c0c0e;
  --ink-soft: #141417;
  --ink-card: #17171b;
  --paper: #f3f2ee;
  --paper-soft: #eae8e1;
  --on-dark: #f4f4f1;
  --on-dark-mute: rgba(244, 244, 241, 0.62);
  --on-light: #141416;
  --on-light-mute: rgba(20, 20, 22, 0.60);
  --line-dark: rgba(244, 244, 241, 0.14);
  --line-light: rgba(20, 20, 22, 0.14);
  --accent: #2b50ff; /* enige accentkleur, spaarzaam. Pas hier aan om te swappen. */

  /* type-schaal */
  --fs-display: clamp(2.5rem, 1.7rem + 3.4vw, 4.5rem);
  --fs-h2: clamp(2rem, 1.3rem + 3vw, 3.5rem);
  --fs-h3: clamp(1.375rem, 1.2rem + 0.7vw, 1.625rem);
  --fs-lead: clamp(1.0625rem, 1rem + 0.3vw, 1.25rem);
  --fs-body: 1.0625rem;
  --fs-sm: 0.9375rem;
  --fs-kicker: 0.75rem;

  /* Consistente leesbreedtes (overal hetzelfde, responsive) */
  --measure: 64ch;       /* lopende body-tekst */
  --measure-lead: 58ch;  /* inleidende lead-tekst */
  --measure-h1: 36ch;    /* H1-koppen (display-font, telt breed) */
  --measure-h2: 38ch;    /* H2-koppen (display-font, telt breed) */

  /* spacing */
  --space-section: clamp(5rem, 3rem + 8vw, 10rem);
  --container: 1600px;
  --gutter: clamp(1.25rem, 5vw, 4rem);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--on-dark);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.6;
  letter-spacing: -0.02em;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
/* Icon-sprite volledig uit de flow houden (voorkomt een inline line-box bovenaan). */
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
ul, ol { margin: 0; padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { margin: 0; }
p { margin: 0; }

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.section { padding-block: var(--space-section); position: relative; }
.section--paper { background: var(--paper); color: var(--on-light); }
.section--dark { background: var(--ink); color: var(--on-dark); }

/* ---------- Typografie ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
/* Accent-woorden in koppen lopen mee met de kop: geen italic, geen ander font. */
.display em {
  font-style: normal;
  font-family: inherit;
  font-weight: inherit;
  text-transform: inherit;
  letter-spacing: inherit;
}

.section__title { font-size: var(--fs-h2); max-width: var(--measure-h2); text-wrap: balance; }
.section--paper .section__title em { color: var(--on-light); }

.kicker {
  font-size: var(--fs-kicker);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
  color: var(--on-light-mute);
  margin-bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
}
.kicker--light { color: var(--on-dark-mute); }
.kicker__mark { color: var(--accent); font-weight: 700; }

/* ---------- Buttons ---------- */
.btn {
  --btn-fg: var(--on-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.01em;
  padding: 0 1.75rem;
  height: 52px;
  border: 1px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }

.btn--primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn--primary:hover { background: #1f3ee0; border-color: #1f3ee0; }

.btn--ghost {
  background: transparent;
  color: var(--on-light);
  border-color: var(--line-light);
}
.btn--ghost:hover { border-color: var(--on-light); }

.btn--ghost-light {
  color: var(--on-dark);
  border-color: var(--line-dark);
}
.btn--ghost-light:hover { border-color: var(--on-dark); }

/* ---------- Media placeholders ---------- */
.media {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(160deg, #202024, #0f0f12);
  border: 1px solid var(--line-dark);
  border-radius: 3px;
  display: grid;
  place-items: center;
  margin: 0;
}
.media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.media__note {
  position: relative;
  z-index: 1;
  max-width: 22ch;
  text-align: center;
  font-size: var(--fs-sm);
  letter-spacing: -0.02em;
  color: rgba(244, 244, 241, 0.5);
  padding: 1.5rem;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(12, 12, 14, 0.85);
  backdrop-filter: blur(10px);
  border-bottom-color: var(--line-dark);
}
.nav__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 76px;
}
.nav__logo {
  display: inline-flex;
  align-items: center;
  color: var(--on-dark);
}
.nav__logo img { height: 40px; width: auto; }
.footer__brand .nav__logo img { height: 48px; }
.nav__links {
  display: flex;
  gap: 2rem;
  margin-left: auto;
  font-size: var(--fs-sm);
  color: var(--on-dark-mute);
}
.nav__links a { transition: color 0.2s ease; }
.nav__links a:hover { color: var(--on-dark); }
.nav__cta { height: 44px; }
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  margin-left: auto;
  cursor: pointer;
}
.nav__toggle span {
  width: 24px;
  height: 2px;
  background: var(--on-dark);
}

/* Split-line masking voor de hero-titel reveal */
.split-line { overflow: hidden; padding-bottom: 0.08em; }

/* ============================================================
   1. HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: calc(var(--space-section) + 40px);
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #0a0a0c;
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 8, 10, 0.92) 8%, rgba(8, 8, 10, 0.45) 55%, rgba(8, 8, 10, 0.6) 100%);
}

.hero__grid-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: repeating-linear-gradient(
    to right,
    var(--line-dark) 0,
    var(--line-dark) 1px,
    transparent 1px,
    transparent calc(100% / 6)
  );
  opacity: 0.5;
  pointer-events: none;
}

.hero__inner { position: relative; z-index: 2; }
.hero__title {
  font-size: var(--fs-display);
  max-width: var(--measure-h1);
  margin-bottom: 1.5rem;
}
.hero__lead {
  max-width: var(--measure-lead);
  color: var(--on-dark-mute);
  font-size: var(--fs-lead);
  margin-bottom: 2.5rem;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.hero__trust { margin-top: clamp(2.5rem, 5vw, 4rem); }
.hero__trust-label {
  font-size: var(--fs-sm);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--on-dark-mute);
  margin-bottom: 1.25rem;
}
.hero__logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(1.5rem, 3.5vw, 3rem);
}
.hero__logo { display: flex; align-items: center; }
/* Logo's zijn in kleur aangeleverd; op de donkere hero forceren we ze
   monochroom-wit zodat ze leesbaar en consistent ogen. */
.hero__logo img {
  height: clamp(22px, 2vw, 30px);
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.8;
  transition: opacity 0.25s ease;
}
.hero__logo:hover img { opacity: 1; }
.hero__logo--tall img { height: clamp(32px, 3vw, 42px); }
.hero__logo--mark img { height: clamp(28px, 2.6vw, 36px); }
.hero__scroll {
  position: absolute;
  right: var(--gutter);
  bottom: var(--space-section);
  z-index: 2;
  font-size: var(--fs-kicker);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--on-dark-mute);
  writing-mode: vertical-rl;
}

/* ============================================================
   2. PROBLEEM
   ============================================================ */
.problem__head { grid-column: 1 / 8; }
.problem__body {
  grid-column: 8 / -1;
  display: grid;
  gap: 1.5rem;
  max-width: var(--measure);
  color: var(--on-light-mute);
}
.problem__body p { color: inherit; }
.problem__body p:first-child { color: var(--on-light); font-size: var(--fs-lead); }

/* ============================================================
   4. METHODE
   ============================================================ */
.method { overflow: hidden; }
.method__ghost {
  position: absolute;
  top: -0.15em;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: clamp(8rem, 26vw, 22rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: rgba(244, 244, 241, 0.03);
  pointer-events: none;
  white-space: nowrap;
}
.method__head { position: relative; z-index: 1; margin-bottom: clamp(3rem, 6vw, 5rem); }
.method__steps {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
}
.step {
  position: relative;
  padding-top: 2rem;
  border-top: 1px solid var(--line-dark);
}
/* Accent-lijn die over de bovenrand groeit op basis van de scroll (--line: 0..1) */
.step::after {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(var(--line, 0));
  transform-origin: left center;
  transition: transform 0.12s linear;
}
/* Bolletje boven het nummer, op de tijdlijn */
.step__dot {
  position: absolute;
  top: 0;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--ink);
  border: 2px solid var(--line-dark);
  transform: translateY(-50%);
  transition: border-color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
  z-index: 1;
}
.step.is-active .step__dot {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 0 5px rgba(43, 80, 255, 0.16);
}
.step__num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--accent);
  letter-spacing: 0.02em;
  margin-bottom: 2.5rem;
}
.step__title {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: var(--fs-h3);
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}
.step__text { color: var(--on-dark-mute); max-width: 34ch; }

/* ============================================================
   5. DIENSTEN
   ============================================================ */
.services__head { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 2.5vw, 2rem);
}
.service-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line-light);
  border-radius: 3px;
  padding: 1.25rem 1.25rem 1.5rem;
  transition: border-color 0.25s ease;
}
.service-card:hover { border-color: rgba(20, 20, 22, 0.35); }
.service-card__media {
  aspect-ratio: 4 / 3;
  margin-bottom: 1.5rem;
}
.service-card__audience {
  font-size: var(--fs-kicker);
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
}
.service-card__title {
  font-family: var(--font-display);
  font-weight: 300; /* één weight lager dan de overige display-koppen */
  text-transform: uppercase;
  font-size: var(--fs-h3);
  letter-spacing: -0.005em;
  margin-bottom: 0.75rem;
}
.service-card__text {
  color: var(--on-light-mute);
  font-size: var(--fs-sm);
  margin-bottom: 1.75rem;
}
.service-card__link {
  margin-top: auto;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9375rem;
  letter-spacing: -0.01em;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--on-light);
  align-self: flex-start;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.service-card__link:hover { color: var(--accent); border-color: var(--accent); }

/* ============================================================
   6. OVER NATHAN
   ============================================================ */
.about__grid { align-items: center; }
.about__media {
  grid-column: 1 / 6;
  aspect-ratio: 3 / 4;
}
.about__content { grid-column: 7 / -1; }
.about .section__title { margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.about__text {
  display: grid;
  gap: 1.25rem;
  color: var(--on-dark-mute);
  max-width: var(--measure);
  margin-bottom: 2.5rem;
}
.about__text p:first-child { color: var(--on-dark); font-size: var(--fs-lead); }
.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line-dark);
}
.about__stat dt {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.75rem;
  letter-spacing: -0.005em;
  margin-bottom: 0.4rem;
}
.about__stat dd {
  margin: 0;
  font-size: var(--fs-sm);
  color: var(--on-dark-mute);
}

/* ============================================================
   7. REVIEWS
   ============================================================ */
.reviews { overflow: hidden; }
.reviews__ghost {
  position: absolute;
  top: clamp(-3rem, -1vw, 1rem);
  right: clamp(-1rem, 3vw, 4rem);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22rem, 46vw, 54rem);
  line-height: 0.8;
  color: rgba(20, 20, 22, 0.05);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.reviews .container { position: relative; z-index: 1; }
.reviews__head { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 2.5vw, 2rem);
}
.quote {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 0;
  padding: 2rem;
  background: #fff;
  border: 1px solid var(--line-light);
  border-radius: 3px;
}
.quote__stars { display: flex; gap: 5px; }
.quote__stars .star { width: 18px; height: 18px; fill: var(--accent); flex: none; }
.quote__source { margin-top: auto; }
.quote blockquote {
  margin: 0;
  font-size: var(--fs-lead);
  line-height: 1.5;
  color: var(--on-light);
}
.quote__source {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-light);
}
.quote__name {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.125rem;
  letter-spacing: 0.01em;
}
.quote__org { font-size: var(--fs-sm); color: var(--on-light-mute); }

/* ============================================================
   8. FAQ
   ============================================================ */
.faq__head { grid-column: 1 / 5; }
.faq__list { grid-column: 6 / -1; }
.faq-item { border-top: 1px solid var(--line-dark); }
.faq-item:last-child { border-bottom: 1px solid var(--line-dark); }
.faq-item__q {
  list-style: none;
  cursor: pointer;
  padding: 1.75rem 3rem 1.75rem 0;
  position: relative;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: var(--fs-h3);
  letter-spacing: -0.005em;
  transition: color 0.2s ease;
}
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__q::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.25rem;
  width: 14px;
  height: 14px;
  margin-top: -7px;
  background:
    linear-gradient(var(--on-dark), var(--on-dark)) center/14px 1.5px no-repeat,
    linear-gradient(var(--on-dark), var(--on-dark)) center/1.5px 14px no-repeat;
  transition: transform 0.3s ease, opacity 0.2s ease;
}
.faq-item[open] .faq-item__q { color: var(--accent); }
.faq-item[open] .faq-item__q::after { transform: rotate(90deg); opacity: 0.4; }
.faq-item__a {
  overflow: hidden;
  color: var(--on-dark-mute);
  max-width: var(--measure);
}
.faq-item__a p { padding-bottom: 1.75rem; }

/* ============================================================
   9. CTA
   ============================================================ */
.cta {
  background: var(--ink-soft);
  overflow: hidden;
  text-align: center;
  position: relative;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--cta-bg);
  background-size: cover;
  background-position: center;
  opacity: 0.28;
  z-index: 0;
  pointer-events: none;
}
.cta__ghost {
  position: absolute;
  bottom: -0.18em;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: clamp(6rem, 20vw, 16rem);
  line-height: 1;
  color: rgba(244, 244, 241, 0.035);
  pointer-events: none;
  white-space: nowrap;
}
.cta__inner { position: relative; z-index: 1; }
.cta__title {
  font-size: var(--fs-h2);
  max-width: 26ch;
  margin-inline: auto;
  margin-bottom: 1.5rem;
}
.cta__lead {
  max-width: var(--measure-lead);
  margin-inline: auto;
  color: var(--on-dark-mute);
  font-size: var(--fs-lead);
  margin-bottom: 2.5rem;
}
.cta__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.cta__alt {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 2rem;
  font-size: var(--fs-sm);
  color: var(--on-dark-mute);
}
.cta__alt a { transition: color 0.2s ease; }
.cta__alt a:hover { color: var(--on-dark); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--ink);
  border-top: 1px solid var(--line-dark);
  padding-block: clamp(3rem, 5vw, 5rem) 2rem;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--line-dark);
}
.footer__brand p {
  margin-top: 1rem;
  color: var(--on-dark-mute);
  font-size: var(--fs-sm);
  max-width: 34ch;
}
.footer__nav, .footer__contact {
  display: grid;
  gap: 0.75rem;
  align-content: start;
  font-size: var(--fs-sm);
  color: var(--on-dark-mute);
}
.footer__nav a:hover, .footer__contact a:hover { color: var(--on-dark); }
.footer__meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 2rem;
  font-size: var(--fs-sm);
  color: var(--on-dark-mute);
}

/* ============================================================
   REVEAL (JS-gedreven, met no-JS fallback)
   ============================================================ */
[data-reveal], [data-reveal-group] > * { will-change: transform, opacity; }
.js [data-reveal],
.js [data-reveal-group] > * { opacity: 0; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .hero__scroll { display: none; }

  .nav__links.is-open {
    display: flex;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 1.25rem;
    margin: 0;
    padding: 1.75rem var(--gutter) 2rem;
    background: rgba(12, 12, 14, 0.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line-dark);
    font-size: 1.125rem;
  }

  /* Meerkoloms grids naar één kolom: voorkomt dat 12 lege tracks + gaps
     breder worden dan het scherm. */
  .grid { grid-template-columns: 1fr; }
  .problem__head,
  .problem__body,
  .about__media,
  .about__content,
  .faq__head,
  .faq__list { grid-column: 1 / -1; }

  .method__steps,
  .services__grid,
  .reviews__grid { grid-template-columns: 1fr; }

  .about__grid { gap: 2.5rem; }
  .about__media { aspect-ratio: 4 / 3; max-height: 60vh; }

  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .about__stats { grid-template-columns: 1fr; gap: 1.25rem; }
  .btn { width: 100%; }
  .hero__actions { width: 100%; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__meta { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  .js [data-reveal],
  .js [data-reveal-group] > * { opacity: 1 !important; transform: none !important; }
  * { scroll-behavior: auto !important; }
}

/* ============================================================
   NAV-DROPDOWN (Diensten)
   ============================================================ */
.nav__item { position: relative; display: flex; align-items: center; }
.nav__item .nav__link-top {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  transition: color 0.2s ease;
}
.nav__item .nav__link-top:hover { color: var(--on-dark); }
.nav__caret {
  width: 10px;
  height: 10px;
  opacity: 0.7;
  transition: transform 0.25s ease;
}
.nav__item--has-menu:hover .nav__caret,
.nav__item--has-menu:focus-within .nav__caret { transform: rotate(180deg); }
.nav__dropdown {
  position: absolute;
  top: 100%;
  left: -0.75rem;
  min-width: 264px;
  display: grid;
  gap: 0.1rem;
  padding: 0.5rem;
  margin-top: 12px;
  background: rgba(14, 14, 17, 0.96);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line-dark);
  border-radius: 4px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  z-index: 60;
}
/* Onzichtbare brug zodat hover niet wegvalt in de tussenruimte */
.nav__dropdown::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}
.nav__item--has-menu:hover .nav__dropdown,
.nav__item--has-menu:focus-within .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav__dropdown a {
  padding: 0.7rem 0.9rem;
  border-radius: 3px;
  font-size: var(--fs-sm);
  color: var(--on-dark-mute);
  transition: background-color 0.2s ease, color 0.2s ease;
}
.nav__dropdown a:hover { background: rgba(244, 244, 241, 0.06); color: var(--on-dark); }

@media (max-width: 900px) {
  .nav__item { flex-direction: column; align-items: flex-start; gap: 0.75rem; width: 100%; }
  .nav__caret { display: none; }
  .nav__dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    min-width: 0;
    width: 100%;
    margin-top: 0;
    padding: 0 0 0 1rem;
    background: transparent;
    border: none;
    backdrop-filter: none;
  }
  .nav__dropdown::before { display: none; }
  .nav__dropdown a { padding: 0.35rem 0; }
}

/* ============================================================
   ACHTERGROND-RUIS (subtiele filmkorrel)
   ============================================================ */
.bg {
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  pointer-events: none;
  z-index: 100;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: bg-noise 0.5s steps(3) infinite;
}
@keyframes bg-noise {
  0%   { transform: translate(0, 0); }
  25%  { transform: translate(-3%, 2%); }
  50%  { transform: translate(2%, -3%); }
  75%  { transform: translate(-2%, 3%); }
  100% { transform: translate(3%, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .bg { animation: none; }
}

/* ============================================================
   CONSISTENTE SUBKOPPEN (H3-niveau, uppercase display)
   Eén letterspacing voor alle titels van dit niveau, over alle pagina's.
   ============================================================ */
.step__title,
.service-card__title,
.step-item__title,
.feature__title,
.route-card__title,
.timeline__key,
.faq-item__q,
.quote__name,
.about__stat dt { letter-spacing: 0.02em; }

/* ============================================================
   WHATSAPP-KNOP (sticky rechtsonder)
   ============================================================ */
.wa-fab {
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: 200;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.3);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.wa-fab:hover { transform: translateY(-2px) scale(1.04); box-shadow: 0 14px 32px rgba(0, 0, 0, 0.36); }
.wa-fab svg { width: 32px; height: 32px; fill: currentColor; }
@media (prefers-reduced-motion: reduce) { .wa-fab { transition: none; } }

/* ============================================================
   NAV — geneste diensten-groepen (organisaties / particulieren)
   ============================================================ */
.nav__group { display: grid; }
.nav__group-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6em;
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: none;
  background: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  letter-spacing: -0.02em;
  color: var(--on-dark);
  border-radius: 3px;
  transition: background-color 0.2s ease;
}
.nav__group-toggle:hover { background: rgba(244, 244, 241, 0.06); }
.nav__caret--sub { width: 10px; height: 10px; opacity: 0.7; transition: transform 0.25s ease; }
.nav__group-toggle[aria-expanded="true"] .nav__caret--sub { transform: rotate(180deg); }
.nav__group-list {
  display: grid;
  gap: 0.1rem;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.28s ease, opacity 0.2s ease;
}
.nav__group-toggle[aria-expanded="true"] + .nav__group-list { max-height: 220px; opacity: 1; }
.nav__group-list a { padding-left: 1.7rem; }

/* ============================================================
   DIENSTEN — publiek-toggle en intro
   ============================================================ */
.services__intro {
  max-width: var(--measure-lead);
  color: var(--on-light-mute);
  font-size: var(--fs-lead);
  margin-top: 1.25rem;
}
.section--dark .services__intro { color: var(--on-dark-mute); }
.services__toggle {
  display: inline-flex;
  gap: 4px;
  margin-top: 2rem;
  padding: 4px;
  border: 1px solid var(--line-light);
  border-radius: 3px;
  background: rgba(20, 20, 22, 0.03);
}
.services__toggle-btn {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--fs-sm);
  letter-spacing: -0.02em;
  padding: 0.6rem 1.25rem;
  border: none;
  border-radius: 2px;
  background: transparent;
  color: var(--on-light-mute);
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.services__toggle-btn:hover { color: var(--on-light); }
.services__toggle-btn.is-active { background: var(--ink); color: var(--on-dark); }
.service-card.is-hidden { display: none; }

/* ============================================================
   CALENDLY-EMBED + INTRODUCTIEVIDEO
   ============================================================ */
.calendly-inline-widget { min-width: 320px; height: 700px; }
.missie-video__vid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
}
