*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif; background: #D8E2EA; color: #0A1628; line-height: 1.6; }
a { text-decoration: none; color: inherit; }

/* ============================================================
   TOKENS
============================================================ */
:root {
  --lila: #7C3AED;
  --lila-mid: #7C3AED;
  --lila-light: #A78BFA;
  --blue-dark: #1E2A35;
  --blue-mid: #173580;
  --blue-footer: #111C24;
  --light1: #D8E2EA;
  --light2: #C4CDD6;
  --navy-text: #0A1628;
  --text-sec: #2D4268;
  --text-muted: #5070A0;
  --border: rgba(10,22,40,0.10);
  --radius: 6px;
}

/* ============================================================
   NAV
============================================================ */
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
  background: #fff;
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 1px 3px rgba(15,30,54,0.06);
}
.logo { font-size: 22px; font-weight: 800; color: var(--navy-text); letter-spacing: -0.5px; cursor: pointer; }
.logo span { color: var(--lila); }
.nav-links { display: flex; gap: 20px; }
.nav-links a { font-size: 16px; color: var(--text-muted); cursor: pointer; font-weight: 500; transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--navy-text); }
.nav-cta {
  background: var(--lila); color: #fff; border: none;
  padding: 11px 26px; border-radius: var(--radius);
  font-size: 16px; font-weight: 700; cursor: pointer;
  transition: background .2s; margin-left: auto;
}
.nav-cta:hover { background: #7C3AED; }

/* Mobile nav toggle */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--navy-text); border-radius: 2px; transition: all .25s; }
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
.nav-mobile {
  display: none; flex-direction: column;
  background: #fff; border-top: 1px solid var(--border);
  padding: 16px 24px 24px; gap: 4px;
  position: sticky; top: 61px; z-index: 99;
  box-shadow: 0 4px 12px rgba(15,30,54,0.08);
}
.nav-mobile.open { display: flex; }
.nav-mobile a { font-size: 16px; color: var(--text-sec); font-weight: 500; padding: 10px 0; border-bottom: 1px solid var(--border); cursor: pointer; }
.nav-mobile a:last-of-type { border-bottom: none; }
.nav-mobile a.active { color: var(--lila); }
.nav-mobile .nav-cta-mobile {
  margin-top: 12px; width: 100%; background: var(--lila); color: #fff;
  border: none; padding: 13px; border-radius: var(--radius);
  font-size: 15px; font-weight: 700; cursor: pointer;
}

/* ============================================================
   PAGE SYSTEM
============================================================ */
.dex-page { display: none; }
.dex-page.active { display: block; }

/* ============================================================
   SECTION EYEBROW
============================================================ */
.section-eyebrow {
  font-size: 15px; letter-spacing: 3px; color: var(--lila);
  font-weight: 700; text-transform: uppercase; margin-bottom: 36px;
  display: flex; align-items: center; gap: 12px;
}

.section-eyebrow.light { color: var(--lila-light); }
.section-eyebrow.light::before { background: var(--lila-mid); }
.section-eyebrow.centered { justify-content: center; }
.section-eyebrow.centered::before, .section-eyebrow.centered::after { content: ''; display: block; width: 32px; height: 1px; background: var(--lila-mid); }

