/* ========================================
   CSS CUSTOM PROPERTIES
   ======================================== */
:root {
  --navy-950: #0a0f1e;
  --navy-900: #0f1729;
  --navy-800: #162038;
  --navy-700: #1e2d4d;
  --navy-600: #2a3f6b;
  --navy-500: #3a5a8f;
  --navy-400: #5b7eb5;
  --navy-300: #8da6cf;
  --navy-200: #b8cbe4;
  --navy-100: #dce5f2;
  --navy-50: #eef2f8;

  --amber-600: #d97706;
  --amber-500: #f59e0b;
  --amber-400: #fbbf24;
  --amber-300: #fcd34d;
  --amber-200: #fde68a;
  --amber-100: #fef3c7;
  --amber-50: #fffbeb;

  --emerald-600: #059669;
  --emerald-500: #10b981;
  --emerald-100: #d1fae5;

  --red-500: #ef4444;
  --red-100: #fee2e2;

  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;

  --font-display: 'Instrument Serif', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;

  --shadow-sm: 0 1px 2px rgba(10,15,30,.05);
  --shadow-md: 0 4px 12px rgba(10,15,30,.08);
  --shadow-lg: 0 8px 30px rgba(10,15,30,.1);
  --shadow-xl: 0 16px 50px rgba(10,15,30,.12);
  --shadow-glow: 0 0 40px rgba(245,158,11,.15);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --max-width: 1200px;
  --section-pad: 120px;
}

/* ========================================
   RESET & BASE
   ======================================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-700);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; color: var(--navy-900); line-height: 1.15; }

h1 { font-size: clamp(2.5rem, 5.5vw, 4.2rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }
h4 { font-size: 1.15rem; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber-600);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--amber-500);
}

.section-intro {
  font-size: 1.125rem;
  color: var(--gray-500);
  max-width: 680px;
  line-height: 1.8;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: none;
  transition: all .25s cubic-bezier(.4,0,.2,1);
  white-space: nowrap;
}

.btn-primary {
  background: var(--navy-900);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--navy-700);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

.btn-accent {
  background: var(--amber-500);
  color: var(--navy-950);
}
.btn-accent:hover {
  background: var(--amber-400);
  transform: translateY(-1px);
  box-shadow: var(--shadow-glow);
}

.btn-outline {
  background: transparent;
  color: var(--navy-900);
  border: 1.5px solid var(--navy-200);
}
.btn-outline:hover {
  border-color: var(--navy-900);
  background: var(--navy-50);
}

.btn-white {
  background: var(--white);
  color: var(--navy-900);
}
.btn-white:hover {
  background: var(--gray-50);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

.btn-arrow::after {
  content: 'â';
  transition: transform .2s;
}
.btn-arrow:hover::after {
  transform: translateX(3px);
}

/* ========================================
   NAVIGATION
   ======================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: all .3s;
}
.nav.scrolled {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gray-200);
  padding: 12px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--white);
  letter-spacing: -0.02em;
  transition: color .3s;
}
.nav.scrolled .nav-logo { color: var(--navy-900); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,.7);
  transition: color .2s;
}
.nav-links a:hover { color: var(--white); }
.nav.scrolled .nav-links a { color: var(--gray-500); }
.nav.scrolled .nav-links a:hover { color: var(--navy-900); }

.nav-cta {
  font-size: 0.875rem;
  font-weight: 600;
  padding: 10px 20px;
  background: rgba(255,255,255,.15);
  color: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,.2);
  transition: all .2s;
}
.nav-cta:hover {
  background: rgba(255,255,255,.25);
}
.nav.scrolled .nav-cta {
  background: var(--navy-900);
  color: var(--white);
  border-color: var(--navy-900);
}

.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  padding: 4px;
}
.nav.scrolled .nav-mobile-toggle { color: var(--navy-900); }

/* ========================================
   HERO
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy-950);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 70% 40%, rgba(245,158,11,.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 20% 80%, rgba(59,130,246,.06) 0%, transparent 50%);
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 140px 0 100px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(245,158,11,.1);
  border: 1px solid rgba(245,158,11,.2);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--amber-400);
  margin-bottom: 32px;
}
.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--amber-400);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}

.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: italic;
  color: var(--amber-400);
}

.hero-sub {
  font-size: 1.2rem;
  color: rgba(255,255,255,.55);
  line-height: 1.8;
  max-width: 620px;
  margin-bottom: 16px;
}

.hero-promise {
  font-size: 0.9rem;
  color: var(--amber-400);
  font-weight: 600;
  margin-bottom: 40px;
  letter-spacing: 0.01em;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.hero-stat-value {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--white);
}
.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,.4);
  margin-top: 4px;
}

/* ========================================
   PROBLEM SECTION
   ======================================== */
