/* ============================================================
   MORGEN COMPANY – Design System (Trainingwijzer-stijl)
   ============================================================ */

/* ── 1. CSS Custom Properties ── */
:root {
  /* Kern kleuren */
  --purple:        #5B2D8E;
  --purple-light:  #9B6FCF;
  --purple-pale:   rgba(91, 45, 142, 0.15);
  --orange:        #d8fe56;   /* Morgen geel – accentkleur */
  --orange-light:  rgba(216, 254, 86, 0.2);
  --green:         #2ECC71;
  --white:         #FFFFFF;
  --bg-dark:       #0C0818;

  /* Tekst hiërarchie */
  --text-primary:   #F0ECF5;
  --text-secondary: #D8CCEC;   /* was #C4B5D8, iets helderder op paarse kaarten */
  --text-muted:     #7A6B8E;

  /* Glassmorphism */
  --glass-bg:           rgba(255, 255, 255, 0.08);
  --glass-bg-strong:    rgba(255, 255, 255, 0.12);
  --glass-bg-hover:     rgba(255, 255, 255, 0.18);
  --glass-border:       rgba(255, 255, 255, 0.18);
  --glass-border-hover: rgba(255, 255, 255, 0.35);
  --glass-highlight:    rgba(255, 255, 255, 0.22);
  --glass-blur:         blur(40px) saturate(200%);

  /* Kaart-specifiek – duidelijk zichtbaar, lichter paars-glas */
  --card-bg:        rgba(155, 111, 207, 0.22);
  --card-bg-strong: rgba(155, 111, 207, 0.30);
  --card-bg-hover:  rgba(155, 111, 207, 0.44);
  --card-border:    rgba(180, 145, 230, 0.45);
  --card-highlight: rgba(255, 255, 255, 0.18);

  /* Schaduwen */
  --shadow:       0 4px 24px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(155, 111, 207, 0.15);
  --shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(155, 111, 207, 0.25);

  /* Border radius */
  --radius:    20px;
  --radius-lg: 28px;

  /* Animatie */
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  /* Legacy aliases – behouden voor HTML-compatibiliteit */
  --navy:  #0C0818;
  --nmd:   #100A1E;
  --nlt:   #180D30;
  --pink:  #d8fe56;            /* Roze → geel */
  --blue:  #7B4DAE;
  --grey:  #7A6B8E;
  --lgrey: #C4B5D8;
  --black: #F0ECF5;            /* Op donkere achtergrond = lichte tekst */

  /* Font aliases */
  --fd: 'Barlow', sans-serif;
  --fu: 'Barlow', sans-serif;
  --fb: 'Barlow', sans-serif;
}

/* ── 2. Reset & Base ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  color: var(--text-primary);
  background: var(--bg-dark);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}
body.blog-body {
  cursor: auto;
}
body.blog-body a,
body.blog-body button {
  cursor: pointer;
}
a,
a:visited {
  color: inherit;
}

/* ── 3. Achtergrond Blobs ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% -10%, rgba(91, 45, 142, 0.55) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 85% 70%, rgba(123, 77, 174, 0.25) 0%, transparent 50%),
    radial-gradient(ellipse 45% 35% at 15% 65%, rgba(155, 111, 207, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse 30% 30% at 70% 30%, rgba(216, 254, 86, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 35% 25% at 25% 20%, rgba(216, 254, 86, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* ── 4. Custom Cursor ── */
.cur {
  width: 10px; height: 10px;
  background: var(--orange);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transition: width .2s, height .2s;
  transform: translate(-50%, -50%);
}
.cur.big {
  width: 44px; height: 44px;
  background: rgba(216, 254, 86, 0.15);
  border: 1.5px solid var(--orange);
}

/* ── 5. Navigatie ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem 4rem;
  transition: background var(--transition);
}
nav.scrolled {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--glass-border);
}
.logo-btn {
  font-family: 'Barlow', sans-serif;
  font-weight: 900; font-size: 1.5rem;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--white); cursor: pointer;
  border: none; background: none; text-decoration: none;
  display: inline-flex; align-items: center;
}
.logo-btn em { color: var(--orange); font-style: normal; }

.nav-links { display: flex; align-items: center; gap: 1.35rem; list-style: none; }
.nav-links a {
  font-family: 'Barlow', sans-serif;
  font-size: .82rem; font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  text-decoration: none; transition: color .2s;
  cursor: pointer; border: none; background: none; padding: 0;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }

.btn-nav {
  background: linear-gradient(135deg, var(--orange), #b8e040) !important;
  color: #1A1A2E !important;
  font-size: .88rem !important;
  letter-spacing: .02em !important;
  text-transform: none !important;
  padding: .55rem 1.3rem !important;
  border-radius: var(--radius) !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 16px rgba(216, 254, 86, 0.3) !important;
}
.btn-nav:hover {
  box-shadow: 0 6px 24px rgba(216, 254, 86, 0.45) !important;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none; width: 40px; height: 40px;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  background: var(--glass-bg);
  color: var(--white); cursor: pointer;
  align-items: center; justify-content: center;
  flex-direction: column; gap: 4px;
}
.nav-toggle span { display: block; width: 18px; height: 2px; background: var(--white); border-radius: 1px; }

/* Nav-dropdown (TRAIN) */
.nav-drop { position: relative; display: flex; align-items: center; }
.nav-drop::after { content: ""; position: absolute; top: 100%; left: 0; right: 0; height: .9rem; }
.nav-drop-toggle {
  font-family: 'Barlow', sans-serif;
  font-size: .82rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--text-secondary);
  background: none; border: none; padding: 0; cursor: pointer;
  display: inline-flex; align-items: center; gap: .3rem; white-space: nowrap;
  transition: color .2s;
}
.nav-drop:hover .nav-drop-toggle, .nav-drop:focus-within .nav-drop-toggle { color: var(--white); }
.nav-caret { font-size: .65em; line-height: 1; transition: transform .2s; }
.nav-drop:hover .nav-caret, .nav-drop:focus-within .nav-caret { transform: rotate(180deg); }
.nav-sub {
  position: absolute; top: 100%; left: 0; margin-top: .7rem;
  min-width: 220px; list-style: none; padding: .4rem;
  background: rgba(12, 8, 24, 0.97);
  backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius); box-shadow: var(--shadow);
  display: none; flex-direction: column; gap: .1rem; z-index: 300;
}
.nav-drop:hover .nav-sub, .nav-drop:focus-within .nav-sub { display: flex; }
.nav-sub a {
  display: block; width: 100%; padding: .55rem .7rem;
  border-radius: calc(var(--radius) - 8px);
  font-size: .82rem; font-weight: 700; letter-spacing: .02em;
  text-transform: none; color: var(--text-secondary);
  white-space: nowrap; transition: background .2s, color .2s;
}
.nav-sub a:hover { background: var(--glass-bg); color: var(--white); }

/* ── 6. Pagina-layout ── */
.page { display: none; }
.page.active { display: block; }

/* Alle secties – donker, boven de blobs */
.sd, .sl, .sm {
  padding: 5rem 4rem;
  background: transparent;
  position: relative; z-index: 1;
}
/* Subtiele scheiding tussen secties */
.sl { background: rgba(255, 255, 255, 0.03); }
.sm { background: rgba(91, 45, 142, 0.08); }

/* ── 7. Hero ── */
.hero {
  min-height: 86vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 7.5rem 4rem 3.5rem;
  position: relative; z-index: 1; overflow: hidden;
}
.hero-home {
  display: block;
  min-height: 92vh;
}
.hero-home-layout {
  position: relative;
  z-index: 2;
  min-height: calc(92vh - 11rem);
  display: flex;
  align-items: flex-end;
}
.hero-academy {
  min-height: 70vh;
}
.hero-academy .hi {
  max-width: 42rem;
  position: relative;
  z-index: 3;
}
.academy-hero-media {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
  --academy-hero-opacity: .72;
}
.academy-hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12,8,24,.97) 0%, rgba(12,8,24,.95) 26%, rgba(12,8,24,.82) 46%, rgba(12,8,24,.48) 68%, rgba(12,8,24,.16) 100%),
    radial-gradient(circle at 76% 52%, rgba(155,111,207,.16) 0%, transparent 38%);
  z-index: 1;
}
.academy-hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 38%;
  display: block;
  opacity: var(--academy-hero-opacity);
  filter: saturate(1.04) contrast(1.02);
}
.academy-hero-photo-primary {
  animation: academyHeroPrimary 14s ease-in-out infinite;
}
.academy-hero-photo-secondary {
  object-position: 62% 52%;
  animation: academyHeroSecondary 14s ease-in-out infinite;
}
.about-hero .academy-hero-media {
  --academy-hero-opacity: .76;
}
.about-hero .academy-hero-media::after {
  background:
    linear-gradient(90deg, rgba(12,8,24,.88) 0%, rgba(12,8,24,.78) 30%, rgba(12,8,24,.5) 58%, rgba(12,8,24,.18) 82%, rgba(12,8,24,.08) 100%),
    radial-gradient(circle at 74% 50%, rgba(155,111,207,.1) 0%, transparent 42%);
}
.about-hero .academy-hero-photo-primary {
  object-position: 58% 44%;
}
.about-hero .academy-hero-photo-secondary {
  object-position: center 40%;
}
@keyframes academyHeroPrimary {
  0%, 42% { opacity: var(--academy-hero-opacity); }
  50%, 92% { opacity: 0; }
  100% { opacity: var(--academy-hero-opacity); }
}
@keyframes academyHeroSecondary {
  0%, 42% { opacity: 0; }
  50%, 92% { opacity: var(--academy-hero-opacity); }
  100% { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .academy-hero-photo-primary,
  .academy-hero-photo-secondary {
    animation: none !important;
  }
  .academy-hero-photo-primary {
    opacity: var(--academy-hero-opacity);
  }
  .academy-hero-photo-secondary {
    opacity: 0;
  }
}
@media (max-width: 980px) {
  .hero-academy {
    min-height: auto;
  }
  .academy-hero-media {
    --academy-hero-opacity: .56;
  }
  .academy-hero-media img {
    object-position: 66% 34%;
  }
  .academy-hero-photo-secondary {
    object-position: 62% 52%;
  }
  .about-hero .academy-hero-media {
    --academy-hero-opacity: .48;
  }
  .about-hero .academy-hero-photo-primary,
  .about-hero .academy-hero-photo-secondary {
    object-position: 66% 42%;
  }
}
/* Orbs in hero (retained for animation, updated colors) */
.orb { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; }
.o1 { width: 560px; height: 560px; background: radial-gradient(circle, rgba(91,45,142,.7), rgba(155,111,207,.4) 55%, transparent); top: -120px; right: -80px; opacity: .5; animation: fl1 9s ease-in-out infinite; }
.o2 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(91,45,142,.5), rgba(155,111,207,.3) 60%, transparent); bottom: 60px; right: 180px; opacity: .45; animation: fl2 11s ease-in-out infinite; }
.o3 { width: 280px; height: 280px; background: radial-gradient(circle, rgba(216,254,86,.15), transparent); bottom: 240px; right: 520px; opacity: .25; animation: fl3 13s ease-in-out infinite; }
.hgrid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: radial-gradient(ellipse 85% 85% at 50% 50%, black 20%, transparent 100%);
}
.hi { position: relative; z-index: 2; }
.hero-home .hi {
  max-width: 54rem;
  position: relative;
  z-index: 3;
}

.home-hero-media {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.home-hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12,8,24,.97) 0%, rgba(12,8,24,.95) 24%, rgba(12,8,24,.83) 43%, rgba(12,8,24,.48) 66%, rgba(12,8,24,.12) 100%),
    radial-gradient(circle at 76% 52%, rgba(155,111,207,.18) 0%, transparent 38%);
  z-index: 1;
}
.home-hero-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  object-position: center right;
  opacity: .8;
  filter: saturate(1.05) contrast(1.04);
}

.eyebrow {
  font-size: .75rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--orange);
  display: flex; align-items: center; gap: .8rem;
  margin-bottom: 1.4rem;
  opacity: 0; animation: up .7s .3s forwards;
}
.eyebrow::before { display: none; }

.h1 {
  font-weight: 900;
  font-size: clamp(3.2rem, 7.2vw, 7.8rem);
  line-height: .9; letter-spacing: .01em;
  margin-bottom: 1.6rem;
  opacity: 0; animation: up .8s .5s forwards;
}
.h1 .pk { color: var(--orange); }
.h1 .ol { -webkit-text-stroke: 2px rgba(255,255,255,.35); color: transparent; }

/* Home greeting — Goede + MORGEN. + optionele 'middag/avond/nacht' met doorhaling */
.h1-greeting { letter-spacing: 0; }
.h1-greeting .hg-morgen { position: relative; white-space: nowrap; }
.h1-greeting .hg-dot { color: var(--orange); }
.h1-greeting .hg-morgen.struck::after {
  content: '';
  position: absolute;
  left: -1%; right: -1%;
  top: 54%; height: .08em;
  background: var(--orange);
  border-radius: 3px;
  transform: rotate(-2.5deg);
}
.h1-greeting .hg-period { font-weight: 900; color: var(--white); }

.h1-sub {
  font-weight: 800;
  font-size: clamp(1.5rem, 2.8vw, 2.8rem);
  line-height: 1.05;
  letter-spacing: .005em;
  margin: -.4rem 0 2.2rem;
  max-width: 24ch;
  color: var(--white);
  opacity: 0; animation: up .8s .7s forwards;
}
.h1-sub .pk { color: var(--orange); }
.h1-sub .ol { -webkit-text-stroke: 1.5px rgba(255,255,255,.4); color: transparent; }

