﻿/* ── DESIGN SYSTEM TOKENS ── */
:root {
  /* Primary: Deep Navy */
  --navy-deep: #0F1D4A;
  --navy-mid: #162058;
  --navy-light: #1A2A6C;
  --navy-surface: #1E3A5F;
  --navy-fade: #1A3350;

  /* Secondary: Refined Teal (CTA, links, data, icons) */
  --teal: #0D9488;
  --teal-light: #14B8A6;
  --teal-muted: #0F766E;

  /* Accent: Muted Gold (premium moments only) */
  --gold: #C9A84C;
  --gold-light: #D4B968;

  /* Functional (signal colors, NOT brand) */
  --success: #15803D;
  --success-light: #22C55E;
  --warning: #B45309;
  --warning-light: #F59E0B;
  --danger: #DC2626;
  --danger-light: #EF4444;

  /* Text Scale */
  --text-dark: #0F172A;
  --text-body: #334155;
  --text-muted: #64748B;
  --text-subtle: #94A3B8;

  /* Background Scale */
  --bg-white: #ffffff;
  --bg-light: #f1f5f9;
  --bg-body: #F8FAFC;
  --bg-dark: #0F1D4A;
  --bg-dark-2: #162058;
  --white: #ffffff;

  /* Radius Scale */
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --radius: 20px;
  --radius-pill: 100px;

  /* Shadow Scale */
  --shadow-xs: 0 1px 4px rgba(0,0,0,0.05);
  --shadow-sm: 0 4px 16px rgba(0,0,0,0.07);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
  --shadow-xl: 0 40px 80px rgba(0,0,0,0.22);
}

/* ── RESET ── */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg-body);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 60px;
  background: rgba(15, 29, 74, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: padding 0.3s;
}
nav.scrolled { padding: 12px 60px; }
.nav-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo img {
  display: block;
  width: auto;
  height: 28px;
  object-fit: contain;
}
.nav-links { display: flex; gap: 36px; }
.nav-links a {
  color: rgba(255,255,255,0.75); text-decoration: none;
  font-size: 14px; font-weight: 500; letter-spacing: 0.3px; transition: color 0.2s;
}
.nav-links a:hover { color: white; }
.nav-btn {
  background: #0D9488;
  color: white;
  padding: 10px 24px;
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.2px;
  transition: all 0.25s;
  box-shadow: 0 4px 14px rgba(13,148,136,0.3);
}
.nav-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13,148,136,0.45);
  background: #0B8578;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-btn-login {
  background: transparent;
  color: rgba(255,255,255,0.80);
  padding: 9px 20px;
  border-radius: 100px;
  border: 1.5px solid rgba(255,255,255,0.25);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.2px;
  transition: all 0.25s;
}
.nav-btn-login:hover {
  color: white;
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.07);
}

/* ── HERO ── */
.hero {
  background: linear-gradient(155deg, #0B1535 0%, #0F1D4A 30%, #162058 55%, #1A2A6C 75%, #1E3A5F 100%);
  display: flex; align-items: center;
  min-height: 100vh;
  padding: 100px 40px 160px;
  position: relative;
}
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background:
    /* Teal lichtbron — rechts bij slideshow, nu duidelijk zichtbaar */
    radial-gradient(ellipse 65% 70% at 72% 40%, rgba(13,148,136,0.35) 0%, rgba(13,148,136,0.12) 45%, transparent 75%),
    /* Gold warmte — links-onder bij tekst, warm en voelbaar */
    radial-gradient(ellipse 55% 45% at 18% 70%, rgba(201,168,76,0.18) 0%, rgba(201,168,76,0.05) 50%, transparent 75%),
    /* Diepte-vignette — hoeken donkerder voor focus */
    radial-gradient(ellipse 130% 110% at 50% 50%, transparent 35%, rgba(8,12,32,0.35) 100%);
  pointer-events: none;
}
.hero-content {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 2.4fr;
  gap: 60px; align-items: center;
  max-width: 1440px; margin: 0 auto; width: 100%;
}
.hero-text {
  animation: fadeUp 0.8s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px; padding: 6px 16px;
  font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.9);
  letter-spacing: 0.8px; text-transform: uppercase; margin-bottom: 12px;
}
.hero-badge::before {
  content: ''; width: 6px; height: 6px;
  background: var(--teal); border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(13,148,136,0.3);
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 3px rgba(13,148,136,0.3); }
  50% { box-shadow: 0 0 0 6px rgba(13,148,136,0.1); }
}
.hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(30px, 3.5vw, 52px); font-weight: 800;
  line-height: 1.1; color: white; margin-bottom: 20px; letter-spacing: -1.5px;
  overflow-wrap: normal; word-break: normal;
}
.hero .hero-text h1 .nowrap-phrase {
  white-space: nowrap;
  display: inline-block;
  word-break: keep-all;
  overflow-wrap: normal;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, #0D9488, #14B8A6);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-sub {
  font-size: 14px; line-height: 1.6; color: rgba(255,255,255,0.72);
  margin-bottom: 20px; max-width: 460px;
}
.hero-actions { display: flex; gap: 14px; align-items: center; }
.btn-primary {
  background: #0D9488; color: white; border: none;
  padding: 12px 26px; border-radius: 100px;
  font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 600;
  cursor: pointer; transition: all 0.25s;
  box-shadow: 0 8px 28px rgba(13,148,136,0.35);
  text-decoration: none; display: inline-block;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(13,148,136,0.45); }
.btn-ghost {
  background: rgba(255,255,255,0.1); color: white;
  border: 1px solid rgba(255,255,255,0.25);
  padding: 11px 24px; border-radius: 100px;
  font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 500;
  cursor: pointer; transition: all 0.25s; backdrop-filter: blur(8px);
  text-decoration: none; display: inline-block;
}
.btn-ghost:hover { background: rgba(255,255,255,0.18); transform: translateY(-2px); }
.hero-proof {
  display: flex; gap: 12px; align-items: center;
  margin-top: 20px; font-size: 12.5px; color: rgba(255,255,255,0.5);
  letter-spacing: 0.3px;
}
.proof-sep { opacity: 0.3; }
.hero-mesh {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
.hero-noise {
  position: absolute; inset: 0; z-index: 2;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-streak {
  position: absolute;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.04), transparent);
  pointer-events: none;
  z-index: 1;
}
.hero-streak--1 { width: 600px; height: 1px; top: 30%; left: -100px; transform: rotate(-8deg); }
.hero-streak--2 { width: 400px; height: 1px; top: 55%; right: -50px; transform: rotate(5deg); }
.hero-streak--3 { width: 300px; height: 1px; top: 75%; left: 20%; transform: rotate(-3deg); }
.hero-curve {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  line-height: 0;
}
.hero-curve svg {
  display: block;
  width: 100%;
  height: 80px;
}

/* ── HERO SLIDESHOW ── */
.hero-visual {
  position: relative;
  animation: fadeUp 0.8s 0.2s ease both;
  z-index: 2;
}
.hero-slideshow {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.1);
  aspect-ratio: 4/3;
  background: #0a1628;
  transform: perspective(1200px) rotateY(-8deg) rotateX(-4deg);
  transform-origin: center center;
}
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}
.hero-slide.active { opacity: 1; z-index: 2; }
.hero-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.hero-slide::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(10,22,40,0.45) 0%, rgba(10,22,40,0.05) 40%, rgba(10,22,40,0.0) 60%, rgba(10,22,40,0.15) 100%);
  pointer-events: none;
  z-index: 1;
}
.slide-caption {
  position: absolute;
  top: 16px; left: 16px;
  display: flex; align-items: center; gap: 8px;
  z-index: 10;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(12px);
  border-radius: 100px;
  padding: 7px 16px 7px 10px;
  border: 1px solid rgba(255,255,255,0.12);
}
.slide-caption-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #0D9488;
  animation: pulse 2s ease infinite;
}
.slide-caption-text {
  font-size: 11px; font-weight: 600;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.8px; text-transform: uppercase;
}
.slide-step {
  position: absolute;
  bottom: 14px; right: 16px;
  z-index: 10;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(12px);
  border-radius: 10px;
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,0.12);
  font-family: 'Syne', sans-serif;
  font-size: 12px; font-weight: 700;
  color: white;
}
.slide-step span { color: rgba(255,255,255,0.4); }
.slide-progress {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: rgba(255,255,255,0.15);
  z-index: 10;
}
.slide-progress-bar {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, #0D9488, #14B8A6);
  transition: width 0.1s linear;
}
.slide-indicators {
  position: absolute;
  bottom: 14px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 8px;
  z-index: 10;
}
.slide-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: all 0.3s;
  border: none; padding: 0;
}
.slide-dot.active {
  background: white;
  width: 28px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(255,255,255,0.3);
}