.section-problem {
  padding: var(--section-pad) 0;
  background: var(--gray-50);
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-top: 48px;
}

.problem-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.problem-item {
  display: flex;
  gap: 16px;
  padding: 20px 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  transition: all .2s;
}
.problem-item:hover {
  border-color: var(--red-500);
  box-shadow: var(--shadow-md);
}

.problem-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--red-100);
  color: var(--red-500);
  border-radius: var(--radius-sm);
  font-size: 1.1rem;
}

.problem-item h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy-900);
  margin-bottom: 4px;
}
.problem-item p {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.6;
}

.problem-quote {
  position: sticky;
  top: 120px;
  padding: 40px;
  background: var(--navy-900);
  border-radius: var(--radius-lg);
  color: var(--white);
}
.problem-quote blockquote {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 24px;
  color: rgba(255,255,255,.9);
}
.problem-quote p {
  font-size: 0.875rem;
  color: rgba(255,255,255,.5);
  line-height: 1.7;
}

.problem-bottom-line {
  margin-top: 48px;
  padding: 24px 32px;
  background: var(--white);
  border-left: 3px solid var(--amber-500);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--navy-800);
}

/* ========================================
   SCENARIOS SECTION
   ======================================== */
.section-scenarios {
  padding: var(--section-pad) 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
}

.scenarios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.scenario-card {
  padding: 32px 28px;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  position: relative;
  transition: all .3s;
}
.scenario-card:hover {
  border-color: var(--amber-300);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.scenario-role {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--amber-600);
  background: var(--amber-100);
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.scenario-card h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy-900);
  margin-bottom: 12px;
  line-height: 1.4;
}

.scenario-narrative {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 16px;
}

.scenario-outcome {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 12px 14px;
  background: var(--emerald-100);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--emerald-600);
  line-height: 1.5;
}
.scenario-outcome::before {
  content: 'â';
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ========================================
   DIFFERENCE SECTION
   ======================================== */
.section-difference {
  padding: var(--section-pad) 0;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.pillar-card {
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: all .3s;
  position: relative;
  overflow: hidden;
}
.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  opacity: 0;
  transition: opacity .3s;
}
.pillar-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}
.pillar-card:hover::before { opacity: 1; }

.pillar-card:nth-child(1)::before { background: var(--navy-600); }
.pillar-card:nth-child(2)::before { background: var(--amber-500); }
.pillar-card:nth-child(3)::before { background: var(--red-500); }
.pillar-card:nth-child(4)::before { background: var(--emerald-600); }

.pillar-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--gray-200);
  line-height: 1;
  margin-bottom: 20px;
}
.pillar-card:nth-child(1):hover .pillar-num { color: var(--navy-200); }
.pillar-card:nth-child(2):hover .pillar-num { color: var(--amber-200); }
.pillar-card:nth-child(3):hover .pillar-num { color: var(--red-100); }
.pillar-card:nth-child(4):hover .pillar-num { color: var(--emerald-100); }

.pillar-card h3 { font-size: 1.25rem; margin-bottom: 12px; }
.pillar-card p { font-size: 0.875rem; color: var(--gray-500); line-height: 1.7; }

.pillar-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
}
.pillar-tag {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--gray-100);
  color: var(--gray-600);
}