.hbody {
  font-size: 1.05rem; line-height: 1.7;
  color: var(--text-secondary);
  max-width: 58ch; margin-bottom: 2.2rem;
  opacity: 0; animation: up .8s .75s forwards;
}
.hctas {
  display: flex; align-items: center; gap: 1.2rem;
  opacity: 0; animation: up .8s 1s forwards; flex-wrap: wrap;
}
.academy-hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .7rem;
}
.academy-hero-button-row {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.academy-online-link {
  appearance: none;
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  font-size: .92rem;
  font-weight: 600;
  color: rgba(255,255,255,.78);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: .18em;
  text-decoration-color: rgba(255,255,255,.24);
  transition: var(--transition);
}
.academy-online-link:hover {
  color: var(--white);
  text-decoration-color: rgba(255,255,255,.52);
}

.hstats {
  display: flex; gap: 2.4rem;
  padding-top: 2rem; margin-top: 2.4rem;
  border-top: 1px solid var(--glass-border);
  opacity: 0; animation: fi 1s 1.4s forwards; flex-wrap: wrap;
}
.hsn { font-size: 2.35rem; font-weight: 900; letter-spacing: .02em; line-height: 1; color: var(--white); }
.hsn em { color: var(--orange); font-style: normal; }
.hsn-word { font-size: 1.7rem; line-height: 1.05; letter-spacing: .01em; }
.hsl { font-size: .73rem; color: var(--text-muted); margin-top: .3rem; max-width: 16ch; line-height: 1.4; }

/* ── 9. Logo band ── */
.logo-band {
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  padding: 1rem 0; overflow: hidden; position: relative; z-index: 1;
}
.logo-band::before, .logo-band::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 140px; z-index: 2; pointer-events: none;
}
.logo-band::before { left: 0; background: linear-gradient(90deg, var(--bg-dark), transparent); }
.logo-band::after { right: 0; background: linear-gradient(-90deg, var(--bg-dark), transparent); }
/* De gekloonde banden staan op secties met een eigen achtergrond, waar een fade
   in --bg-dark als donkere veeg zichtbaar wordt. Daar maskeren we de rand weg in
   plaats van er een kleur overheen te leggen: werkt op elke achtergrond. Die
   banden bevatten alleen de logostrip, dus er valt geen label onder het masker. */
.logo-band[data-logo-band-clone]::before,
.logo-band[data-logo-band-clone]::after { display: none; }
.logo-band[data-logo-band-clone] {
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 90px, #000 calc(100% - 90px), transparent);
  mask-image: linear-gradient(90deg, transparent, #000 90px, #000 calc(100% - 90px), transparent);
}
.logo-track { display: flex; align-items: center; gap: 3.5rem; animation: logoScroll 28s linear infinite; width: max-content; }
.logo-track:hover { animation-play-state: paused; }
.clogo { height: 32px; width: auto; opacity: .45; filter: brightness(0) invert(1); transition: opacity .25s; flex-shrink: 0; }
.clogo:hover { opacity: .8; }
#page-home .logo-band {
  padding: 1.6rem 0;
  cursor: pointer;
  background: rgba(255,255,255,.055);
  transition: background .25s, border-color .25s;
}
#page-home .logo-band:hover,
#page-home .logo-band:focus-visible {
  background: rgba(255,255,255,.085);
  border-color: rgba(216,254,86,.22);
  outline: none;
}
#page-home .logo-track {
  gap: 5rem;
  animation-duration: 34s;
}
#page-home .clogo {
  height: 52px;
  opacity: .66;
}
#page-home .logo-band:hover .clogo,
#page-home .logo-band:focus-visible .clogo {
  opacity: .9;
}
@keyframes logoScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Logo-band label — verwijst naar /projecten */
.logo-band-label {
  position: relative; z-index: 3;
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: .55rem;
  margin: 0 0 1.1rem; padding: 0 1rem;
  font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .18em;
  color: var(--text-secondary);
}
.logo-band-label .lbl-cta {
  display: inline-flex; align-items: center; gap: .4rem;
  color: var(--orange);
}
.logo-band-label .lbl-cta .arrow { transition: transform .25s; }
#page-home .logo-band:hover .logo-band-label .lbl-cta .arrow,
#page-home .logo-band:focus-visible .logo-band-label .lbl-cta .arrow {
  transform: translateX(4px);
}

/* ── 10. Gedeelde sectie-elementen ── */
.slabel {
  font-size: .65rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--orange);
  display: flex; align-items: center; gap: .7rem; margin-bottom: 1rem;
}
.slabel::before { display: none; }
.slabel.dk { color: var(--purple-light); }

.stitle {
  font-weight: 900;
  font-size: clamp(2.3rem, 4.8vw, 4.6rem);
  line-height: .95; letter-spacing: .01em;
  color: var(--text-primary);
}

.reveal { opacity: 1; transform: none; transition: opacity .8s ease, transform .8s ease; }
.anim .reveal { opacity: 0; transform: translateY(24px); }
.anim .reveal.visible { opacity: 1; transform: translateY(0); }

/* Projecten thema-filters */
.project-filters{display:flex;flex-wrap:wrap;gap:.55rem;justify-content:center;align-items:center;max-width:880px;margin:0 auto 2.6rem;padding:0 1rem}
.pfilter{font-family:inherit;font-size:.88rem;font-weight:600;letter-spacing:.01em;color:rgba(255,255,255,.72);background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.16);border-radius:999px;padding:.5rem 1.15rem;cursor:pointer;transition:color .2s,background .2s,border-color .2s}
.pfilter:hover{color:#fff;border-color:rgba(255,255,255,.34)}
.pfilter.is-active{color:#0C0818;background:var(--orange);border-color:var(--orange)}
.pfilter:focus-visible{outline:2px solid var(--orange);outline-offset:2px}
@media (max-width:600px){.pfilter{font-size:.8rem;padding:.45rem .9rem}}

.pgrid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 4.5rem; align-items: center; }
.ptitle {
  font-weight: 900;
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  line-height: 1; letter-spacing: .01em;
  margin-bottom: 1.2rem; color: var(--text-primary);
}
.pbody { font-size: .95rem; line-height: 1.75; color: var(--text-secondary); margin-bottom: 1rem; }

.callout {
  background: var(--purple-pale);
  border-left: 3px solid var(--purple-light);
  padding: 1.1rem 1.4rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-top: 1.8rem;
  font-size: .9rem; font-weight: 500; line-height: 1.6;
  color: var(--text-primary);
  box-shadow: inset 0 1px 0 rgba(155, 111, 207, 0.15);
}

/* ── 11. Stat-kaarten (.sc) ── */
.scards {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: .8rem; background: transparent;
}
.sc {
  background: var(--card-bg-strong);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow), inset 0 1px 0 var(--card-highlight);
  padding: 1.8rem;
  transition: var(--transition);
  min-height: 184px;
  display: flex; flex-direction: column; justify-content: flex-start;
}
.sc:hover {
  background: var(--card-bg-hover);
  border-color: var(--glass-border-hover);
  box-shadow: var(--shadow-hover), inset 0 1px 0 rgba(255,255,255,.3);
  transform: translateY(-2px);
}
.scn {
  font-size: 2.8rem; font-weight: 900;
  letter-spacing: .02em; color: var(--orange);
  line-height: 1; margin-bottom: .4rem;
}
.scd { font-size: .82rem; color: var(--text-secondary); line-height: 1.5; }

/* Academy stats overrides */
#page-academy .scards { gap: .8rem; background: transparent; }
#page-academy .sc { min-height: 200px; }
#page-academy .scn { font-size: 2.4rem; color: var(--orange); letter-spacing: .01em; margin-bottom: .6rem; }
#page-academy .scn-stars { font-size: 2.05rem; letter-spacing: .07em; }
#page-academy .scn-text { font-size: 1.8rem; line-height: 1.15; white-space: nowrap; }
#page-academy .scn-plus { font-size: 1.45rem; line-height: 1; color: var(--purple-light); }
#page-academy .scd { font-size: .78rem; line-height: 1.55; color: var(--text-secondary); max-width: 24ch; }

/* ── 12. Opleidingen intro sectie ── */
.lbintro { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: end; margin-bottom: 4rem; }
.lbintro-p { font-size: .95rem; line-height: 1.8; color: var(--text-secondary); }
.practice-photo {
  margin: 0 0 3rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow);
}
.practice-photo img {
  width: 100%;
  max-height: 440px;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  transition: transform .5s ease;
}
.practice-photo:hover img { transform: scale(1.025); }
@media (max-width: 720px) {
  .practice-photo img { max-height: 280px; }
}

/* ── 13. Toolselector ── */
.toolselector-wrap {
  max-width: 960px;
  margin: 0 auto;
}
.toolselector-teaser {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--card-bg-strong);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow), inset 0 1px 0 var(--card-highlight);
  padding: 2.2rem;
  transition: var(--transition);
}
.toolselector-teaser:hover {
  transform: translateY(-3px);
  background: var(--card-bg-hover);
  border-color: var(--glass-border-hover);
  box-shadow: var(--shadow-hover), inset 0 1px 0 rgba(255,255,255,.3);
}
.toolselector-kicker {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
}
.toolselector-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.toolselector-highlight { color: var(--purple-light); }
.toolselector-open {
  font-size: .8rem;
  font-weight: 700;
  color: var(--text-secondary);
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  transition: color .2s, gap .2s;
}
.toolselector-teaser:hover .toolselector-open {
  color: var(--white);
  gap: .7rem;
}
.toolselector-teaser .ptitle { margin-bottom: .9rem; }
.toolselector-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-top: 1.5rem;
}
.toolselector-tags span {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  background: rgba(255,255,255,.05);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  padding: .5rem .8rem;
}
.toolselector-followup {
  margin-top: 1rem;
  display: flex;
}

/* ── 14. Actieroutes homepage ── */
.action-showcase {
  overflow: visible;
  background:
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px) 0 0 / 8.5rem 100%,
    radial-gradient(circle at 80% 40%, rgba(155,111,207,.18), transparent 34%),
    rgba(255,255,255,.025);
}
.action-showcase-intro {
  max-width: 58rem;
  margin-bottom: 2.2rem;
}
.action-showcase-sub {
  max-width: 48rem;
  margin-top: 1.2rem;
  color: var(--text-secondary);
  font-size: clamp(1rem, 1.45vw, 1.28rem);
  line-height: 1.55;
}
.action-showcase-copy {
  max-width: 64rem;
  margin-top: 1rem;
  color: var(--text-secondary);
  font-size: clamp(.98rem, 1.08vw, 1.08rem);
  line-height: 1.75;
}
.action-showcase-copy a {
  color: var(--orange);
  font-weight: 800;
  text-decoration: none;
}
.action-list {
  position: relative;
  border-top: 1px solid rgba(255,255,255,.14);
}
.action-row {
  position: relative;
  min-height: 12rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  padding: 2.1rem 2rem;
  border-bottom: 1px solid rgba(255,255,255,.14);
  cursor: none;
  isolation: isolate;
  transition: color var(--transition);
}
.action-row::before {
  content: '';
  position: absolute;
  inset: 0 -2rem;
  z-index: -1;
  background: linear-gradient(90deg, rgba(91,45,142,.38), rgba(155,111,207,.22), rgba(216,254,86,.05));
  opacity: 0;
  transition: opacity var(--transition);
}
.action-row:hover::before,
.action-row:focus-visible::before {
  opacity: 1;
}
.action-row:focus-visible {
  outline: 1px solid rgba(216,254,86,.65);
  outline-offset: -1px;
}
.action-copy {
  max-width: 56rem;
}
.action-copy h3 {
  font-weight: 760;
  font-size: clamp(2.4rem, 4.7vw, 5.7rem);
  line-height: .9;
  letter-spacing: -.035em;
  color: rgba(255,255,255,.94);
  text-transform: uppercase;
  margin-bottom: .75rem;
}
.action-copy p {
  max-width: 42rem;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.45;
  color: var(--text-secondary);
}
.action-meta {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: .55rem;
  max-width: 25rem;
  margin-bottom: .9rem;
}
.action-meta span {
  font-size: .68rem;
  font-weight: 650;
  color: rgba(240,236,245,.7);
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  padding: .38rem .68rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.action-image {
  position: absolute;
  right: 4.5rem;
  top: 50%;
  z-index: 3;
  width: clamp(250px, 24vw, 410px);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: 0 26px 70px rgba(0,0,0,.5), 0 0 44px rgba(91,45,142,.32);
  opacity: 0;
  transform: translateY(-42%) translateX(22px) rotate(-1.2deg) scale(.96);
  pointer-events: none;
  transition: opacity .24s ease, transform .24s ease;
}
.action-row:hover .action-image,
.action-row:focus-visible .action-image {
  opacity: 1;
  transform: translateY(-50%) translateX(0) rotate(-1.2deg) scale(1);
}
.llink {
  font-weight: 600; font-size: .85rem;
  display: inline-flex; align-items: center; gap: .4rem;
  cursor: pointer; transition: gap .2s;
  margin-top: auto; border: none; background: none; text-decoration: none;
}
.llink:hover { gap: .7rem; }
.ll-b { color: var(--white); }
.ll-p { color: var(--white); }
.ll-k { color: var(--orange); }
.ll-g { color: #2dd4a0; }

.home-metrics-strip {
  margin-top: 1.5rem;
}
.home-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  background: linear-gradient(180deg, rgba(42,27,69,.34), rgba(18,12,34,.42));
  border: 1px solid rgba(182,154,224,.16);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 36px rgba(0,0,0,.12), inset 0 1px 0 rgba(255,255,255,.1);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  padding: 1.2rem 1.35rem;
}
.home-metric {
  padding: .35rem .45rem;
}
.home-metric-cta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.home-metric-button {
  padding: .8rem 1.15rem;
  font-size: .82rem;
  white-space: nowrap;
}
.home-metric-value {
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(255,255,255,.92);
}
.home-metric-value em {
  color: var(--orange);
  font-style: normal;
}
.home-metric-stars {
  font-size: 1.45rem;
  letter-spacing: .06em;
}
.home-metric-label {
  margin-top: .35rem;
  font-size: .72rem;
  line-height: 1.45;
  color: rgba(216,204,236,.72);
  max-width: 16ch;
}

.home-company-band { padding-top: 0; }
.home-company-band-card {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 2rem;
  align-items: center;
  background: linear-gradient(135deg, rgba(91,45,142,.22), rgba(255,255,255,.04));
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow), inset 0 1px 0 var(--card-highlight);
  padding: 2rem 2rem 2rem 2.2rem;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
}
.home-company-band-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12,8,24,.06) 0%, rgba(12,8,24,.08) 38%, rgba(12,8,24,.34) 100%),
    radial-gradient(circle at 78% 50%, rgba(155,111,207,.24) 0%, transparent 42%);
  pointer-events: none;
}
.home-company-band-card:hover {
  background: linear-gradient(135deg, rgba(91,45,142,.3), rgba(255,255,255,.06));
  border-color: var(--glass-border-hover);
  box-shadow: var(--shadow-hover), inset 0 1px 0 rgba(255,255,255,.3);
  transform: translateY(-3px);
}
.home-company-band-copy,
.home-company-band-visual {
  position: relative;
  z-index: 1;
}
.home-company-band-title {
  font-weight: 900;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: .98;
  letter-spacing: .01em;
  color: var(--white);
  margin-bottom: .85rem;
  max-width: 15ch;
}
.home-company-band-body {
  font-size: .92rem;
  line-height: 1.75;
  color: var(--text-secondary);
  max-width: 58ch;
}
.home-company-band-actions {
  display: flex;
  gap: .9rem;
  flex-wrap: wrap;
  margin-top: 1.35rem;
}
.home-company-band-visual {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.home-company-band-avatars {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 1rem;
}
.home-company-band-avatar {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg, var(--purple-light), var(--purple));
  box-shadow: 0 14px 30px rgba(0,0,0,.28);
  margin-left: -18px;
}
.home-company-band-avatar:first-child { margin-left: 0; }
.home-company-band-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 3px solid rgba(12,8,24,.94);
}
.home-company-band-people {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-secondary);
  text-align: right;
}
.home-company-band-tags {
  display: flex;
  gap: .55rem;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-top: .9rem;
}
.home-company-band-tags span {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  background: rgba(255,255,255,.06);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  padding: .45rem .72rem;
}

