/* ═══════════════════════════════════════════════════════════
   EXPERTIZM.CSS — Gedeeld stijlblad v2.1 (v60)
   Basis: homepage-v7.html + compliance-quickscan-blueprint10.html
   Fonts: Fraunces (serif/headings) + Hanken Grotesk (body)
═══════════════════════════════════════════════════════════ */

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --teal:       #176273;
  --teal-lt:    #53A6A6;
  --teal-deep:  #0e4354;
  --teal-deepest:#072a3b;
  --peach:      #F2AF88;
  --coral:      #FF776D;
  --coral-dark: #BF3929;
  --black:      #0c0a0a;
  --white:      #fff;
  --grey:       #4f5d61; /* v60: darkened for WCAG AA 4.5:1 on white */
  --ease:       cubic-bezier(.12,1,.25,1);
  --ease2:      cubic-bezier(.6,0,.15,1);
  --nav-h:      80px;
  --serif:      'Fraunces', Georgia, serif;
  --body:       'Hanken Grotesk', system-ui, sans-serif;
}

/* ── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  background: #072a3b;
  overflow-x: hidden;
}
body {
  font-family: var(--body);
  color: var(--black);
  -webkit-font-smoothing: antialiased;
  line-height: 1.75;
  letter-spacing: .01em;
  background: linear-gradient(180deg, #0e4354 0%, #072a3b 55%, #05121a 100%);
  background-attachment: fixed;
}
h1, h2, h3 { font-family: var(--serif); font-weight: 600; letter-spacing: -.01em; line-height: 1.05; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; font-size: inherit; line-height: inherit; }

/* ── SKIP LINK ──────────────────────────────────────────── */
.skip-link {
  position: absolute; left: -999px; top: 8px; z-index: 200;
  background: var(--coral); color: #fff; padding: 10px 18px;
  border-radius: 8px; text-decoration: none;
}
.skip-link:focus { left: 12px; }

/* ── LAYOUT ─────────────────────────────────────────────── */
.container { max-width: 1240px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 72px); }
.sec { padding: clamp(72px, 10vw, 128px) 0; position: relative; z-index: 3; }
.sec-head { max-width: 760px; margin-bottom: 56px; }
.sec-intro { margin-top: 20px; font-size: 18px; color: var(--grey); max-width: 620px; }