.pillar-bottom-value {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--gray-100);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy-700);
  font-style: italic;
}

/* ========================================
   STAKEHOLDERS
   ======================================== */
.section-stakeholders {
  padding: var(--section-pad) 0;
  background: var(--navy-950);
  color: var(--white);
}
.section-stakeholders .section-intro { color: rgba(255,255,255,.5); }

.stakeholder-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.stakeholder-card {
  padding: 28px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md);
  transition: all .3s;
}
.stakeholder-card:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(245,158,11,.3);
  transform: translateY(-2px);
}

.stakeholder-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245,158,11,.1);
  border-radius: var(--radius-sm);
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.stakeholder-card h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 8px;
}
.stakeholder-card p {
  font-size: 0.85rem;
  color: rgba(255,255,255,.45);
  line-height: 1.7;
}

.stakeholder-value {
  margin-top: 12px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--amber-400);
}

/* ========================================
   FEATURES DOMAINS
   ======================================== */
.section-features {
  padding: var(--section-pad) 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 56px;
}

.feature-card {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  transition: all .25s;
  cursor: default;
}
.feature-card:hover {
  border-color: var(--navy-300);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.feature-icon-wrap {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-50);
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  font-size: 1.15rem;
}

.feature-card h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy-900);
  margin-bottom: 8px;
}
.feature-card p {
  font-size: 0.8rem;
  color: var(--gray-500);
  line-height: 1.65;
}

/* ========================================
   RECOVERY / REGIEHERSTEL
   ======================================== */
.section-recovery {
  padding: var(--section-pad) 0;
  background: linear-gradient(180deg, var(--amber-50) 0%, var(--white) 100%);
}

.recovery-contrast {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
  margin-bottom: 56px;
}

.contrast-card {
  padding: 24px 28px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  line-height: 1.7;
}
.contrast-card.old {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  color: var(--gray-500);
}
.contrast-card.new {
  background: var(--navy-900);
  color: rgba(255,255,255,.85);
}
.contrast-card strong {
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.contrast-card.old strong { color: var(--gray-400); }
.contrast-card.new strong { color: var(--amber-400); }

.recovery-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.recovery-phases {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.recovery-phases::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: linear-gradient(180deg, var(--amber-200), var(--emerald-500));
}

.phase-item {
  display: flex;
  gap: 20px;
  padding: 16px 0;
  position: relative;
}
.phase-dot {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 2px solid var(--amber-300);
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--amber-600);
  z-index: 1;
  transition: all .3s;
}
.phase-item:last-child .phase-dot {
  border-color: var(--emerald-500);
  color: var(--emerald-600);
}
.phase-item:hover .phase-dot {
  background: var(--amber-500);
  border-color: var(--amber-500);
  color: var(--white);
  transform: scale(1.1);
}
.phase-item:last-child:hover .phase-dot {
  background: var(--emerald-500);
  border-color: var(--emerald-500);
}

.phase-content h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.phase-content p {
  font-size: 0.85rem;
  color: var(--gray-500);
}

.recovery-principles {
  position: sticky;
  top: 120px;
}

.principle-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.principle-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--white);
  border: 1px solid var(--amber-200);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--amber-600);
}
.principle-badge::before {
  content: 'â';
  font-weight: 700;
  color: var(--emerald-600);
}

.recovery-microcopy {
  margin-top: 32px;
  padding: 24px;
  background: var(--white);
  border-left: 3px solid var(--amber-500);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--navy-800);
  line-height: 1.6;
}

/* ========================================
   E-LEARNING
   ======================================== */
.section-elearning {
  padding: var(--section-pad) 0;
}

.elearning-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 48px;
}

.module-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.module-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy-800);
  transition: all .2s;
}
.module-item:hover {
  background: var(--navy-50);
  transform: translateX(4px);
}
.module-item-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-100);
  border-radius: 6px;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.elearning-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.elearning-feature {
  display: flex;
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  transition: all .2s;
}
.elearning-feature:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--amber-300);
}
.elearning-feature-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--amber-100);
  border-radius: var(--radius-sm);
  font-size: 1rem;
}
.elearning-feature h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 4px;
}
.elearning-feature p {
  font-size: 0.825rem;
  color: var(--gray-500);
}