/* ── 14. Werkwijze stappen (.wstep) ── */
.wgrid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--glass-border);
  border-radius: var(--radius-lg); overflow: hidden; margin-top: 3.5rem;
}
.wstep {
  background: var(--glass-bg);
  padding: 2.2rem 1.8rem;
  transition: var(--transition);
}
.wstep:hover {
  background: var(--glass-bg-hover);
}
.wnum {
  font-size: 4.5rem; font-weight: 900;
  color: rgba(216, 254, 86, 0.1);
  line-height: 1; margin-bottom: .8rem;
  transition: color .2s;
}
.wstep:hover .wnum { color: rgba(216, 254, 86, 0.25); }
.wtitle { font-size: .95rem; font-weight: 700; color: var(--white); margin-bottom: .6rem; }
.wbody { font-size: .85rem; color: var(--text-secondary); line-height: 1.7; }
.wstep .llink { margin-top: 1rem; }

/* ── 15. Trainingskaarten (.tcard) ── */
.tr-filter {
  display: flex; gap: .5rem; margin-top: 2rem; justify-content: center;
}
.tr-filter-btn {
  font-family: var(--fu); font-size: .72rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .6rem 1.4rem; border-radius: 100px; cursor: pointer;
  border: 1px solid var(--glass-border); background: rgba(255,255,255,.08);
  color: var(--white); transition: var(--transition);
}
.tr-filter-btn:hover { border-color: var(--glass-border-hover); color: var(--white); }
.tr-filter-btn.active {
  background: var(--white); color: #1a1225; border-color: var(--white);
}
.trgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-top: 1.5rem; }
.trgrid-four { grid-template-columns: repeat(4, 1fr); }
.trgrid-two { grid-template-columns: repeat(2, 1fr); }
.academy-section-intro {
  font-family: var(--fb);
  color: var(--text-secondary);
  max-width: 58ch;
  margin-top: 1.2rem;
  font-size: .95rem;
  line-height: 1.8;
}
.academy-section-note {
  margin-top: 1rem;
  font-family: var(--fu);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
}
.academy-review-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin-top: 1.35rem;
}
.academy-review-grid .academy-review-card { margin-top: 0; max-width: none; }
@media (max-width: 900px) {
  .academy-review-grid { grid-template-columns: 1fr; }
}
.academy-review-card {
  margin-top: 1.35rem;
  max-width: 72ch;
  padding: 1.2rem 1.3rem;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,.08);
}
.academy-review-card a {
  color: inherit;
  text-decoration: none;
  display: block;
}
.academy-review-label {
  display: inline-block;
  margin-bottom: .7rem;
  font-family: var(--fu);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
}
.academy-review-quote {
  color: var(--text-primary);
  font-size: .96rem;
  line-height: 1.75;
}
.academy-review-author {
  margin-top: .7rem;
  color: var(--text-secondary);
  font-size: .84rem;
  line-height: 1.5;
}
.tcard {
  background: var(--card-bg-strong);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow), inset 0 1px 0 var(--card-highlight);
  padding: 1.8rem;
  transition: var(--transition);
  cursor: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.tcard:hover {
  background: var(--card-bg-hover);
  border-color: var(--glass-border-hover);
  box-shadow: var(--shadow-hover), inset 0 1px 0 rgba(255,255,255,.3);
  transform: translateY(-3px);
}
.tlev {
  font-size: .62rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  padding: .3rem .7rem; border-radius: 100px;
  display: inline-block; margin-bottom: .9rem;
}
.tl-s { background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.28); color: var(--text-primary); }
.tl-a { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.20); color: var(--text-secondary); }
.tl-e { background: rgba(216,254,86,.18); border: 1px solid rgba(216,254,86,.4); color: var(--orange); }
.ttitle { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: .5rem; line-height: 1.3; }
.tdesc { font-size: .85rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 1rem; }
.tmeta { display: flex; gap: 1rem; font-size: .72rem; color: var(--text-secondary); font-weight: 500; margin-top: auto; }
.tcard-hint {
  margin-top: 1rem;
  font-family: var(--fu);
  font-size: .75rem;
  font-weight: 700;
  color: var(--orange);
}
.tcard-wide {
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.tcard-wide .tcard-wide-copy { max-width: 72ch; }
.tcard-wide .tdesc { margin-bottom: 0; }
.tcard-wide .tmeta { margin-top: 0; flex-shrink: 0; }

/* ── 15b. Leerlijn (skill tree: basis boven, richtingen eronder) ── */
.leerlijn {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px .9rem;
  margin-top: 2.4rem;
}
.leerlijn-step:nth-of-type(1) { grid-column: 1 / -1; grid-row: 1; }
.leerlijn-step:nth-of-type(2) { grid-column: 1; grid-row: 2; }
.leerlijn-step:nth-of-type(3) { grid-column: 2; grid-row: 2; }
.leerlijn-step:nth-of-type(4) { grid-column: 3; grid-row: 2; }
.leerlijn-step:nth-of-type(5) { grid-column: 3; grid-row: 3; }
.leerlijn-step:nth-of-type(2)::before,
.leerlijn-step:nth-of-type(3)::before,
.leerlijn-step:nth-of-type(4)::before {
  content: '';
  position: absolute;
  top: -26px; left: 50%;
  height: 26px;
  border-left: 2px dashed rgba(155,111,207,.45);
}
.leerlijn-step:nth-of-type(5)::before {
  content: '';
  position: absolute;
  top: -26px; left: 50%;
  height: 26px;
  border-left: 2px dashed rgba(216,254,86,.4);
}
.leerlijn-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: var(--card-bg-strong);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow), inset 0 1px 0 var(--card-highlight);
  padding: 1.5rem 1.3rem 1.2rem;
  transition: var(--transition);
  cursor: pointer;
}
.leerlijn-step:hover {
  background: var(--card-bg-hover);
  border-color: var(--glass-border-hover);
  box-shadow: var(--shadow-hover), inset 0 1px 0 rgba(255,255,255,.3);
  transform: translateY(-4px);
}
.leerlijn-step:nth-of-type(4) { border-color: rgba(216,254,86,.28); }
.leerlijn-step-top {
  border-color: rgba(216,254,86,.4);
  box-shadow: 0 4px 26px rgba(216,254,86,.12), inset 0 1px 0 var(--card-highlight);
}
.leerlijn-fundament {
  display: grid;
  grid-template-columns: auto 1fr auto;
  column-gap: 1.3rem;
  align-items: center;
  padding: 1.4rem 1.6rem;
  border-color: rgba(155,111,207,.55);
}
.leerlijn-fundament .leerlijn-icon { grid-column: 1; grid-row: 1; align-self: start; margin-bottom: 0; }
.leerlijn-fundament .leerlijn-name { grid-column: 2; font-size: 1.05rem; }
.leerlijn-fundament .leerlijn-aud { grid-column: 2; margin-top: .15rem; }
.leerlijn-fundament .leerlijn-desc { grid-column: 2; margin-top: .45rem; max-width: 88ch; }
.leerlijn-fundament .leerlijn-hint { grid-column: 2; margin-top: .6rem; }
.leerlijn-fundament .leerlijn-meta { grid-column: 3; grid-row: 1 / 5; margin-top: 0; padding-top: 0; }
.leerlijn-icon { color: var(--purple-light); margin-bottom: .6rem; }
.leerlijn-icon svg { width: 22px; height: 22px; display: block; }
.leerlijn-step-top .leerlijn-icon { color: var(--orange); }
.leerlijn-badge {
  position: absolute;
  top: .95rem; right: .95rem;
  font-family: var(--fu);
  font-size: .55rem; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase;
  padding: .28rem .55rem;
  border-radius: 100px;
  background: rgba(216,254,86,.14);
  border: 1px solid rgba(216,254,86,.35);
  color: var(--orange);
}
.leerlijn-name {
  font-size: .95rem; font-weight: 800;
  color: var(--white); line-height: 1.25;
}
.leerlijn-sub {
  margin-top: .2rem;
  font-size: .74rem; font-weight: 600;
  color: var(--text-secondary); line-height: 1.35;
}
.leerlijn-aud {
  margin-top: .55rem;
  font-size: .76rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.45;
}
.leerlijn-desc {
  margin-top: .6rem;
  font-size: .85rem;
  color: var(--text-secondary);
  line-height: 1.7;
}
.leerlijn-hint {
  margin-top: .9rem;
  font-family: var(--fu);
  font-size: .75rem;
  font-weight: 700;
  color: var(--orange);
}
.leerlijn-meta {
  display: flex; gap: .8rem; flex-wrap: wrap;
  margin-top: auto;
  padding-top: .85rem;
  font-family: var(--fu);
  font-size: .68rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--orange);
}
@media (max-width: 900px) {
  .leerlijn { grid-template-columns: 1fr; gap: 1.4rem; }
  .leerlijn-step:nth-of-type(1),
  .leerlijn-step:nth-of-type(2),
  .leerlijn-step:nth-of-type(3),
  .leerlijn-step:nth-of-type(4),
  .leerlijn-step:nth-of-type(5) { grid-column: auto; grid-row: auto; }
  .leerlijn-step:nth-of-type(2)::before,
  .leerlijn-step:nth-of-type(3)::before,
  .leerlijn-step:nth-of-type(4)::before,
  .leerlijn-step:nth-of-type(5)::before { display: none; }
  .leerlijn-fundament {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 1.5rem 1.3rem 1.2rem;
  }
  .leerlijn-fundament .leerlijn-icon { margin-bottom: .6rem; }
  .leerlijn-fundament .leerlijn-name { font-size: .95rem; }
  .leerlijn-fundament .leerlijn-aud { margin-top: .55rem; }
  .leerlijn-fundament .leerlijn-meta { margin-top: .75rem; }
}

/* Volgende trede in trainingspopup */
.tp-next {
  display: flex; align-items: center; gap: .8rem; flex-wrap: wrap;
  margin-top: 1.2rem;
  padding: .85rem 1.1rem;
  border-radius: var(--radius);
  background: rgba(216,254,86,.08);
  border: 1px solid rgba(216,254,86,.25);
}
.tp-next-label {
  font-family: var(--fu);
  font-size: .64rem; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--orange);
}
.tp-next a {
  color: var(--white);
  font-size: .85rem; font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}
.tp-next a:hover { color: var(--orange); }

.why-morgen {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: clamp(3rem, 6vw, 6.5rem);
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
}
.why-morgen-copy .ptitle {
  max-width: 11ch;
  margin-bottom: 1.5rem;
}
.why-morgen-copy .pbody + .pbody {
  margin-top: 1.4rem;
}
.why-morgen-copy .pbody {
  max-width: 54ch;
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.8;
}
.why-morgen-copy .callout {
  margin-top: 1.5rem;
}
.about-intro-copy {
  max-width: min(100%, 1180px);
}
.about-intro-copy .pbody {
  max-width: none;
  font-size: 1.02rem;
  line-height: 1.9;
}
.about-intro-heading {
  margin-top: 2.35rem;
  font-family: var(--fd);
  font-size: 1.7rem;
  line-height: 1.08;
  color: var(--white);
}
.about-intro-list {
  max-width: none;
}
.about-intro-list li {
  font-size: 1rem;
  line-height: 1.8;
}
.why-morgen-points {
  display: grid;
  border-top: 1px solid rgba(255,255,255,.14);
}
.why-morgen-point {
  position: relative;
  display: grid;
  grid-template-columns: minmax(11rem, .48fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 3.2vw, 3rem);
  align-items: start;
  padding: clamp(1.55rem, 2.4vw, 2.2rem) 0;
  border-bottom: 1px solid rgba(255,255,255,.14);
  isolation: isolate;
  transition: padding var(--transition), border-color var(--transition);
}
.why-morgen-point::before {
  display: none;
}
.why-morgen-point::after {
  content: '';
  position: absolute;
  inset: .45rem -1.35rem;
  z-index: -1;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(90deg, rgba(216,254,86,.08), rgba(155,111,207,.18), rgba(255,255,255,.035));
  opacity: 0;
  transform: scaleX(.985);
  transition: opacity var(--transition), transform var(--transition);
}
.why-morgen-point:hover {
  padding-left: .35rem;
  border-color: rgba(216,254,86,.28);
}
.why-morgen-point:hover::after {
  opacity: 1;
  transform: scaleX(1);
}
.why-morgen-point h3 {
  font-size: clamp(1.45rem, 2vw, 2.35rem);
  line-height: 1;
  letter-spacing: -.04em;
  font-weight: 800;
  color: var(--white);
  margin: 0;
}
.why-morgen-point p {
  max-width: 52ch;
  font-size: .96rem;
  line-height: 1.65;
  color: var(--text-secondary);
  margin: .15rem 0 0;
}