/* ============================================================
   BUTTONS — beide lila achtergrond, witte tekst
============================================================ */
.btn-cta {
  background: var(--lila); color: #fff; border: none;
  padding: 15px 32px; border-radius: var(--radius);
  font-size: 15px; font-weight: 700; cursor: pointer;
  transition: background .2s; display: inline-block;
  text-decoration: none;
}
.btn-cta:hover { background: #7C3AED; color: #fff; }
.btn-cta-sec {
  background: var(--lila); color: #fff; border: none;
  padding: 15px 32px; border-radius: var(--radius);
  font-size: 15px; font-weight: 700; cursor: pointer;
  opacity: 0.72; transition: opacity .2s, background .2s;
  display: inline-block; text-decoration: none;
}
.btn-cta-sec:hover { opacity: 1; background: #7C3AED; color: #fff; }

/* ============================================================
   LAYOUT
============================================================ */
.inner { max-width: 900px; margin: 0 auto; }
.section-pad { padding: 100px 48px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

/* ============================================================
   HERO
============================================================ */
.hero {
  padding: 110px 48px 100px;
  position: relative; overflow: hidden;
  background: var(--blue-dark);
}
.hero-inner { max-width: 900px; margin: 0 auto; position: relative; z-index: 2; }
.hero-eyebrow {
  font-size: 15px; letter-spacing: 3px; color: rgba(255,255,255,0.5);
  font-weight: 700; text-transform: uppercase; margin-bottom: 32px;
  display: flex; align-items: center; gap: 12px;
}
.section-eyebrow::before, .hero-eyebrow::before {
  content: ''; display: block; height: 1px; width: 32px; margin-bottom: 10px;
}
.section-eyebrow::before { background: var(--lila); }
.hero-eyebrow::before { background: var(--lila-mid); }
.hero h1 { font-size: 64px; font-weight: 900; line-height: 1.05; letter-spacing: -2.5px; margin-bottom: 32px; color: #fff; }
.hero h1 .accent { color: var(--lila-light); }
.hero h1 .dim { color: rgba(255,255,255,0.25); }
.hero-sub { font-size: 18px; color: rgba(255,255,255,0.55); line-height: 1.7; max-width: 520px; margin-bottom: 48px; }
.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hero-deco { position: absolute; top: 0; right: -40px; width: 52%; height: 100%; z-index: 1; opacity: 0.1; pointer-events: none; }

/* ============================================================
   STATEMENT — lichtblauw
============================================================ */
.statement { padding: 100px 48px; background: var(--light1); border-top: 1px solid var(--border); }
.statement h2 { font-size: 40px; font-weight: 800; line-height: 1.2; letter-spacing: -1px; color: var(--navy-text); max-width: 740px; }
.statement h2 em { color: var(--lila); font-style: normal; }
.statement-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-top: 56px; }
.statement-col p { font-size: 16px; color: var(--text-sec); line-height: 1.8; }
.statement-col p + p { margin-top: 16px; }

/* ============================================================
   DISCIPLINES — middenblauw
============================================================ */
.disciplines { padding: 100px 48px; background: var(--blue-mid); border-top: 1px solid rgba(255,255,255,0.06); }
.disciplines-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 56px; }
.disciplines-header h2 { font-size: 38px; font-weight: 800; letter-spacing: -1px; line-height: 1.15; color: #fff; }
.disciplines-header h2 em { color: var(--lila-light); font-style: normal; }
.disciplines-header p { font-size: 13px; color: rgba(255,255,255,0.4); max-width: 260px; text-align: right; line-height: 1.7; }
.disc-items, .waarom-items { display: flex; flex-direction: column; }
.disc-item { display: grid; grid-template-columns: 56px 1fr 1fr; gap: 40px; padding: 36px 0; border-top: 1px solid rgba(255,255,255,0.1); align-items: start; }
.disc-item:last-child { border-bottom: 1px solid rgba(255,255,255,0.1); }
.disc-num { font-size: 11px; color: rgba(255,255,255,0.25); font-weight: 700; letter-spacing: 2px; padding-top: 4px; }
.disc-title { font-size: 22px; font-weight: 800; letter-spacing: -0.5px; line-height: 1.2; color: #fff; }
.disc-tag { display: inline-block; font-size: 10px; letter-spacing: 1.5px; color: var(--lila-light); font-weight: 700; text-transform: uppercase; margin-bottom: 8px; }
.disc-body { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.75; padding-top: 4px; }
.disc-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-size: 13px; color: var(--lila-light); font-weight: 600; cursor: pointer; }
.disc-link:hover { color: #fff; }

/* ============================================================
   CYCLUS — lichtblauw
============================================================ */
.cyclus { padding: 100px 48px; background: var(--light2); border-top: 1px solid var(--border); }
.cyclus h2 { font-size: 38px; font-weight: 800; letter-spacing: -1px; margin-bottom: 56px; line-height: 1.2; color: var(--navy-text); }
.cyclus-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; }
.cyclus-step { background: rgba(255,255,255,0.55); border: 1px solid var(--border); padding: 32px 24px; }
.cyclus-step.active, .step-lila { background: #fff; border-color: var(--lila); }
.cyclus-step-num { font-size: 48px; font-weight: 900; color: rgba(15,30,54,0.18); letter-spacing: -2px; line-height: 1; margin-bottom: 20px; display: block; }
.cyclus-step.active .cyclus-step-num { color: rgba(124,58,237,0.30); }
.cyclus-step-tag { font-size: 9px; letter-spacing: 1.5px; color: #6B80A0; font-weight: 700; text-transform: uppercase; margin-bottom: 10px; display: block; }
.cyclus-step.active .cyclus-step-tag { color: var(--lila); }
.cyclus-step h3 { font-size: 15px; font-weight: 700; margin-bottom: 10px; color: var(--navy-text); }
.cyclus-step p { font-size: 12px; color: var(--text-muted); line-height: 1.65; }

/* ============================================================
   STATS — blauw-donker
============================================================ */
.stats-strip { background: var(--blue-dark); padding: 60px 48px; }
.stats-inner { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); }
.stat { padding: 0 32px; border-right: 1px solid rgba(255,255,255,0.12); }
.stat:first-child { padding-left: 0; }
.stat:last-child { border-right: none; }
.stat-num { font-size: 40px; font-weight: 900; color: var(--lila-light); letter-spacing: -1px; margin-bottom: 6px; display: block; }
.stat-label { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.5; }

/* ============================================================
   WAAROM — lichtblauw
============================================================ */
.waarom { padding: 100px 48px; background: var(--light1); border-top: 1px solid var(--border); }
.waarom h2 { font-size: 38px; font-weight: 800; letter-spacing: -1px; margin-bottom: 56px; color: var(--navy-text); }
.waarom-item { display: grid; grid-template-columns: 1fr 2fr; gap: 60px; padding: 36px 0; border-top: 1px solid var(--border); align-items: start; }
.waarom-item:last-child { border-bottom: 1px solid var(--border); }
.waarom-item h3 { font-size: 17px; font-weight: 700; color: var(--navy-text); line-height: 1.3; }
.waarom-item p { font-size: 14px; color: var(--text-sec); line-height: 1.75; }

/* ============================================================
   CTA FINAL — middenblauw
============================================================ */
.cta-final { padding: 120px 48px; background: var(--blue-mid); border-top: 1px solid rgba(255,255,255,0.06); text-align: center; }
.cta-final h2 { font-size: 50px; font-weight: 900; letter-spacing: -2px; line-height: 1.1; margin-bottom: 24px; color: #fff; }
.cta-final p { font-size: 17px; color: rgba(255,255,255,0.5); margin-bottom: 48px; line-height: 1.7; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   TIJDLIJN
============================================================ */
.tl-items { display: flex; flex-direction: column; }
.tl-item { display: grid; grid-template-columns: 80px 1fr; gap: 24px; padding: 22px 0; border-bottom: 1px solid var(--border); align-items: start; }
.tl-item:last-child { border-bottom: none; }
.tl-year { font-size: 13px; font-weight: 700; color: var(--lila); padding-top: 2px; }
.tl-item h4 { font-size: 15px; font-weight: 600; margin-bottom: 4px; color: var(--navy-text); }
.tl-item p { font-size: 13px; color: var(--text-muted); line-height: 1.65; }

/* ============================================================
   WAARDEN
============================================================ */
.waarden-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 14px; }
.waarde-card { background: rgba(255,255,255,0.55); border: 1px solid var(--border); border-radius: 10px; padding: 22px 18px; text-align: center; }
.waarde-card.accent { background: #fff; border-color: rgba(124,58,237,0.2); }
.waarde-icon { width: 40px; height: 40px; border-radius: 50%; background: rgba(124,58,237,0.08); border: 1px solid rgba(124,58,237,0.2); display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.waarde-card h3 { font-size: 14px; font-weight: 700; margin-bottom: 8px; color: var(--navy-text); }
.waarde-card p { font-size: 12px; color: var(--text-muted); line-height: 1.6; }

/* ============================================================
   USE CASE ACCORDION
============================================================ */
.uc-grid { display: flex; flex-direction: column; gap: 8px; }
.uc-card { border: 1px solid var(--border); border-radius: 10px; overflow: hidden; cursor: pointer; background: #fff; align-self: flex-start; width: 100%; }
.uc-card.featured { border-color: rgba(124,58,237,0.35); }
.uc-card.ai-uc { border-color: rgba(124,58,237,0.3); background: rgba(124,58,237,0.04); }
.uc-header { padding: 20px 24px; display: flex; align-items: center; justify-content: space-between; background: #F1F6FB; }
.uc-card.featured .uc-header { background: rgba(124,58,237,0.14); }
.uc-card.ai-uc .uc-header { background: rgba(124,58,237,0.08); }
.uc-title { font-size: 15px; font-weight: 600; color: var(--navy-text); }
.uc-tag { font-size: 10px; letter-spacing: .8px; color: var(--lila); font-weight: 700; background: rgba(124,58,237,0.08); border-radius: 4px; padding: 3px 10px; margin-bottom: 6px; display: inline-block; }
.uc-toggle { font-size: 20px; color: var(--text-muted); transition: transform .2s; flex-shrink: 0; margin-left: 12px; }
.uc-card.open .uc-toggle { transform: rotate(45deg); color: var(--lila); }
.uc-body { padding: 0 24px; max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .3s; }
.uc-card.open .uc-body { max-height: 380px; padding: 0 24px 24px; }
.uc-body.scrollable { overflow: hidden; }
.uc-card.open .uc-body.scrollable { max-height: 260px; padding: 0; }
.uc-body.scrollable .uc-scroll { overflow-y: auto; max-height: 260px; padding: 0 24px 24px; scrollbar-width: thin; scrollbar-color: rgba(124,58,237,0.3) var(--light2); }
.uc-body p { font-size: 13px; color: var(--text-sec); line-height: 1.75; margin-bottom: 12px; }
.uc-body ul { list-style: none; }
.uc-body ul li { font-size: 13px; color: var(--text-muted); line-height: 1.7; padding-left: 18px; position: relative; margin-bottom: 4px; }
.uc-body ul li::before { content: '→'; position: absolute; left: 0; color: var(--lila); font-size: 11px; top: 2px; }
.scroll-hint { display: none; font-size: 11px; color: var(--lila); padding: 6px 24px 0; font-weight: 500; }
.uc-card.open .scroll-hint { display: block; }
.uc-pills { display: flex; gap: 8px; margin-top: 14px; flex-wrap: wrap; }
.pill { background: rgba(124,58,237,0.08); border: 1px solid rgba(124,58,237,0.2); border-radius: 20px; padding: 4px 12px; font-size: 11px; color: var(--lila); font-weight: 600; }

/* ============================================================
   PLATFORMS
============================================================ */
.platform-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.platform-card { background: rgba(255,255,255,0.18); border: 1px solid rgba(255,255,255,0.28); border-radius: 10px; padding: 28px; }
.platform-tag { font-size: 10px; letter-spacing: .8px; color: rgba(255,255,255,0.35); text-transform: uppercase; margin-bottom: 12px; font-weight: 600; display: block; }
.platform-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; color: #fff; }
.platform-card p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.65; }

/* ============================================================
   ROUTES
============================================================ */
.routes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.route-card { border-radius: 10px; padding: 28px; border: 1px solid rgba(255,255,255,0.25); background: rgba(255,255,255,0.16); }
.route-card.hl { border-color: rgba(196,181,253,0.45); background: rgba(124,58,237,0.22); }
.route-num, .step-num { font-size: 10px; letter-spacing: 1px; color: var(--lila-light); font-weight: 700; margin-bottom: 12px; display: block; }
.route-card h3 { font-size: 17px; font-weight: 600; margin-bottom: 10px; color: #fff; }
.route-card p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.7; }
.route-link { display: inline-block; margin-top: 16px; font-size: 13px; color: var(--lila-light); font-weight: 600; cursor: pointer; }

/* ============================================================
   STAPPEN
============================================================ */
.steps-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.steps-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.steps-5 { display: grid; grid-template-columns: repeat(5,1fr); gap: 10px; }
.step { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; padding: 24px; }
.step.accent { border-color: rgba(196,181,253,0.3); background: rgba(124,58,237,0.1); }
.step h3 { font-size: 14px; font-weight: 600; margin-bottom: 8px; color: #fff; }
.step p { font-size: 12px; color: rgba(255,255,255,0.5); line-height: 1.65; }

/* ============================================================
   CONTACT FORM
============================================================ */
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 12px; color: var(--text-sec); margin-bottom: 8px; font-weight: 600; }
.form-group input, .form-group textarea {
  width: 100%; background: #fff; border: 1.5px solid rgba(15,30,54,0.15);
  border-radius: 8px; padding: 12px 16px;
  font-size: 14px; color: var(--navy-text); font-family: inherit;
  outline: none; transition: border-color .2s;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--lila); }
.form-group textarea { resize: vertical; min-height: 120px; line-height: 1.6; }
.submit-btn { width: 100%; background: var(--lila); color: #fff; border: none; padding: 14px; border-radius: 8px; font-size: 15px; font-weight: 700; cursor: pointer; }
.form-note { font-size: 12px; color: var(--text-muted); margin-top: 12px; text-align: center; }

/* ============================================================
   AGENDA
============================================================ */
.agenda-card { background: rgba(124,58,237,0.08); border: 1.5px solid rgba(124,58,237,0.25); border-radius: 10px; padding: 28px; }
.agenda-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; color: var(--navy-text); }
.agenda-card > p { font-size: 13px; color: var(--text-muted); margin-bottom: 18px; }
.agenda-btn { display: flex; align-items: center; gap: 8px; background: var(--lila); color: #fff; border: none; padding: 11px 20px; border-radius: 7px; font-size: 14px; font-weight: 600; cursor: pointer; width: 100%; justify-content: center; margin-bottom: 16px; }
.slots { display: flex; flex-direction: column; gap: 8px; }
.slot { display: flex; align-items: center; justify-content: space-between; background: #fff; border: 1px solid var(--border); border-radius: 8px; padding: 10px 14px; cursor: pointer; transition: border-color .2s; }
.slot:hover { border-color: var(--lila); }
.slot-date { font-size: 13px; color: var(--navy-text); font-weight: 500; }
.slot-time { font-size: 12px; color: var(--text-muted); }
.slot-pick { font-size: 11px; color: var(--lila); font-weight: 600; }

/* ============================================================
   VERGELIJK TABEL
============================================================ */
.v-wrap { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; padding: 24px; }
.v-wrap h3 { font-size: 15px; font-weight: 600; color: rgba(255,255,255,0.5); margin-bottom: 20px; }
.v-table { width: 100%; border-collapse: collapse; }
.v-table th { font-size: 10px; letter-spacing: 1px; color: rgba(255,255,255,0.3); padding: 8px 12px; text-align: left; border-bottom: 1px solid rgba(255,255,255,0.08); font-weight: 700; }
.v-table td { font-size: 13px; padding: 12px; border-bottom: 1px solid rgba(255,255,255,0.06); color: rgba(255,255,255,0.5); line-height: 1.6; }
.v-table tr:last-child td { border-bottom: none; }
.v-table td:first-child { color: #fff; font-weight: 600; }
.v-table td.bad { color: #F87171; }
.v-table td.good { color: var(--lila-light); font-weight: 600; }

/* ============================================================
   W-ITEMS
============================================================ */
.w-items { display: flex; flex-direction: column; gap: 14px; margin-top: 12px; }
.w-item { display: flex; gap: 14px; align-items: flex-start; }
.w-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--lila); margin-top: 6px; flex-shrink: 0; }
.w-item p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.65; margin: 0; }

/* ============================================================
   BREADCRUMB
============================================================ */
.breadcrumb { font-size: 12px; color: rgba(255,255,255,0.35); margin-bottom: 22px; }
.breadcrumb span { color: var(--lila-light); }

/* ============================================================
   AI CARDS
============================================================ */
.ai-cards { display: flex; flex-direction: column; gap: 12px; }
.ai-card { display: flex; gap: 16px; align-items: flex-start; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; padding: 16px 20px; }
.ai-card.accent { border-color: rgba(196,181,253,0.3); background: rgba(124,58,237,0.1); }
.ai-card-icon { width: 32px; height: 32px; border-radius: 8px; background: rgba(124,58,237,0.2); border: 1px solid rgba(196,181,253,0.3); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 13px; font-weight: 700; color: var(--lila-light); }
.ai-card h4 { font-size: 13px; font-weight: 600; margin-bottom: 4px; color: #fff; }
.ai-card p { font-size: 12px; color: rgba(255,255,255,0.45); line-height: 1.6; margin: 0; }

/* ============================================================
   CALLOUT
============================================================ */
.callout { border-left: 3px solid var(--lila); padding: 14px 20px; margin-top: 20px; background: rgba(124,58,237,0.08); border-radius: 0 8px 8px 0; }
.callout p { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.7; margin: 0; }
.callout strong { color: var(--lila-light); font-weight: 600; }

/* ============================================================
   FOOTER
============================================================ */
footer { background: var(--blue-footer); padding: 28px 48px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid rgba(255,255,255,0.08); }
.footer-logo { font-size: 16px; font-weight: 800; color: rgba(255,255,255,0.35); }
.footer-logo span { color: var(--lila-mid); }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.25); }

/* ============================================================
   HELPERS
============================================================ */
h1.hero-title { font-size: 38px; font-weight: 800; line-height: 1.1; letter-spacing: -1px; margin-bottom: 20px; color: #fff; }
h1.hero-title em { color: var(--lila-light); font-style: normal; }
h2.section-h { font-size: 30px; font-weight: 700; letter-spacing: -.5px; margin-bottom: 14px; color: #fff; }
p.section-sub { font-size: 15px; color: rgba(255,255,255,0.5); margin-bottom: 36px; line-height: 1.7; }
p.body-text { font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.8; margin-bottom: 14px; }
p.body-sm { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.75; margin-bottom: 12px; }
.light-text { color: var(--navy-text) !important; }
.light-sub { color: var(--text-sec) !important; }
.light-muted { color: var(--text-muted) !important; }

/* ============================================================
   RESPONSIVE — Tablet (≤900px)
============================================================ */
@media (max-width: 900px) {
  .section-pad, .statement, .disciplines, .cyclus, .waarom, .cta-final, .hero { padding-left: 32px; padding-right: 32px; }
  .hero { padding-top: 80px; padding-bottom: 80px; }
  .hero h1 { font-size: 44px; }
  h1.hero-title { font-size: 30px; }
  h2.section-h { font-size: 24px; }
  .grid-2 { grid-template-columns: 1fr; gap: 36px; }
  .statement-cols { grid-template-columns: 1fr; gap: 24px; }
  .disciplines-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .disciplines-header p { text-align: left; }
  .disc-item { grid-template-columns: 40px 1fr; gap: 20px; }
  .disc-item > div:last-child { grid-column: 2; }
  .cyclus-steps { grid-template-columns: 1fr 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; gap: 24px; }
  .stat { padding: 0 0 24px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.1); padding-right: 24px; }
  .stat:nth-child(3), .stat:nth-child(4) { border-bottom: none; }
  .stats-strip { padding: 40px 32px; }
  .waarom-item { grid-template-columns: 1fr; gap: 10px; }
  .waarden-grid { grid-template-columns: 1fr 1fr; }
  .platform-grid { grid-template-columns: 1fr; }
  .uc-grid { grid-template-columns: 1fr; }
  .routes-grid { grid-template-columns: 1fr; }
  .steps-5 { grid-template-columns: 1fr 1fr; }
  .steps-4 { grid-template-columns: 1fr 1fr; }
  .cta-btns { justify-content: flex-start; }
  footer { padding: 24px 32px; }
}

/* ============================================================
   RESPONSIVE — Mobiel (≤600px)
============================================================ */
@media (max-width: 600px) {
  .nav { padding: 14px 20px; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .hero, .statement, .disciplines, .cyclus, .waarom, .cta-final { padding-left: 20px; padding-right: 20px; }
  .stats-strip { padding: 32px 20px; }
  .hero { padding-top: 60px; padding-bottom: 60px; }
  .hero h1 { font-size: 34px; letter-spacing: -1px; }
  .hero h1 br { display: none; }
  h1.hero-title { font-size: 26px; }
  h2.section-h { font-size: 22px; }
  .disc-item { grid-template-columns: 1fr; gap: 12px; }
  .disc-num { display: none; }
  .cyclus-steps, .steps-3, .steps-4, .steps-5, .waarden-grid, .platform-grid, .uc-grid, .routes-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .stat-num { font-size: 30px; }
  .hero-actions, .cta-btns { flex-direction: column; align-items: stretch; }
  .btn-cta, .btn-cta-sec { text-align: center; width: 100%; }
  footer { flex-direction: column; gap: 8px; text-align: center; padding: 20px; }
}
/* ============================================================
   RESPONSIVE — Process Mining hero & Contact grid
============================================================ */
.pm-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
  padding: 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.klanten-rij {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .pm-hero { grid-template-columns: 1fr; }
  .pm-hero > div:last-child { display: none; }
  .pm-hero > div:first-child { padding: 48px 32px; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .klanten-rij { gap: 32px; }
}

@media (max-width: 600px) {
  .pm-hero > div:first-child { padding: 40px 20px; }
  .klanten-rij { gap: 24px; }
  .klanten-rij img { max-height: 36px !important; }
}

/* ============================================================
   VACATURES — Overzicht & Detail
============================================================ */

/* Sfeer-fotobalk */
.sfeer-balk { display: grid; grid-template-columns: 2fr 1fr 1fr; height: 300px; overflow: hidden; }
.sfeer-item { position: relative; overflow: hidden; background: #C8DDEF; }
.sfeer-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sfeer-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 600; color: #5070A0; letter-spacing: 0.5px; }
.sfeer-item:nth-child(2) .sfeer-placeholder { background: #AECCE6; }
.sfeer-item:nth-child(3) .sfeer-placeholder { background: #BFCFE3; }

/* Waarden strip */
.vac-waarden-strip { background: var(--blue); padding: 28px 48px; }
.vac-waarden-rij { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.vac-waarde { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.85); font-size: 14px; font-weight: 600; }
.vac-waarde-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--lila-mid); flex-shrink: 0; }

/* Intro grid */
.vac-intro { padding: 72px 48px; background: #fff; }
.vac-intro-grid { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.vac-intro-tekst h2 { font-size: 34px; font-weight: 800; letter-spacing: -0.8px; line-height: 1.2; color: var(--navy); margin-bottom: 16px; }
.vac-intro-tekst p { font-size: 15px; color: #5070A0; line-height: 1.8; margin-bottom: 12px; }
.vac-intro-punten, .det-sidebar-facts { display: flex; flex-direction: column; gap: 12px; }
.vac-punt { display: flex; gap: 14px; align-items: flex-start; background: #F7FAFD; border-radius: 10px; padding: 14px 18px; border: 1px solid rgba(23,53,128,0.07); }
.vac-punt-icon { width: 36px; height: 36px; border-radius: 8px; background: rgba(124,58,237,0.08); border: 1px solid rgba(124,58,237,0.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.vac-punt-tekst strong { display: block; font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.vac-punt-tekst span { font-size: 13px; color: #5070A0; line-height: 1.6; }

/* Vacature lijst */
.vac-lijst { background: #0F1E36; padding: 72px 48px; }
.vac-lijst .inner { max-width: 900px; margin: 0 auto; }
.vac-cards, .contact-info-items { display: flex; flex-direction: column; gap: 14px; }
.vac-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; padding: 26px 30px; display: grid; grid-template-columns: 1fr auto; gap: 20px; align-items: center; text-decoration: none; color: inherit; transition: border-color 0.2s, background 0.2s; }
.vac-card:hover { border-color: rgba(124,58,237,0.4); background: rgba(124,58,237,0.04); }
.vac-card-tag { font-size: 10px; letter-spacing: 1.5px; font-weight: 700; text-transform: uppercase; color: var(--lila-mid); background: rgba(124,58,237,0.12); border-radius: 4px; padding: 3px 10px; display: inline-block; margin-bottom: 10px; }
.vac-card h3 { font-size: 19px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.vac-card p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.6; }
.vac-card-meta { display: flex; gap: 14px; margin-top: 12px; flex-wrap: wrap; }
.vac-meta-pill { font-size: 12px; color: rgba(255,255,255,0.45); font-weight: 500; display: flex; align-items: center; gap: 6px; }
.vac-meta-pill::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: rgba(167,139,250,0.5); display: block; }
.vac-card-arrow { width: 42px; height: 42px; border-radius: 50%; background: rgba(124,58,237,0.1); border: 1px solid rgba(124,58,237,0.2); display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--lila-mid); flex-shrink: 0; transition: background 0.2s, color 0.2s; }
.vac-card:hover .vac-card-arrow { background: var(--lila); color: #fff; }
.vac-geen { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 40px; text-align: center; }
.vac-geen p { font-size: 15px; color: rgba(255,255,255,0.5); line-height: 1.75; }

/* Spontaan solliciteren */
.vac-spontaan { background: var(--navy); padding: 52px 48px; }
.vac-spontaan-grid { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; }
.vac-spontaan h3 { font-size: 24px; font-weight: 800; color: #fff; margin-bottom: 8px; }
.vac-spontaan p { font-size: 15px; color: rgba(255,255,255,0.55); line-height: 1.7; }

/* Quote */
.vac-quote { background: var(--light1); padding: 56px 48px; }
.vac-quote-inner { max-width: 680px; margin: 0 auto; text-align: center; }
.vac-quote-inner blockquote { font-size: 21px; font-weight: 700; line-height: 1.5; color: var(--navy); margin-bottom: 18px; font-style: italic; }
.vac-quote-naam { font-size: 14px; font-weight: 700; color: var(--blue); }
.vac-quote-functie { font-size: 13px; color: #5070A0; margin-top: 3px; }

/* ─── VACATURE DETAIL ─── */
.det-breadcrumb { font-size: 12px; color: rgba(255,255,255,0.4); margin-bottom: 18px; display: flex; align-items: center; gap: 8px; }
.det-breadcrumb a { color: rgba(255,255,255,0.4); text-decoration: none; }
.det-breadcrumb a:hover { color: rgba(255,255,255,0.7); }
.det-tag-pill { font-size: 10px; letter-spacing: 1.5px; font-weight: 700; text-transform: uppercase; color: var(--lila-mid); background: rgba(167,139,250,0.15); border-radius: 4px; padding: 4px 12px; display: inline-block; margin-bottom: 16px; }
.det-meta-rij { display: flex; gap: 22px; flex-wrap: wrap; margin-top: 18px; }
.det-meta-item { font-size: 14px; color: rgba(255,255,255,0.6); font-weight: 500; }

.det-content-wrap { max-width: 900px; margin: 0 auto; padding: 60px 48px; display: grid; grid-template-columns: 1fr 290px; gap: 56px; align-items: start; }
.det-main-col { }
.det-sectie { margin-bottom: 40px; }
.det-sectie h2 { font-size: 22px; font-weight: 800; color: var(--navy); margin-bottom: 14px; padding-bottom: 12px; border-bottom: 2px solid var(--light1); }
.det-sectie p { font-size: 15px; color: #3D5070; line-height: 1.8; margin-bottom: 12px; }
.det-sectie ul { list-style: none; padding: 0; }
.det-sectie ul li { font-size: 15px; color: #3D5070; line-height: 1.7; padding: 8px 0 8px 22px; position: relative; border-bottom: 1px solid rgba(23,53,128,0.06); }
.det-sectie ul li:last-child { border-bottom: none; }
.det-sectie ul li::before { content: '→'; position: absolute; left: 0; color: var(--lila); font-size: 13px; top: 10px; }
.det-energie { background: rgba(124,58,237,0.05); border: 1px solid rgba(124,58,237,0.15); border-radius: 12px; padding: 22px 24px; margin: -12px 0 36px; }
.det-energie p { font-size: 15px; color: var(--navy); line-height: 1.75; margin: 0; }
.det-energie strong { color: var(--lila); }

.det-sidebar-col { }
.det-sidebar-card { background: var(--navy); border-radius: 14px; padding: 26px; position: sticky; top: 90px; }
.det-sidebar-card h3 { font-size: 18px; font-weight: 800; color: #fff; margin-bottom: 6px; }
.det-sidebar-sub { font-size: 13px; color: rgba(255,255,255,0.45); margin-bottom: 22px; line-height: 1.6; }
.det-sidebar-divider { border: none; border-top: 1px solid rgba(255,255,255,0.08); margin: 18px 0; }
.det-sidebar-fact-label { font-size: 10px; letter-spacing: 1px; font-weight: 700; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 2px; }
.det-sidebar-fact-val { font-size: 14px; color: rgba(255,255,255,0.8); font-weight: 500; }

/* Responsive */
@media (max-width: 900px) {
  .sfeer-balk { grid-template-columns: 1fr; height: 200px; }
  .sfeer-item:nth-child(2), .sfeer-item:nth-child(3) { display: none; }
  .vac-intro-grid { grid-template-columns: 1fr; gap: 32px; }
  .vac-spontaan-grid { grid-template-columns: 1fr; gap: 20px; }
  .det-content-wrap { grid-template-columns: 1fr; }
  .det-sidebar-col { order: -1; }
  .det-sidebar-card { position: static; }
}
@media (max-width: 600px) {
  .vac-waarden-rij { gap: 20px; }
  .vac-intro, .vac-lijst, .vac-spontaan, .vac-quote { padding-left: 20px; padding-right: 20px; }
  .det-content-wrap { padding-left: 20px; padding-right: 20px; }
}

/* ============================================================
   HOMEPAGE — classes ter vervanging van inline stijlen
============================================================ */

/* Statement sectie */
.statement-h2 { font-size: 40px; font-weight: 800; line-height: 1.2; letter-spacing: -1px; max-width: 740px; }

/* Disciplines subtext */
.disc-subtext { font-size: 16px; color: rgba(255,255,255,0.4); line-height: 1.9; margin-top: 16px; }

/* Generieke sectie-heading (cyclus, waarom) */
.section-h { font-size: 38px; font-weight: 800; letter-spacing: -1px; margin-bottom: 56px; }

/* Cyclus stappen */
.cyclus-step { background: #F1F6FB; border-color: rgba(15,30,54,0.08); }
.cyclus-step.active, .step-lila { background: #EDE0FF; border-color: rgba(124,58,237,0.45); }

/* Klanten sectie */
.klanten-sectie { padding: 64px 48px; background: #fff; border-top: 1px solid rgba(15,30,54,0.07); }
.klanten-label { font-size: 11px; letter-spacing: 2.5px; color: #5070A0; font-weight: 700; text-transform: uppercase; text-align: center; margin-bottom: 44px; }

/* Klant logo's met vaste hoogtes */
.klant-logo { width: auto; object-fit: contain; display: block; }
.klant-logo-sm  { height: 41px; }
.klant-logo-md  { height: 54px; }
.klant-logo-md2 { height: 61px; }
.klant-logo-lg  { height: 70px; }

/* CTA final sectie */
.cta-inner-narrow { max-width: 680px; }
.cta-h2 { font-size: 50px; font-weight: 900; letter-spacing: -2px; margin-bottom: 24px; }
.cta-sub { font-size: 17px; color: rgba(255,255,255,0.5); margin-bottom: 48px; line-height: 1.7; }
.cta-btns-center { justify-content: center; }

/* ============================================================
   VACATURES — classes ter vervanging van inline stijlen
============================================================ */

/* Overzichtspagina */
.vac-lijst-h2 { margin-bottom: 10px; }
.vac-lijst-sub { font-size: 16px; color: rgba(255,255,255,0.5); margin-bottom: 48px; }
.vac-geen-cta { margin-top: 20px; display: inline-block; }

/* Detailpagina */
.hero-inner-wide { max-width: 900px; }
.btn-block { display: block; text-align: center; margin-bottom: 10px; }
.btn-block + .btn-block { margin-bottom: 0; }

/* Responsive aanpassingen voor nieuwe classes */
@media (max-width: 900px) {
  .statement-h2 { font-size: 28px; }
  .section-h { font-size: 28px; margin-bottom: 36px; }
  .cta-h2 { font-size: 34px; }
}
@media (max-width: 600px) {
  .statement-h2 { font-size: 22px; }
  .section-h { font-size: 22px; }
  .cta-h2 { font-size: 26px; }
  .klanten-sectie { padding: 40px 20px; }
}

/* ============================================================
   OVER ONS — classes ter vervanging van inline stijlen
============================================================ */
.hero-pb { padding-bottom: 80px; }

.hero-h1-lg, .hero-h1-xl {
  font-size: 52px; font-weight: 900; line-height: 1.08;
  letter-spacing: -2px; margin-bottom: 24px; color: #fff;
}
.hero-h1-xl { max-width: 780px; }
.hero-sub-wide { max-width: 580px; }
.hero-sub-narrow { max-width: 520px; }
.cyclus-alt { background: var(--light2); }
.waarom-alt { background: var(--light1); }

/* ============================================================
   BPM — classes ter vervanging van inline stijlen
============================================================ */
.body-text-narrow { max-width: 520px; }
.step-light { background: #F0F2F5; border-color: #DDE1E7; }
.step-num-light { color: rgba(15,30,54,0.18); font-size: 48px; }
.step-num-lila  { color: rgba(124,58,237,0.30); font-size: 48px; }
.step-h3-dark { color: #000; }
.step-p-dark  { color: #111; }
.step-h3-lila { color: #3B0764; }
.step-p-lila  { color: #5B21B6; }
.disciplines-dark { background: var(--blue-dark); }
.cta-h2-sm { font-size: 36px; font-weight: 800; letter-spacing: -1px; margin-bottom: 20px; }

/* ============================================================
   PROCESS MINING — classes ter vervanging van inline stijlen
============================================================ */
.pm-hero-col { padding: 80px 48px; display: flex; flex-direction: column; justify-content: center; }
.pm-hero-sub { max-width: 420px; }
.pm-hero-h2  { font-size: 52px; font-weight: 800; letter-spacing: -2px; margin-bottom: 36px; }
.hero-label-pill { font-size: 11px; letter-spacing: 2px; color: var(--lila-light); font-weight: 700; text-transform: uppercase; margin-bottom: 18px; display: inline-block; background: rgba(124,58,237,0.15); border: 1px solid rgba(196,181,253,0.3); padding: 5px 14px; border-radius: 20px; }
.pm-hero-visual { background: var(--blue-mid); display: flex; align-items: center; justify-content: center; padding: 40px; overflow: hidden; }
.pm-mock-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; padding: 24px; width: 100%; max-width: 300px; }
.pm-mock-label { font-size: 9px; color: rgba(255,255,255,0.3); margin-bottom: 14px; letter-spacing: .5px; }
.pm-mock-note  { font-size: 9px; color: rgba(255,255,255,0.2); margin-top: 10px; font-style: italic; }
.pm-mock-kpis  { display: flex; gap: 8px; margin-bottom: 14px; }
.pm-mock-kpi   { padding: 8px; font-size: 11px; flex: 1; text-align: center; border-radius: 6px; }
.pm-kpi-lila   { background: rgba(124,58,237,0.2); border: 1px solid rgba(196,181,253,0.3); color: var(--lila-light); }
.pm-kpi-red    { background: rgba(248,113,113,0.1); border: 1px solid rgba(248,113,113,0.2); color: #F87171; }
.pm-kpi-default { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.5); }
.pm-kpi-sub    { font-size: 9px; opacity: .7; }
.pm-mock-bars  { display: flex; gap: 4px; align-items: flex-end; height: 48px; }
.pm-bar        { width: 16px; background: var(--lila); border-radius: 2px; }
.pm-bar-30  { height: 30%; background: rgba(124,58,237,0.3); }
.pm-bar-50  { height: 50%; background: rgba(124,58,237,0.45); }
.pm-bar-65  { height: 65%; background: rgba(124,58,237,0.6); }
.pm-bar-82  { height: 82%; background: rgba(124,58,237,0.75); }
.pm-bar-100 { height: 100%; }
.step-glass { background: rgba(255,255,255,0.16); border-color: rgba(255,255,255,0.25); }
.step-h3-lg { font-size: 28px; letter-spacing: -0.5px; }

/* ============================================================
   CONTACT — classes ter vervanging van inline stijlen
============================================================ */
.statement-pt { padding-top: 72px; }
.form-sub { font-size: 14px; margin-bottom: 28px; }
.contact-info-col { display: flex; flex-direction: column; gap: 16px; }
.section-eyebrow-mb { margin-bottom: 20px; }
.contact-info-card { background: #fff; border: 1px solid var(--border); border-radius: 10px; padding: 20px; }
.contact-info-item { display: flex; gap: 12px; align-items: center; }
.contact-info-icon { width: 34px; height: 34px; border-radius: 8px; background: rgba(124,58,237,0.08); border: 1px solid rgba(124,58,237,0.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 14px; }
.contact-info-label { font-size: 11px; color: var(--text-muted); margin: 0 0 2px; }
.contact-info-link { font-size: 14px; color: var(--lila); font-weight: 500; text-decoration: none; }
.contact-info-link:hover { text-decoration: underline; }

/* ============================================================
   VACATURES — vac-card-body (hernoemd van vac-card-content)
============================================================ */
.vac-card-body { }
.det-sidebar-fact { }

/* Responsive for new classes */
@media (max-width: 600px) {
  .hero-h1-lg, .hero-h1-lg, .hero-h1-xl {
  font-size: 52px; font-weight: 900; line-height: 1.08;
  letter-spacing: -2px; margin-bottom: 24px; color: #fff;
}
.hero-h1-xl { max-width: 780px; }
  .pm-hero-h2 { font-size: 34px; }
  .pm-hero-col { padding: 40px 20px; }
  .step-num-light, .step-num-lila { font-size: 32px; }
}