/* ========================================
   SIGNALERING & ESCALATIE
   ======================================== */
.section-signals {
  padding: var(--section-pad) 0;
  background: var(--navy-950);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.section-signals::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(239,68,68,.06), transparent 70%);
}

.section-signals .section-intro { color: rgba(255,255,255,.5); }

.signals-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 56px;
}

.signal-category {
  margin-bottom: 32px;
}
.signal-category-title {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--amber-400);
  margin-bottom: 12px;
}

.signal-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.signal-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(255,255,255,.04);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,.06);
  font-size: 0.85rem;
  color: rgba(255,255,255,.7);
  transition: all .2s;
}
.signal-item:hover {
  background: rgba(239,68,68,.08);
  border-color: rgba(239,68,68,.2);
}

.signal-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red-500);
  flex-shrink: 0;
  animation: pulse 2.5s infinite;
}

.algo-section {
  padding: 32px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
}
.algo-section h3 {
  color: var(--white);
  font-size: 1.35rem;
  margin-bottom: 8px;
}
.algo-section .algo-subtitle {
  font-size: 0.85rem;
  color: var(--amber-400);
  font-weight: 600;
  margin-bottom: 16px;
}
.algo-section > p {
  font-size: 0.9rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 24px;
  line-height: 1.7;
}

.algo-feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.algo-feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.algo-check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16,185,129,.15);
  border-radius: 50%;
  font-size: 0.7rem;
  color: var(--emerald-500);
  margin-top: 2px;
}
.algo-feature span {
  font-size: 0.875rem;
  color: rgba(255,255,255,.7);
  line-height: 1.5;
}

.algo-philosophy {
  margin-top: 20px;
  padding: 16px 20px;
  background: rgba(16,185,129,.08);
  border: 1px solid rgba(16,185,129,.15);
  border-radius: var(--radius-sm);
  font-size: 0.825rem;
  color: rgba(255,255,255,.65);
  line-height: 1.7;
  font-style: italic;
}

.escalation-box {
  margin-top: 24px;
  padding: 20px;
  background: rgba(245,158,11,.08);
  border: 1px solid rgba(245,158,11,.15);
  border-radius: var(--radius-md);
}
.escalation-box h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--amber-400);
  margin-bottom: 8px;
}
.escalation-box p {
  font-size: 0.825rem;
  color: rgba(255,255,255,.5);
  line-height: 1.7;
}

/* ========================================
   PROCESS / HOE HET WERKT
   ======================================== */
.section-process {
  padding: var(--section-pad) 0;
  background: var(--gray-50);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 56px;
}

.process-step {
  text-align: center;
  padding: 28px 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  position: relative;
  transition: all .3s;
}
.process-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--amber-300);
}

.process-step:not(:last-child)::after {
  content: 'â';
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-300);
  font-size: 1.2rem;
  z-index: 2;
}

.process-step-num {
  width: 36px;
  height: 36px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-900);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 700;
}

.process-step h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
}
.process-step p {
  font-size: 0.8rem;
  color: var(--gray-500);
}

/* ========================================
   COMPARISON / WAAROM WIJ
   ======================================== */
.section-comparison {
  padding: var(--section-pad) 0;
}

.comparison-table {
  margin-top: 56px;
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
}

.comparison-table thead th {
  padding: 20px 24px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  text-align: left;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
  color: var(--navy-900);
}
.comparison-table thead th:last-child {
  background: var(--navy-900);
  color: var(--white);
}

.comparison-table td {
  padding: 16px 24px;
  font-size: 0.875rem;
  border-bottom: 1px solid var(--gray-100);
  color: var(--gray-600);
}
.comparison-table tr:last-child td { border-bottom: none; }

.comparison-table td:first-child {
  font-weight: 600;
  color: var(--navy-800);
  background: var(--gray-50);
}
.comparison-table td:last-child {
  background: var(--navy-50);
  color: var(--navy-800);
  font-weight: 500;
}