.about-journey {
  --about-progress: 0;
  position: relative;
  padding: clamp(5rem, 8vw, 8rem) 4rem;
  overflow: hidden;
}
.about-journey::before {
  content: '';
  position: absolute;
  inset: 6% 0 auto auto;
  width: 42vw;
  height: 42vw;
  min-width: 420px;
  min-height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216,254,86,.12), rgba(155,111,207,.08) 42%, transparent 70%);
  filter: blur(8px);
  pointer-events: none;
}
.about-journey-rail {
  position: absolute;
  top: clamp(7rem, 12vw, 10rem);
  bottom: clamp(7rem, 12vw, 10rem);
  left: clamp(2rem, 7vw, 7rem);
  width: 2.5rem;
  z-index: 1;
}
.about-journey-track {
  position: relative;
  width: 2px;
  height: 100%;
  margin: 0 auto;
  background: linear-gradient(180deg, rgba(216,254,86,.18), rgba(155,111,207,.34), rgba(216,254,86,.16));
}
.about-journey-ball {
  position: absolute;
  top: calc(var(--about-progress) * 100%);
  left: 50%;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 .6rem rgba(216,254,86,.12), 0 0 34px rgba(216,254,86,.42);
  transform: translate(-50%, -50%);
  transition: top .12s linear;
}
.about-journey-intro,
.about-stage {
  position: relative;
  z-index: 2;
  max-width: min(1120px, 74vw);
  margin-left: clamp(4.75rem, 12vw, 12rem);
}
.about-journey-intro {
  margin-bottom: clamp(3rem, 7vw, 7rem);
}
.about-journey-intro h2 {
  font-size: clamp(2.7rem, 6vw, 6.6rem);
  line-height: .9;
  letter-spacing: -.07em;
  color: var(--white);
  max-width: 10ch;
}
.about-journey-intro .about-journey-title-wide {
  max-width: none;
  white-space: nowrap;
}
.about-journey-intro p {
  max-width: 66ch;
  color: var(--text-secondary);
  font-size: clamp(1rem, 1.3vw, 1.16rem);
  line-height: 1.8;
  margin-top: 1.4rem;
}
.about-journey-intro a {
  color: var(--orange);
  text-decoration: none;
}
.about-stage {
  min-height: 58vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: clamp(2.5rem, 5vw, 5rem);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: clamp(1.4rem, 3vw, 2.4rem);
  background:
    linear-gradient(135deg, rgba(255,255,255,.06), rgba(155,111,207,.08)),
    rgba(20,13,34,.42);
  box-shadow: 0 24px 70px rgba(0,0,0,.16), inset 0 1px 0 rgba(255,255,255,.08);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
}
.about-stage:nth-of-type(even) {
  transform: translateX(clamp(0rem, 4vw, 4rem));
}
.about-stage-mark {
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 .55rem rgba(216,254,86,.1);
  margin-bottom: 1.35rem;
}
.about-stage h3 {
  font-size: clamp(2.1rem, 4.6vw, 5rem);
  line-height: .96;
  letter-spacing: -.06em;
  color: var(--white);
  max-width: 13ch;
  margin-bottom: 1.4rem;
}
.about-stage p {
  max-width: 78ch;
  color: var(--text-secondary);
  font-size: clamp(1rem, 1.18vw, 1.12rem);
  line-height: 1.8;
}
.about-stage p + p {
  margin-top: 1rem;
}
.about-stage-list {
  max-width: 76ch;
}
.about-stage-note {
  display: inline-flex;
  align-self: flex-start;
  margin-top: 1.4rem;
  padding: .7rem 1rem;
  border-radius: 999px;
  background: rgba(216,254,86,.08);
  border: 1px solid rgba(216,254,86,.22);
  color: var(--orange);
  font-family: var(--fu);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.home-photo-strip {
  padding: 1.75rem 4rem 4rem;
}
.home-photo-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.home-photo-strip-card {
  margin: 0;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow);
}
.home-photo-strip-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.home-photo-strip-card-training img {
  object-position: center 56%;
}
.academy-photo-strip {
  padding-top: 2.5rem;
  padding-bottom: 5.25rem;
}
.academy-photo-grid {
  grid-template-columns: 1.2fr .95fr 1.08fr;
  grid-auto-rows: 170px;
  gap: 1.25rem;
  align-items: start;
}
.academy-photo-card {
  aspect-ratio: auto;
  min-height: 100%;
  position: relative;
}
.academy-photo-card img {
  transition: transform .35s ease;
}
.academy-photo-card:hover img {
  transform: scale(1.03);
}
.academy-photo-card-wide {
  grid-column: 1 / 2;
  grid-row: 1 / span 2;
  transform: translateY(.8rem) rotate(-1.2deg);
}
.academy-photo-card-tall {
  grid-column: 2 / 3;
  grid-row: 1 / span 3;
  transform: translateY(3.2rem) rotate(1.4deg);
}
.academy-photo-card-stage {
  grid-column: 3 / 4;
  grid-row: 1 / span 2;
  transform: translateY(-.6rem) rotate(-.8deg);
}
.academy-photo-card-detail {
  grid-column: 1 / 2;
  grid-row: 3 / span 3;
  transform: translateX(2.8rem) rotate(.9deg);
}
.academy-photo-card-karin {
  grid-column: 3 / 4;
  grid-row: 3 / span 3;
  transform: translateX(-1rem) translateY(2rem) rotate(1.1deg);
}
.academy-photo-card-wide img {
  object-position: center 54%;
}
.academy-photo-card-tall img {
  object-position: center 42%;
}
.academy-photo-card-stage img {
  object-position: center;
}
.academy-photo-card-detail img {
  object-position: center 38%;
}
.academy-photo-card-karin img {
  object-position: center 30%;
}
.academy-photo-card-event {
  grid-column: 2 / 3;
  grid-row: 4 / span 2;
  transform: translateY(1rem) rotate(-1deg);
}
.academy-photo-card-event img {
  object-position: center 45%;
}

@media (max-width: 1024px) {
  .why-morgen {
    grid-template-columns: 1fr;
  }
  .about-journey-rail {
    left: 2rem;
  }
  .about-journey-intro,
  .about-stage {
    margin-left: 4.5rem;
  }
  .about-stage:nth-of-type(even) {
    transform: none;
  }
  .home-photo-strip-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .academy-photo-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 210px;
  }
  .academy-photo-card-wide,
  .academy-photo-card-tall,
  .academy-photo-card-stage,
  .academy-photo-card-detail,
  .academy-photo-card-karin,
  .academy-photo-card-event {
    grid-column: auto;
    grid-row: auto;
    transform: none;
  }
}

/* ── 16b. Trainingswijzer banner ── */
.tw-banner {
  padding: 0 4rem 4.5rem;
  position: relative;
  z-index: 1;
}
.tw-banner-inner {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: stretch;
  max-width: none;
  margin: 0 auto;
  background: linear-gradient(180deg, rgba(102,61,153,.36), rgba(26,18,42,.52));
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-radius: 1.5rem;
  padding: 1rem;
  border: 1px solid rgba(182,154,224,.2);
  box-shadow: 0 22px 52px rgba(0,0,0,.16), inset 0 1px 0 rgba(255,255,255,.1);
  overflow: hidden;
}
.tw-banner-photo {
  min-height: 300px;
  border-radius: 1rem;
  overflow: hidden;
  background: rgba(255,255,255,.06);
}
.tw-banner-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.tw-banner-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.2rem 2rem 2.2rem 0;
}
.tw-banner-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  line-height: 1.2;
  color: var(--white);
  margin: .75rem 0 1rem;
}
.tw-banner-sub {
  font-family: var(--fb);
  font-size: .93rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, .75);
  max-width: 44ch;
  margin: 0;
}
.tw-banner-time {
  display: inline-block;
  margin-top: 1rem;
  font-size: .78rem;
  color: rgba(255, 255, 255, .5);
  font-family: var(--fb);
}
.tw-banner .btn-p {
  box-shadow: 0 8px 24px rgba(216,254,86,.22), inset 0 1px 0 rgba(255,255,255,.18);
}

/* ── 17. Trust sectie ── */
.trust-section { padding: 5rem 4rem; position: relative; z-index: 1; }
#page-home .trust-section { padding: 7rem 4rem 5.5rem; overflow: hidden; }
#page-home .trust-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(12,8,24,.82), rgba(12,8,24,.92)),
    url("/Fotos/Harmen%20training%20Gemeente%20Tilburg%201.jpg") center/cover no-repeat;
}
.trgst { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.tquote {
  font-weight: 700;
  font-size: clamp(1.25rem, 2.1vw, 1.8rem);
  line-height: 1.35;
  border-left: 3px solid var(--orange);
  padding-left: 2rem;
  color: var(--white);
}
.tauthor { font-size: .82rem; font-weight: 500; color: var(--text-muted); margin-top: 1.2rem; padding-left: 2rem; }
.tlogos-label { font-size: .65rem; font-weight: 600; letter-spacing: .2em; color: var(--text-muted); text-transform: uppercase; margin-bottom: 1.5rem; }
.tnums { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem; }
.tn { font-size: 2.4rem; font-weight: 900; letter-spacing: .02em; line-height: 1; color: var(--white); }
.tn em { color: var(--orange); font-style: normal; }
.tn-word { font-size: 1.45rem; line-height: 1.05; letter-spacing: .01em; }
.tnl { font-size: .78rem; color: var(--text-muted); margin-top: .25rem; line-height: 1.4; }
.company-review-section {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background: rgba(255,255,255,.02);
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.company-review {
  display: block;
  max-width: 980px;
}

/* ── 18. Knoppen ── */
.btn-p, .btn-w {
  font-family: 'Barlow', sans-serif;
  font-weight: 700; font-size: .95rem;
  display: inline-flex; align-items: center; gap: .5rem;
  background: linear-gradient(135deg, var(--orange), #b8e040);
  color: #1A1A2E;
  padding: .95rem 1.9rem;
  border-radius: var(--radius);
  text-decoration: none; cursor: pointer;
  transition: var(--transition); border: none;
  box-shadow: 0 4px 24px rgba(216, 254, 86, 0.35), inset 0 1px 0 rgba(255,255,255,.25);
}
.btn-p:hover, .btn-w:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(216, 254, 86, 0.5), inset 0 1px 0 rgba(255,255,255,.3);
}
.btn-g, .btn-o {
  font-family: 'Barlow', sans-serif;
  font-weight: 600; font-size: .92rem;
  color: var(--text-secondary);
  text-decoration: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: .4rem;
  transition: var(--transition);
  border: 1px solid var(--glass-border);
  background: var(--glass-bg-strong);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  padding: .95rem 1.9rem;
  border-radius: var(--radius);
  box-shadow: inset 0 1px 0 var(--glass-highlight);
}
.btn-g:hover, .btn-o:hover {
  color: var(--white);
  background: var(--glass-bg-hover);
  border-color: var(--glass-border-hover);
  transform: translateY(-2px);
}
#page-home .hero-home .btn-o {
  color: rgba(255,255,255,.82);
  background: rgba(26,18,42,.38);
  border-color: rgba(255,255,255,.12);
}
#page-home .hero-home .btn-o:hover {
  color: var(--white);
  background: rgba(42,27,69,.56);
  border-color: rgba(255,255,255,.18);
}

/* ── 19. CTA Sectie ── */
.cta-s {
  text-align: center;
  padding: 7rem 4rem;
  position: relative; z-index: 1; overflow: hidden;
}
.corb1 { position: absolute; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(91,45,142,.25), transparent 70%); top: -200px; right: -100px; pointer-events: none; }
.corb2 { position: absolute; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(216,254,86,.08), transparent 70%); bottom: -100px; left: -50px; pointer-events: none; }
.cta-in { position: relative; z-index: 2; }
.cta-ey { font-size: .72rem; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; color: var(--orange); margin-bottom: 1.1rem; }
.cta-h {
  font-weight: 900;
  font-size: clamp(2.4rem, 5.8vw, 5.8rem);
  line-height: .94; letter-spacing: .01em;
  margin-bottom: 1.3rem; color: var(--white);
}
.cta-h .ol { -webkit-text-stroke: 2px rgba(255,255,255,.35); color: transparent; }
.cta-sub { font-size: .97rem; line-height: 1.7; color: var(--text-secondary); max-width: 58ch; margin: 0 auto 2.1rem; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── 20. Footer ── */
footer {
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-top: 1px solid var(--glass-border);
  padding: 5rem 4rem 2rem;
  position: relative; z-index: 1;
}
.ft {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3.5rem; padding-bottom: 4rem;
  border-bottom: 1px solid var(--glass-border);
}
.fbrand { font-size: .86rem; color: var(--text-muted); line-height: 1.7; margin: 1.1rem 0 1.8rem; max-width: 28ch; }
.fsoc { display: flex; gap: .7rem; }
.fsoc a {
  width: 36px; height: 36px;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-secondary); text-decoration: none;
  font-size: .72rem; font-weight: 700;
  transition: var(--transition);
  background: var(--glass-bg);
}
.fsoc a:hover { border-color: var(--orange); color: var(--orange); }
.fcol-t { font-weight: 800; font-size: 1rem; letter-spacing: .06em; text-transform: uppercase; color: var(--white); margin-bottom: 1.2rem; }
.flinks { list-style: none; }
.flinks li { margin-bottom: .65rem; }
.flinks a { font-size: .86rem; color: var(--text-muted); text-decoration: none; cursor: pointer; transition: color .2s; }
.flinks a:hover { color: var(--orange); }
.fb-bar { display: flex; justify-content: space-between; align-items: center; padding-top: 1.8rem; }
.fb-bar p, .fb-bar a { font-size: .78rem; color: var(--text-muted); }
.fb-bar a { text-decoration: none; cursor: pointer; transition: color .2s; }
.fb-bar a:hover { color: var(--white); }
.fbl { display: flex; gap: 1.5rem; }