/* ── FLOATING BADGES ── */
.float-badge {
  position: absolute;
  background: white;
  border-radius: 16px;
  padding: 12px 18px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  font-size: 12px; font-weight: 600; color: var(--text-dark);
  display: flex; align-items: center; gap: 8px;
  animation: float 4s ease-in-out infinite;
  z-index: 5;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.float-badge.badge-1 { top: -20px; right: -20px; animation-delay: 0s; }
.float-badge.badge-2 { bottom: 20px; left: -30px; animation-delay: 2s; }
.float-badge .badge-icon {
  width: 28px; height: 28px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center; font-size: 14px;
}

/* ── CARDS SECTION ── */
.cards-section {
  padding: 40px 40px 40px;
  max-width: 1440px; margin: 0 auto;
}
.cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.service-card {
  border-radius: var(--radius);
  padding: 24px 22px 20px;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative; overflow: hidden;
  min-height: 180px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.service-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.15) 0%, transparent 100%);
  opacity: 0; transition: opacity 0.3s;
}
.service-card:hover { transform: translateY(-8px) scale(1.02); }
.service-card:hover::before { opacity: 1; }
.card-1 { background: linear-gradient(140deg, #0F1D4A, #1A2A6C); }
.card-2 { background: linear-gradient(140deg, #0F1D4A, #0D9488); }
.card-3 { background: linear-gradient(140deg, #0D9488, #0F766E); }
.card-4 { background: linear-gradient(140deg, #162058, #1E3A5F); }
.card-icon {
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.2); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 16px; transition: transform 0.3s;
}
.service-card:hover .card-icon { transform: scale(1.1) rotate(5deg); }
.card-title { font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 700; color: white; margin-bottom: 10px; }
.card-desc { font-size: 13.5px; line-height: 1.6; color: rgba(255,255,255,0.82); flex: 1; margin-bottom: 22px; }
.card-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(13, 27, 57, 0.55); color: white; border: none;
  padding: 10px 20px; border-radius: 100px;
  font-family: 'DM Sans', sans-serif; font-size: 12.5px; font-weight: 600;
  cursor: pointer; transition: all 0.25s; backdrop-filter: blur(8px);
  text-decoration: none; align-self: flex-start;
}
.card-btn::after { content: '\2193'; transition: transform 0.2s; }
.service-card:hover .card-btn::after { transform: translateY(2px); }
.card-btn:hover { background: rgba(255,255,255,0.2); }

/* ── SECTION GENERIC ── */
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; margin-bottom: 20px;
  padding: 6px 14px; border-radius: 100px;
}
.section-label::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: currentColor; }
.section-h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(32px, 3.5vw, 52px); font-weight: 800;
  line-height: 1.1; letter-spacing: -1px; margin-bottom: 20px; color: var(--text-dark);
}
.section-sub { font-size: 17px; line-height: 1.75; color: var(--text-muted); max-width: 520px; margin-bottom: 50px; }

/* ── SECTION BLOCKS ── */
.sec-block {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: 72px 80px;
  overflow: hidden;
  position: relative;
}
.sec-block--shadow { box-shadow: 0 2px 4px rgba(0,0,0,0.04), 0 8px 40px rgba(0,0,0,0.07); }
.sec-block--alt { background: var(--bg-light); }
.sec-block--dark {
  background: linear-gradient(150deg, #0F1D4A 0%, #162058 40%, #1A2A6C 70%, #0F1D4A 100%);
}
.sec-block--gap { margin-top: 16px; }
.sec-block--alt-teal  { background: linear-gradient(160deg, #ecfeff 0%, #f0f9ff 55%, #f1f5f9 100%); }
.sec-block--alt-pink  { background: linear-gradient(160deg, #f0f4ff 0%, #eef2ff 55%, #f1f5f9 100%); }
.sec-block--alt-amber { background: linear-gradient(160deg, #faf8f5 0%, #f8f6f2 55%, #f1f5f9 100%); }

/* ── SECTION LABEL MODIFIERS ── */
.section-label--teal  { color: var(--teal);      background: rgba(13,148,136,0.10); }
.section-label--pink  { color: #DC2626;       background: rgba(220,38,38,0.08); }
.section-label--amber { color: #B45309;      background: rgba(180,83,9,0.08); }
.section-label--blue  { color: #0F1D4A;   background: rgba(15,29,74,0.08); }

/* ── STEPS INTRO (reusable centered heading block) ── */
.steps-intro { text-align: center; margin-bottom: 64px; }
.steps-intro .section-label { display: inline-flex; }
.steps-intro .section-h2 { margin-top: 14px; margin-bottom: 0; font-size: clamp(26px,2.8vw,42px); }
.section-h2--sm { font-size: clamp(24px,2.5vw,38px) !important; }
.system-h2 { max-width: none; }
.nowrap-phrase { white-space: nowrap; }
.sys-accent { color: #0D9488; }

/* ══════════════════════════════════════════════════ */
/* FRUSTRATION SECTION (3-card variant)               */
/* ══════════════════════════════════════════════════ */
.frustration-section {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 40px 80px;
}
.frustration-section::before {
  content: '';
  position: absolute;
  top: 40px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 320px;
  background: radial-gradient(ellipse at center,
    rgba(15,29,74,0.02) 0%,
    rgba(13,148,136,0.01) 45%,
    transparent 75%);
  pointer-events: none;
  z-index: 0;
}
.frustration-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 44px;
  align-items: center;
}
.frustration-text .section-label {
  font-size: 10px;
  letter-spacing: 2.8px;
  padding: 5px 13px;
  margin-bottom: 18px;
}
.frustration-accent {
  background: linear-gradient(105deg, #0F1D4A 0%, #0D9488 50%, #0F766E 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.frustration-text {
  text-align: center;
  max-width: 780px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.frustration-text .section-h2 {
  line-height: 0.93;
  margin-bottom: 20px;
  font-size: clamp(28px, 3.4vw, 46px);
  letter-spacing: -1.5px;
}
.frustration-body {
  font-size: 15.5px;
  line-height: 1.7;
  color: #334155;
  margin-bottom: 0;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}
/* ── Frustration blocks (stacked full-width) ── */
.frustration-blocks {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.frust-block {
  display: block;
  padding: 44px 52px 44px 52px;
  background: #ffffff;
  border-radius: 22px;
  border: 1px solid rgba(15,23,42,0.05);
  border-left: 5px solid var(--frust-color, #475569);
  box-shadow:
    0 1px 2px rgba(0,0,0,0.02),
    0 8px 32px rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
  transition:
    transform 0.5s cubic-bezier(0.23,1,0.32,1),
    box-shadow 0.5s cubic-bezier(0.23,1,0.32,1),
    border-color 0.4s ease;
}

/* Accent colors */
.frust-block--red   { --frust-color: #dc2626; --frust-glow: rgba(220,38,38,0.04); }
.frust-block--amber { --frust-color: #d97706; --frust-glow: rgba(217,119,6,0.04); }
.frust-block--slate { --frust-color: #475569; --frust-glow: rgba(71,85,105,0.04); }

/* Colored glow from left */
.frust-block::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 35%;
  height: 100%;
  background: linear-gradient(90deg, var(--frust-glow, transparent), transparent);
  pointer-events: none;
  transition: width 0.5s ease;
}
.frust-block:hover::before {
  width: 55%;
}

.frust-block:hover {
  transform: translateY(-4px);
  box-shadow:
    0 2px 8px rgba(0,0,0,0.03),
    0 20px 52px rgba(0,0,0,0.08);
  border-left-width: 6px;
}

/* Big colored number — decorative, absolute */
.frust-block-num {
  position: absolute;
  top: 28px;
  right: 40px;
  font-family: 'Syne', sans-serif;
  font-size: 100px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -6px;
  color: var(--frust-color, #475569);
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.4s ease;
  user-select: none;
}
.frust-block:hover .frust-block-num {
  opacity: 0.14;
}

/* Text — full width, on top of number */
.frust-block-body {
  position: relative;
  z-index: 1;
  max-width: 780px;
}
.frust-block-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--frust-color, #94a3b8);
  margin-bottom: 10px;
  opacity: 0.6;
}
.frust-block-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 16px;
  letter-spacing: -0.8px;
  line-height: 1.2;
}
.frust-block-desc {
  font-size: 17.5px;
  line-height: 1.8;
  color: #475569;
  max-width: 680px;
}

/* ══════════════════════════════════════════════════ */
/* TRADITION SECTION (01/02/03 editorial split)       */
/* ══════════════════════════════════════════════════ */
.tradition-section {
  padding: 0 0 40px;
}
.tradition-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}
.tradition-problems {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.trad-problem {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(15,23,42,0.07);
}
.trad-problem:first-child { padding-top: 0; }
.trad-problem:last-child { border-bottom: none; padding-bottom: 0; }
.trad-num {
  font-family: 'Syne', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: rgba(239,68,68,0.12);
  line-height: 1;
  flex-shrink: 0;
  min-width: 52px;
}
.trad-label {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 6px;
}
.trad-title {
  font-family: 'Syne', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}
.trad-desc {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text-muted);
}

/* ══════════════════════════════════════════════════ */
/* PIVOT SECTION                                      */
/* ══════════════════════════════════════════════════ */
.pivot-section {
  padding: 80px 0 24px;
}
.pivot-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}
.pivot-heading {
  font-family: 'Syne', sans-serif;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 800;
  line-height: 0.93;
  letter-spacing: -1.8px;
  color: var(--text-dark);
}

/* ══════════════════════════════════════════════════ */
/* SYSTEM FLOW (drie stappen als één geheel)          */
/* ══════════════════════════════════════════════════ */
.sys-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}
.sys-flow-step {
  text-align: center;
  padding: 0 32px;
  position: relative;
}
.sys-flow-icon {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.sys-flow-num {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.25);
  margin-bottom: 10px;
}
.sys-flow-title {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: white;
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}
.sys-flow-desc {
  font-size: 14.5px;
  line-height: 1.75;
  color: rgba(255,255,255,0.5);
  max-width: 320px;
  margin: 0 auto;
}
.sys-flow-connector {
  position: absolute;
  top: 32px;
  right: -12px;
  width: 24px;
  height: 2px;
  background: rgba(255,255,255,0.1);
  z-index: 1;
}

/* ══════════════════════════════════════════════════ */
/* PERSONA SECTION                                    */
/* ══════════════════════════════════════════════════ */
.personas-section {
  padding: 80px 0;
}
.persona-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.persona-card {
  background: var(--bg-white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 24px;
  padding: 40px 36px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
}
.persona-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.09);
}
.persona-avatar {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.persona-role {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}
.persona-text {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-muted);
}

/* Legacy bridge classes (unused, kept for reference) */
.bridge-heading {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -1.2px;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.bridge-subline {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 460px;
  margin: 0 auto;
}
.bridge-stats {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
}
.bridge-stat {
  padding: 0 36px;
}
.bridge-stat:first-child { padding-left: 0; }
.bridge-stat:last-child { padding-right: 0; }
.bridge-stat-divider {
  width: 1px;
  align-self: stretch;
  background: rgba(15,23,42,0.07);
}
.bridge-stat-number {
  font-family: 'Syne', sans-serif;
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 14px;
}
.bridge-stat-title {
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.3;
  letter-spacing: -0.2px;
}
.bridge-stat-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.bridge-stat-source {
  font-size: 11.5px;
  color: rgba(15,23,42,0.25);
  letter-spacing: 0.02em;
}

/* ══════════════════════════════════════════════════ */
/* SYSTEM SECTION (Perceiver as integrated system)    */
/* ══════════════════════════════════════════════════ */
.system-section {
  padding: 0 0 0;
  padding-top: 0;
  background: linear-gradient(165deg, #0c1445 0%, #162058 35%, #1a2a6c 60%, #1e3a5f 85%, #1a3350 100%);
  position: relative;
  overflow: hidden;
}
.system-mesh {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 1;
}
.system-curve-top {
  position: relative;
  z-index: 3;
  line-height: 0;
  margin-bottom: 60px;
}
.system-curve-top svg {
  display: block;
  width: 100%;
  height: 80px;
}
.system-curve-bottom {
  position: relative;
  z-index: 3;
  line-height: 0;
  margin-top: 60px;
}
.system-curve-bottom svg {
  display: block;
  width: 100%;
  height: 80px;
}
.system-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(13,148,136,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.system-section::after {
  content: '';
  position: absolute;
  bottom: -150px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 65%);
  pointer-events: none;
}

/* ══════════════════════════════════════════════════ */
/* SYSTEM EDITORIAL STRIP                             */
/* ══════════════════════════════════════════════════ */
.sys-strip {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
}
.sys-strip-row {
  display: grid;
  grid-template-columns: 290px 1fr;
  align-items: baseline;
  gap: 56px;
  padding: 44px 0;
  border-top: 1px solid rgba(255,255,255,0.14);
  cursor: default;
  transition: border-color 0.3s ease;
}
.sys-strip-row:last-of-type {
  border-bottom: 1px solid rgba(255,255,255,0.14);
}
.sys-strip-row:hover .sys-strip-num {
  color: #0D9488;
}
.sys-strip-row:hover .sys-strip-desc {
  color: rgba(255,255,255,0.82);
}
.sys-strip-left {
  display: flex;
  align-items: baseline;
  gap: 14px;
  min-width: 0;
}
.sys-strip-num {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  transition: color 0.3s ease;
  flex-shrink: 0;
}
.sys-strip-word {
  font-family: 'Syne', sans-serif;
  font-size: clamp(26px, 2.8vw, 36px);
  font-weight: 800;
  color: white;
  letter-spacing: -0.8px;
  line-height: 1;
  margin: 0;
  white-space: nowrap;
}
.sys-strip-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255,255,255,0.52);
  margin: 0;
  transition: color 0.3s ease;
}
.sys-strip-payoff {
  text-align: center;
  margin-top: 32px;
  font-family: 'Syne', sans-serif;
  font-size: clamp(17px, 1.8vw, 22px);
  font-weight: 700;
  color: white;
  letter-spacing: -0.2px;
}
.sys-strip-accent {
  color: #0D9488;
}
.system-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.system-pillars {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.sys-pillar {
  text-align: center;
}
.sys-pillar-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}
.sys-pillar-label {
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: white;
  margin-bottom: 6px;
}
.sys-pillar-desc {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.5);
  max-width: 220px;
  margin: 0 auto;
}
.sys-pillar-connector {
  width: 2px;
  height: 20px;
  background: rgba(255,255,255,0.1);
  border-radius: 1px;
}

/* ── WERKWIJZE ── */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 60px; }
.step-card {
  background: var(--bg-white); border-radius: 20px; padding: 36px 28px;
  border: 1px solid rgba(0,0,0,0.07);
  border-top: 3px solid #0D9488;
  box-shadow: var(--shadow-sm);
  position: relative; transition: transform 0.3s, box-shadow 0.3s;
}
.step-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(13,148,136,0.14); }
.step-num { font-family: 'Syne', sans-serif; font-size: 64px; font-weight: 800; color: rgba(13,148,136,0.08); line-height: 1; margin-bottom: 8px; letter-spacing: -2px; }
.step-icon { width: 52px; height: 52px; background: linear-gradient(135deg, #0D9488, #14B8A6); border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 20px; }
.step-title { font-family: 'Syne', sans-serif; font-size: 19px; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; }
.step-desc { font-size: 14px; line-height: 1.7; color: var(--text-muted); }
.step-connector { position: absolute; top: 50px; right: -16px; width: 32px; height: 2px; background: linear-gradient(90deg, #0D9488, #14B8A6); z-index: 1; }
.steps-grid .step-card:last-child .step-connector { display: none; }

/* ── BESTRIJDING ── */
.bestrijding-content { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; position: relative; z-index: 1; }
.traps-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; position: relative; z-index: 1; }
.trap-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px; padding: 28px; backdrop-filter: blur(10px); transition: all 0.3s;
}
.trap-card:hover { background: rgba(255,255,255,0.1); border-color: rgba(13,148,136,0.3); transform: translateY(-4px); }
.trap-icon { font-size: 28px; margin-bottom: 14px; }
.trap-title { font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 700; color: white; margin-bottom: 8px; }
.trap-desc { font-size: 13.5px; line-height: 1.65; color: rgba(255,255,255,0.55); }
.trap-badge { display: inline-block; background: linear-gradient(135deg, #0D9488, #14B8A6); color: white; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; padding: 3px 10px; border-radius: 100px; margin-bottom: 12px; }

/* ── MONITOREN ── */
.monitor-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: center; margin-top: 20px; }
.monitor-features { display: flex; flex-direction: column; gap: 20px; }
.monitor-feature { display: flex; gap: 18px; align-items: flex-start; padding: 22px; border-radius: 16px; background: var(--bg-light); transition: all 0.3s; cursor: default; }
.monitor-feature:hover { background: linear-gradient(135deg, rgba(13,148,136,0.09), rgba(20,184,166,0.05)); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.mf-icon { width: 44px; height: 44px; flex-shrink: 0; background: linear-gradient(135deg, #0D9488, #14B8A6); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; }
.mf-title { font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700; color: var(--text-dark); margin-bottom: 5px; }
.mf-desc { font-size: 13px; line-height: 1.6; color: var(--text-muted); }
.monitor-visual { background: #0d1b3e; border-radius: 24px; padding: 24px; box-shadow: 0 30px 70px rgba(13,27,62,0.2); }
.cam-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 16px; }
.cam-feed { background: #162058; border-radius: 12px; aspect-ratio: 4/3; display: flex; flex-direction: column; justify-content: space-between; padding: 12px; position: relative; overflow: hidden; }
.cam-feed.active { border: 1.5px solid rgba(13,148,136,0.5); }
.cam-label { font-size: 9px; color: rgba(255,255,255,0.4); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }
.cam-status { display: flex; align-items: center; gap: 5px; font-size: 9px; color: #22C55E; font-weight: 600; }
.cam-status::before { content: ''; width: 5px; height: 5px; background: #22C55E; border-radius: 50%; animation: pulse 1.5s ease infinite; }
.cam-motion { position: absolute; background: rgba(13,148,136,0.2); border: 1px solid rgba(13,148,136,0.5); border-radius: 4px; padding: 2px 6px; font-size: 8px; color: #0D9488; font-weight: 700; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.monitor-bar { background: #162058; border-radius: 10px; padding: 14px; display: flex; gap: 8px; align-items: center; }
.mini-bar { height: 32px; flex: 1; border-radius: 5px; background: linear-gradient(180deg, #0D9488, rgba(13,148,136,0.2)); }

/* ── MONITOREN REDESIGN ── */
.mon-intro {
  display: grid; grid-template-columns: 1fr 1.3fr;
  gap: 70px; align-items: center;
}
.mon-headline-accent {
  background: linear-gradient(90deg, #0D9488, #14B8A6);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.mon-tagline {
  font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 600;
  color: var(--text-dark); line-height: 1.4; margin-bottom: 16px;
}
.mon-cam-ui {
  background: #0F1D4A; border-radius: 18px; overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.25), 0 0 0 1px rgba(255,255,255,0.06);
}
.mon-cam-header {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 16px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mon-cam-live {
  display: flex; align-items: center; gap: 6px;
  font-size: 9px; font-weight: 800; letter-spacing: 2px;
  color: #ef4444; text-transform: uppercase;
}
.mon-live-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #ef4444; box-shadow: 0 0 8px rgba(239,68,68,0.7);
  animation: pulse 1.5s ease infinite;
}
.mon-cam-name {
  flex: 1; text-align: center;
  font-size: 10px; letter-spacing: 0.8px;
  color: rgba(255,255,255,0.45); font-weight: 600;
}
.mon-cam-time {
  font-size: 10px; color: rgba(255,255,255,0.25);
}
.mon-cam-feed {
  position: relative; aspect-ratio: 16/10;
  background: #0F1D4A; overflow: hidden;
}
.mon-cam-overlay-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(13,148,136,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13,148,136,0.05) 1px, transparent 1px);
  background-size: 36px 36px;
}
.mon-heatmap-blob {
  position: absolute; pointer-events: none; border-radius: 50%;
}
.mon-detection-zone { position: absolute; top: 28%; left: 22%; }
.mon-bbox {
  width: 88px; height: 76px;
  border: 2px solid #ef4444; border-radius: 4px;
  box-shadow: 0 0 0 1px rgba(239,68,68,0.2), 0 0 20px rgba(239,68,68,0.25);
  animation: bboxPulse 2.5s ease-in-out infinite;
}
@keyframes bboxPulse {
  0%,100% { border-color: rgba(239,68,68,0.85); box-shadow: 0 0 16px rgba(239,68,68,0.2); }
  50%      { border-color: #ef4444; box-shadow: 0 0 28px rgba(239,68,68,0.45); }
}
.mon-bbox-label {
  display: flex; align-items: center; gap: 4px;
  background: rgba(239,68,68,0.95); color: white;
  font-size: 10px; font-weight: 700; padding: 3px 8px;
  letter-spacing: 0.3px; border-radius: 0 0 4px 4px; margin-top: -1px;
}
.mon-bbox-label span {
  background: rgba(255,255,255,0.22); padding: 1px 5px;
  border-radius: 3px; font-size: 9px;
}
.mon-cam-thumbs {
  position: absolute; top: 10px; right: 10px;
  display: flex; flex-direction: column; gap: 5px;
}
.mon-cam-thumb {
  background: rgba(6,13,31,0.82);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(8px); border-radius: 6px;
  padding: 5px 10px; display: flex; gap: 14px; align-items: center;
}
.mon-cam-thumb.alert { border-color: rgba(239,68,68,0.35); }
.mon-thumb-label { font-size: 9px; color: rgba(255,255,255,0.4); letter-spacing: 0.5px; font-weight: 600; }
.mon-thumb-status { font-size: 9px; color: #22c55e; font-weight: 700; letter-spacing: 0.5px; }
.mon-cam-footer {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 16px;
  background: rgba(255,255,255,0.02);
  border-top: 1px solid rgba(255,255,255,0.05);
}
.mon-cam-footer-label {
  font-size: 9px; color: rgba(255,255,255,0.3);
  text-transform: uppercase; letter-spacing: 1px; min-width: 55px;
}
.mon-cam-footer-track {
  flex: 1; height: 3px; background: rgba(255,255,255,0.07);
  border-radius: 2px; overflow: hidden;
}
.mon-cam-footer-fill {
  height: 100%; width: 72%;
  background: linear-gradient(90deg, #0D9488, #22C55E);
  border-radius: 2px;
  animation: actPulse 3s ease-in-out infinite;
}
@keyframes actPulse {
  0%,100% { width: 64%; }
  50% { width: 80%; }
}
.mon-cam-footer-status {
  font-size: 9px; color: #22c55e; font-weight: 700;
  letter-spacing: 0.5px; white-space: nowrap;
}
.mon-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; position: relative;
}
.mon-steps::before { display: none; }
.mon-step {
  background: white;
  border-radius: 20px;
  padding: 32px 24px;
  border: 1px solid rgba(0,0,0,0.07);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05), 0 0 0 0 transparent;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border-top: 3px solid var(--step-accent, #0D9488);
}
.mon-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}
.mon-step-icon {
  width: 60px; height: 60px; border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; margin: 0 auto 18px;
  box-shadow: 0 10px 28px rgba(15,163,177,0.2);
  position: relative; z-index: 1;
}
.mon-step-num {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 10px; font-weight: 800;
  color: var(--step-accent, #0D9488);
  background: color-mix(in srgb, var(--step-accent, #0D9488) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--step-accent, #0D9488) 25%, transparent);
  padding: 4px 12px; border-radius: 100px;
  letter-spacing: 1.5px; margin-bottom: 14px;
}
.mon-step-title {
  font-family: 'Syne', sans-serif;
  font-size: 15px; font-weight: 700;
  color: var(--text-dark); margin-bottom: 10px; line-height: 1.3;
}
.mon-step-desc { font-size: 13px; line-height: 1.7; color: var(--text-muted); }

/* ── BESTRIJDING REDESIGN ── */
.bes-intro {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 70px; align-items: center;
}
.bes-accent {
  background: linear-gradient(90deg, #0D9488, #14B8A6);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.bes-tagline {
  font-family: 'Syne', sans-serif; font-size: 19px; font-weight: 600;
  color: rgba(255,255,255,0.9); line-height: 1.4; margin-bottom: 16px;
}
.bes-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.bes-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px; padding: 6px 14px;
  font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.85);
}
.bes-ui {
  background: #0F1D4A; border-radius: 18px; overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.06);
}
.bes-ui-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.bes-ui-live {
  display: flex; align-items: center; gap: 7px;
  font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.75);
}
.bes-live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #DC2626; box-shadow: 0 0 8px rgba(220,38,38,0.7);
  animation: pulse 2s ease infinite;
}
.bes-ui-badge {
  font-size: 10px; font-weight: 700; letter-spacing: 0.5px;
  color: #DC2626; background: rgba(220,38,38,0.12);
  padding: 4px 10px; border-radius: 100px;
  border: 1px solid rgba(220,38,38,0.2);
}
.bes-events {
  padding: 12px 16px; display: flex; flex-direction: column; gap: 7px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.bes-event {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.03); border-radius: 10px;
  padding: 10px 12px; border: 1px solid rgba(255,255,255,0.06);
}
.bes-event.success { border-color: rgba(34,197,94,0.15); background: rgba(34,197,94,0.04); }
.bes-event-source { display: flex; align-items: center; gap: 8px; flex: 1; min-width: 0; }
.bes-event-dot {
  width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
}
.bes-event-dot.detect { background: #DC2626; box-shadow: 0 0 6px rgba(220,38,38,0.5); }
.bes-event-dot.caught { background: #22c55e; box-shadow: 0 0 6px rgba(34,197,94,0.5); }
.bes-event-label { font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.75); }
.bes-event-sub { font-size: 9px; color: rgba(255,255,255,0.3); margin-top: 2px; letter-spacing: 0.3px; }
.bes-event-arrow { font-size: 13px; color: rgba(255,255,255,0.18); padding: 0 2px; flex-shrink: 0; }
.bes-event-result { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.bes-event-action-dot { width: 7px; height: 7px; border-radius: 2px; flex-shrink: 0; }
.bes-event-action-dot.trap { background: #0D9488; }
.bes-event-action-dot.caught { background: #22c55e; }
.bes-event-action-label { font-size: 10px; font-weight: 700; color: #0D9488; white-space: nowrap; }
.bes-floorplan {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.bes-fp-label {
  font-size: 9px; color: rgba(255,255,255,0.3);
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 10px;
}
.bes-fp-rooms { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; }
.bes-room {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px; padding: 8px 6px; text-align: center;
}
.bes-room.trap-active { border-color: rgba(244,114,182,0.25); background: rgba(244,114,182,0.05); }
.bes-room.caught { border-color: rgba(34,197,94,0.25); background: rgba(34,197,94,0.05); }
.bes-room-name { font-size: 9px; color: rgba(255,255,255,0.4); font-weight: 600; letter-spacing: 0.5px; margin-bottom: 6px; }
.bes-trap-marker {
  width: 14px; height: 14px; border-radius: 50%;
  margin: 0 auto; background: rgba(255,255,255,0.08);
}
.bes-trap-marker.active { background: #0D9488; box-shadow: 0 0 8px rgba(13,148,136,0.5); }
.bes-trap-marker.caught { background: #22c55e; box-shadow: 0 0 8px rgba(34,197,94,0.5); }
.bes-ui-footer {
  display: grid; grid-template-columns: repeat(3, 1fr);
  padding: 12px 16px;
  background: rgba(255,255,255,0.02);
}
.bes-ui-stat { text-align: center; padding: 6px; }
.bes-ui-stat + .bes-ui-stat { border-left: 1px solid rgba(255,255,255,0.06); }
.bes-ui-stat-n {
  font-family: 'Syne', sans-serif;
  font-size: 18px; font-weight: 800; color: rgba(255,255,255,0.85);
}
.bes-ui-stat.green .bes-ui-stat-n { color: #22c55e; }
.bes-ui-stat-l { font-size: 9px; color: rgba(255,255,255,0.3); letter-spacing: 0.8px; text-transform: uppercase; margin-top: 2px; }
/* Per-section card accent colors */
#mon-steps .mon-step { --step-accent: #0D9488; }
#bes-steps .mon-step { --step-accent: #0D9488; }
#rap-steps .mon-step { --step-accent: #C9A84C; }

.bes-steps::before { display: none; }
.bes-comparison { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.bes-comp-col { border-radius: 20px; padding: 36px 32px; border: 1.5px solid transparent; transition: transform 0.25s; }
.bes-comp-col:hover { transform: translateY(-4px); }
.bes-comp-col.bad {
  background: #f8f9fa;
  border-color: #e5e7eb;
  border-top: 3px solid #9ca3af;
}
.bes-comp-col.good {
  background: linear-gradient(145deg, #f0fdfa 0%, #ecfdf5 50%, #f0f9ff 100%);
  border-color: rgba(13,148,136,0.3);
  border-top: 3px solid #0D9488;
  box-shadow: 0 8px 32px rgba(13,148,136,0.1);
}
.bes-comp-header {
  font-family: 'Syne', sans-serif;
  font-size: 15px; font-weight: 800; margin-bottom: 22px;
  display: flex; align-items: center; gap: 8px;
}
.bes-comp-col.bad .bes-comp-header { color: #6b7280; }
.bes-comp-col.good .bes-comp-header { color: #0D9488; }
.bes-comp-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.bes-comp-col li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; line-height: 1.5;
}
.bes-comp-col.bad li { color: #9ca3af; }
.bes-comp-col.good li { color: var(--text-dark); }
.bes-comp-col li::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  flex-shrink: 0; margin-top: 7px;
}
.bes-comp-col.bad li::before { background: #d1d5db; }
.bes-comp-col.good li::before { background: #0D9488; box-shadow: 0 0 6px rgba(13,148,136,0.5); }

/* ── RAPPORTAGE ── */
.reports-layout { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: start; position: relative; z-index: 1; }
.report-mockup { background: white; border-radius: 24px; padding: 28px; box-shadow: 0 20px 60px rgba(0,0,0,0.12); }
.report-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.report-title-mock { font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 700; color: #1c1917; }
.report-date-mock { font-size: 11px; color: #9ca3af; }
.report-chart-area { background: var(--bg-light); border-radius: 14px; padding: 20px; margin-bottom: 16px; height: 120px; display: flex; align-items: flex-end; gap: 6px; }
.r-bar { flex: 1; border-radius: 5px 5px 0 0; background: linear-gradient(180deg, #C9A84C, rgba(201,168,76,0.2)); min-height: 20%; }
.report-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.r-metric { background: var(--bg-light); border-radius: 10px; padding: 14px; text-align: center; }
.r-metric-n { font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 800; color: #1c1917; }
.r-metric-l { font-size: 10px; color: #9ca3af; margin-top: 2px; }
.report-features { display: flex; flex-direction: column; gap: 18px; }
.rf-item { display: flex; gap: 14px; align-items: flex-start; padding: 18px; background: rgba(255,255,255,0.6); border-radius: 14px; transition: all 0.25s; }
.rf-item:hover { background: white; transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.rf-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; margin-top: 5px; }
.rf-title { font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 700; color: #1c1917; margin-bottom: 4px; }
.rf-desc { font-size: 12.5px; color: var(--text-muted); line-height: 1.6; }

/* ── RAPPORTAGE REDESIGN ── */
.rap-intro {
  display: grid; grid-template-columns: 1fr 1.3fr;
  gap: 70px; align-items: center;
}
.rap-accent {
  background: linear-gradient(90deg, #C9A84C, #D4B968);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.rap-tagline {
  font-family: 'Syne', sans-serif; font-size: 19px; font-weight: 600;
  color: var(--text-dark); line-height: 1.4; margin-bottom: 16px;
}
.rap-dashboard {
  background: white; border-radius: 18px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(201,168,76,0.1), 0 0 0 1px rgba(201,168,76,0.12);
}
.rap-dash-header {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px; background: #1c1917;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.rap-dash-title { font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.8); flex: 1; }
.rap-dash-period { font-size: 10px; color: rgba(255,255,255,0.3); }
.rap-dash-export {
  font-size: 9px; font-weight: 700; color: #C9A84C;
  background: rgba(201,168,76,0.12); border: 1px solid rgba(201,168,76,0.2);
  padding: 3px 8px; border-radius: 6px;
}
.rap-kpis { display: grid; grid-template-columns: repeat(3, 1fr); border-bottom: 1px solid #f3f4f6; }
.rap-kpi { padding: 14px 12px; text-align: center; }
.rap-kpi + .rap-kpi { border-left: 1px solid #f3f4f6; }
.rap-kpi-n { font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 800; color: var(--text-dark); }
.rap-kpi-l { font-size: 9px; color: #9ca3af; text-transform: uppercase; letter-spacing: 1px; margin-top: 2px; }
.rap-chart { padding: 14px 16px; border-bottom: 1px solid #f3f4f6; }
.rap-chart-label { font-size: 10px; font-weight: 700; color: #9ca3af; letter-spacing: 0.8px; text-transform: uppercase; margin-bottom: 12px; }
.rap-bars { display: flex; gap: 5px; height: 80px; }
.rap-bar-wrap { flex: 1; display: flex; flex-direction: column; justify-content: flex-end; }
.rap-bar { border-radius: 3px 3px 0 0; background: rgba(201,168,76,0.3); min-height: 4px; }
.rap-bar.peak { background: linear-gradient(180deg, #DC2626, rgba(220,38,38,0.3)); }
.rap-bar.highlight { background: linear-gradient(180deg, #C9A84C, rgba(201,168,76,0.3)); }
.rap-bar-day { font-size: 8px; color: #9ca3af; text-align: center; padding-top: 5px; font-weight: 600; }
.rap-zones { padding: 14px 16px; border-bottom: 1px solid #f3f4f6; }
.rap-zones-label { font-size: 10px; font-weight: 700; color: #9ca3af; letter-spacing: 0.8px; text-transform: uppercase; margin-bottom: 10px; }
.rap-zone-row { display: flex; align-items: center; gap: 8px; margin-bottom: 7px; }
.rap-zone-row:last-child { margin-bottom: 0; }
.rap-zone-name { font-size: 11px; font-weight: 600; color: var(--text-dark); min-width: 68px; }
.rap-zone-track { flex: 1; height: 6px; background: #f3f4f6; border-radius: 3px; overflow: hidden; }
.rap-zone-fill { height: 100%; border-radius: 3px; background: linear-gradient(90deg, #C9A84C, rgba(201,168,76,0.3)); }
.rap-zone-fill.high { background: linear-gradient(90deg, #DC2626, rgba(220,38,38,0.3)); }
.rap-zone-level { font-size: 9px; font-weight: 700; padding: 2px 7px; border-radius: 100px; min-width: 44px; text-align: center; }
.rap-zone-level.high { background: rgba(220,38,38,0.08); color: #DC2626; }
.rap-zone-level.mid { background: rgba(201,168,76,0.1); color: #C9A84C; }
.rap-zone-level.low { background: rgba(34,197,94,0.08); color: #22c55e; }
.rap-dash-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 16px; background: #f9fafb;
}
.rap-footer-status { font-size: 11px; color: #22c55e; font-weight: 700; }
.rap-footer-dl {
  font-size: 10px; font-weight: 700; color: #C9A84C;
  background: rgba(201,168,76,0.12); border: 1px solid rgba(201,168,76,0.2);
  padding: 4px 12px; border-radius: 100px;
}
.rap-steps::before {
  background: linear-gradient(90deg, rgba(201,168,76,0.2), rgba(220,38,38,0.2));
}
.rap-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.rap-feature-card {
  background: white;
  border-radius: 20px; padding: 32px 28px;
  border: 1px solid rgba(0,0,0,0.07);
  border-top: 3px solid #C9A84C;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}
.rap-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(201,168,76,0.12);
}
.rap-feature-icon {
  width: 52px; height: 52px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 18px;
}
.rap-feature-title { font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; }
.rap-feature-desc { font-size: 13.5px; line-height: 1.7; color: var(--text-muted); }

/* ── CTA / SAMENWERKEN ── */
/* ══════════════════════════════════════════════════ */
/* FAQ SECTION (sticky left + accordion right)          */
/* ══════════════════════════════════════════════════ */
.faq-section {
  padding: 100px 0 80px;
  background: var(--bg-body);
}
.faq-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: min-content 1fr;
  gap: 64px;
  align-items: stretch;
}

/* Left: sticky headline */
.faq-sticky-col {
  position: relative;
}
.faq-sticky {
  position: sticky;
  top: 120px;
}
.faq-h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}
.faq-h2-accent {
  background: linear-gradient(90deg, #0D9488, #14B8A6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.faq-sub {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 300px;
}

/* Right: accordion */
.faq-accordion-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--bg-white);
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 1px 3px rgba(0,0,0,0.03), 0 6px 24px rgba(0,0,0,0.04);
  overflow: hidden;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.faq-item:hover {
  box-shadow: 0 2px 6px rgba(0,0,0,0.04), 0 12px 36px rgba(0,0,0,0.07);
}
.faq-item.open {
  border-left: 3px solid var(--teal);
  box-shadow: 0 2px 6px rgba(0,0,0,0.04), 0 12px 36px rgba(0,0,0,0.07);
}

/* Question button */
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 28px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Syne', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.3px;
  line-height: 1.35;
  transition: color 0.2s;
}
.faq-question:hover {
  color: var(--teal);
}
.faq-chevron {
  flex-shrink: 0;
  color: var(--text-subtle);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s;
}
.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  color: var(--teal);
}

/* Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-answer p {
  padding: 0 28px 28px;
  font-size: 15.5px;
  line-height: 1.8;
  color: var(--text-body);
}

/* ══════════════════════════════════════════════════ */
/* CONTACT SECTION (strategic intake)                  */
/* ══════════════════════════════════════════════════ */
.contact-section {
  background: linear-gradient(155deg, #0B1535 0%, #0F1D4A 30%, #162058 55%, #1A2A6C 75%, #1E3A5F 100%);
  position: relative;
  overflow: hidden;
}
.contact-curve-top {
  position: relative;
  z-index: 3;
  line-height: 0;
  margin-top: -1px;
}
.contact-curve-top svg {
  display: block;
  width: 100%;
  height: 80px;
}
.contact-mesh {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
.contact-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 40px 80px;
}

/* Header */
.contact-header {
  text-align: center;
  margin-bottom: 56px;
}
.contact-h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: white;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}
.contact-accent {
  background: linear-gradient(90deg, #0D9488, #14B8A6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.contact-intro {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
  max-width: 620px;
  margin: 0 auto;
}

/* Process steps */
.contact-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-bottom: 64px;
}
.contact-step {
  flex: 1;
  max-width: 280px;
  text-align: center;
  padding: 28px 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  backdrop-filter: blur(8px);
}
.contact-step-num {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #0D9488;
  margin-bottom: 12px;
}
.contact-step-title {
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}
.contact-step-desc {
  font-size: 13.5px;
  line-height: 1.65;
  color: rgba(255,255,255,0.45);
}
.contact-step-connector {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, rgba(13,148,136,0.3), rgba(13,148,136,0.1));
  flex-shrink: 0;
  margin-top: 52px;
}

/* Centered form wrap */
.contact-form-wrap {
  max-width: 560px;
  margin: 0 auto;
}

/* Left copy column */
.contact-copy {
  padding-top: 16px;
}
.contact-copy-h3 {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.contact-copy-p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
  margin-bottom: 16px;
}
.contact-expect {
  margin-bottom: 36px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Objections */
.contact-objections {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.contact-objection {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact-objection-q {
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  font-style: italic;
}
.contact-objection-a {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

/* Alt contact routes */
.contact-alt {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-alt-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 4px;
}
.contact-alt-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.contact-alt-link:hover {
  color: #14B8A6;
}
.contact-alt-question {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  color: #0D9488;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  margin-top: 8px;
  transition: all 0.2s;
}
.contact-alt-question:hover {
  color: #14B8A6;
}
.contact-alt-question:hover svg {
  transform: translateX(3px);
}
.contact-alt-question svg {
  transition: transform 0.2s;
}

/* Form card */
.contact-form-card {
  background: white;
  border-radius: 24px;
  padding: 44px 40px 40px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.25), 0 0 0 1px rgba(255,255,255,0.05);
}
.contact-form-title {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 6px;
  letter-spacing: -0.5px;
}
.contact-form-sub {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.cta-form-hint {
  font-size: 11.5px;
  color: var(--text-subtle);
  margin-top: -2px;
}
.cta-form-required {
  color: #DC2626;
  font-weight: 700;
}
.contact-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: #0D9488;
  color: white;
  border: none;
  padding: 16px 28px;
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
  box-shadow: 0 8px 28px rgba(13,148,136,0.35);
  margin-top: 8px;
}
.contact-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(13,148,136,0.5);
  background: #0B8578;
}
.contact-submit-btn svg {
  transition: transform 0.25s;
}
.contact-submit-btn:hover svg {
  transform: translateX(4px);
}

/* Contact form success state */
.contact-form-card .form-success {
  text-align: center;
  padding: 24px 0;
}

/* Trust bar (bottom) */
.contact-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.contact-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
}
.contact-trust-sep {
  color: rgba(255,255,255,0.15);
  font-size: 16px;
  line-height: 1;
}

/* Legacy trust dot animation (reused) */
.cta-trust-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #0D9488;
  box-shadow: 0 0 8px rgba(13,148,136,0.8);
  animation: trustPulse 2s ease-in-out infinite;
}
@keyframes trustPulse {
  0%, 100% { box-shadow: 0 0 6px rgba(13,148,136,0.6); }
  50% { box-shadow: 0 0 14px rgba(13,148,136,1), 0 0 22px rgba(13,148,136,0.35); }
}

/* ── MODALS ── */
.cta-modal {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(15, 29, 74, 0.78);
  backdrop-filter: blur(12px);
  display: none; align-items: center; justify-content: center; padding: 20px;
}
.cta-modal.open { display: flex; }
.cta-modal-box {
  background: white; border-radius: 28px;
  padding: 48px 48px 44px; max-width: 540px; width: 100%;
  position: relative;
  box-shadow: 0 40px 100px rgba(0,0,0,0.25), 0 0 0 1px rgba(0,0,0,0.05);
  animation: modalSlideIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
@keyframes modalSlideIn {
  from { opacity: 0; transform: scale(0.9) translateY(24px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.cta-modal-close {
  position: absolute; top: 18px; right: 18px;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--bg-light); border: none; font-size: 15px;
  cursor: pointer; color: var(--text-muted);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s; font-weight: 600;
}
.cta-modal-close:hover { background: #e5e7eb; color: var(--text-dark); transform: scale(1.1); }
.cta-modal-icon { font-size: 40px; margin-bottom: 14px; }
.cta-modal-title {
  font-family: 'Syne', sans-serif; font-size: 26px; font-weight: 800;
  color: var(--text-dark); margin-bottom: 8px; letter-spacing: -0.5px;
}
.cta-modal-sub {
  font-size: 14px; line-height: 1.7; color: var(--text-muted);
  margin-bottom: 32px; max-width: 420px;
}
.cta-form { display: flex; flex-direction: column; gap: 16px; }
.cta-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cta-form-group { display: flex; flex-direction: column; gap: 7px; }
.cta-form-group label { font-size: 12.5px; font-weight: 600; color: var(--text-dark); }
.cta-form-group input,
.cta-form-group textarea,
.cta-form-group select {
  padding: 12px 16px; border: 1.5px solid #e5e7eb; border-radius: 12px;
  font-family: 'DM Sans', sans-serif; font-size: 14px; color: var(--text-dark);
  background: white; transition: border-color 0.2s, box-shadow 0.2s;
  outline: none; resize: vertical; appearance: none; -webkit-appearance: none;
}
.cta-form-group input:focus,
.cta-form-group textarea:focus,
.cta-form-group select:focus {
  border-color: #0D9488; box-shadow: 0 0 0 3px rgba(13,148,136,0.1);
}
.cta-form-group input::placeholder,
.cta-form-group textarea::placeholder { color: #9ca3af; }
.cta-form-submit {
  background: linear-gradient(135deg, #0F1D4A, #0D9488);
  color: white; border: none; padding: 14px 28px; border-radius: 100px;
  font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 600;
  cursor: pointer; transition: all 0.25s;
  box-shadow: 0 8px 28px rgba(13,148,136,0.25); margin-top: 4px;
}
.cta-form-submit:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(13,148,136,0.35); }

/* Contact form alt line */
.contact-form-alt {
  text-align: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #e5e7eb;
  font-size: 13.5px;
  color: var(--text-muted);
}
.contact-form-alt a {
  color: var(--teal);
  text-decoration: none;
  font-weight: 600;
}
.contact-form-alt a:hover {
  text-decoration: underline;
}

/* ── FOOTER ── */
footer {
  background: #0F1D4A;
  padding: 48px 60px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-brand strong {
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
}
.footer-brand span {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}
.footer-contact {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-contact-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0D9488;
  margin-right: 4px;
}
.footer-contact a {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: rgba(255,255,255,0.70);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-contact a svg {
  opacity: 0.5;
  flex-shrink: 0;
}
.footer-contact a:hover {
  color: #14B8A6;
}
.footer-contact a:hover svg {
  opacity: 1;
}
.footer-sep {
  color: rgba(255,255,255,0.2);
  font-size: 14px;
}
.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}

/* ── SCROLL ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-visual { max-width: 700px; margin: 0 auto; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr; }
  .step-connector { display: none; }
  .bestrijding-content { grid-template-columns: 1fr; }
  .monitor-layout { grid-template-columns: 1fr; }
  .mon-intro { grid-template-columns: 1fr; }
  .mon-steps { grid-template-columns: repeat(2, 1fr); }
  .mon-steps::before { display: none; }
  .bes-intro { grid-template-columns: 1fr; }
  .bes-comparison { grid-template-columns: 1fr; }
  .reports-layout { grid-template-columns: 1fr; }
  .rap-intro { grid-template-columns: 1fr; }
  .rap-features { grid-template-columns: repeat(2, 1fr); }
  .faq-inner { grid-template-columns: 1fr; gap: 40px; }
  .faq-sticky { position: static; }
  .faq-sub { max-width: none; }
  .faq-section { padding: 72px 0 60px; }
  .contact-steps { flex-wrap: wrap; gap: 16px; }
  .contact-step-connector { display: none; }
  .contact-step { max-width: none; }
  .contact-inner { padding: 24px 32px 64px; }
  .frustration-section { padding: 64px 32px 48px; }
  .frustration-inner { gap: 36px; }
  .frust-block { padding: 36px 32px; }
  .frust-block-num { font-size: 72px; right: 24px; top: 20px; }
  .frust-block-title { font-size: 22px; }
  .tradition-content { grid-template-columns: 1fr; gap: 40px; }
  .sys-flow { grid-template-columns: 1fr; gap: 48px; }
  .sys-flow-connector { display: none; }
  .sys-flow-step { padding: 0; }
  .sys-strip-row { grid-template-columns: 1fr; gap: 10px; padding: 32px 0; }
  .sys-strip-word { white-space: normal; }
  .sys-strip-payoff { margin-top: 44px; }
  .persona-grid { grid-template-columns: 1fr; }
  .system-content { grid-template-columns: 1fr; gap: 40px; }
  .system-pillars { flex-direction: row; gap: 12px; }
  .sys-pillar-connector { width: 24px; height: 2px; }
}
@media (max-width: 768px) {
  nav { padding: 14px 20px; }
  .hero { padding: 90px 20px 0; }
  .hero h1 { font-size: clamp(20px, 6.8vw, 30px); }
  .cards-section { padding: 30px 20px 60px; }
  .cards-grid { grid-template-columns: 1fr; }
  .traps-grid { grid-template-columns: 1fr; }
  .mon-steps { grid-template-columns: 1fr; }
  .rap-features { grid-template-columns: 1fr; }
  .faq-inner { padding: 0 20px; gap: 28px; }
  .faq-h2 { font-size: clamp(30px, 8vw, 40px); }
  .faq-question { padding: 20px 22px; font-size: 15.5px; }
  .faq-answer p { padding: 0 22px 22px; font-size: 14.5px; }
  .faq-section { padding: 56px 0 48px; }
  .contact-inner { padding: 16px 20px 48px; }
  .contact-h2 { font-size: clamp(26px, 7vw, 36px); }
  .contact-steps { flex-direction: column; align-items: stretch; }
  .contact-step { max-width: none; }
  .contact-form-card { padding: 32px 24px 28px; }
  .contact-copy { padding-top: 0; }
  .frustration-section { padding: 48px 20px 36px; }
  .frustration-inner { gap: 28px; }
  .frustration-cards { grid-template-columns: 1fr; gap: 12px; }
  .frust-block { padding: 28px 24px; }
  .frust-block-num { font-size: 56px; right: 16px; top: 16px; letter-spacing: -3px; }
  .frust-block-title { font-size: 20px; }
  .frust-block-desc { font-size: 15px; }
  .frustration-text .section-h2 { font-size: clamp(24px, 6.5vw, 32px); }
  .tradition-content { grid-template-columns: 1fr; gap: 32px; }
  .pivot-inner { padding: 0 20px; }
  .pivot-heading { font-size: clamp(28px, 7vw, 40px); }
  .pivot-section { padding: 56px 0 16px; }
  .persona-card { padding: 32px 24px; }
  .personas-section { padding: 56px 0; }
  .system-content { grid-template-columns: 1fr; gap: 32px; }
  .system-pillars { flex-direction: column; }
  .sys-pillar-connector { width: 2px; height: 16px; }
  .footer-inner { flex-direction: column; text-align: center; gap: 12px; }
  footer { padding: 36px 20px; }
  .cta-modal-box { padding: 36px 24px 32px; }
  .cta-form-row { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════ */
/* ── OVER ONS PAGE ──                                    */
/* ══════════════════════════════════════════════════════ */

/* Nav active state */
.nav-active {
  color: white !important;
  font-weight: 600 !important;
}

/* ── Shared tokens ── */
.ons-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 28px;
  display: block;
}
.ons-label-light { color: var(--teal-light); }

.ons-h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 32px;
}
.ons-h2-light { color: white; }

/* ── Hero ── */
.ons-hero {
  position: relative;
  background: var(--navy-deep);
  padding: 170px 60px 120px;
  overflow: hidden;
  min-height: 55vh;
  display: flex;
  align-items: center;
}
.ons-hero-mesh {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.5;
}
.ons-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
  width: 100%;
}
.ons-hero-h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 800;
  color: white;
  line-height: 1.0;
  letter-spacing: -2.5px;
  margin-bottom: 32px;
}
.ons-hero-sub {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255,255,255,0.60);
  max-width: 580px;
}

/* ── Aanleiding ── */
.ons-aanleiding {
  padding: 110px 60px;
  background: var(--bg-white);
}
.ons-aanleiding-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.ons-aanleiding-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.ons-aanleiding-left .ons-h2 {
  font-size: clamp(28px, 3.2vw, 44px);
  margin-bottom: 0;
  position: sticky;
  top: 120px;
}
.ons-aanleiding-right p {
  font-size: 16.5px;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: 24px;
}
.ons-aanleiding-right p:last-child { margin-bottom: 0; }
.ons-quote {
  border-left: 3px solid var(--teal);
  padding: 20px 0 20px 28px;
  margin: 36px 0 28px;
  font-family: 'Syne', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.55;
  font-style: normal;
}
.ons-quote-context {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 0 !important;
}

/* ── Overtuiging (dark) ── */
.ons-overtuiging {
  padding: 110px 60px;
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
}
.ons-overtuiging::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 70% at 90% 20%, rgba(13,148,136,0.14) 0%, transparent 65%);
  pointer-events: none;
}
.ons-overtuiging-inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
}
.ons-overtuiging-header {
  margin-bottom: 64px;
}
.ons-overtuiging-header .ons-h2 {
  margin-bottom: 0;
}
.ons-overtuiging-items {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.ons-ov-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 32px;
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  align-items: start;
}
.ons-ov-item:last-child {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.ons-ov-num {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--teal-light);
  letter-spacing: 1.5px;
  padding-top: 4px;
}
.ons-ov-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 800;
  color: white;
  margin-bottom: 14px;
  line-height: 1.15;
  letter-spacing: -0.5px;
}
.ons-ov-desc {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255,255,255,0.58);
  max-width: 620px;
}

/* ── Aanpak ── */
.ons-aanpak {
  padding: 110px 60px;
  background: var(--bg-body);
}
.ons-aanpak-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.ons-aanpak-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.ons-aanpak-left .ons-h2 {
  margin-bottom: 28px;
}
.ons-aanpak-left p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: 20px;
}
.ons-aanpak-left p:last-child { margin-bottom: 0; }
.ons-aanpak-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.ons-aanpak-pillar {
  display: flex;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(15,29,74,0.07);
  align-items: flex-start;
}
.ons-aanpak-pillar:first-child { border-top: 1px solid rgba(15,29,74,0.07); }
.ons-pillar-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(13,148,136,0.08);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.ons-pillar-title {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.ons-pillar-desc {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text-muted);
}

/* ── Team ── */
.ons-team {
  padding: 110px 60px;
  background: var(--bg-white);
}
.ons-team-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.ons-team-header { margin-bottom: 56px; }
.ons-team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.ons-team-card {
  display: flex;
  gap: 24px;
  padding: 36px 32px;
  background: var(--bg-body);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(15,29,74,0.07);
  align-items: flex-start;
  transition: box-shadow 0.25s;
}
.ons-team-card:hover {
  box-shadow: var(--shadow-md);
}
.ons-team-avatar-wrap { flex-shrink: 0; }
.ons-avatar-initials {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-light), var(--teal-muted));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: white;
  letter-spacing: 1px;
}
.ons-team-body { flex: 1; }
.ons-team-name {
  font-family: 'Syne', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.ons-team-role {
  font-size: 12px;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.ons-team-bio {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text-muted);
}

/* ── Ambitie pullquote (dark) ── */
.ons-ambitie {
  padding: 120px 60px;
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.ons-amb-mesh {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.35;
}
.ons-ambitie-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}
.ons-ambitie-quote {
  font-family: 'Syne', sans-serif;
  font-size: clamp(20px, 2.8vw, 34px);
  font-weight: 700;
  color: white;
  line-height: 1.4;
  letter-spacing: -0.5px;
  margin-bottom: 36px;
  font-style: normal;
}
.ons-ambitie-quote em {
  font-style: normal;
  background: linear-gradient(90deg, #0D9488, #14B8A6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ons-ambitie-toelichting {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
  max-width: 520px;
  margin: 0 auto;
}

/* ── CTA ── */
.ons-cta {
  padding: 110px 60px;
  background: var(--bg-body);
  text-align: center;
}
.ons-cta-inner {
  max-width: 620px;
  margin: 0 auto;
}
.ons-cta-h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.15;
  letter-spacing: -0.8px;
  margin-bottom: 18px;
}
.ons-cta-sub {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.65;
}
.ons-cta-btn {
  display: inline-block;
  background: var(--teal);
  color: white;
  padding: 16px 42px;
  border-radius: var(--radius-pill);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.2px;
  transition: all 0.25s;
  box-shadow: 0 4px 18px rgba(13,148,136,0.35);
}
.ons-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(13,148,136,0.45);
  background: var(--teal-muted);
}

/* ── Over ons responsive ── */
@media (max-width: 960px) {
  .ons-hero { padding: 140px 40px 90px; }
  .ons-aanleiding, .ons-overtuiging, .ons-aanpak, .ons-team, .ons-ambitie, .ons-cta { padding: 80px 40px; }
  .ons-aanleiding-grid { grid-template-columns: 1fr; gap: 48px; }
  .ons-aanleiding-left .ons-h2 { position: static; }
  .ons-aanpak-grid { grid-template-columns: 1fr; gap: 52px; }
  .ons-team-grid { grid-template-columns: 1fr; }
  .ons-ov-item { grid-template-columns: 52px 1fr; gap: 20px; }
}
@media (max-width: 600px) {
  .ons-hero { padding: 120px 24px 72px; }
  .ons-aanleiding, .ons-overtuiging, .ons-aanpak, .ons-team, .ons-ambitie, .ons-cta { padding: 64px 24px; }
  .ons-hero-h1 { letter-spacing: -1.5px; }
  .ons-ov-item { grid-template-columns: 1fr; gap: 8px; padding: 32px 0; }
  .ons-team-card { flex-direction: column; gap: 20px; }
}