/* ── TYPE HELPERS ───────────────────────────────────────── */
.h2 { font-family: var(--serif); font-weight: 600; letter-spacing: -.01em; line-height: 1.05; font-size: clamp(30px, 4vw, 52px); }
.cw { color: var(--coral); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11.5px; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--teal); margin-bottom: 22px; font-family: var(--body);
}
.eyebrow i { width: 26px; height: 2px; background: var(--coral); display: block; }
.eyebrow-light { color: #fff; }

/* ── REVEAL ─────────────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(26px);
  transition: opacity 1.8s var(--ease), transform 1.8s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.d1 { transition-delay: .18s; }
.d2 { transition-delay: .36s; }
.d3 { transition-delay: .54s; }
.d4 { transition-delay: .72s; }
.d5 { transition-delay: .90s; }

/* ── SLIDE REVEAL (links/rechts) ────────────────────────── */
.reveal-left {
  opacity: 0; transform: translateX(-40px);
  transition: opacity 1.8s var(--ease), transform 1.8s var(--ease);
}
.reveal-right {
  opacity: 0; transform: translateX(40px);
  transition: opacity 1.8s var(--ease), transform 1.8s var(--ease);
}
.reveal-left.in, .reveal-right.in { opacity: 1; transform: none; }

/* ── FOCUS VISIBLE ──────────────────────────────────────── */
:focus-visible { outline: 2px solid var(--coral); outline-offset: 3px; border-radius: 4px; }

/* ══════════════════════════════════════════════════════════
   GLASS SYSTEM
══════════════════════════════════════════════════════════ */
.glass {
  backdrop-filter: blur(15px) saturate(130%);
  -webkit-backdrop-filter: blur(15px) saturate(130%);
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.glass-teal        { background: rgba(15,67,84,.70); }
.glass-grad-teal   { background: linear-gradient(180deg, rgba(23,98,115,.70), rgba(8,40,52,.70)); }
.glass-grad-coral  { background: linear-gradient(180deg, rgba(150,46,38,.70), rgba(96,40,42,.70)); }

/* text overrides inside glass */
.glass .eyebrow        { color: #fff; }
.glass .eyebrow i      { background: var(--coral); }
.glass .h2             { color: #fff; }
.glass .sec-intro      { color: rgba(255,255,255,.82); }
.glass .faq-item       { border-color: rgba(255,255,255,.16); }
.glass .faq-q          { color: #fff; }
.glass .faq-q:hover    { color: var(--peach); }
.glass .faq-a-in p     { color: rgba(255,255,255,.75); }

/* ══════════════════════════════════════════════════════════
   NAV
══════════════════════════════════════════════════════════ */
.nav {
  position: fixed; inset: 0 0 auto 0; height: var(--nav-h); z-index: 80;
  display: flex; align-items: center; gap: 30px; padding: 0 clamp(20px, 5vw, 72px);
  transition: background .4s var(--ease), border-color .4s, backdrop-filter .4s, transform .4s var(--ease);
  border-bottom: 1px solid transparent;
  /* v60: height animatie vervangen door transform om layout-reflow te vermijden */
}
.nav.scrolled {
  background: rgba(7,42,59,.82);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  border-bottom-color: rgba(83,166,166,.22);
  height: 66px;
}
.nav-logo { margin-right: auto; display: flex; align-items: center; color: #fff; }
.nav-logo .logo-svg { height: 30px; width: auto; }

.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-item { position: relative; }
.nav-link {
  background: none; border: none; cursor: pointer; font-family: var(--body);
  color: rgba(255,255,255,.86); text-decoration: none;
  font-size: 14.5px; font-weight: 500;
  position: relative; padding: 8px 0; display: inline-flex; align-items: center; gap: 6px;
}
.nav-link .caret { width: 9px; height: 6px; transition: transform .55s var(--ease); }
.nav-link::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 2px;
  height: 1.5px; background: var(--coral); transition: right .6s var(--ease2);
}
.nav-link:hover::after, .nav-trigger[aria-expanded=true]::after { right: 0; }
.nav-trigger[aria-expanded=true] .caret { transform: rotate(180deg); }

.nav-pill-membrainn {
  display: inline-flex; align-items: center; gap: 10px; height: 42px; padding: 0 20px;
  border-radius: 99px; background-color: transparent;
  background-image: linear-gradient(rgba(255,255,255,.18), rgba(255,255,255,.18));
  background-repeat: no-repeat; background-position: left center; background-size: 0% 100%;
  color: #fff; font-size: 14.5px; font-weight: 600; font-family: var(--body);
  border: 1.5px solid #fff; text-decoration: none;
  transition: background-size .9s var(--ease), color .65s;
}
.nav-pill-membrainn::after { display: none; }
.nav-pill-membrainn:hover { background-size: 100% 100%; }

.nav-cta {
  display: inline-flex; align-items: center; gap: 10px; height: 42px; padding: 0 20px;
  border-radius: 99px; background-color: var(--coral-dark);
  background-image: linear-gradient(#fff, #fff);
  background-repeat: no-repeat; background-position: left center; background-size: 0% 100%;
  color: #fff; font-size: 14.5px; font-weight: 600; font-family: var(--body);
  border: 1.5px solid #fff; text-decoration: none;
  transition: background-size .9s var(--ease), color .65s;
}
.nav-cta:hover { background-size: 100% 100%; color: var(--coral-dark); }

.nav-burger {
  display: none; flex-direction: column; gap: 5px; margin-left: auto;
  background: none; border: none; cursor: pointer; padding: 11px; z-index: 90;
}
.nav-burger span { width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: .6s var(--ease); }
.nav-burger[aria-expanded=true] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger[aria-expanded=true] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded=true] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════════════════════════════
   MEGAMENU
══════════════════════════════════════════════════════════ */
.mega {
  position: fixed; top: var(--nav-h); left: 0; right: 0; z-index: 75;
  background: #fff; box-shadow: 0 40px 90px rgba(0,0,0,.5);
  clip-path: inset(0 0 100% 0); opacity: 0; pointer-events: none;
  transition: clip-path .7s var(--ease), opacity .5s, top .4s;
}
.nav.scrolled ~ .mega { top: 66px; }
.mega.open { clip-path: inset(0 0 0 0); opacity: 1; pointer-events: auto; }
.mega-inner {
  max-width: 1240px; margin: 0 auto; padding: 40px clamp(20px,5vw,72px) 44px;
  display: grid; grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: auto 1fr 1fr; gap: 14px; align-items: stretch;
}
.mga-hd { display: flex; align-items: flex-end; padding-bottom: 8px; }
.mga-hd-d { grid-column: 1/3; }
.mga-hd-f { grid-column: 3/5; padding-left: 24px; border-left: 1px solid #e7eaea; margin-left: 6px; }
.mega-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--coral); display: block; }
.mega-card {
  display: flex; flex-direction: column; padding: 20px 24px; border-radius: 8px;
  border: 1px solid #e2e6e6; background: #fff; text-decoration: none; color: var(--black);
  position: relative; transition: transform .6s var(--ease), border-color .6s, background .6s;
  opacity: 0;
}
.mega.open .mega-card { opacity: 1; }
.mega.open .mega-card:nth-child(1) { transition-delay: .06s; }
.mega.open .mega-card:nth-child(2) { transition-delay: .12s; }
.mega.open .mega-card:nth-child(3) { transition-delay: .06s; }
.mega.open .mega-card:nth-child(4) { transition-delay: .12s; }
.mega-card:hover { border-color: var(--coral); background: #fff8f7; transform: translateY(-3px); }
.mc-top { display: flex; align-items: center; gap: 10px; min-height: 28px; margin-bottom: 10px; }
.mc-num { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--coral); line-height: 1; }
.mc-tag { font-size: 12px; font-weight: 700; text-transform: uppercase; color: #fff; background: var(--coral); padding: 4px 10px; border-radius: 99px; margin-left: auto; }
.mc-title { font-family: var(--body); font-weight: 700; font-size: 16px; color: var(--teal); margin-bottom: 8px; }
.mc-title-focus, .mega-focus-card .mc-title { font-family: var(--body); font-weight: 700; font-size: 16px; color: var(--teal); margin-bottom: 8px; }
.mc-desc { font-size: 14px; color: #4a5560; line-height: 1.55; }
.mc-arrow { position: absolute; top: 18px; right: 18px; color: var(--coral); opacity: 0; transform: translateX(-4px); transition: .6s var(--ease); }
.mc-arrow svg { width: 16px; height: 16px; }
.mega-card:hover .mc-arrow { opacity: 1; transform: none; }
.mega-focus-card .mf-eyebrow { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--coral); display: block; margin-bottom: 0; line-height: 1; }
.mega-backdrop { position: fixed; inset: 0; z-index: 70; background: rgba(7,42,59,.4); opacity: 0; pointer-events: none; transition: opacity .6s; }
.mega-backdrop.show { opacity: 1; pointer-events: auto; }

/* ══════════════════════════════════════════════════════════
   MOBILE NAV
══════════════════════════════════════════════════════════ */
.mobnav {
  position: fixed; inset: 0; z-index: 78;
  background: linear-gradient(160deg, var(--teal-deep), var(--teal-deepest));
  clip-path: circle(0 at calc(100% - 44px) 40px);
  transition: clip-path .75s var(--ease); pointer-events: none;
  display: flex; align-items: flex-start; overflow-y: auto;
}
.mobnav.open { clip-path: circle(150% at calc(100% - 44px) 40px); pointer-events: auto; }
.mobnav-inner { padding: 118px 36px 64px; width: 100%; min-height: 100%; display: flex; flex-direction: column; gap: 4px; }
.mob-divider {
  height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--coral), rgba(255,119,109,.15));
  margin: auto 0 24px; opacity: 0; transform: scaleX(0); transform-origin: left;
  transition: opacity .75s var(--ease) .35s, transform .85s var(--ease) .35s;
}
.mobnav.open .mob-divider { opacity: 1; transform: none; }
.mob-link {
  font-family: var(--serif); font-size: clamp(28px, 8vw, 44px); font-weight: 600;
  color: #fff; text-decoration: none; padding: 10px 0;
  display: flex; align-items: center; gap: 14px;
  background: none; border: none; cursor: pointer; text-align: left; width: 100%;
  opacity: 0; transform: translateY(24px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}
.mobnav.open .mob-link, .mobnav.open .mob-acc { opacity: 1; transform: none; }
.mob-acc { opacity: 0; transform: translateY(24px); transition: opacity .75s var(--ease), transform .75s var(--ease); }
.mobnav.open .mob-acc { transition-delay: .20s; }
.mobnav.open .mob-acc + .mob-acc { transition-delay: .25s; }
.mobnav.open .mob-acc ~ .mob-link { transition-delay: .30s; }
.mob-caret { width: 14px; height: 9px; transition: transform .55s var(--ease); color: var(--peach); }
.mob-acc-trigger[aria-expanded=true] .mob-caret { transform: rotate(180deg); }
.mob-sub { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .6s var(--ease); }
.mob-acc-trigger[aria-expanded=true] + .mob-sub { grid-template-rows: 1fr; }
.mob-sub-in { overflow: hidden; display: flex; flex-direction: column; gap: 2px; padding-left: 6px; }
.mob-sub-in a { font-family: var(--body); font-size: 17px; font-weight: 500; color: rgba(255,255,255,.78); text-decoration: none; padding: 10px 0; }
.mob-sub-in a:hover { color: var(--peach); }
.mob-ctas {
  margin-top: 0; padding-bottom: 8px; display: flex; flex-direction: row; flex-wrap: wrap;
  gap: 12px; align-items: flex-start;
  opacity: 0; transform: translateY(24px);
  transition: opacity .75s var(--ease) .5s, transform .75s var(--ease) .5s;
}
.mobnav.open .mob-ctas { opacity: 1; transform: none; }
.mob-ctas .btn { justify-content: center; flex: 1; }
.btn.bp-mem-mob {
  background-color: transparent;
  background-image: linear-gradient(rgba(255,255,255,.18), rgba(255,255,255,.18));
  background-repeat: no-repeat; background-position: left center; background-size: 0% 100%;
  color: #fff; border: 1.5px solid #fff; transition: background-size .9s var(--ease);
}
.btn.bp-mem-mob:hover { background-size: 100% 100%; color: #fff; }

/* ══════════════════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 10px; height: 54px; padding: 0 28px;
  border-radius: 99px; font-family: var(--body); font-weight: 600; font-size: 15px;
  text-decoration: none; cursor: pointer; border: none;
  background-repeat: no-repeat; background-position: left center; background-size: 0% 100%;
  transition: background-size .9s var(--ease), transform .65s var(--ease), color .65s, border-color .65s;
}
.btn svg { width: 16px; height: 16px; transition: transform .8s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

/* coral primary — coral-dark bg (#BF3929) zodat wit contrast 5.48:1 haalt (WCAG AA) */
.bp {
  background-color: var(--coral-dark); background-image: linear-gradient(#fff, #fff);
  color: #fff; border: 1.5px solid #fff;
}
.bp:hover { background-size: 100% 100%; color: var(--coral-dark); }

/* ghost white */
.bg {
  background-color: transparent; background-image: linear-gradient(rgba(255,255,255,.18), rgba(255,255,255,.18));
  color: #fff; border: 1.5px solid #fff;
}
.bg:hover { background-size: 100% 100%; }

/* coral on white (featured card) */
.btn-coral-on-white {
  background-color: var(--coral); background-image: linear-gradient(#fff, #fff);
  color: #fff; border: 1.5px solid var(--coral);
  background-repeat: no-repeat; background-position: left center; background-size: 0% 100%;
  transition: background-size .9s var(--ease), color .65s;
}
.btn-coral-on-white:hover { background-size: 100% 100%; color: var(--coral-dark); }

/* featured pricing button */
.btn-featured {
  background-color: var(--coral); background-image: linear-gradient(#fff, #fff);
  color: #fff; border: 1.5px solid var(--coral);
  background-repeat: no-repeat; background-position: left center; background-size: 0% 100%;
  transition: background-size .9s var(--ease), color .65s;
}
.btn-featured:hover { background-size: 100% 100%; color: var(--coral-dark); }

/* ══════════════════════════════════════════════════════════
   HERO — pill van links
══════════════════════════════════════════════════════════ */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden;
  padding: var(--nav-h) clamp(20px,5vw,72px) clamp(40px,5vw,80px);
  background: radial-gradient(130% 120% at 72% 24%, var(--teal-deep) 0%, var(--teal-deepest) 58%, #04202e 100%);
  z-index: 3;
}
.hero--subpage {
  background: transparent;
}
.hero--subpage::before {
  content: "";
  position: absolute; inset: -20px; z-index: 0;
  background: linear-gradient(
    180deg,
    #091e28 0%,
    #0d3240 8%,
    #124d61 20%,
    #176273 32%,
    #1c6e80 40%,
    #8a5046 54%,
    #6e2c1e 66%,
    #2a0f08 80%,
    #060505 100%
  );
  filter: blur(8px);
}
.hero-pill-bg {
  position: absolute; left: -120%;
  top: 50%; transform: translateY(-50%);
  height: clamp(520px, 66vh, 680px);
  width: min(75vw, 1000px);
  background: rgba(14,67,84,.70);
  backdrop-filter: blur(15px) saturate(150%);
  -webkit-backdrop-filter: blur(15px) saturate(150%);
  border-radius: 0 24px 24px 0;
  border: 1px solid rgba(255,255,255,.09);
  z-index: 1; transition: left 1.1s cubic-bezier(.16,1,.3,1);
}
.play .hero-pill-bg { left: -4%; }

.hero-content {
  position: relative; z-index: 2;
  max-width: min(580px, calc(min(75vw,1000px) - 80px));
  color: #fff;
}
.hero .eyebrow { color: rgba(255,255,255,.78); opacity: 0; transform: translateY(8px); }
.hero .eyebrow i { transform: scaleX(0); transform-origin: left; }
.play .hero .eyebrow { opacity: 1; transform: none; transition: opacity .5s var(--ease) .35s, transform .5s var(--ease) .35s; }
.play .hero .eyebrow i { transform: scaleX(1); transition: transform .5s var(--ease2) .6s; }
.hero-h1 { font-size: clamp(32px,5vw,68px); line-height: 1.0; letter-spacing: -.02em; color: #fff; }
.hero-h1 .ln { display: block; overflow: hidden; padding-bottom: .18em; margin-bottom: -.14em; }
.hero-h1 .ln > span { display: inline-block; transform: translateY(115%); }
.play .hero-h1 .ln > span { transform: translateY(0); }
.play .l1 > span { transition: transform .8s var(--ease) .9s; }
.play .l2 > span { transition: transform .8s var(--ease) 1.02s; }
.play .l3 > span { transition: transform .8s var(--ease) 1.14s; }
.hero-sub { margin-top: 24px; font-size: clamp(15px,1.5vw,18px); line-height: 1.75; color: rgba(255,255,255,.8); opacity: 0; transform: translateY(10px); }
.hero-sub b { color: #fff; font-weight: 600; }
.play .hero-sub { opacity: 1; transform: none; transition: opacity .7s var(--ease) 1.3s, transform .7s var(--ease) 1.3s; }
.hero-ctas { margin-top: 36px; display: flex; gap: 14px; flex-wrap: wrap; opacity: 0; transform: translateY(10px); }
.play .hero-ctas { opacity: 1; transform: none; transition: opacity .7s var(--ease) 1.5s, transform .7s var(--ease) 1.5s; }

/* scroll cue */
.cue {
  position: absolute; left: 50%; bottom: 30px; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px; opacity: 0;
  font-size: 9.5px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(255,255,255,.5); background: none; border: none; cursor: pointer; font-family: var(--body);
}
.cue .r {
  width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(255,255,255,.3);
  display: grid; place-items: center; animation: bob 2.4s ease-in-out infinite;
}
.cue svg { width: 14px; height: 14px; }
.play .cue { opacity: 1; transition: opacity .7s ease 1.8s; }
@keyframes bob { 0%,100%{transform:translateY(0)} 50%{transform:translateY(5px)} }
/* Mobiele duplicaat van .cue, leeft binnen .hero-teal-card. Standaard verborgen op
   alle formaten; wordt pas zichtbaar binnen de @media(max-width:600px)-regels
   verderop in dit bestand (samen met .cue op display:none op datzelfde formaat). */
.cue-mobile { display: none; }
.cue-mobile .r {
  width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(255,255,255,.3);
  display: grid; place-items: center; animation: bob 2.4s ease-in-out infinite;
}
.cue-mobile svg { width: 14px; height: 14px; }
.cue-mobile {
  flex-direction: column; align-items: center; gap: 8px;
  font-size: 9.5px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(255,255,255,.7); background: none; border: none; cursor: pointer; font-family: var(--body);
}

/* ══════════════════════════════════════════════════════════
   STICKY SCROLL OVERLAP
══════════════════════════════════════════════════════════ */
.sticky-scene { position: relative; }
.sec-sticky {
  position: sticky; top: 66px; overflow: hidden; padding: 0; z-index: 2; background: transparent;
}
.sec-scroll-over { position: relative; z-index: 10; box-shadow: 0 -32px 64px rgba(0,0,0,.6); }

/* ══════════════════════════════════════════════════════════
   MODULE CARDS (dark glass, links op pagina)
══════════════════════════════════════════════════════════ */
.modules-wrap {
  display: grid; grid-template-columns: 1fr clamp(240px, 42%, 520px);
  min-height: clamp(520px, 70vh, 780px); position: relative;
}
.modules-white-col {
  padding: clamp(60px,8vw,100px) clamp(20px,5vw,72px);
  display: flex; flex-direction: column; gap: 14px; position: relative; z-index: 2;
}
.module-card {
  background: rgba(14,50,64,.72);
  backdrop-filter: blur(10px) saturate(130%);
  -webkit-backdrop-filter: blur(10px) saturate(130%);
  border: 1px solid rgba(255,255,255,.18); border-radius: 12px;
  padding: 22px 26px; display: flex; flex-direction: column; gap: 8px;
  color: #fff; box-shadow: 0 4px 24px rgba(0,0,0,.22);
  transition: border-color .45s, box-shadow .45s, transform .6s var(--ease), background .6s;
  position: relative; overflow: hidden;
}
.module-card::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: var(--coral); transform: scaleY(0); transform-origin: top; transition: transform .65s var(--ease2);
}
.module-card:hover { background: rgba(14,60,76,.82); border-color: rgba(255,255,255,.32); box-shadow: 0 8px 32px rgba(0,0,0,.28); transform: translateX(4px); }
.module-card:hover::before { transform: scaleY(1); }
.mc-eyebrow-dark { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--peach); }
.mc-title-dark { font-family: var(--body); font-weight: 700; font-size: 22px; color: #fff; }
.mc-desc-dark { font-size: 15px; color: rgba(255,255,255,.82); line-height: 1.6; }
.module-card .mc-desc-dark { font-size: 16px; }
.mc-link-dark { margin-top: 6px; display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 600; color: var(--peach); text-decoration: none; }
.mc-link-dark svg { width: 14px; height: 14px; transition: transform .6s var(--ease); }
.module-card:hover .mc-link-dark { color: #fff; }
.module-card:hover .mc-link-dark svg { transform: translateX(4px); }

/* Coral column (pill from right) */
.modules-coral-col {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(48px,6vw,80px) clamp(28px,4vw,52px) clamp(48px,6vw,80px) clamp(32px,4vw,56px);
  background: rgba(150,46,38,.90);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  border-radius: 999px 0 0 999px;
  border: 1px solid rgba(255,255,255,.12);
  transform: translateX(100%); transition: transform 1.1s cubic-bezier(.16,1,.3,1) .1s;
}
.modules-coral-col.in { transform: translateX(0); }
.modules-coral-col .eyebrow { color: var(--peach); }
.modules-coral-col .eyebrow i { background: var(--peach); }
.modules-coral-col .h2 { color: #fff; font-size: clamp(24px,3vw,40px); }
.modules-coral-col .sec-intro { color: rgba(255,255,255,.82); max-width: 100%; }

/* ══════════════════════════════════════════════════════════
   PRICING CARDS
══════════════════════════════════════════════════════════ */
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; align-items: start; }
.price-card {
  background: rgba(15,67,84,.55);
  backdrop-filter: blur(10px) saturate(130%);
  -webkit-backdrop-filter: blur(10px) saturate(130%);
  border: 1px solid rgba(255,255,255,.14); border-radius: 16px; padding: 36px 32px 32px;
  display: flex; flex-direction: column;
  transition: transform .6s var(--ease), border-color .6s, background .6s;
}
.price-card:hover { background: rgba(15,67,84,.72); border-color: rgba(83,166,166,.4); transform: translateY(-4px); }
.price-card.featured {
  background: rgba(255,255,255,.97); border: 2px solid var(--coral);
  color: var(--black); transform: scale(1.04);
  box-shadow: 0 32px 72px rgba(0,0,0,.4);
  margin-top: -20px; margin-bottom: -20px; padding-top: 52px; padding-bottom: 48px;
  /* v60: outer glow (0 0 0 1px coral) verwijderd — elevation shadow geeft voldoende distinctie */
}
.price-card.featured:hover { transform: scale(1.04) translateY(-4px); }
.price-badge-wrap { min-height: 36px; display: flex; align-items: flex-start; justify-content: center; margin-bottom: 4px; }
.price-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  background: var(--coral); color: #fff; padding: 5px 14px; border-radius: 99px; font-family: var(--body);
}
/* .price-card:not(.featured) .price-badge-wrap — visibility reset per pagina */
.price-level { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--peach); margin-bottom: 8px; font-family: var(--body); text-align: center; }
.price-card.featured .price-level { color: var(--coral); }
.price-name { font-family: var(--serif); font-size: 28px; font-weight: 600; color: #fff; text-align: center; }
.price-card.featured .price-name { color: var(--teal); }
.price-amount { margin-top: 16px; line-height: 1.1; color: var(--peach); font-family: var(--body); font-weight: 700; font-size: clamp(28px,3vw,38px); text-align: center; }
.price-card.featured .price-amount { color: var(--coral); }
.price-sub { font-size: 11px; color: rgba(255,255,255,.5); margin-top: 4px; font-family: var(--body); text-align: center; letter-spacing: .3px; }
.price-card.featured .price-sub { color: var(--grey); }
.price-divider { height: 1px; background: rgba(255,255,255,.14); margin: 24px 0; }
.price-card.featured .price-divider { background: #e8ebeb; }
.price-items { display: flex; flex-direction: column; gap: 10px; flex: 1; }
.price-item { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: rgba(255,255,255,.82); line-height: 1.5; font-family: var(--body); }
.price-card.featured .price-item { color: #36474b; }
.price-item svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--teal-lt); margin-top: 3px; }
.price-card.featured .price-item svg { color: var(--coral); }
.price-cta { margin-top: 28px; }
.price-cta .btn { width: 100%; justify-content: center; height: 50px; }

/* ══════════════════════════════════════════════════════════
   BUNDEL PILL (pill van links, cirkel rechts)
══════════════════════════════════════════════════════════ */
.sec-bundel { position: relative; overflow: hidden; padding: 0; z-index: 3; background: transparent; }
.bundel-pill-wrap { position: relative; min-height: clamp(320px,44vh,480px); display: flex; align-items: center; }
.bundel-pill {
  position: absolute; left: -100%; top: 50%; transform: translateY(-50%);
  width: 50%; height: min(92%,520px);
  background: rgba(14,67,84,.30);
  backdrop-filter: blur(12px) saturate(150%); -webkit-backdrop-filter: blur(12px) saturate(150%);
  border-radius: 0 999px 999px 0; border: 1px solid rgba(255,255,255,.09);
  z-index: 0; transition: left 1.1s cubic-bezier(.16,1,.3,1);
}
.bundel-pill.in { left: 0; }
.bundel-text-col {
  position: relative; z-index: 2;
  padding: clamp(48px,6vw,80px) clamp(20px,4vw,56px) clamp(48px,6vw,80px) clamp(20px,5vw,72px);
  width: 50%; max-width: 1240px; display: flex; flex-direction: column; justify-content: center; color: #fff;
  box-sizing: border-box;
}
.bundel-eyebrow-label { display: inline-flex; align-items: center; gap: 12px; font-size: 11.5px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: #fff; margin-bottom: 22px; font-family: var(--body); }
.bundel-eyebrow-label i { width: 26px; height: 2px; background: var(--coral); display: block; flex-shrink: 0; }
.bundel-title { font-family: var(--serif); font-size: clamp(30px,4vw,52px); font-weight: 600; color: #fff; line-height: 1.05; letter-spacing: -.01em; }
.bundel-desc { margin-top: 20px; font-size: 18px; color: rgba(255,255,255,.82); line-height: 1.75; max-width: 100%; }
.bundel-text-col .btn { margin-top: 30px; }
.bundel-text-col .btn:hover { background-size: 100% 100%; color: var(--coral); border-color: var(--coral); }
.bundel-circle-col {
  position: relative; z-index: 2; flex: 0 0 auto;
  display: flex; align-items: center; justify-content: center;
  padding: clamp(32px,4vw,56px) clamp(24px,4vw,56px);
}
.bundel-circle {
  width: clamp(280px,30vw,360px); height: clamp(280px,30vw,360px); border-radius: 50%;
  background: #fff; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; box-shadow: 0 12px 48px rgba(0,0,0,.35), 0 0 0 1px rgba(255,255,255,.2);
  padding: clamp(24px,3vw,36px); text-align: center;
}
.bundel-price-sub { font-size: 24px; font-weight: 700; color: var(--teal); display: block; line-height: 1.2; }
.bundel-tags { display: flex; flex-direction: column; gap: 5px; width: 100%; align-items: flex-start; margin: 0; padding-left: 16px; }
.bundel-tag { display: grid; grid-template-columns: 16px 1fr; align-items: center; gap: 6px; font-size: clamp(13px,1.2vw,16px); font-weight: 700; color: var(--teal); font-family: var(--body); line-height: 1.3; }
.bundel-tag svg { width: 13px; height: 13px; flex-shrink: 0; color: var(--coral); }
.bundel-price { font-family: var(--body); font-weight: 800; font-size: clamp(28px,2.8vw,36px); color: var(--coral); line-height: 1.05; margin: 0; }

/* ══════════════════════════════════════════════════════════
   PROCES STAPPEN
══════════════════════════════════════════════════════════ */
.process-steps {
  display: grid; grid-template-columns: repeat(5,1fr); gap: 0;
  margin-top: 56px; position: relative;
}
.process-steps::before {
  content: ""; position: absolute; top: 28px;
  left: calc(10% + 28px); right: calc(10% + 28px); height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.22) 15%, rgba(255,255,255,.22) 85%, transparent);
}
.process-step { display: flex; flex-direction: column; align-items: center; gap: 18px; padding: 0 8px; text-align: center; position: relative; }
.ps-num {
  width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center;
  position: relative; z-index: 1; background: #fff; border: 2px solid rgba(255,255,255,.9);
  box-shadow: 0 4px 16px rgba(0,0,0,.22); font-family: var(--body); font-size: 14px;
  font-weight: 700; color: var(--teal); letter-spacing: .5px;
}
.ps-label { font-size: 14px; font-weight: 600; color: rgba(255,255,255,.9); line-height: 1.4; max-width: 120px; }
.ps-desc { font-size: 13px; color: rgba(255,255,255,.72); line-height: 1.5; max-width: 130px; /* v60: .5→.72 voor leesbaar contrast */ }

/* ══════════════════════════════════════════════════════════
   AANPAK
══════════════════════════════════════════════════════════ */
.aanpak-head { max-width: 880px; margin-bottom: 44px; }
.aanpak-subtitle { margin-top: 24px; font-size: clamp(19px,2vw,26px); line-height: 1.5; font-weight: 500; color: #2a3a3f; max-width: 820px; }
.aanpak-body { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,5vw,64px); max-width: 980px; }
.aanpak-body p { font-size: 18px; color: #36474b; line-height: 1.75; }
.glass .aanpak-subtitle { color: #fff; }
.glass .aanpak-body p { color: rgba(255,255,255,.82); }
.kpi-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; margin-top: 64px; border-top: 1px solid #e7ebeb; padding-top: 48px; }
.kpi-num { font-family: var(--serif); font-size: clamp(34px,4vw,52px); font-weight: 600; color: var(--coral); display: block; line-height: 1; text-align: center; }
.kpi-label { display: block; margin-top: 12px; font-size: 13.5px; color: var(--grey); line-height: 1.5; text-align: center; }

/* ══════════════════════════════════════════════════════════
   FOCUS PILL SECTION (homepage)
══════════════════════════════════════════════════════════ */
.sec-focus { overflow: hidden; padding: 0; position: relative; z-index: 3; background: transparent; }
.focus-pill-wrap {
  position: relative; padding: clamp(56px,8vw,112px) 0;
  display: grid; grid-template-columns: 1fr 42%; align-items: stretch; min-height: 600px;
}
.focus-pill-shape {
  position: absolute; right: -42%; top: 0; bottom: 0; width: 42%;
  background: linear-gradient(160deg, rgba(180,54,40,.70), rgba(130,46,46,.70));
  backdrop-filter: blur(15px) saturate(140%); -webkit-backdrop-filter: blur(15px) saturate(140%);
  border-radius: 999px 0 0 999px; border: 1px solid rgba(255,255,255,.12);
  z-index: 1; transition: right 1.1s cubic-bezier(.16,1,.3,1) .1s;
}
.focus-pill-shape.in { right: 0; }
.focus-cards-col { position: relative; z-index: 2; padding: 0 clamp(20px,5vw,72px); display: flex; flex-direction: column; gap: 10px; }
.focus-head-col {
  position: relative; z-index: 2;
  padding: clamp(24px,4vw,56px) clamp(28px,4vw,56px) clamp(24px,4vw,56px) clamp(16px,3vw,40px);
  display: flex; flex-direction: column; justify-content: center;
}
.focus-head-col .eyebrow { color: rgb(242,175,136)!important; }
.focus-head-col .eyebrow i { background: rgb(242,175,136)!important; }
.focus-head-col .h2 { color: #fff!important; font-size: clamp(28px,3.4vw,48px)!important; }
.focus-head-col .sec-intro { color: rgba(255,255,255,.88)!important; max-width: 100%!important; }

/* Focus cards in teal area */
.focus-grid { display: grid; grid-template-columns: 1fr; gap: 8px; }
.focus-card {
  position: relative; display: flex; flex-direction: column;
  background: rgba(14,50,64,.70)!important;
  backdrop-filter: blur(15px) saturate(130%)!important; -webkit-backdrop-filter: blur(15px) saturate(130%)!important;
  border-color: rgba(255,255,255,.18)!important; color: #fff!important;
  padding: 22px 26px!important; box-shadow: 0 4px 24px rgba(0,0,0,.22)!important;
  border-radius: 8px; border: 1px solid rgba(255,255,255,.18);
  text-decoration: none; transition: transform .65s var(--ease), box-shadow .65s, background .6s;
}
.focus-card::before { display: none!important; }
.focus-card:hover { background: rgba(14,60,76,.82)!important; border-color: rgba(255,255,255,.32)!important; transform: translateX(4px)!important; box-shadow: 0 8px 32px rgba(0,0,0,.28)!important; }
.fc-eyebrow { font-size: 10.5px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgb(242,175,136)!important; }
.fc-num { position: absolute; top: 28px; right: 30px; font-family: var(--body); font-size: 38px; color: rgba(255,255,255,.1)!important; font-weight: 700; line-height: 1; transition: color .75s var(--ease); }
.focus-card:hover .fc-num { color: var(--peach)!important; }
.fc-title { font-family: var(--body); font-weight: 700; font-size: 19px!important; color: #fff!important; margin: 8px 0 8px!important; }
.fc-desc { font-size: 17px!important; color: rgba(255,255,255,.82)!important; line-height: 1.65!important; flex: 1; }
.fc-more { margin-top: 20px; display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 15px!important; color: var(--peach)!important; }
.fc-more svg { width: 15px; height: 15px; transition: transform .6s var(--ease); }
.focus-card:hover .fc-more svg { transform: translateX(4px); }

/* ══════════════════════════════════════════════════════════
   DIENSTEN CARDS (dark glass on teal)
══════════════════════════════════════════════════════════ */
.dienst-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; }
.dienst-card {
  position: relative; overflow: hidden; display: flex; flex-direction: column;
  background: rgba(255,255,255,.07)!important; border-color: rgba(255,255,255,.14)!important;
  color: #fff!important; padding: 26px 28px!important;
  border-radius: 8px; border: 1px solid rgba(255,255,255,.14);
  text-decoration: none; transition: transform .65s var(--ease), box-shadow .65s, border-color .65s, background .6s;
}
.dienst-card::before { display: none!important; }
.dienst-card:hover { background: rgba(255,255,255,.12)!important; border-color: rgba(255,255,255,.28)!important; box-shadow: none!important; transform: translateX(4px)!important; }
.dc-num { position: absolute; top: 28px; right: 30px; font-family: var(--body); font-weight: 700; font-size: 38px!important; color: rgba(255,255,255,.1)!important; line-height: 1; transition: color .75s var(--ease); }
.dienst-card:hover .dc-num { color: var(--peach)!important; }
.dc-tag { font-size: 13px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; color: #fff; background: var(--coral); padding: 5px 14px; border-radius: 99px; display: inline-block; margin-bottom: 8px; }
.dc-title { font-family: var(--body); font-weight: 700; font-size: 19px!important; letter-spacing: -.01em; color: #fff!important; margin: 44px 0 8px!important; }
.dc-desc { font-size: 17px!important; color: rgba(255,255,255,.82)!important; line-height: 1.65!important; flex: 1; }
.dc-more { margin-top: 20px; display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 15px!important; color: var(--peach)!important; }
.dc-more svg { width: 15px; height: 15px; transition: transform .6s var(--ease); }
.dienst-card:hover .dc-more svg { transform: translateX(4px); }
.sec-diensten .eyebrow { color: #fff!important; }
.sec-diensten .eyebrow i { background: var(--coral)!important; }
.sec-diensten .h2 { color: #fff!important; }
.sec-diensten .sec-intro { color: rgba(255,255,255,.82)!important; }

/* ══════════════════════════════════════════════════════════
   MEMBRAINN PILL SECTION
══════════════════════════════════════════════════════════ */
.sec-membrainn { position: relative; overflow: hidden; background: transparent; padding: 0; z-index: 3; }
.mem-pill-wrap { position: relative; min-height: clamp(460px,60vh,660px); display: flex; align-items: center; overflow: hidden; }
.mem-pill {
  position: absolute; left: -100%; top: 50%; transform: translateY(-50%);
  width: 50%; height: min(90%,620px);
  background: rgba(28,20,50,.70);
  backdrop-filter: blur(15px) saturate(140%); -webkit-backdrop-filter: blur(15px) saturate(140%);
  border-radius: 0 999px 999px 0; border: 1px solid rgba(196,155,166,.2);
  z-index: 0; transition: left 1.1s cubic-bezier(.16,1,.3,1);
}
.mem-pill.in { left: 0; }
.mem-pill-content {
  position: relative; z-index: 2; width: 50%; max-width: 1240px;
  padding: clamp(48px,7vw,96px) clamp(40px,5vw,72px) clamp(48px,7vw,96px) clamp(20px,5vw,72px);
  display: flex; flex-direction: column; justify-content: center; min-height: inherit;
}
.mem-pill-text { display: flex; flex-direction: column; }
.mem-outside {
  flex: 1; display: flex; flex-direction: column; justify-content: center;
  padding: clamp(40px,6vw,80px) clamp(28px,5vw,72px); color: rgba(255,255,255,.5);
}
.mem-title { color: #fff; }
.mem-status { margin-top: 14px; font-size: 24px; letter-spacing: 1px; text-transform: uppercase; color: #c49ba6; font-weight: 600; }
.mem-desc { margin-top: 20px; max-width: 100%; font-size: 18px; line-height: 1.75; color: rgba(255,255,255,.82); }
.bp-mem {
  margin-top: 30px; width: fit-content;
  background-color: #7d3d55; background-image: linear-gradient(#fff,#fff);
  color: #fff; border: 1.5px solid #fff; box-shadow: none;
  background-repeat: no-repeat; background-position: left center; background-size: 0% 100%;
  transition: background-size .9s var(--ease), color .65s;
}
.bp-mem:hover { background-size: 100% 100%; color: #060505; }
.mem-logo { display: inline-block; vertical-align: middle; }
.mn-logo-svg { height: clamp(52px,7vw,88px); width: auto; display: inline-block; vertical-align: middle; }
@media(max-width:860px){
  .mn-logo-svg{height:clamp(78px,10.5vw,132px)}
}

/* ══════════════════════════════════════════════════════════
   CLIENTS STRIP
══════════════════════════════════════════════════════════ */
.sec-clients { padding: 60px 0; overflow: hidden; z-index: 3; }
.clients-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--peach); display: block; margin-bottom: 30px; text-align: center; }
.clients-row { display: flex; gap: 56px; width: max-content; animation: marq 38s linear infinite; }
.sec-clients:hover .clients-row { animation-play-state: paused; }
@keyframes marq { to { transform: translateX(-50%); } }
.client { display: flex; flex-direction: column; gap: 2px; white-space: nowrap; }
.cl-name { font-family: var(--body); font-size: 20px; font-weight: 700; letter-spacing: -.01em; color: #fff; }
.cl-sub { font-size: 11.5px; letter-spacing: .5px; text-transform: uppercase; color: rgba(255,255,255,.45); }

/* ══════════════════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════════════════ */
.faq-grid { display: grid; grid-template-columns: .8fr 1.4fr; gap: clamp(30px,6vw,80px); align-items: start; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-top: 1px solid rgba(255,255,255,.16); }
.faq-item:last-child { border-bottom: 1px solid rgba(255,255,255,.16); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; gap: 20px; justify-content: space-between;
  text-align: left; padding: 26px 4px;
  font-family: var(--body); font-size: clamp(16px,1.5vw,20px); font-weight: 700;
  letter-spacing: -.01em; color: #fff; transition: color .45s;
}
.faq-q:hover { color: var(--peach); }
.faq-ico { position: relative; width: 20px; height: 20px; flex-shrink: 0; }
.faq-ico::before, .faq-ico::after { content: ""; position: absolute; background: var(--coral); border-radius: 2px; transition: transform .6s var(--ease); }
.faq-ico::before { left: 0; right: 0; top: 9px; height: 2px; }
.faq-ico::after { top: 0; bottom: 0; left: 9px; width: 2px; }
.faq-q[aria-expanded=true] .faq-ico::after { transform: scaleY(0); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .7s var(--ease); }
.faq-q[aria-expanded=true] + .faq-a { grid-template-rows: 1fr; }
.faq-a-in { overflow: hidden; }
.faq-a-in p { padding: 0 4px 28px; font-size: 17px; line-height: 1.75; color: rgba(255,255,255,.75); max-width: 640px; font-family: var(--body); }
.faq-legal { margin-top: 20px; font-size: 12.5px; color: rgba(255,255,255,.4); padding: 0 4px; font-family: var(--body); }

/* ══════════════════════════════════════════════════════════
   CTA
══════════════════════════════════════════════════════════ */
.sec-cta {
  background: linear-gradient(160deg, rgba(14,67,84,.70), rgba(7,42,59,.70));
  backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px);
  color: #fff; text-align: center; position: relative; z-index: 3;
  padding: clamp(72px,10vw,128px) 0;
}
.cta-inner { max-width: 760px; margin: 0 auto; }
.cta-h { font-size: clamp(34px,5vw,64px); color: #fff; }
.cta-sub { margin: 22px auto 0; max-width: 560px; font-size: 18px; line-height: 1.75; color: rgba(255,255,255,.8); }
.cta-btns { margin-top: 38px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.sec-cta .cw { color: var(--peach); }

/* ══════════════════════════════════════════════════════════
   SECTION DIVIDER
══════════════════════════════════════════════════════════ */
.section-divider {
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--coral) 22%, var(--coral) 78%, transparent);
  position: relative; z-index: 3; box-shadow: 0 0 18px rgba(255,119,109,.35);
}

/* Bloom-glide: alleen op de divider vlak boven de footer (.section-divider--glow) */
.section-divider--glow { overflow: visible; }
.section-divider--glow::before {
  content: ""; position: absolute; top: 50%; left: 0;
  width: clamp(160px,22vw,300px); height: 26px;
  transform: translate(-320px,-50%);
  border-radius: 50%; pointer-events: none;
  background: radial-gradient(closest-side, rgba(255,226,214,.32), rgba(255,119,109,.16) 55%, transparent 100%);
  filter: blur(3px);
  animation: bloom-glide 9s ease-in-out infinite;
  animation-delay: 1s;
}
.section-divider--glow::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(90deg, transparent 0%, rgba(255,240,235,0) 38%, rgba(255,247,244,.55) 50%, rgba(255,240,235,0) 62%, transparent 100%);
  background-size: clamp(200px,26vw,360px) 100%;
  background-repeat: no-repeat;
  background-position: -380px 0;
  -webkit-mask: linear-gradient(90deg, transparent, #000 22%, #000 78%, transparent);
          mask: linear-gradient(90deg, transparent, #000 22%, #000 78%, transparent);
  animation: bloom-kern 9s ease-in-out infinite;
  animation-delay: 1s;
}
@keyframes bloom-glide {
  0%   { transform: translate(-320px,-50%); opacity: 0; }
  6%   { opacity: 1; }
  38%  { opacity: 1; }
  44%  { transform: translate(100vw,-50%); opacity: 0; }
  100% { transform: translate(100vw,-50%); opacity: 0; }
}
@keyframes bloom-kern {
  0%   { background-position: calc(0% - 380px) 0; }
  44%  { background-position: calc(100% + 380px) 0; }
  100% { background-position: calc(100% + 380px) 0; }
}

/* ══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */
.footer { background: #072a3b; color: #fff; padding: 64px 0 0; position: relative; overflow: hidden; z-index: 3; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; position: relative; z-index: 2; }
.foot-logo { display: inline-block; color: #fff; }
.foot-logo .logo-svg { height: 30px; width: auto; display: block; }
.foot-tag { font-family: var(--body); font-weight: 700; letter-spacing: -.01em; font-size: 17px; margin-top: 12px; color: #fff; }
.foot-meta { margin-top: 16px; font-size: 13.5px; color: rgba(255,255,255,.6); line-height: 1.7; font-family: var(--body); }
.foot-meta a { color: var(--peach, #F2AF88); text-decoration: none; }
.foot-meta a:hover { color: #fff; }
.foot-info-toggle { display: inline-flex; align-items: center; gap: 8px; margin-top: 14px; background: none; border: none; cursor: pointer; font-family: var(--body); font-size: 13px; color: rgba(255,255,255,.5); padding: 0; }
.foot-info-toggle:hover { color: rgba(255,255,255,.85); }
.foot-info-ico { position: relative; width: 16px; height: 16px; flex-shrink: 0; }
.foot-info-ico::before, .foot-info-ico::after { content: ""; position: absolute; background: rgba(255,255,255,.5); border-radius: 2px; transition: transform .4s ease; }
.foot-info-ico::before { left: 0; right: 0; top: 7px; height: 1.5px; }
.foot-info-ico::after { top: 0; bottom: 0; left: 7px; width: 1.5px; }
.foot-info-toggle[aria-expanded=true] .foot-info-ico::after { transform: scaleY(0); }
.foot-info-toggle[aria-expanded=true] { color: rgba(255,255,255,.75); }
.foot-info-wrap { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .5s ease; }
.foot-info-toggle[aria-expanded=true] + .foot-info-wrap { grid-template-rows: 1fr; }
.foot-info-inner { overflow: hidden; }
.foot-h { display: block; font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--teal-lt, #53A6A6); margin-bottom: 18px; font-family: var(--body); }
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.foot-col ul li a { color: rgba(255,255,255,.78); text-decoration: none; font-size: 14.5px; transition: color .45s; font-family: var(--body); position: relative; }
.foot-col ul li a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -2px; height: 1px; background: var(--coral, #FF776D); transition: right .6s; }
.foot-col ul li a:hover::after { right: 0; }
.foot-col ul li a:hover { color: #fff; }
.footer-bottom {
  display: flex; justify-content: flex-end; align-items: center; position: relative;
  border-top: 1px solid rgba(255,255,255,.1); margin-top: 48px; padding: 24px 0;
  font-family: var(--body);
}
.footer-bottom span { font-size: 13px; color: rgba(255,255,255,.45); flex: none; text-align: right; white-space: nowrap; }
.foot-top {
  background: none; border: none; cursor: pointer; font-family: var(--body);
  color: rgba(255,255,255,.7); display: inline-flex; align-items: center; gap: 8px;
  font-size: 14.5px; font-weight: 700; white-space: nowrap; flex-shrink: 0;
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
}
.foot-top:hover { color: #fff; }
.foot-top svg { width: 15px; height: 15px; transform: rotate(-90deg); }

/* ══════════════════════════════════════════════════════════
   OVER ONS SPECIFIEK
══════════════════════════════════════════════════════════ */
.profiel-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px,6vw,80px); align-items: center; }
.profiel-foto { border-radius: 12px; overflow: hidden; }
.profiel-foto img { width: 100%; height: auto; display: block; }
.profiel-tekst { color: rgba(255,255,255,.88); }
.profiel-tekst p { font-size: 17px; line-height: 1.8; margin-bottom: 20px; }
.cert-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.cert-badge { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); color: rgba(255,255,255,.85); padding: 6px 14px; border-radius: 99px; }
.unicorn-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; margin-top: 48px; }
.unicorn-card { background: rgba(14,50,64,.72); border: 1px solid rgba(255,255,255,.14); border-radius: 10px; padding: 20px 24px; color: #fff; }
.unicorn-card h3 { font-family: var(--body); font-size: 16px; font-weight: 700; color: var(--peach); margin-bottom: 8px; }
.unicorn-card p { font-size: 14px; color: rgba(255,255,255,.72); line-height: 1.6; }
.timeline { display: flex; flex-direction: column; gap: 0; margin-top: 32px; }
.tl-item { display: grid; grid-template-columns: 100px 1fr; gap: 24px; position: relative; padding-bottom: 32px; }
.tl-item::before { content: ""; position: absolute; left: 86px; top: 8px; bottom: 0; width: 1px; background: rgba(255,255,255,.12); }
.tl-item:last-child::before { display: none; }
.tl-year { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--peach); padding-top: 4px; }
.tl-body h3 { font-family: var(--body); font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.tl-body p { font-size: 14px; color: rgba(255,255,255,.65); line-height: 1.6; }

/* ══════════════════════════════════════════════════════════
   CONTACT PAGINA
══════════════════════════════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px,6vw,80px); align-items: start; }
.contact-info p { font-size: 17px; color: rgba(255,255,255,.82); line-height: 1.75; margin-bottom: 24px; }
.contact-detail { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; font-size: 15px; color: rgba(255,255,255,.75); }
.contact-detail svg { width: 18px; height: 18px; color: var(--peach); flex-shrink: 0; }
.contact-detail a { color: rgba(255,255,255,.75); text-decoration: none; }
.contact-detail a:hover { color: #fff; }
.contact-form-wrap { background: rgba(15,67,84,.55); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,.14); border-radius: 16px; padding: clamp(32px,4vw,48px); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-field label { font-size: 13px; font-weight: 600; color: rgba(255,255,255,.75); letter-spacing: .5px; }
.form-field input, .form-field select, .form-field textarea {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px; padding: 12px 16px; color: #fff; font-family: var(--body); font-size: 15px;
  transition: border-color .3s, background .3s; width: 100%;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--teal-lt); background: rgba(255,255,255,.12);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-field input::placeholder, .form-field textarea::placeholder { color: rgba(255,255,255,.35); }
.form-field select option { background: #0e4354; color: #fff; }
.cal-embed-wrap { margin-top: 32px; border-radius: 12px; overflow: hidden; }

/* ══════════════════════════════════════════════════════════
   FOCUS PAGINA'S
══════════════════════════════════════════════════════════ */
.focus-hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); border-radius: 99px; padding: 6px 16px; font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--peach); margin-bottom: 20px; }
.deadline-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 48px; }
.deadline-card { background: rgba(14,50,64,.72); border: 1px solid rgba(255,255,255,.14); border-radius: 12px; padding: 24px; }
.deadline-date { font-family: var(--serif); font-size: 22px; font-weight: 600; color: var(--coral); display: block; margin-bottom: 8px; }
.deadline-label { font-size: 14px; color: rgba(255,255,255,.75); line-height: 1.5; }
.regimes-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; margin-top: 32px; }
.regimes-grid-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
.info-block { background: rgba(14,50,64,.72); border: 1px solid rgba(255,255,255,.14); border-radius: 12px; padding: 28px 32px; margin-bottom: 20px; }
.info-block h3 { font-family: var(--body); font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 12px; }
.info-block p { font-size: 16px; color: rgba(255,255,255,.78); line-height: 1.7; }
.info-block ul { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-top: 12px; }
.info-block ul li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: rgba(255,255,255,.78); }
.info-block ul li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--coral); flex-shrink: 0; margin-top: 7px; }
.stand-disclaimer { font-size: 12px; color: rgba(255,255,255,.35); margin-top: 32px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.08); }

/* ══════════════════════════════════════════════════════════
   LEGAL PAGINA'S (AV, Privacy, Cookie)
══════════════════════════════════════════════════════════ */
.legal-content { max-width: 760px; color: rgba(255,255,255,.82); }
.legal-content h2 { font-family: var(--body); font-size: 20px; font-weight: 700; color: #fff; margin: 36px 0 12px; }
.legal-content h3 { font-family: var(--body); font-size: 17px; font-weight: 700; color: rgba(255,255,255,.9); margin: 24px 0 8px; }
.legal-content p { font-size: 16px; line-height: 1.8; margin-bottom: 16px; }
.legal-content ul, .legal-content ol { padding-left: 20px; margin-bottom: 16px; }
.legal-content li { font-size: 16px; line-height: 1.8; margin-bottom: 8px; }
.legal-content a { color: var(--peach); text-decoration: underline; }
.legal-content a:hover { color: #fff; }
.legal-content table { width: 100%; border-collapse: collapse; margin-bottom: 24px; font-size: 15px; }
.legal-content th { text-align: left; padding: 10px 14px; background: rgba(255,255,255,.1); color: rgba(255,255,255,.9); font-weight: 600; }
.legal-content td { padding: 10px 14px; border-top: 1px solid rgba(255,255,255,.08); color: rgba(255,255,255,.75); }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */
@media(max-width:1024px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .mega-inner { grid-template-columns: 1fr 1fr; }
}
@media(max-width:980px) {
  .dienst-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; grid-template-areas: "logo logo" "col1 col2"; }
  .footer-grid > *:first-child { grid-area: logo; }
  .footer-grid > *:nth-child(2) { grid-area: col1; }
  .footer-grid > *:nth-child(3) { grid-area: col2; }
  .footer-bottom { flex-direction: column; align-items: center; gap: 14px; }
  .foot-top { position: static; transform: none; order: 1; }
  .footer-bottom span { order: 2; text-align: center; font-size: 12px; }
}
@media(max-width:860px) {
  .hero-h1 { font-size: clamp(38px,6vw,54px); }
  .hero-sub { font-size: 17px; }
  .focus-pill-wrap { grid-template-columns: 1fr; padding-bottom: clamp(40px,6vw,72px); }
  .focus-pill-shape { display: none; }
  .focus-head-col { order: -1; padding: clamp(48px,8vw,80px) clamp(20px,5vw,72px) clamp(28px,5vw,56px); background: linear-gradient(160deg,rgba(170,50,38,.70),rgba(120,42,42,.70)); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px); }
  .focus-cards-col { order: 1; padding: clamp(28px,5vw,56px) clamp(20px,5vw,72px); }
  .modules-wrap { grid-template-columns: 1fr; }
  .modules-coral-col { order: -1; border-radius: 0; transform: none!important; padding: clamp(40px,6vw,64px) clamp(20px,5vw,56px); }
  .modules-white-col { order: 1; }
  .bundel-text-col { width: 100%; max-width: 100%; box-sizing: border-box; }
  .bundel-pill { width: 100%; border-radius: 0; left: -100%; top: 0; bottom: 0; transform: none; height: 100%; }
  .bundel-pill.in { left: 0; }
  .bundel-pill-wrap { flex-direction: column; }
  .bundel-circle-col { justify-content: center; padding: 0 0 clamp(32px,5vw,56px); }
  .bundel-circle { width: clamp(220px,50vw,280px); height: clamp(220px,50vw,280px); }
  .faq-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; grid-template-areas: "logo logo" "col1 col2"; }
  .footer-grid > *:first-child { grid-area: logo; }
  .footer-grid > *:nth-child(2) { grid-area: col1; }
  .footer-grid > *:nth-child(3) { grid-area: col2; }
  .aanpak-body { grid-template-columns: 1fr; }
  .profiel-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .unicorn-grid { grid-template-columns: 1fr; }
  .deadline-grid { grid-template-columns: 1fr 1fr; }
  .mem-pill { width: 100%; border-radius: 0; left: -100%; }
  .mem-pill.in { left: 0; }
  .mem-pill-content { width: 100%; max-width: 100%; box-sizing: border-box; padding: clamp(40px,8vw,72px) clamp(20px,5vw,56px); }
  .mem-outside { display: none; }
}
@media(max-width:760px) {
  .hero-pill-bg { width: 200vw; border-radius: 0 20px 20px 0; height: clamp(460px, 68vh, 600px); }
  .play .hero-pill-bg { left: -80%; }
  .hero-content { max-width: calc(100vw - clamp(20px,5vw,72px)*2 - 24px); }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .hero-ctas .btn { min-width: 0; width: auto; flex: none; }
  .mob-ctas { flex-direction: column; align-items: stretch; }
  .mob-ctas .btn { flex: none; width: 100%; white-space: nowrap; }
  .process-steps { grid-template-columns: 1fr; gap: 28px; }
  .process-steps::before { display: none; }
  .process-step { flex-direction: row; text-align: left; align-items: flex-start; gap: 16px; }
  .ps-num { flex-shrink: 0; }
  .ps-label, .ps-desc { text-align: left; max-width: none; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; margin-top: 0; margin-bottom: 0; padding-top: 36px; padding-bottom: 32px; }
  .price-card.featured:hover { transform: translateY(-4px); }
  .kpi-row { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .deadline-grid { grid-template-columns: 1fr; }
}
@media(max-width:560px) {
  .footer-grid { grid-template-columns: 1fr 1fr; grid-template-areas: "logo logo" "col1 col2"; }
  .footer-grid > *:first-child { grid-area: logo; }
  .footer-grid > *:nth-child(2) { grid-area: col1; }
  .footer-grid > *:nth-child(3) { grid-area: col2; }
}
@media(max-width:480px) {
  .hero-h1 { font-size: clamp(36px,9vw,48px); }
  .hero-sub { font-size: 16px; }
  .hero-pill-bg { width: 260vw; border-radius: 0 16px 16px 0; height: clamp(420px, 70vh, 560px); }
  .play .hero-pill-bg { left: -130%; }
  .bundel-circle { width: clamp(200px,62vw,260px); height: clamp(200px,62vw,260px); }
}
@media(max-width:600px) {
  /* Mobiele hero-herinrichting (telefoonformaat), v2 — content-gestuurd:
     - de oude hero-pill-bg (vaste, decoratieve vorm) wordt verborgen; die had
       een vaste hoogte die niets met de kop-lengte te maken had, waardoor de
       tekst er soms buiten viel of in fragmenten van 1-2 woorden afbrak.
     - in plaats daarvan krijgt .hero-teal-card (nieuwe wrapper om h1+ctas,
       zie HTML) zelf de teal achtergrond en groeit automatisch mee met de
       inhoud — de kop past dus per definitie altijd, ongeacht de lengte.
     - de eyebrow staat erboven, buiten de kaart.
     - de mobiele "Ontdek meer"-knop (.cue-mobile, aparte knop dan de
       desktop-versie, zie toelichting bij .cue-mobile hieronder) hangt
       gecentreerd onder diezelfde kaart.
     - .hero-h1 font-size komt uit --h1-mobile, een custom property die per
       pagina inline wordt gezet (zie HTML) zodat elke kop, ongeacht lengte,
       op de bestaande regelindeling past zonder intern verder af te breken. */
  .hero--full-mobile {
    height: 100svh!important; min-height: 100svh!important;
    align-items: stretch;
    padding-top: var(--nav-h); padding-bottom: 24px;
  }
  .hero--full-mobile .hero-pill-bg { display: none; }
  .hero--full-mobile .hero-content {
    display: flex; flex-direction: column; justify-content: center; height: 100%;
    max-width: 100%;
  }
  .hero--full-mobile .eyebrow { margin: 0 0 18px; flex: none; }
  .hero--full-mobile .hero-sub { display: none; }
  .hero--full-mobile .hero-teal-card {
    background: rgba(14,67,84,.85);
    border-radius: 24px;
    padding: 28px 24px 24px;
  }
  .hero--full-mobile .hero-h1 {
    margin: 0 0 20px; line-height: 1.15;
    font-size: var(--h1-mobile, 32px);
  }
  .hero--full-mobile .hero-ctas {
    margin: 0; flex-direction: column; align-items: stretch;
  }
  .hero--full-mobile .hero-ctas .btn { width: 100%; justify-content: center; }
  /* Desktop-cue blijft desktop-only; de losse mobiele knop (nu ONDER de kaart,
     niet meer erin, gecentreerd op het scherm) neemt het over. */
  .hero--full-mobile .cue { display: none; }
  .hero--full-mobile .cue-mobile {
    display: flex; align-self: center; margin-top: 16px;
    align-items: center; text-align: center;
  }
}
@media(prefers-reduced-motion:reduce) {
  html { scroll-behavior: auto; }
  .reveal, .reveal-left, .reveal-right { opacity: 1!important; transform: none!important; transition: none!important; }
  .cue .r, .cue-mobile .r, .clients-row { animation: none!important; }
  .section-divider--glow::before, .section-divider--glow::after { animation: none!important; opacity: 0!important; }
  .play .hero-h1 .ln > span, .play .hero .eyebrow, .play .hero-sub, .play .hero-ctas, .play .cue { transform: none!important; opacity: 1!important; transition: none!important; }
  .play .hero .eyebrow i { transform: scaleX(1)!important; }
  .play .hero-pill-bg { left: -4%!important; transition: none!important; }
  .modules-coral-col { transform: none!important; }
  .bundel-pill { left: 0!important; transition: none!important; }
  .focus-pill-shape { right: 0!important; transition: none!important; }
  .mem-pill { left: 0!important; transition: none!important; }
}

/* ── COOKIE BANNER ──────────────────────────────────────── */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  background: rgba(7,42,59,.96);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(83,166,166,.3);
  padding: 20px clamp(20px,5vw,72px);
  display: flex; align-items: center;
  justify-content: space-between; gap: 24px; flex-wrap: wrap;
  font-family: var(--body);
}

/* ── FOCUS PAGES — SITUATIONS, DELIVERABLES, MODULE CARDS (v54 additions) ──── */
.situations-list { display: flex; flex-direction: column; gap: 16px; margin-top: 40px; }
.situation-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px 24px; background: rgba(255,255,255,.08); border-radius: 12px;
  border: 1px solid rgba(255,255,255,.14);
  transition: border-color .2s, box-shadow .2s;
}
.situation-item:hover { border-color: rgba(255,255,255,.28); }
.situation-icon {
  width: 40px; height: 40px; background: rgba(255,255,255,.12);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.situation-icon svg { width: 20px; height: 20px; color: rgba(255,255,255,.85); }
.situation-body { flex: 1; }
.situation-title { font-weight: 600; font-size: 15px; color: #fff; margin-bottom: 4px; }
.situation-desc { font-size: 14px; color: rgba(255,255,255,.7); line-height: 1.6; }

.modules-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 40px;
}
.modules-grid-2col { grid-template-columns: repeat(2, 1fr); }
.module-card-light {
  background: rgba(255,255,255,.08); border-radius: 12px;
  padding: 28px 24px; border: 1px solid rgba(255,255,255,.18);
  display: flex; flex-direction: column; gap: 12px;
  /* v60: border-top accent verwijderd (side-tab anti-pattern op afgeronde card) */
}
.module-card-light .mcl-accent {
  display: inline-block; width: 28px; height: 3px; border-radius: 2px;
  background: var(--peach); margin-bottom: 4px;
  /* v60: accentlijn als losse dot-bar boven de content, niet als border-hack */
}
.mc-phase {
  font-size: 10.5px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--peach);
}
.mc-title-dark {
  font-family: Georgia, serif; font-weight: bold;
  font-size: 17px; color: #fff; line-height: 1.35;
}
.mc-desc-dark { font-size: 14px; color: rgba(255,255,255,.75); line-height: 1.65; }

.deliverables-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 16px; margin-top: 40px;
}
.deliverable-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 18px 20px; background: rgba(255,255,255,.08); border-radius: 10px;
  border: 1px solid rgba(255,255,255,.16);
  /* v60: border-left stripe verwijderd (AI-tell); subtiele full-border ipv */
}
.deliverable-full { grid-column: 1 / -1; }
.deliverable-icon { color: var(--coral); flex-shrink: 0; margin-top: 2px; }
.deliverable-icon svg { width: 18px; height: 18px; }
.deliverable-text { font-size: 14px; color: rgba(255,255,255,.85); line-height: 1.6; font-weight: 500; }

.sec-note {
  margin-top: 32px; font-size: 13.5px; color: rgba(255,255,255,.65);
  line-height: 1.7; font-style: italic;
  padding: 12px 16px; border-radius: 6px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  /* v60: border-left stripe → subtiele glass-achtergrond */
}

@media (max-width: 768px) {
  .modules-grid, .modules-grid-2col, .deliverables-grid, .regimes-grid, .regimes-grid-2col { grid-template-columns: 1fr; }
  .deliverable-full { grid-column: 1; }
}