/* ── 21. Sprekers ── */
.speaker-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3.5rem; }
.keynote-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 980px; margin-left: auto; margin-right: auto; }
.speaker-card {
  background: var(--card-bg-strong);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow), inset 0 1px 0 var(--card-highlight);
  overflow: hidden;
  transition: var(--transition);
}
.speaker-card:hover {
  border-color: var(--glass-border-hover);
  box-shadow: var(--shadow-hover), inset 0 1px 0 rgba(255,255,255,.3);
  transform: translateY(-4px);
}
.sp-head {
  padding: 2.5rem 2rem 1.5rem;
  background: linear-gradient(145deg, rgba(91,45,142,.3), rgba(155,111,207,.1));
  text-align: center;
  border-bottom: 1px solid var(--glass-border);
  min-height: 228px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sp-avatar {
  width: 88px; height: 88px; border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  font-size: 2.2rem; font-weight: 900; color: var(--white);
  border: 2px solid var(--glass-border);
  letter-spacing: .05em;
}
.sp-avatar-photo {
  padding: 2px;
  overflow: hidden;
  position: relative;
  --speaker-delay: 0s;
}
.sp-avatar-photo img {
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  display: block;
  border: 2px solid rgba(12,8,24,.92);
  position: absolute;
  inset: 2px;
  opacity: 0;
}
.sp-avatar-photo img:first-child {
  animation: speakerPortraitPrimary 12s ease-in-out infinite;
  animation-delay: var(--speaker-delay);
}
.sp-avatar-photo img:last-child {
  animation: speakerPortraitSecondary 12s ease-in-out infinite;
  animation-delay: var(--speaker-delay);
}
.sp-avatar-photo-delayed { --speaker-delay: -3s; }
.sp-avatar-photo-harmen { --speaker-delay: -6s; }

@keyframes speakerPortraitPrimary {
  0%, 42% { opacity: 1; }
  50%, 92% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes speakerPortraitSecondary {
  0%, 42% { opacity: 0; }
  50%, 92% { opacity: 1; }
  100% { opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .sp-avatar-photo img {
    animation: none !important;
  }
  .sp-avatar-photo img:first-child {
    opacity: 1;
  }
  .sp-avatar-photo img:last-child {
    opacity: 0;
  }
}
.sp-name { font-size: 1.6rem; font-weight: 900; letter-spacing: .04em; text-transform: uppercase; color: var(--white); line-height: 1; margin-bottom: .3rem; }
.sp-role { font-size: .65rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--orange); }
.sp-body { padding: 1.8rem; }
.sp-kn { font-size: .95rem; font-weight: 700; color: var(--white); margin-bottom: .7rem; line-height: 1.35; }
.sp-kd { font-size: .85rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 1.2rem; }
.sp-tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 1.4rem; }
.sp-tag {
  font-size: .6rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  padding: .28rem .7rem; border-radius: 100px;
  background: rgba(155,111,207,.15);
  border: 1px solid rgba(155,111,207,.3);
  color: var(--purple-light);
}
.sp-cta { font-weight: 700; font-size: .84rem; color: var(--orange); cursor: pointer; border: none; background: none; display: inline-flex; align-items: center; gap: .4rem; transition: gap .2s; text-decoration: none; }
.sp-cta:hover { gap: .7rem; }
.footer-accent-dot {
  color: var(--orange);
  font-weight: 900;
}
.keynote-options {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
}
.keynote-options li {
  align-items: flex-start;
}
.keynote-options li:first-child > strong {
  margin-top: -0.1rem;
}
.keynote-options li > strong,
.keynote-options li > span {
  display: block;
}
.keynote-options li > span {
  color: var(--text-secondary);
  font-size: .9rem;
  line-height: 1.65;
  margin-top: .45rem;
}
.keynote-option-tags {
  margin-top: .75rem;
}

/* ── Blog detail ── */
.blog-page {
  background:
    radial-gradient(circle at 78% 12%, rgba(91,45,142,.34) 0%, transparent 28%),
    radial-gradient(circle at 12% 48%, rgba(200,80,216,.16) 0%, transparent 28%),
    var(--bg);
  min-height: 100vh;
}
.blog-hero {
  position: relative;
  overflow: hidden;
  padding: 11rem 5vw 5rem;
  border-bottom: 1px solid var(--glass-border);
}
.blog-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.9), transparent);
  pointer-events: none;
}
.blog-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto;
}
.blog-eyebrow {
  font-family: var(--fu);
  color: var(--lime);
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: .72rem;
  font-weight: 900;
  margin-bottom: 1rem;
}
.blog-hero h1 {
  font-family: var(--fd);
  color: var(--white);
  font-size: clamp(3.5rem, 9vw, 8.8rem);
  line-height: .86;
  letter-spacing: -.07em;
  max-width: 980px;
}
.blog-subtitle {
  font-family: var(--fd);
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.52);
  font-size: clamp(2.2rem, 5vw, 5.4rem);
  font-weight: 900;
  line-height: .92;
  letter-spacing: -.06em;
  margin-top: 1rem;
}
.blog-article {
  width: min(920px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 5rem 0 4rem;
  color: var(--text-secondary);
  font-family: var(--fb);
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
  line-height: 1.85;
}
.blog-article .blog-lead {
  color: var(--text-primary);
  font-size: clamp(1.18rem, 1.7vw, 1.45rem);
  line-height: 1.65;
  margin-bottom: 3.5rem;
}
.blog-article h2 {
  font-family: var(--fd);
  color: var(--white);
  font-size: clamp(2.1rem, 4vw, 4.4rem);
  line-height: .94;
  letter-spacing: -.06em;
  margin: 4.5rem 0 1.4rem;
}
.blog-article p + p { margin-top: 1.2rem; }
.blog-article strong { color: var(--white); }
.blog-article em { color: var(--text-primary); }
.blog-article h3 {
  font-family: var(--fd);
  color: var(--white);
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  line-height: 1.1;
  letter-spacing: -.02em;
  margin: 2.8rem 0 1rem;
  scroll-margin-top: 6rem;
}
.blog-article a {
  color: var(--purple-light);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(160, 130, 220, .35);
}
.blog-article a:hover { color: var(--orange); text-decoration-color: var(--orange); }
.blog-article sup {
  font-size: .7em;
  vertical-align: super;
  line-height: 0;
}
.blog-article sup a { text-decoration: none; }
.blog-table {
  width: 100%;
  margin: 1.8rem 0 2.4rem;
  border-collapse: collapse;
  font-size: .95rem;
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  overflow: hidden;
}
.blog-table th,
.blog-table td {
  padding: .8rem 1.1rem;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,.07);
  vertical-align: middle;
}
.blog-table thead th {
  font-family: var(--fu);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--purple-light);
  background: rgba(91,45,142,.18);
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.blog-table tbody tr:last-child td { border-bottom: none; }
.blog-table tbody td:first-child {
  color: var(--white);
  font-weight: 700;
  border-right: 1px solid rgba(255,255,255,.07);
  width: 30%;
}
.blog-table tbody td a {
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  transition: color .15s ease;
}
.blog-table tbody td a::after {
  content: "\2192";
  font-size: .9em;
  color: var(--purple-light);
  transition: transform .15s ease, color .15s ease;
}
.blog-table tbody tr:hover { background: rgba(255,255,255,.035); }
.blog-table tbody td a:hover { color: var(--orange); }
.blog-table tbody td a:hover::after { transform: translateX(3px); color: var(--orange); }
.blog-pod-cta {
  margin: 2.4rem 0 3rem;
}
.blog-pod-cta a {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1rem 1.2rem;
  background: rgba(29,185,84,.06);
  border: 1px solid rgba(29,185,84,.25);
  border-radius: 14px;
  text-decoration: none;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.blog-pod-cta a:hover {
  background: rgba(29,185,84,.10);
  border-color: rgba(29,185,84,.45);
  transform: translateY(-1px);
}
.blog-pod-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #1db954;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(29,185,84,.35);
}
.blog-pod-icon::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 4px;
  border-style: solid;
  border-width: 8px 0 8px 12px;
  border-color: transparent transparent transparent #000;
}
.blog-pod-body {
  display: flex;
  flex-direction: column;
  gap: .15rem;
  line-height: 1.35;
  min-width: 0;
}
.blog-pod-label {
  font-family: var(--fu);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #1db954;
}
.blog-pod-cta strong {
  font-family: var(--fd);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.01em;
}
.blog-pod-cta em {
  font-style: normal;
  font-size: .88rem;
  color: var(--text-secondary);
}
.blog-footnotes {
  margin: 4rem 0 0;
  padding: 2rem 0 0;
  border-top: 1px solid rgba(255,255,255,.10);
  list-style: decimal;
  padding-left: 1.2rem;
  font-size: .82rem;
  line-height: 1.6;
  color: var(--text-secondary);
}
.blog-footnotes li { margin-bottom: .8rem; }
.blog-footnotes li a { margin-left: .3rem; }
.blog-figure {
  margin: 3.5rem auto;
  width: min(760px, 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-hover);
  background: rgba(255,255,255,.04);
}
.blog-figure-wide {
  width: min(860px, 100%);
}
.blog-figure-small {
  width: min(620px, 100%);
}
.blog-figure-subtle {
  float: right;
  width: min(420px, 44%);
  margin: .35rem 0 1.6rem 2rem;
  border-radius: 18px;
  border-color: rgba(255,255,255,.07);
  box-shadow: 0 12px 30px rgba(4, 2, 18, .14);
  background: rgba(255,255,255,.025);
}
.blog-figure-small.blog-figure-subtle {
  width: min(360px, 38%);
}
.blog-figure-wide.blog-figure-subtle {
  width: min(460px, 48%);
}
.blog-article .blog-figure-subtle:nth-of-type(3) {
  float: left;
  margin: .35rem 2rem 1.6rem 0;
}
.blog-article::after {
  content: "";
  display: block;
  clear: both;
}
.blog-figure img {
  display: block;
  width: 100%;
  height: auto;
}
.blog-cta {
  width: min(1100px, calc(100% - 2rem));
  margin: 0 auto 6rem;
  padding: clamp(2rem, 4vw, 3.5rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  border: 1px solid rgba(216,255,74,.22);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 85% 22%, rgba(216,255,74,.14), transparent 28%),
    var(--card-bg-strong);
  box-shadow: var(--shadow);
}
.blog-cta h2 {
  font-family: var(--fd);
  color: var(--white);
  font-size: clamp(2.4rem, 5vw, 5.2rem);
  line-height: .9;
  letter-spacing: -.06em;
}
.blog-cta p:not(.blog-eyebrow) {
  font-family: var(--fb);
  color: var(--text-secondary);
  max-width: 55ch;
  margin-top: 1rem;
  line-height: 1.7;
}

/* ── 22. Company / Boek ── */
.company-hero { min-height: 92vh; }
.company-hero .hi {
  max-width: 54rem;
  position: relative;
  z-index: 3;
}
.company-hero-media {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.company-hero-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  opacity: .8;
  filter: saturate(1.05) contrast(1.04);
}
.company-hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12,8,24,.97) 0%, rgba(12,8,24,.95) 24%, rgba(12,8,24,.83) 43%, rgba(12,8,24,.48) 66%, rgba(12,8,24,.12) 100%),
    radial-gradient(circle at 76% 52%, rgba(155,111,207,.18) 0%, transparent 38%);
}

.company-inspiration {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
  padding: 4rem 4rem;
}
.company-inspiration-inner {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 2.5rem;
  align-items: center;
}
.company-inspiration-text h3 {
  font-size: clamp(2rem, 3vw, 2.4rem);
  margin-bottom: 1rem;
}
.company-inspiration-text p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 0.8rem;
}
.company-inspiration-grid {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
  gap: 1.25rem;
  align-items: end;
}
.company-inspiration-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow);
}
.company-inspiration-card img {
  width: 100%;
  display: block;
  height: auto;
}
.company-inspiration-card:first-child {
  margin-top: 2rem;
}
@media (max-width: 700px) {
  .company-inspiration {
    padding: 3rem 2rem;
  }
  .company-inspiration-inner,
  .company-inspiration-grid {
    grid-template-columns: 1fr;
  }
  .company-inspiration-card:first-child {
    margin-top: 0;
  }
}