.check-yes { color: var(--emerald-600); font-weight: 700; }
.check-partial { color: var(--amber-500); }
.check-no { color: var(--gray-300); }

/* ========================================
   IMPACT / RESULTS
   ======================================== */
.section-impact {
  padding: var(--section-pad) 0;
  background: var(--navy-900);
  color: var(--white);
}
.section-impact .section-intro { color: rgba(255,255,255,.5); }

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.impact-card {
  padding: 28px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md);
  text-align: center;
  transition: all .3s;
}
.impact-card:hover {
  background: rgba(255,255,255,.08);
  transform: translateY(-4px);
  box-shadow: 0 8px 40px rgba(0,0,0,.3);
}

.impact-value {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--amber-400);
  line-height: 1;
  margin-bottom: 8px;
}

.impact-card h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--white);
  margin-bottom: 6px;
}
.impact-card p {
  font-size: 0.8rem;
  color: rgba(255,255,255,.4);
}

/* ========================================
   EMOTIONAL / MAATSCHAPPELIJK
   ======================================== */
.section-why-it-matters {
  padding: 80px 0;
  background: var(--white);
  text-align: center;
  border-top: 1px solid var(--gray-200);
}

.why-inner {
  max-width: 720px;
  margin: 0 auto;
}

.why-inner blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-style: italic;
  color: var(--navy-900);
  line-height: 1.45;
  margin-bottom: 20px;
}

.why-inner p {
  font-size: 1rem;
  color: var(--gray-500);
  line-height: 1.8;
  max-width: 580px;
  margin: 0 auto;
}

/* ========================================
   CTA SECTION
   ======================================== */
.section-cta {
  padding: var(--section-pad) 0;
  text-align: center;
}

.cta-inner {
  max-width: 700px;
  margin: 0 auto;
}

.cta-inner h2 {
  margin-bottom: 16px;
}
.cta-inner .section-intro {
  margin: 0 auto 40px;
  text-align: center;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.cta-trust {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-200);
}
.cta-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--gray-400);
}
.cta-trust-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  padding: 48px 0 32px;
  background: var(--navy-950);
  color: rgba(255,255,255,.4);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--white);
}

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}
.footer-links a {
  font-size: 0.8rem;
  transition: color .2s;
}
.footer-links a:hover { color: var(--white); }

.footer-copy {
  font-size: 0.75rem;
  text-align: center;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.06);
}

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  :root { --section-pad: 80px; }

  .pillars-grid,
  .features-grid,
  .impact-grid { grid-template-columns: repeat(2, 1fr); }

  .process-steps { grid-template-columns: repeat(3, 1fr); }
  .process-step:not(:last-child)::after { display: none; }

  .stakeholder-grid { grid-template-columns: repeat(2, 1fr); }

  .scenarios-grid { grid-template-columns: repeat(2, 1fr); }

  .hero-stats { gap: 32px; }
}

@media (max-width: 768px) {
  :root { --section-pad: 64px; }

  .nav-links { display: none; }
  .nav-mobile-toggle { display: block; }

  .hero-content { padding: 120px 0 64px; }
  .hero-stats { flex-direction: column; gap: 16px; }

  .problem-grid,
  .recovery-layout,
  .recovery-contrast,
  .elearning-layout,
  .signals-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .problem-quote { position: static; }

  .pillars-grid,
  .stakeholder-grid,
  .scenarios-grid,
  .impact-grid { grid-template-columns: 1fr; }

  .features-grid { grid-template-columns: repeat(2, 1fr); }

  .process-steps { grid-template-columns: 1fr; }

  .module-list { grid-template-columns: 1fr; }

  .comparison-table { font-size: 0.8rem; }
  .comparison-table thead th,
  .comparison-table td { padding: 12px 14px; }

  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .cta-trust { flex-direction: column; align-items: center; gap: 12px; }
}

@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .cta-buttons { flex-direction: column; align-items: center; }
}