.company-depth {
  background:
    radial-gradient(circle at 76% 18%, rgba(216,254,86,.08), transparent 18rem),
    linear-gradient(180deg, rgba(255,255,255,.035), rgba(91,45,142,.08));
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.company-depth-head {
  max-width: 680px;
  margin-bottom: 2.5rem;
}
.company-depth-head p {
  color: var(--text-secondary);
  font-family: var(--fb);
  font-size: .98rem;
  line-height: 1.8;
  margin-top: 1rem;
}
.company-depth-head .stitle {
  color: var(--white);
}
.company-depth-head .stitle span {
  color: var(--purple-light);
}
.company-depth-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) minmax(0, .95fr);
  gap: 1.1rem;
  align-items: stretch;
}
.depth-panel {
  display: flex;
  flex-direction: column;
  scroll-margin-top: 2rem;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  padding: 1.35rem;
  min-height: 100%;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .18), inset 0 1px 0 rgba(255,255,255,.05);
}
.depth-panel-clickable {
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.depth-panel-clickable:hover,
.depth-panel-clickable:focus-visible {
  border-color: rgba(216,254,86,.28);
  background: rgba(255,255,255,.065);
  outline: none;
  transform: translateY(-2px);
}
.depth-panel-label {
  font-family: var(--fu);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: .8rem;
}
.depth-panel h3 {
  color: var(--white);
  font-family: var(--fd);
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: .8rem;
}
.depth-panel p,
.article-row em,
.episode-row em {
  color: var(--text-secondary);
  font-family: var(--fb);
  font-size: .88rem;
  font-style: normal;
  line-height: 1.65;
}
.depth-panel p + p { margin-top: 1rem; }
.depth-link {
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  padding-top: 1rem;
  color: var(--purple-light);
  font-family: var(--fu);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}
.depth-link:hover {
  color: var(--orange);
}
.article-list,
.episode-list {
  display: grid;
  gap: .8rem;
  margin-top: 1rem;
}
.article-row,
.episode-row {
  display: grid;
  gap: .35rem;
  padding: 1rem;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  background: rgba(255,255,255,.045);
  text-decoration: none;
}
.article-row:hover,
.episode-row:hover {
  border-color: rgba(216,254,86,.34);
  background: rgba(255,255,255,.075);
}
.article-row span,
.episode-row span {
  color: var(--purple-light);
  font-family: var(--fu);
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.article-row strong,
.episode-row strong {
  color: var(--white);
  font-family: var(--fd);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.18;
  text-transform: uppercase;
}
/* Spotify-style episode rows */
.episode-row {
  grid-template-columns: 64px 1fr;
  gap: .9rem;
  align-items: center;
  padding: .7rem;
}
.episode-row .episode-body {
  display: grid;
  gap: .3rem;
  min-width: 0;
}
.episode-cover {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 6px 14px rgba(0,0,0,.35);
}
.episode-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.episode-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #1db954;
  box-shadow: 0 2px 8px rgba(0,0,0,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s ease, background .2s ease;
}
.episode-play::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-left: 3px;
  border-style: solid;
  border-width: 6px 0 6px 9px;
  border-color: transparent transparent transparent #000;
}
.episode-row:hover .episode-play {
  transform: translate(-50%, -50%) scale(1.12);
  background: #1ed760;
}
.depth-panel-label-spotify {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: #1db954;
}
.spotify-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #1db954;
  box-shadow: 0 0 0 3px rgba(29,185,84,.18);
}
.depth-link-spotify {
  color: #1db954;
}
.depth-link-spotify:hover {
  color: #1ed760;
}
/* Article rows with thumbnail */
.article-row {
  grid-template-columns: 64px 1fr;
  gap: .9rem;
  align-items: center;
  padding: .7rem;
}
.article-row .article-body {
  display: grid;
  gap: .3rem;
  min-width: 0;
}
.article-thumb {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  object-fit: cover;
  display: block;
  box-shadow: 0 6px 14px rgba(0,0,0,.3);
}
.depth-book-mini {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-top: 1.25rem;
  padding: 2rem 1.5rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(18,12,32,.95), rgba(91,45,142,.85));
}
.depth-book-mini .book-td {
  font-size: 2.2rem;
}
.depth-book-title {
  position: relative;
  z-index: 1;
  margin-top: .7rem;
  color: var(--white);
  font-family: var(--fd);
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: .04em;
  line-height: 1;
  text-transform: uppercase;
}
.book-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; align-items: center; }
.book-cover {
  background: var(--glass-bg-strong);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow), inset 0 1px 0 var(--glass-highlight);
  padding: 3.5rem 2.5rem; text-align: center;
  position: relative; overflow: hidden;
}
.book-cover::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(91,45,142,.2), rgba(216,254,86,.05));
}
.book-td { font-weight: 900; font-size: 3.5rem; letter-spacing: .04em; text-transform: uppercase; line-height: .9; color: var(--white); position: relative; z-index: 1; }
.book-td em { color: var(--orange); font-style: normal; display: block; }
.book-sd { font-size: .82rem; letter-spacing: .18em; text-transform: uppercase; color: var(--text-secondary); margin-top: 1rem; position: relative; z-index: 1; }
.book-au { font-size: .87rem; font-weight: 600; color: var(--orange); margin-top: 2rem; position: relative; z-index: 1; }
.book-ct { margin-top: 2rem; position: relative; z-index: 1; }

/* ── 23. Digitale Assistenten ── */
.da-hero {
  padding: 9rem 4rem 6rem;
  position: relative; z-index: 1; overflow: hidden;
}
.da-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.da-terminal {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow), inset 0 1px 0 var(--glass-highlight);
  padding: 2rem;
  font-family: monospace; font-size: .82rem;
  color: var(--text-secondary); line-height: 2; position: relative;
}
.da-terminal::before {
  content: 'LIVE AGENTS';
  position: absolute; top: -1px; left: 1.5rem;
  font-family: 'Barlow', sans-serif;
  font-size: .55rem; font-weight: 700; letter-spacing: .22em;
  background: var(--orange); color: #1A1A2E;
  padding: .22rem .7rem; border-radius: 0 0 var(--radius) var(--radius);
}
.da-dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; margin-right: .5rem; }
.da-dot.g { background: #2dd4a0; animation: dotPulse 2s .0s infinite; }
.da-dot.b { background: var(--purple-light); animation: dotPulse 2s .4s infinite; }
.da-dot.p { background: var(--orange); animation: dotPulse 2s .8s infinite; }

.da-card-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--glass-border); border-radius: var(--radius-lg); overflow: hidden; margin-top: 3rem; }
.da-card { background: var(--glass-bg); padding: 1.8rem; transition: var(--transition); }
.da-card:hover { background: var(--glass-bg-hover); }
.da-cn { font-size: .64rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--orange); margin-bottom: .6rem; }
.da-ct { font-size: .95rem; font-weight: 700; color: var(--white); margin-bottom: .5rem; line-height: 1.35; }
.da-cd { font-size: .84rem; color: var(--text-secondary); line-height: 1.65; }

.agents-overview { padding: 6rem 4rem; position: relative; z-index: 1; }
.agents-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 2rem; }
.agents-head-copy { max-width: 62ch; }
.agents-head-cta { flex-shrink: 0; padding-top: .6rem; display: flex; flex-direction: column; gap: .7rem; align-items: flex-end; }
.agents-head-cta .btn-p, .agents-head-cta .btn-o { width: 252px; justify-content: center; }
.agents-lead { color: var(--text-secondary); max-width: 62ch; margin-top: 1.2rem; font-size: .97rem; line-height: 1.8; }
.agent-show-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-top: 3rem; }
.agent-show-card {
  background: var(--card-bg-strong);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow), inset 0 1px 0 var(--card-highlight);
  padding: 1.8rem;
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  transition: var(--transition);
  cursor: pointer;
}
.agent-show-card:hover {
  background: var(--card-bg-hover);
  border-color: var(--glass-border-hover);
  box-shadow: var(--shadow-hover), inset 0 1px 0 rgba(255,255,255,.3);
  transform: translateY(-4px);
}
.agent-show-card:focus-visible {
  outline: none;
  background: var(--card-bg-hover);
  border-color: rgba(216,254,86,.55);
  box-shadow: 0 0 0 3px rgba(216,254,86,.18), var(--shadow-hover), inset 0 1px 0 rgba(255,255,255,.3);
  transform: translateY(-4px);
}
.agent-show-avatar-wrap {
  width: 172px; height: 172px; border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg, var(--purple-light), var(--purple));
  margin-bottom: 1rem; flex-shrink: 0;
}
.agent-show-avatar { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; object-position: center; border: 3px solid rgba(12,8,24,.95); background: var(--white); }
.agent-show-name { font-weight: 900; font-size: 1.8rem; letter-spacing: .03em; text-transform: uppercase; line-height: 1; color: var(--white); }
.agent-show-role { font-size: .64rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--text-muted); margin: .4rem 0 .9rem; }
.agent-show-bio { font-size: .86rem; line-height: 1.7; color: var(--text-secondary); margin-bottom: 1.2rem; flex-grow: 1; }
.agent-show-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: .35rem; margin-bottom: 1.2rem; }
.agent-show-tag {
  font-size: .58rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase;
  color: var(--purple-light);
  background: rgba(155,111,207,.15);
  border: 1px solid rgba(155,111,207,.3);
  border-radius: 100px; padding: .26rem .55rem;
}
.agent-show-link {
  font-weight: 700; font-size: .84rem;
  text-decoration: none; color: #1A1A2E;
  background: linear-gradient(135deg, var(--orange), #b8e040);
  padding: .65rem 1.1rem; border-radius: var(--radius);
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(216,254,86,.25), inset 0 1px 0 rgba(255,255,255,.2);
}
.agent-show-link:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(216,254,86,.35); }

.project-hero {
  min-height: 72vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-bottom: 9rem;
}
.project-hero-actions {
  margin-top: clamp(1.4rem, 3vw, 2.7rem);
}
.project-logo-band {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3.5rem;
  background: rgba(255,255,255,.045);
}
.project-logo-band .logo-track {
  gap: 4.5rem;
  animation-duration: 34s;
}
.project-logo-band .clogo {
  height: 44px;
  opacity: .58;
}
.project-overview {
  padding: 6rem 4rem;
  position: relative;
  z-index: 1;
}
.project-head {
  align-items: stretch;
  margin-bottom: 3rem;
}
.project-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
  max-width: 1240px;
  margin: 0 auto;
}
.project-card {
  display: grid;
  grid-template-rows: 240px 1fr;
  overflow: hidden;
  border-radius: var(--radius-lg);
  scroll-margin-top: 2rem;
  background: var(--card-bg-strong);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow), inset 0 1px 0 var(--card-highlight);
  transition: var(--transition);
}
.project-card:hover {
  transform: translateY(-4px);
  border-color: var(--glass-border-hover);
  background: var(--card-bg-hover);
  box-shadow: var(--shadow-hover), inset 0 1px 0 rgba(255,255,255,.16);
}
.project-image {
  min-height: 0;
  height: 240px;
  background: rgba(255,255,255,.04);
}
.project-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.project-image-soft-focus {
  overflow: hidden;
}
.project-image-soft-focus img {
  filter: blur(5px) saturate(.96);
  transform: scale(1.06);
}
.project-image-slider {
  position: relative;
  overflow: hidden;
}
.project-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .55s ease;
}
.project-slide.is-active {
  opacity: 1;
}
.project-slide img {
  width: 100%;
  height: 100%;
  display: block;
}
.project-image-slider.project-image-contain .project-slide {
  inset: .85rem;
  overflow: hidden;
  border-radius: calc(var(--radius-lg) - 1rem);
  background: rgba(12,8,24,.62);
}
.project-slider-dots {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  display: flex;
  gap: .45rem;
  z-index: 2;
  padding: .4rem .55rem;
  border-radius: 999px;
  background: rgba(12,8,24,.58);
  border: 1px solid rgba(255,255,255,.12);
}
.project-slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.28);
  transition: background .25s ease, transform .25s ease;
}
.project-slider-dot.is-active {
  background: var(--pink);
  transform: scale(1.05);
}
.project-image-contain {
  padding: .85rem;
  background:
    radial-gradient(circle at 70% 30%, rgba(216,254,86,.12), transparent 34%),
    rgba(255,255,255,.045);
}
.project-image-contain img {
  object-fit: contain;
  object-position: center;
  border-radius: calc(var(--radius-lg) - 1rem);
  background: #fff;
}
.project-copy {
  padding: 1.45rem;
}
.project-meta {
  margin-bottom: .75rem;
  color: var(--orange);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.project-clients{display:flex;flex-wrap:wrap;gap:.4rem;margin-bottom:.85rem}
.project-clients .project-client{margin-bottom:0}
.project-client {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: .85rem;
  padding: .38rem .68rem;
  border-radius: 999px;
  background: rgba(216,254,86,.08);
  border: 1px solid rgba(216,254,86,.18);
  color: var(--text-primary);
  font-size: .78rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition: var(--transition);
}
.project-client:hover,
.project-client:focus-visible {
  border-color: rgba(216,254,86,.36);
  background: rgba(216,254,86,.13);
  color: var(--white);
}
.project-copy h3 {
  max-width: 19ch;
  color: var(--white);
  font-size: clamp(1.45rem, 2.1vw, 2.25rem);
  line-height: 1.02;
  letter-spacing: -.04em;
  margin-bottom: 1rem;
}
.project-copy p {
  color: var(--text-secondary);
  font-size: .92rem;
  line-height: 1.65;
  max-width: 62ch;
}
.project-facts {
  display: grid;
  grid-template-columns: 1fr;
  gap: .55rem;
  margin-top: 1.15rem;
}
.project-facts div {
  padding: .8rem .9rem;
  border-radius: var(--radius);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  color: var(--text-primary);
  font-size: .83rem;
  line-height: 1.48;
}
.project-facts span {
  display: block;
  margin-bottom: .4rem;
  color: var(--pink);
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.project-wins {
  display: grid;
  gap: .6rem;
  margin: 1.3rem 0 0;
}
.project-wins.keynote-options {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
}
.project-wins li {
  list-style: none;
  position: relative;
  padding-left: 1.35rem;
  color: var(--text-primary);
  font-size: .9rem;
  line-height: 1.55;
}
.project-wins li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .55rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 12px rgba(216,254,86,.35);
}
.project-method {
  background:
    radial-gradient(circle at 20% 20%, rgba(216,254,86,.14), transparent 32%),
    var(--white);
}
.project-method .lbintro-p {
  color: rgba(16,14,24,.68);
}
.project-method .wgrid {
  background: rgba(16,14,24,.12);
}
.project-method .wstep {
  background: rgba(16,14,24,.035);
}
.project-method .wstep:hover {
  background: rgba(91,45,142,.08);
}
.project-method .wnum {
  color: rgba(91,45,142,.16);
}
.project-method .wstep:hover .wnum {
  color: rgba(91,45,142,.3);
}
.project-method .wtitle {
  color: var(--black);
}
.project-method .wbody {
  color: rgba(16,14,24,.68);
}

/* ── 24. Assistent detail pagina ── */
/* ── 24b. Assistant Detail – rich page ── */
.assistant-detail-page { padding: 5.5rem 4rem 5rem; position: relative; z-index: 1; max-width: 1100px; margin: 0 auto; }

/* Hero row */
.adet-hero { display: grid; grid-template-columns: auto 1fr; gap: 2.5rem; align-items: start; margin-bottom: 2.5rem; }
.adet-hero-left { display: flex; gap: 1.5rem; align-items: flex-start; }
.assistant-detail-avatar { width: 120px; height: 120px; border-radius: 50%; padding: 3px; background: linear-gradient(135deg, var(--purple-light), var(--purple)); flex-shrink: 0; }
.assistant-detail-avatar img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; border: 3px solid rgba(12,8,24,.95); }
.adet-identity { display: flex; flex-direction: column; gap: .4rem; padding-top: .3rem; }
.assistant-detail-name { font-size: 2.2rem; letter-spacing: .01em; color: var(--white); line-height: 1; font-weight: 900; }
.assistant-detail-role { font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; color: var(--text-secondary); }
.adet-ctas { display: flex; gap: .6rem; flex-wrap: wrap; margin-top: .6rem; }
.adet-ctas a, .adet-ctas button { font-size: .82rem; }
.adet-description { font-size: 1.02rem; line-height: 1.8; color: var(--text-secondary); white-space: pre-line; }

/* Sections */
.adet-section {
  background: var(--card-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 1.8rem 2rem;
  margin-bottom: 1.5rem;
}
.adet-h3 { font-size: .75rem; letter-spacing: .14em; text-transform: uppercase; color: var(--purple-light); margin-bottom: 1rem; font-weight: 700; }
.adet-feature-list { display: grid; gap: .6rem; margin: 0; }
.adet-feature-list li { list-style: none; font-size: .94rem; color: var(--text-primary); line-height: 1.55; padding-left: 22px; position: relative; }
.adet-feature-list li::before { content: ''; position: absolute; left: 0; top: 8px; width: 8px; height: 8px; border-radius: 50%; background: var(--purple-light); box-shadow: 0 0 8px rgba(155,111,207,.4); }
.adet-how-text { font-size: .96rem; line-height: 1.8; color: var(--text-secondary); white-space: pre-line; }
.adet-how-text b { color: var(--text-primary); font-weight: 700; }

/* Screenshots */
.adet-screenshots { display: flex; gap: 1rem; flex-wrap: wrap; }
.adet-screenshots img { border-radius: var(--radius); border: 1px solid var(--card-border); max-height: 280px; max-width: 100%; object-fit: cover; cursor: zoom-in; transition: transform .25s; }
.adet-screenshots img:hover { transform: scale(1.03); }

/* Two-column: use case + voordelen */
.adet-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.adet-usecase-list { font-size: .95rem; line-height: 1.75; color: var(--text-secondary); }
.adet-usecase-list p { margin-bottom: .8rem; }
.adet-benefit-list { display: grid; gap: .55rem; margin: 0; }
.adet-benefit-list li { list-style: none; font-size: .92rem; color: var(--text-primary); line-height: 1.55; padding-left: 22px; position: relative; }
.adet-benefit-list li::before { content: '✓'; position: absolute; left: 0; color: var(--orange); font-weight: 700; font-size: .85rem; }
.adet-results { display: flex; flex-direction: column; gap: .4rem; margin-top: 1rem; }
.adet-result-item { font-size: .88rem; color: var(--orange); font-weight: 700; letter-spacing: .02em; }

/* Footer CTA */
.adet-footer { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--card-border); }
.adet-footer .form-help { width: 100%; margin-top: 0; }

/* legacy compat */
.assistant-detail-content { display: none; }
.assistant-detail-grid { display: none; }
.assistant-detail-actions { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: 1.4rem; }

/* ── 25. Formulieren ── */
.form-wrap, .da-form-wrap {
  background: var(--glass-bg-strong);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow), inset 0 1px 0 var(--glass-highlight);
  padding: 2.5rem;
  max-width: 980px; margin: 0 auto;
}
.academy-online-layout {
  display: grid;
  gap: 2.25rem;
}
.academy-route-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, .8fr);
  gap: 2rem;
  align-items: center;
  padding: 0 4rem;
  min-height: 680px;
}
.academy-route-layout .trainingwijzer-wrapper {
  margin: 0;
  display: flex;
  align-items: center;
}
.academy-route-photo {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow);
  position: relative;
  aspect-ratio: 3 / 4;
}
.academy-route-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
  display: block;
  opacity: 0;
}
.academy-route-photo img:nth-child(1) { animation: routeP1 24s ease-in-out infinite; }
.academy-route-photo img:nth-child(2) { animation: routeP2 24s ease-in-out infinite; }
.academy-route-photo img:nth-child(3) { animation: routeP3 24s ease-in-out infinite; }
.academy-route-photo img:nth-child(4) { animation: routeP4 24s ease-in-out infinite; }
.academy-route-photo img:nth-child(3) { object-position: 76% 40%; } /* FCDB: Karin staat rechts in beeld */
@keyframes routeP1 { 0%,21%{opacity:1} 25%,96%{opacity:0} 100%{opacity:1} }
@keyframes routeP2 { 0%,21%{opacity:0} 25%,46%{opacity:1} 50%,100%{opacity:0} }
@keyframes routeP3 { 0%,46%{opacity:0} 50%,71%{opacity:1} 75%,100%{opacity:0} }
@keyframes routeP4 { 0%,71%{opacity:0} 75%,96%{opacity:1} 100%{opacity:0} }
@media (prefers-reduced-motion: reduce) {
  .academy-route-photo img { animation: none !important; opacity: 0; }
  .academy-route-photo img:nth-child(1) { opacity: 1; }
}

/* ── AI-wijzer sectie: volle breedte, uitgelicht ── */
.ac-route-section { padding: 3.5rem 4rem 4.5rem; scroll-margin-top: 96px; }
.trainingwijzer-wrapper { scroll-margin-top: 120px; }
.ac-route-inner { max-width: 1080px; margin: 0 auto; }
.ac-route-eyebrow {
  text-align: center;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--purple-light, #9b6fcf);
  margin: 0 0 .6rem;
}
.ac-route-title {
  font-weight: 900;
  font-size: clamp(1.9rem, 3.4vw, 2.9rem);
  line-height: 1.06;
  color: #fff;
  text-align: center;
  margin: 0 0 .7rem;
}
.ac-route-sub {
  text-align: center;
  color: var(--text-secondary, #d8ccec);
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0 auto 2rem;
  max-width: 54ch;
}
.ac-route-panel {
  background: rgba(255,255,255,.22);
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 24px;
  padding: 1.75rem;
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,.16);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
}
.ac-route-panel .trainingwijzer-wrapper { margin: 0; width: 100%; }
.ac-route-panel .ac-chat { max-width: none; }

/* ── Leerlijn-kop met foto ernaast ── */
.ac-leerlijn-head {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, .85fr);
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 2.75rem;
}
.ac-leerlijn-head .stitle {
  font-size: clamp(2rem, 3.4vw, 3.4rem);
  line-height: 1.05;
}
.academy-section-lead {
  margin: .1rem 0 1.1rem;
  font-size: 1.12rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--purple-light, #9b6fcf);
  max-width: 54ch;
}
.ac-leerlijn-head .academy-route-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
}

@media (max-width: 900px) {
  .ac-route-section { padding: 2.5rem 1.25rem 3rem; }
  .ac-leerlijn-head { grid-template-columns: 1fr; gap: 1.75rem; }
  .ac-leerlijn-head .academy-route-photo { max-width: 440px; }
}

.academy-online-copy .ptitle {
  max-width: 14ch;
}
.academy-online-copy .pbody {
  max-width: 62ch;
}
.academy-online-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2rem;
  align-items: stretch;
}
.academy-online-card {
  max-width: none;
  margin: 0;
  padding: 2rem;
  background: rgba(255,255,255,.08);
  border-color: rgba(182,154,224,.18);
  box-shadow: 0 14px 30px rgba(0,0,0,.12), inset 0 1px 0 rgba(255,255,255,.08);
}
.academy-online-card .form-actions {
  justify-content: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
}
.academy-online-photo {
  margin: 0;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow);
}
.academy-online-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.academy-online-photo-single {
  align-self: stretch;
  justify-self: stretch;
  width: 100%;
}
.academy-online-photo-single img {
  object-position: center 56%;
}
.form-grid, .da-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field, .da-field { display: flex; flex-direction: column; gap: .45rem; }
.form-field label, .da-field label {
  font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-secondary);
}
.form-field input, .form-field textarea, .form-field select,
.da-field input, .da-field textarea, .da-field select {
  width: 100%;
  font-family: 'Barlow', sans-serif;
  font-size: .95rem; color: var(--text-primary);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: .85rem 1rem; outline: none;
  transition: var(--transition);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}
.form-field textarea, .da-field textarea { min-height: 120px; resize: vertical; }
.form-field select, .da-field select {
  appearance: none;
  -webkit-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--text-secondary) 50%),
    linear-gradient(135deg, var(--text-secondary) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 3px),
    calc(100% - 12px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 2.75rem;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus,
.da-field input:focus, .da-field textarea:focus, .da-field select:focus {
  border-color: var(--purple-light);
  background: rgba(155, 111, 207, 0.1);
  box-shadow: 0 0 20px rgba(155, 111, 207, 0.15);
}
.form-field input::placeholder, .da-field input::placeholder { color: var(--text-muted); }
#ac-aanbod {
  color: var(--pink);
  font-weight: 600;
  border-color: rgba(216,254,86,.24);
  background: rgba(216,254,86,.06);
}
.form-field-full, .da-field-full { grid-column: 1/-1; }
.form-actions { margin-top: 1.5rem; display: flex; justify-content: flex-end; }
.form-help { font-size: .84rem; color: var(--text-muted); margin-top: 1rem; }

/* ── 26. AI Organisatie ── */
.org-map { display: flex; flex-direction: column; align-items: center; }
.org-line { width: 2px; height: 40px; background: var(--glass-border); }
.org-node {
  background: var(--card-bg-strong);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow), inset 0 1px 0 var(--card-highlight);
  padding: 1rem 1.1rem; text-align: center;
}
.org-node.primary {
  background: linear-gradient(145deg, rgba(91,45,142,.4), rgba(155,111,207,.2));
  border-color: rgba(155,111,207,.6);
}
.org-node-avatar { width: 78px; height: 78px; border-radius: 50%; padding: 3px; background: linear-gradient(135deg, var(--purple-light), var(--purple)); margin: 0 auto .7rem; }
.org-node-avatar img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; border: 2px solid rgba(12,8,24,.9); }
.org-node-name { font-weight: 900; font-size: 1.3rem; letter-spacing: .04em; text-transform: uppercase; color: var(--white); line-height: 1; }
.org-node-role { font-size: .64rem; letter-spacing: .16em; text-transform: uppercase; color: var(--text-secondary); margin-top: .5rem; }
.org-node-badge {
  display: inline-block; margin-top: .6rem;
  padding: .24rem .6rem;
  font-size: .58rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  border-radius: 100px; color: var(--purple-light);
  background: rgba(155,111,207,.2); border: 1px solid rgba(155,111,207,.4);
}
.org-managers { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; width: 100%; max-width: 980px; }
.org-managers .org-node { padding: 1.1rem; }
.org-managers .org-node-avatar { width: 70px; height: 70px; }
.org-departments { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; width: 100%; margin-top: 2rem; }
.org-dept {
  background: var(--card-bg-strong);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.org-dept-head {
  padding: 1rem;
  background: linear-gradient(145deg, rgba(91,45,142,.4), rgba(155,111,207,.2));
  border-bottom: 1px solid var(--glass-border);
}
.org-dept-top { display: flex; gap: .55rem; align-items: flex-start; }
.org-dept-icon { font-size: 1.45rem; line-height: 1; }
.org-dept-title { font-weight: 700; font-size: .88rem; line-height: 1.35; color: var(--white); }
.org-dept-count { font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--text-secondary); margin-top: .55rem; }
.org-dept-body { padding: 1rem; display: flex; flex-direction: column; gap: .55rem; }
.org-member {
  display: flex; gap: .6rem; align-items: center;
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  border-radius: var(--radius); padding: .55rem .6rem;
  text-decoration: none; transition: var(--transition);
}
.org-member:hover { border-color: var(--glass-border-hover); background: var(--glass-bg-hover); }
.org-member img { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; border: 2px solid var(--glass-border); }
.org-member-name { font-size: .82rem; font-weight: 700; color: var(--white); line-height: 1.2; }
.org-member-role { font-size: .74rem; color: var(--text-secondary); line-height: 1.35; }
.org-member-badge {
  display: inline-block; margin-top: .2rem;
  padding: .18rem .42rem;
  font-size: .54rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  border-radius: 100px; color: var(--purple-light);
  background: rgba(155,111,207,.15); border: 1px solid rgba(155,111,207,.3);
}
.org-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2rem; }
.org-stat {
  background: var(--card-bg-strong);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow), inset 0 1px 0 var(--card-highlight);
  padding: 1rem; text-align: center;
}
.org-stat-n { font-size: 2.4rem; line-height: 1; color: var(--white); font-weight: 900; }
.org-stat-l { font-size: .7rem; letter-spacing: .13em; text-transform: uppercase; color: var(--text-secondary); margin-top: .35rem; }
.org-lead {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(155,111,207,.35);
  border-radius: var(--radius-lg);
  box-shadow: 0 0 40px rgba(155,111,207,.1), inset 0 1px 0 var(--glass-highlight);
  padding: 2rem;
}
.org-lead h4 { font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: var(--text-secondary); margin-bottom: .7rem; }
.org-lead p { font-size: .95rem; line-height: 1.75; color: var(--text-primary); }
.org-actions { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: 1.2rem; }

/* ── 28. Popup ── */
.popup-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 500; align-items: center; justify-content: center;
  backdrop-filter: blur(12px);
}
.popup-overlay.open { display: flex; }
.popup-box {
  background: var(--glass-bg-strong);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hover), inset 0 1px 0 var(--glass-highlight);
  padding: 3rem; max-width: 500px; width: 90%;
  position: relative;
}
.popup-training-detail {
  max-width: 620px; max-height: 85vh; overflow-y: auto;
  scrollbar-width: thin; scrollbar-color: rgba(255,255,255,.15) transparent;
  background: linear-gradient(180deg, rgba(155,111,207,.32), rgba(155,111,207,.16)), #251739;
  border-color: rgba(180,145,230,.5);
}
.popup-training-detail::-webkit-scrollbar { width: 6px; }
.popup-training-detail::-webkit-scrollbar-track { background: transparent; }
.popup-training-detail::-webkit-scrollbar-thumb { background: rgba(255,255,255,.15); border-radius: 3px; }
.tp-sections { display: flex; flex-direction: column; gap: 1.2rem; margin-bottom: 1.5rem; }
.tp-section h4 {
  font-family: var(--fu); font-size: .82rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--orange); margin-bottom: .4rem;
}
.tp-section p {
  font-size: .85rem; color: var(--text-secondary); line-height: 1.75; margin: 0;
}
.tp-quote blockquote {
  border-left: 3px solid var(--pink);
  padding: .8rem 1.2rem; margin: 0 0 1.5rem 0;
  font-size: .82rem; font-style: italic;
  color: rgba(255,255,255,.7); line-height: 1.7;
  background: rgba(200,80,216,.06); border-radius: 0 var(--radius) var(--radius) 0;
}
.popup-close {
  position: absolute;
  top: .9rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--text-muted);
  cursor: pointer;
  border: none;
  background: none;
  transition: color .2s, transform .2s;
}
.popup-close:hover { color: var(--white); }
.popup-close:hover { transform: scale(1.06); }
.popup-badge {
  display: inline-block;
  font-size: .62rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  background: var(--orange); color: #1A1A2E;
  padding: .32rem .85rem; border-radius: 100px; margin-bottom: 1.2rem;
}
.popup-title { font-weight: 900; font-size: 2.5rem; letter-spacing: .02em; text-transform: uppercase; color: var(--white); line-height: .92; margin-bottom: .8rem; }
.popup-title em { color: var(--orange); font-style: normal; display: block; }
.popup-desc { font-size: .9rem; color: var(--text-secondary); line-height: 1.75; margin-bottom: 1.8rem; }
.popup-incl { font-size: .72rem; font-weight: 600; color: var(--text-secondary); margin-bottom: 1.5rem; display: flex; flex-direction: column; gap: .4rem; }
.popup-incl span::before { content: '✓  '; color: var(--green); }
.popup-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .85rem;
  margin-top: 1.1rem;
}
.popup-btn {
  display: block; width: 100%;
  font-weight: 700; font-size: 1rem;
  background: linear-gradient(135deg, var(--orange), #b8e040);
  color: #1A1A2E; padding: 1.15rem;
  border-radius: var(--radius); text-decoration: none; text-align: center;
  cursor: pointer; border: none; transition: var(--transition);
  box-shadow: 0 4px 24px rgba(216,254,86,.35), inset 0 1px 0 rgba(255,255,255,.25);
}
.popup-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 36px rgba(216,254,86,.5); }
.popup-btn-secondary {
  background: rgba(255,255,255,.08);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.popup-btn-secondary:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,.18), inset 0 1px 0 rgba(255,255,255,.12);
}
.popup-btn[disabled],
.popup-btn[aria-disabled="true"] {
  cursor: default;
  opacity: .68;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
  transform: none;
}
.popup-btn[disabled]:hover,
.popup-btn[aria-disabled="true"]:hover {
  transform: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.popup-note { font-size: .74rem; color: var(--text-muted); text-align: center; margin-top: .9rem; }

@media (max-width: 720px) {
  .popup-actions {
    grid-template-columns: 1fr;
  }
}

/* ── 29. Keyframes ── */
@keyframes up   { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fi   { from { opacity: 0; } to { opacity: 1; } }
@keyframes fl1  { 0%, 100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-28px) scale(1.04); } }
@keyframes fl2  { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(22px); } }
@keyframes fl3  { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(-18px); } }
@keyframes dotPulse { 0%, 100% { opacity: 1; } 50% { opacity: .3; } }
@keyframes pulse    { 0%, 100% { opacity: 1; } 50% { opacity: .3; } }

/* ── 30. Responsive ── */
@media (max-width: 1280px) {
  .action-image { right: 2rem; width: clamp(230px, 28vw, 340px); }
  .speaker-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 1024px) {
  nav { padding: 1.2rem 2rem; }
  .sd, .sl, .sm, .trust-section, .tw-banner, .da-hero, .agents-overview, .project-overview, .assistant-detail-page { padding: 4rem 2rem; }
  .tw-banner { padding: 0 2rem 4rem; }
  .tw-banner-inner { grid-template-columns: 1fr; gap: 0; padding: 1rem; }
  .tw-banner-photo { min-height: 260px; }
  .tw-banner-text { padding: 1.6rem .7rem .9rem; }
  .hero { padding: 7rem 2rem 3rem; }
  .hero-home-layout { min-height: auto; }
  .hero-home .hi { max-width: none; }
  .home-hero-media video { object-position: 72% center; opacity: .64; }
  .home-hero-media::after {
    background:
      linear-gradient(90deg, rgba(12,8,24,.97) 0%, rgba(12,8,24,.94) 34%, rgba(12,8,24,.74) 58%, rgba(12,8,24,.28) 100%),
      radial-gradient(circle at 78% 50%, rgba(155,111,207,.16) 0%, transparent 38%);
  }
  .home-company-band-card { grid-template-columns: 1fr; gap: 1.5rem; }
  .home-company-band-title { max-width: none; }
  .home-company-band-visual { align-items: flex-start; }
  .home-company-band-people { text-align: left; }
  .home-company-band-tags { justify-content: flex-start; }
  .action-row {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.5rem 0;
  }
  .action-row::before { inset: 0 -1rem; }
  .action-meta { justify-content: flex-start; max-width: none; }
  .action-image {
    position: relative;
    top: auto;
    right: auto;
    width: min(100%, 520px);
    opacity: 1;
    transform: none;
    margin-top: .5rem;
  }
  .action-row:hover .action-image,
  .action-row:focus-visible .action-image {
    transform: none;
  }
  .academy-route-layout { grid-template-columns: 1fr; padding: 0 2rem; min-height: auto; }
  .academy-online-body { grid-template-columns: 1fr; }
  .company-hero { min-height: 82vh; }
  .company-hero-media video { object-position: 72% center; opacity: .64; }
  .company-hero-media::after {
    background:
      linear-gradient(90deg, rgba(12,8,24,.97) 0%, rgba(12,8,24,.94) 34%, rgba(12,8,24,.74) 58%, rgba(12,8,24,.28) 100%),
      radial-gradient(circle at 78% 50%, rgba(155,111,207,.16) 0%, transparent 38%);
  }
  .pgrid, .trgst, .lbintro, .book-grid, .da-grid, .da-form-grid, .assistant-detail-grid { grid-template-columns: 1fr; gap: 3rem; }
  .adet-hero { grid-template-columns: 1fr; gap: 1.5rem; }
  .adet-two-col { grid-template-columns: 1fr; gap: 1.5rem; }
  .trgrid { grid-template-columns: 1fr; }
  .trgrid-four { grid-template-columns: 1fr; }
  .trgrid-two { grid-template-columns: 1fr; }
  .wgrid { grid-template-columns: 1fr 1fr; }
  .ft { grid-template-columns: 1fr 1fr; }
  .cta-btns { flex-direction: column; align-items: center; }
  .hstats { flex-wrap: wrap; gap: 2rem; }
  .home-metrics-grid { grid-template-columns: 1fr 1fr; }
  .home-metric-cta {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
  .speaker-grid { grid-template-columns: 1fr; }
  .company-depth-grid { grid-template-columns: 1fr; }
  .da-card-grid { grid-template-columns: 1fr; }
  .agent-show-grid { grid-template-columns: 1fr 1fr; }
  .project-list { grid-template-columns: 1fr; }
  .project-facts { grid-template-columns: 1fr; }
  .agents-head { flex-direction: column; }
  .agents-head-copy { max-width: none; }
  .agents-head-cta { padding-top: 0; align-items: flex-start; }
  .org-managers, .org-departments, .org-stats { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    display: none; position: absolute; top: 100%;
    left: 1rem; right: 1rem; padding: 1rem;
    border-radius: var(--radius-lg);
    background: rgba(12, 8, 24, 0.97);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    flex-direction: column; align-items: flex-start; gap: .85rem;
  }
  body.nav-open .nav-links { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: inline-flex; width: 100%; }
  .nav-drop { width: 100%; flex-direction: column; align-items: flex-start; }
  .nav-drop-toggle { width: 100%; justify-content: flex-start; }
  .nav-sub {
    position: static; display: flex; margin: .5rem 0 .25rem;
    padding: 0 0 0 .9rem; min-width: 0;
    background: none; border: none; box-shadow: none;
    backdrop-filter: none; -webkit-backdrop-filter: none;
  }
  .nav-caret { display: none; }
  .nav-drop::after { display: none; }
  .speaker-grid, .agent-show-grid, .project-list, .org-managers, .org-departments, .org-stats, .assistant-detail-grid { grid-template-columns: 1fr; }
  .action-showcase { background-size: 5.5rem 100%, auto, auto; }
  .action-copy h3 { font-size: clamp(2.6rem, 14vw, 4.8rem); }
  .action-copy p { font-size: .98rem; }
  .action-meta span { font-size: .66rem; }
  .project-hero { display: block; min-height: auto; padding: 8rem 1.6rem 4rem; }
  .project-hero .h1 {
    font-size: clamp(4rem, 18vw, 5.6rem);
    padding-left: .18em;
  }
  .project-logo-band { position: relative; bottom: auto; margin-top: 2.5rem; }
  .project-image { height: 220px; }
  .project-copy { padding: 1.45rem; }
  .project-copy h3 { max-width: none; }
  .adet-hero { grid-template-columns: 1fr; }
  .adet-hero-left { flex-direction: column; align-items: center; text-align: center; }
  .adet-ctas { justify-content: center; }
  .adet-two-col { grid-template-columns: 1fr; }
  .wgrid, .trgrid { grid-template-columns: 1fr; }
  .home-photo-strip { padding: 1.25rem 2rem 2.75rem; }
  .home-photo-strip-grid { grid-template-columns: 1fr; }
  .about-journey {
    padding: 4rem 1.25rem;
  }
  .about-journey-rail {
    display: none;
  }
  .about-journey-intro,
  .about-stage {
    margin-left: 0;
    max-width: none;
    width: 100%;
  }
  .about-journey-intro .about-journey-title-wide {
    white-space: normal;
  }
  .about-stage {
    min-height: auto;
    padding: 1.5rem;
  }
  .why-morgen-point {
    grid-template-columns: 1fr;
    gap: .75rem;
  }
  .why-morgen-point h3 {
    max-width: none;
  }
  .academy-photo-grid {
    grid-auto-rows: auto;
    gap: 1rem;
  }
  .academy-photo-card {
    aspect-ratio: 4 / 3;
    transform: none !important;
  }
  .home-metrics-grid { grid-template-columns: 1fr; }
  .home-metric-label { max-width: none; }
  .home-metric-cta {
    justify-content: stretch;
  }
  .home-metric-button {
    width: 100%;
    justify-content: center;
  }
  .hero-academy {
    min-height: auto;
    padding: 6.5rem 1rem 2.5rem;
  }
  .hero-academy .hi { max-width: none; }
  .academy-hero-media {
    --academy-hero-opacity: .44;
  }
  .academy-hero-media::after {
    background:
      linear-gradient(90deg, rgba(12,8,24,.985) 0%, rgba(12,8,24,.96) 46%, rgba(12,8,24,.8) 74%, rgba(12,8,24,.44) 100%),
      radial-gradient(circle at 78% 48%, rgba(155,111,207,.1) 0%, transparent 38%);
  }
  .academy-hero-media img {
    object-position: 66% 42%;
  }
  .academy-hero-photo-secondary {
    object-position: 62% 52%;
  }
  #page-academy .scards {
    grid-template-columns: 1fr;
  }
  #page-academy .sc {
    min-height: auto;
    padding: 1.5rem;
  }
  #page-academy .scn-text {
    white-space: normal;
    font-size: 1.55rem;
  }
  #page-academy .scd {
    max-width: none;
  }
  .ft { grid-template-columns: 1fr; }
  .tnums { grid-template-columns: 1fr 1fr; }
  .form-wrap, .da-form-wrap { padding: 1.5rem; }
  .form-grid, .da-form-grid { grid-template-columns: 1fr; }
  .agents-head-cta .btn-p, .agents-head-cta .btn-o { width: 100%; }
  .btn-p, .btn-w, .btn-o, .btn-g { width: 100%; justify-content: center; }
  .academy-hero-actions { width: 100%; }
  .academy-hero-button-row { width: 100%; flex-direction: column; }
  .academy-online-link { width: auto; }
  .glass-card { padding: 1.4rem; }
  .home-hero-media video { object-position: 76% center; opacity: .46; }
  .home-hero-media::after {
    background:
      linear-gradient(90deg, rgba(12,8,24,.98) 0%, rgba(12,8,24,.95) 42%, rgba(12,8,24,.74) 72%, rgba(12,8,24,.34) 100%),
      radial-gradient(circle at 80% 45%, rgba(155,111,207,.12) 0%, transparent 38%);
  }
  .toolselector-teaser { padding: 1.6rem; }
  .toolselector-open { width: 100%; }
  .toolselector-followup .btn-o { width: 100%; }
  .home-company-band-card { padding: 1.5rem; }
  .home-company-band-avatar { width: 88px; height: 88px; margin-left: -14px; }
  .home-company-band-actions { width: 100%; }
  .company-hero { min-height: 76vh; }
  .company-hero .hi { max-width: none; }
  .company-hero-media video { object-position: 76% center; opacity: .46; }
  .company-hero-media::after {
    background:
      linear-gradient(90deg, rgba(12,8,24,.98) 0%, rgba(12,8,24,.95) 42%, rgba(12,8,24,.74) 72%, rgba(12,8,24,.34) 100%),
      radial-gradient(circle at 80% 45%, rgba(155,111,207,.12) 0%, transparent 38%);
  }
  .blog-hero { padding: 7rem 1.5rem 3.5rem; }
  .blog-hero h1 { font-size: clamp(3.2rem, 16vw, 5.2rem); }
  .blog-subtitle { font-size: clamp(2rem, 11vw, 3.8rem); }
  .blog-article {
    width: calc(100% - 2rem);
    padding: 3rem 0;
    font-size: 1rem;
  }
  .blog-article h2 { margin-top: 3rem; }
  .blog-figure-subtle,
  .blog-figure-small.blog-figure-subtle,
  .blog-figure-wide.blog-figure-subtle {
    float: none;
    width: 100%;
    margin: 2rem 0;
  }
  .blog-article .blog-figure-subtle:nth-of-type(3) {
    float: none;
    margin: 2rem 0;
  }
  .blog-cta {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 4rem;
  }
}
