/* ═══════════════════════════════════════════════════════════
   KOMPAS-AI — Design tokens
   Navy + teal, warm off-white, editorial type
═══════════════════════════════════════════════════════════ */

:root {
  /* Navy scale */
  --navy-950: #05111F;
  --navy-900: #0A1D33;
  --navy-800: #0E2544;
  --navy-700: #173255;
  --navy-600: #24426A;
  --navy-500: #3A5679;

  /* Teal accent */
  --teal-500: #3FB8B5;
  --teal-600: #2E9C99;
  --teal-400: #5FCECB;
  --teal-100: #D5EEED;

  /* Warm neutrals */
  --paper: #F6F3EC;
  --paper-2: #EDE8DC;
  --paper-3: #E3DCCC;
  --ink-900: #1A1E26;
  --ink-700: #3C424D;
  --ink-500: #6B7281;
  --ink-400: #8A92A1;
  --ink-300: #B5BBC7;
  --line: #D9D3C2;
  --line-dark: rgba(255,255,255,0.08);

  /* Semantic */
  --bg: var(--paper);
  --fg: var(--ink-900);
  --muted: var(--ink-500);
  --accent: var(--teal-500);

  /* Type */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Manrope', 'Inter', sans-serif;
  --font-serif: 'Newsreader', Georgia, 'Times New Roman', serif;
  --font-mono: 'JetBrains Mono', ui-monospace, Menlo, monospace;

  /* Rhythm */
  --radius: 4px;
  --radius-lg: 10px;
  --container: 1240px;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--fg);
  background: var(--bg);
  font-feature-settings: "ss01", "cv11";
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }

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

/* ─── Utility: Label ─── */
.label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-500);
}
.label::before {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}
.label.on-dark { color: var(--teal-400); }

/* ─── Headings ─── */
h1, h2, h3, h4 { font-family: var(--font-display); letter-spacing: -0.02em; font-weight: 700; margin: 0; color: var(--navy-900); }
h1 { font-size: clamp(2.6rem, 5.2vw, 4.6rem); line-height: 1.02; letter-spacing: -0.035em; }
h2 { font-size: clamp(2rem, 3.6vw, 3rem); line-height: 1.05; letter-spacing: -0.03em; }
h3 { font-size: 1.25rem; line-height: 1.3; }
.serif-em { font-family: var(--font-serif); font-style: italic; font-weight: 400; letter-spacing: -0.02em; }

/* ═══════════════════════════════════════════════════════════
   NAV
═══════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: all 0.3s ease;
}
.nav.scrolled {
  background: rgba(246, 243, 236, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
}
.nav.on-dark:not(.scrolled) { color: white; }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { height: 40px; width: auto; }
.nav-logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.02em;
}
.nav-links {
  display: flex;
  gap: 36px;
  font-size: 14px;
  font-weight: 500;
}
.nav-links a { opacity: 0.85; transition: opacity 0.2s; }
.nav-links a:hover { opacity: 1; }
.nav.on-dark:not(.scrolled) .nav-links a { color: rgba(255,255,255,0.85); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 999px;
  border: 1px solid currentColor;
  transition: all 0.2s;
}
.nav-cta:hover { background: var(--navy-900); color: var(--paper); border-color: var(--navy-900); }
.nav.on-dark:not(.scrolled) .nav-cta { border-color: rgba(255,255,255,0.4); color: white; }
.nav.on-dark:not(.scrolled) .nav-cta:hover { background: white; color: var(--navy-900); border-color: white; }
.nav-hamburger { display: none; flex-direction: column; gap: 4px; padding: 8px; }
.nav-hamburger span { display: block; width: 22px; height: 1.5px; background: currentColor; transition: all 0.2s; }
.nav-mobile { display: none; }

/* ═══════════════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 999px;
  transition: all 0.2s ease;
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--teal-500);
  color: var(--navy-950);
  border-color: var(--teal-500);
}
.btn-primary:hover { background: var(--teal-400); border-color: var(--teal-400); transform: translateY(-1px); }
.btn-secondary {
  background: var(--navy-900);
  color: white;
  border-color: var(--navy-900);
}
.btn-secondary:hover { background: var(--navy-800); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--navy-900);
  border-color: rgba(26,30,38,0.18);
}
.btn-ghost:hover { border-color: var(--navy-900); }
.btn-ghost.on-dark { color: white; border-color: rgba(255,255,255,0.25); }
.btn-ghost.on-dark:hover { border-color: white; background: rgba(255,255,255,0.05); }
.btn .arrow { transition: transform 0.2s; }
.btn:hover .arrow { transform: translateX(3px); }

/* ═══════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  background: var(--navy-900);
  color: white;
  padding: 180px 0 120px;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

/* Compass rose corner mark — subtle */
.hero-compass-mark {
  position: absolute;
  top: 90px;
  right: -120px;
  width: 720px;
  height: 720px;
  opacity: 0.05;
  pointer-events: none;
}

/* Grid of bearing lines */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 70% 60% at 30% 50%, black 40%, transparent 100%);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 8px 16px 8px 10px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
  margin-bottom: 36px;
}
.hero-eyebrow .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--teal-500);
  box-shadow: 0 0 0 4px rgba(63,184,181,0.15);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(63,184,181,0.15); }
  50% { box-shadow: 0 0 0 7px rgba(63,184,181,0.05); }
}
.hero-eyebrow .label {
  color: rgba(255,255,255,0.75);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
}
.hero-eyebrow .label::before { display: none; }

.hero h1 {
  color: white;
  font-size: clamp(2.8rem, 5.6vw, 5.2rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.98;
  max-width: 14ch;
  text-wrap: balance;
}
.hero h1 .serif-em {
  color: var(--teal-400);
  font-weight: 400;
}

.hero-lead {
  margin-top: 28px;
  font-size: clamp(1.05rem, 1.3vw, 1.18rem);
  line-height: 1.55;
  color: rgba(255,255,255,0.72);
  max-width: 52ch;
  text-wrap: pretty;
}

.hero-outcome-list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero-outcome-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: rgba(255,255,255,0.82);
}
.hero-outcome-list svg {
  flex-shrink: 0;
  color: var(--teal-400);
}

.hero-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 44px;
  flex-wrap: wrap;
}
.hero-note {
  margin-top: 20px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-note::before {
  content: "";
  display: inline-block;
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--teal-400);
}

/* Hero visual — card stack */
.hero-visual {
  position: relative;
  width: min(440px, 100%);
  aspect-ratio: 4/5;
  margin-left: auto;
}
.hero-card {
  position: absolute;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(20px);
  border-radius: 14px;
  padding: 22px;
}
.hero-card-main {
  inset: 40px 0 40px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(63,184,181,0.08), rgba(255,255,255,0.02)),
    rgba(10, 29, 51, 0.6);
}
.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.hero-card-header-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.hero-card-header-badge {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--teal-400);
  padding: 3px 8px;
  border: 1px solid rgba(63,184,181,0.3);
  border-radius: 4px;
  background: rgba(63,184,181,0.08);
}
.hero-card-rows {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.hero-card-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  font-size: 13px;
}
.hero-card-row-num {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--teal-400);
  min-width: 16px;
}
.hero-card-row-title {
  flex: 1;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}
.hero-card-row-meta {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255,255,255,0.5);
}
.hero-card-row.done {
  background: rgba(63,184,181,0.06);
  border-color: rgba(63,184,181,0.2);
}
.hero-card-row.done .hero-card-row-title { color: white; }
.hero-card-row-check {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--teal-500);
  color: var(--navy-950);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 900;
}
.hero-card-row-pending {
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 1px dashed rgba(255,255,255,0.3);
}
.hero-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-card-progress {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.hero-card-progress-value {
  display: block;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: white;
  letter-spacing: -0.02em;
  margin-top: 4px;
}
.hero-card-progress-value span { color: var(--teal-400); }

/* Floating side labels */
.hero-card-side {
  top: 0;
  right: -30px;
  padding: 14px 18px;
  background: var(--paper);
  color: var(--navy-900);
  border: none;
  width: 200px;
}
.hero-card-side-2 {
  bottom: 0;
  left: -30px;
  padding: 14px 18px;
  background: var(--navy-950);
  color: white;
  border: 1px solid rgba(255,255,255,0.1);
  width: 180px;
}
.hero-card-side-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin-bottom: 4px;
}
.hero-card-side-2 .hero-card-side-label { color: rgba(255,255,255,0.5); }
.hero-card-side-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
}
.hero-card-side-sub {
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
}
.hero-card-side-2 .hero-card-side-sub { color: rgba(255,255,255,0.55); }

/* Coordinate ticker at very bottom of hero */
.hero-ticker {
  position: absolute;
  bottom: 32px;
  left: 32px;
  right: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.1em;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-ticker-item { display: flex; gap: 10px; }
.hero-ticker-item span:first-child { color: rgba(255,255,255,0.55); }

/* ═══════════════════════════════════════════════════════════
   PAIN POINTS → SOLUTIONS
═══════════════════════════════════════════════════════════ */
.pain-points {
  padding: 120px 0;
  background: var(--paper);
  position: relative;
}
.section-header {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 64px;
}
.section-header .label { margin-bottom: 18px; }
.section-header h2 { text-wrap: balance; }
.section-header-text {
  color: var(--ink-700);
  font-size: 1.08rem;
  line-height: 1.55;
  max-width: 52ch;
  text-wrap: pretty;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 2px;
}
.pain-item {
  background: var(--paper);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pain-quote-mark {
  font-family: var(--font-serif);
  font-size: 64px;
  line-height: 0.6;
  color: var(--teal-500);
  font-style: italic;
  height: 28px;
}
.pain-item h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 1.25;
  color: var(--navy-900);
  letter-spacing: -0.02em;
}
.pain-item p {
  color: var(--ink-700);
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
}
.pain-solve {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px dashed var(--line);
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy-700);
}
.pain-solve::before {
  content: "→";
  font-family: var(--font-sans);
  color: var(--teal-600);
  font-weight: 700;
}
.pain-solve a {
  color: var(--navy-900);
  font-weight: 600;
  border-bottom: 1px solid var(--teal-500);
  padding-bottom: 1px;
  transition: color 0.2s;
}
.pain-solve a:hover { color: var(--teal-600); }

/* ═══════════════════════════════════════════════════════════
   VOOR WIE
═══════════════════════════════════════════════════════════ */
.voor-wie {
  padding: 120px 0;
  background: var(--navy-900);
  color: white;
  position: relative;
  overflow: hidden;
}
.voor-wie .label { color: rgba(255,255,255,0.65); }
.voor-wie h2 { color: white; }
.voor-wie .section-header-text { color: rgba(255,255,255,0.7); }

.voor-wie-body {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 72px;
  align-items: start;
  padding-top: 56px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.voor-wie-anchor {
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: sticky;
  top: 100px;
}

.voor-wie-range {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.voor-wie-range-number {
  font-family: var(--font-display);
  font-size: clamp(3.6rem, 6vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1;
  color: white;
}

.range-sep {
  color: var(--teal-400);
  margin: 0 2px;
}

.voor-wie-range-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

.voor-wie-sectors {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sector-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
}

.sector-tag::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--teal-400);
  opacity: 0.8;
  flex-shrink: 0;
  transition: opacity 0.2s;
}

.sector-tag:hover {
  color: var(--teal-400);
}

.sector-tag:hover::before {
  opacity: 1;
}

.voor-wie-prose {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-top: 6px;
}

.voor-wie-prose p {
  margin: 0;
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.75;
  color: rgba(255,255,255,0.72);
  max-width: 60ch;
}

/* ═══════════════════════════════════════════════════════════
   DIENSTEN
═══════════════════════════════════════════════════════════ */
.diensten {
  padding: 120px 0;
  background: var(--paper);
}
.diensten-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
}
.dienst {
  display: grid;
  grid-template-columns: 80px 1.5fr 1.8fr auto;
  gap: 40px;
  padding: 48px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
  transition: background 0.2s;
  position: relative;
}
.dienst:hover { background: rgba(255,255,255,0.5); }
.dienst-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-500);
  letter-spacing: 0.1em;
  padding-top: 6px;
}
.dienst-title-block h3 {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--navy-900);
}
.dienst-title-tagline {
  margin-top: 10px;
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--ink-700);
  font-size: 15px;
}
.dienst-body p {
  color: var(--ink-700);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}
.dienst-body p + p {
  margin-top: 12px;
}
.dienst-deliverable {
  margin-top: 20px;
  padding: 14px 16px;
  background: rgba(14, 37, 68, 0.04);
  border-left: 2px solid var(--teal-500);
  border-radius: 0 6px 6px 0;
}
.dienst-deliverable-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy-700);
  margin-bottom: 4px;
}
.dienst-deliverable-text {
  font-size: 14px;
  color: var(--navy-900);
  font-weight: 500;
  line-height: 1.4;
}
.dienst-meta {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 140px;
  text-align: right;
}
.dienst-meta-item {
  font-size: 13px;
}
.dienst-meta-key {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin-bottom: 2px;
}
.dienst-meta-value {
  color: var(--navy-900);
  font-weight: 600;
}

.diensten-cta {
  margin-top: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  padding: 28px 32px;
  background: var(--navy-900);
  color: white;
  border-radius: 8px;
}
.diensten-cta-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.diensten-cta-text span { color: var(--teal-400); }

/* ═══════════════════════════════════════════════════════════
   AANPAK
═══════════════════════════════════════════════════════════ */
.aanpak {
  padding: 120px 0;
  background: var(--paper-2);
  position: relative;
}
.aanpak-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 40px;
}
/* Horizon line */
.aanpak-steps::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 24px;
  right: 24px;
  height: 1px;
  background: repeating-linear-gradient(to right, var(--ink-300) 0 4px, transparent 4px 8px);
}
.aanpak-step {
  padding: 0 20px 0 0;
  position: relative;
}
.step-marker {
  position: relative;
  z-index: 1;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--paper-2);
  border: 1.5px solid var(--navy-900);
  color: var(--navy-900);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 24px;
}
.aanpak-step:last-child .step-marker {
  background: var(--teal-500);
  border-color: var(--teal-500);
}
.aanpak-step h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy-900);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.aanpak-step-duration {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin-bottom: 14px;
}
.aanpak-step p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-700);
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════
   LEAD MAGNET
═══════════════════════════════════════════════════════════ */
.leadmag {
  padding: 120px 0;
  background: var(--paper);
}
.leadmag-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.leadmag-visual {
  position: relative;
  aspect-ratio: 4/5;
  max-width: 420px;
}
.leadmag-doc {
  position: absolute;
  inset: 0;
  background: white;
  border-radius: 8px;
  box-shadow: 0 30px 60px -20px rgba(14, 37, 68, 0.2), 0 0 0 1px var(--line);
  padding: 40px 36px;
  transform: rotate(-2deg);
  font-family: var(--font-sans);
  overflow: hidden;
}
.leadmag-doc::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: var(--navy-900);
}
.leadmag-doc-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal-600);
  margin-bottom: 12px;
}
.leadmag-doc h4 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--navy-900);
  letter-spacing: -0.025em;
  margin-bottom: 20px;
  max-width: 14ch;
}
.leadmag-doc-list { display: flex; flex-direction: column; gap: 8px; }
.leadmag-doc-item {
  display: grid;
  grid-template-columns: 22px 1fr auto;
  gap: 8px;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  font-size: 11.5px;
  color: var(--ink-700);
}
.leadmag-doc-item-box {
  width: 14px; height: 14px;
  border: 1.5px solid var(--ink-500);
  border-radius: 3px;
}
.leadmag-doc-item.done .leadmag-doc-item-box {
  background: var(--teal-500);
  border-color: var(--teal-500);
  position: relative;
}
.leadmag-doc-item.done .leadmag-doc-item-box::after {
  content: "";
  position: absolute;
  top: 2px; left: 4px;
  width: 4px; height: 7px;
  border: solid var(--navy-950);
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
}
.leadmag-doc-item-meta {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--ink-400);
  letter-spacing: 0.1em;
}

.leadmag-doc-back {
  position: absolute;
  inset: 20px -20px -20px 20px;
  background: var(--paper-3);
  border-radius: 8px;
  transform: rotate(4deg);
  z-index: -1;
}

.leadmag-content h2 { margin-bottom: 16px; }
.leadmag-content > p {
  color: var(--ink-700);
  font-size: 1.08rem;
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 48ch;
}
.leadmag-form {
  display: flex;
  gap: 8px;
  max-width: 460px;
}
.leadmag-form input {
  flex: 1;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font: inherit;
  background: white;
  font-size: 16px;
  color: var(--fg);
  outline: none;
  transition: border 0.2s;
  min-height: 48px;
}
.leadmag-form input:focus { border-color: var(--navy-900); }
.leadmag-form button { flex-shrink: 0; }
.leadmag-fineprint {
  margin-top: 14px;
  font-size: 12.5px;
  color: var(--muted);
}
.leadmag-success {
  display: none;
  margin-top: 20px;
  padding: 16px 20px;
  background: rgba(63,184,181,0.08);
  border: 1px solid rgba(63,184,181,0.3);
  border-radius: 8px;
  color: var(--navy-900);
  font-size: 14.5px;
}
.leadmag-success.show { display: block; }

/* ═══════════════════════════════════════════════════════════
   OVER LEX
═══════════════════════════════════════════════════════════ */
.over-lex {
  padding: 120px 0;
  background: var(--paper-2);
}
.over-lex-inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.lex-visual {
  position: sticky;
  top: 120px;
}
.lex-photo-frame {
  aspect-ratio: 4/5;
  background: var(--paper-3);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lex-photo-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background:
    repeating-linear-gradient(
      45deg,
      var(--paper-3) 0 12px,
      var(--paper-2) 12px 24px
    );
  color: var(--ink-500);
}
.lex-photo-placeholder-text {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
}
.lex-caption {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-500);
}

.lex-content h2 { margin-bottom: 8px; }
.lex-title {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--ink-500);
  font-size: 18px;
  margin-bottom: 32px;
}
.lex-content > p {
  color: var(--ink-700);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 58ch;
  text-wrap: pretty;
}
.lex-pull {
  margin: 36px 0;
  padding: 24px 28px;
  border-left: 3px solid var(--teal-500);
  font-family: var(--font-serif);
  font-size: 1.4rem;
  line-height: 1.3;
  color: var(--navy-900);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.015em;
  max-width: 28ch;
  text-wrap: balance;
}

.lex-facts {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 4px;
  margin-bottom: 36px;
}
.lex-fact {
  background: var(--paper-2);
  padding: 20px 24px;
}
.lex-fact-key {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin-bottom: 6px;
}
.lex-fact-value {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--navy-900);
  letter-spacing: -0.01em;
}

/* ═══════════════════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════════════════ */
.faq {
  padding: 120px 0;
  background: var(--paper);
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}
.faq-intro h2 { margin-bottom: 16px; }
.faq-intro p {
  color: var(--ink-700);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 24px;
}
.faq-intro-help {
  padding: 16px 20px;
  background: var(--paper-2);
  border-radius: 8px;
  font-size: 14px;
  color: var(--ink-700);
}
.faq-intro-help a {
  font-weight: 600;
  color: var(--navy-900);
  border-bottom: 1px solid var(--teal-500);
}
.faq-list {
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-question {
  width: 100%;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy-900);
  letter-spacing: -0.01em;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--teal-600); }
.faq-question-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-500);
  transition: all 0.3s;
  position: relative;
}
.faq-question-icon::before,
.faq-question-icon::after {
  content: "";
  position: absolute;
  background: currentColor;
  transition: transform 0.3s;
}
.faq-question-icon::before { width: 10px; height: 1.5px; }
.faq-question-icon::after { width: 1.5px; height: 10px; }
.faq-item.open .faq-question-icon {
  background: var(--navy-900);
  border-color: var(--navy-900);
  color: white;
}
.faq-item.open .faq-question-icon::after { transform: scaleY(0); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 400px; padding-bottom: 24px; }
.faq-answer p {
  color: var(--ink-700);
  font-size: 15.5px;
  line-height: 1.65;
  margin: 0;
  max-width: 62ch;
}

/* ═══════════════════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════════════════ */
.contact {
  padding: 120px 0 80px;
  background: var(--navy-900);
  color: white;
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: "";
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(63,184,181,0.08), transparent 70%);
  pointer-events: none;
}
.contact-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact-intro .label { color: rgba(255,255,255,0.65); }
.contact-intro h2 {
  color: white;
  margin-top: 18px;
  margin-bottom: 20px;
  text-wrap: balance;
}
.contact-intro > p {
  color: rgba(255,255,255,0.72);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 48ch;
}
.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.contact-channel {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: all 0.2s;
}
.contact-channel:hover { padding-left: 8px; color: var(--teal-400); }
.contact-channel-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  width: 64px;
  flex-shrink: 0;
}
.contact-channel-value {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 15px;
  flex: 1;
}
.contact-channel-arrow { opacity: 0.4; transition: all 0.2s; }
.contact-channel:hover .contact-channel-arrow { opacity: 1; transform: translateX(4px); }

.contact-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  overflow: hidden;
}
.contact-tabs {
  display: flex;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.contact-tab {
  flex: 1;
  padding: 16px 20px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.contact-tab:last-child { border-right: none; }
.contact-tab.active {
  background: rgba(63,184,181,0.08);
  color: white;
  box-shadow: inset 0 -2px 0 var(--teal-500);
}
.contact-tab-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.25);
}
.contact-tab.active .contact-tab-dot { background: var(--teal-500); box-shadow: 0 0 0 3px rgba(63,184,181,0.2); }

.contact-panel { display: none; padding: 32px; }
.contact-panel.active { display: block; }

/* Form */
.contact-form-header {
  margin-bottom: 24px;
}
.contact-form-header h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: white;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.contact-form-header p {
  color: rgba(255,255,255,0.55);
  font-size: 13.5px;
  margin: 0;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.form-group input,
.form-group textarea {
  padding: 12px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  color: white;
  font: inherit;
  font-size: 14px;
  outline: none;
  transition: all 0.2s;
  resize: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--teal-500);
  background: rgba(63,184,181,0.04);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.35); }
.form-group textarea { min-height: 100px; }
.contact-form button[type="submit"] {
  align-self: flex-start;
  margin-top: 6px;
}
.form-success {
  display: none;
  padding: 16px;
  background: rgba(63,184,181,0.08);
  border: 1px solid rgba(63,184,181,0.3);
  border-radius: 6px;
  color: var(--teal-400);
  font-size: 14px;
}
.form-success.show { display: block; }

/* Booking preview (calendar panel) */
.booking-preview {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.booking-preview-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: white;
  margin: 0;
}
.booking-preview-lede {
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(255,255,255,0.72);
  margin: 0;
  max-width: 44ch;
}
.booking-meta {
  list-style: none;
  padding: 0;
  margin: 4px 0 4px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.booking-meta-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.booking-meta-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(63,184,181,0.1);
  color: var(--teal-400);
}
.booking-meta-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  width: 72px;
  flex-shrink: 0;
}
.booking-meta-value {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14.5px;
  color: rgba(255,255,255,0.9);
  flex: 1;
}
.booking-cta {
  align-self: flex-start;
  margin-top: 8px;
}

/* Booking modal */
html.modal-open { overflow: hidden; }

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.booking-modal.is-open { display: flex; }

.booking-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5,17,31,0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: bookingFade 200ms ease-out;
}
.booking-modal-backdrop::after {
  content: "";
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(63,184,181,0.12), transparent 70%);
  pointer-events: none;
}

.booking-modal-dialog {
  position: relative;
  width: 100%;
  max-width: 720px;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  background: rgba(14,37,68,0.96);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
  padding: 20px;
  animation: bookingSlide 220ms cubic-bezier(0.2,0.8,0.3,1);
}

.booking-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 4px 4px 16px;
}
.booking-modal-title {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin: 0;
}
.booking-modal-close {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.7);
  transition: all 0.18s;
  flex-shrink: 0;
}
.booking-modal-close:hover {
  background: rgba(63,184,181,0.12);
  color: var(--teal-400);
}
.booking-modal-close:focus-visible {
  outline: 2px solid var(--teal-500);
  outline-offset: 2px;
}

.booking-modal-frame {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  flex: 1;
  min-height: 0;
}
#booking-iframe {
  display: block;
  width: 100%;
  height: 800px;
  border: 0;
}

@keyframes bookingFade {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes bookingSlide {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .booking-modal-backdrop,
  .booking-modal-dialog { animation: none; }
}

@media (max-width: 768px) {
  .booking-modal { padding: 12px; }
  .booking-modal-dialog { padding: 14px; max-height: 96vh; }
  .booking-modal-header { padding: 2px 2px 12px; }
  #booking-iframe { height: calc(96vh - 80px); }
  .booking-meta-label { width: 60px; }
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
footer {
  background: var(--navy-950);
  color: rgba(255,255,255,0.6);
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand img { height: 44px; margin-bottom: 20px; }
.footer-tagline {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  line-height: 1.55;
  max-width: 32ch;
}
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--teal-400); }
.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--teal-400); }

/* ═══════════════════════════════════════════════════════════
   REVEAL ANIMATION
═══════════════════════════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.fade-up { opacity: 0; transform: translateY(16px); animation: fadeUp 0.8s ease forwards; }
.fade-up.delay-1 { animation-delay: 0.05s; }
.fade-up.delay-2 { animation-delay: 0.15s; }
.fade-up.delay-3 { animation-delay: 0.3s; }
.fade-up.delay-4 { animation-delay: 0.45s; }
.fade-up.delay-5 { animation-delay: 0.6s; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 960px) {
  .container { padding: 0 20px; }

  /* ── Nav ── */
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--paper);
    padding: 8px 20px 28px;
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  }
  .nav-mobile.open { display: flex; }
  .nav-mobile a {
    font-size: 17px;
    font-weight: 600;
    color: var(--navy-900);
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    min-height: 48px;
    display: flex;
    align-items: center;
  }
  .nav-mobile a.btn {
    border-bottom: none;
    margin-top: 16px;
    width: 100%;
    justify-content: center;
    min-height: 52px;
  }

  /* ── Section padding ── */
  .pain-points, .voor-wie, .diensten, .aanpak, .leadmag, .over-lex, .faq { padding: 80px 0; }
  .contact { padding: 80px 0 60px; }

  /* ── Section header ── */
  .section-header { grid-template-columns: 1fr; gap: 20px; margin-bottom: 48px; }

  /* ── Hero ── */
  .hero { padding: 120px 0 72px; min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; gap: 56px; }
  .hero-visual { margin: 0 auto; max-width: 340px; }
  .hero-ticker { position: static; padding: 0; border: none; margin-top: 40px; flex-wrap: wrap; gap: 14px; }
  .hero-compass-mark { display: none; }

  /* ── Pain ── */
  .pain-grid { grid-template-columns: 1fr; }

  /* ── Voor wie ── */
  .voor-wie-body { grid-template-columns: 1fr; gap: 40px; padding-top: 40px; }
  .voor-wie-anchor { position: static; flex-direction: row; flex-wrap: wrap; align-items: flex-end; gap: 24px; }
  .voor-wie-sectors { flex-direction: row; flex-wrap: wrap; gap: 12px; }
  .voor-wie-range-number { font-size: clamp(2.8rem, 10vw, 4rem); }

  /* ── Diensten ── */
  .dienst { grid-template-columns: 1fr; gap: 20px; padding: 36px 0; }
  .dienst-meta { text-align: left; flex-direction: row; flex-wrap: wrap; gap: 20px; }
  .dienst-num { padding-top: 0; }

  /* ── Aanpak ── */
  .aanpak-steps { grid-template-columns: 1fr 1fr; gap: 36px 24px; }
  .aanpak-steps::before { display: none; }

  /* ── Lead magnet ── */
  .leadmag-inner { grid-template-columns: 1fr; gap: 48px; }
  .leadmag-visual { max-width: 360px; margin: 0 auto; }

  /* ── Over Lex ── */
  .over-lex-inner { grid-template-columns: 1fr; gap: 48px; }
  .lex-visual { position: static; }
  .lex-photo-frame { max-width: 320px; aspect-ratio: 3/4; }

  /* ── FAQ ── */
  .faq-grid { grid-template-columns: 1fr; gap: 48px; }
  .faq-question { padding: 20px 0; min-height: 48px; }

  /* ── Contact ── */
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  /* ── Footer ── */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  /* ── Section padding ── */
  .pain-points, .voor-wie, .diensten, .aanpak, .leadmag, .over-lex, .faq { padding: 64px 0; }
  .contact { padding: 64px 0 48px; }

  /* ── Hero ── */
  .hero { padding: 100px 0 64px; }
  .hero-card-side, .hero-card-side-2 { display: none; }
  .hero-card-main { inset: 0; }
  .hero-actions { flex-direction: column; gap: 10px; }
  .hero-actions .btn { width: 100%; justify-content: center; min-height: 52px; }
  .hero-float { display: none; }

  /* ── Voor wie ── */
  .voor-wie-anchor { flex-direction: column; align-items: flex-start; gap: 20px; }

  /* ── Diensten ── */
  .diensten-cta { flex-direction: column; align-items: stretch; padding: 24px 20px; gap: 16px; }
  .diensten-cta .btn { width: 100%; justify-content: center; }

  /* ── Aanpak ── */
  .aanpak-steps { grid-template-columns: 1fr; gap: 28px; }

  /* ── Lead magnet ── */
  .leadmag-visual { display: none; }
  .leadmag-form { flex-direction: column; gap: 10px; }
  .leadmag-form input, .leadmag-form button { width: 100%; }

  /* ── Over Lex ── */
  .lex-facts { grid-template-columns: 1fr; }
  .lex-pull { font-size: 1.2rem; padding: 20px; }

  /* ── FAQ ── */
  .faq-question { font-size: 0.98rem; }

  /* ── Contact ── */
  .contact-panel { padding: 20px 16px; }
  .contact-form button[type="submit"] { width: 100%; justify-content: center; }
  .form-group input, .form-group textarea { padding: 14px; font-size: 16px; }

  /* ── Form ── */
  .form-row { grid-template-columns: 1fr; }

  /* ── Footer ── */
  .footer-grid { grid-template-columns: 1fr; }
}


/* ═══════════════════════════════════════════════════════════
   HERO COMPASS VISUAL (floating labels + bearing readout)
═══════════════════════════════════════════════════════════ */
.hero-compass-visual {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-float {
  position: absolute;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 10px 14px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.hero-float-key {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 3px;
}
.hero-float-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: white;
  letter-spacing: -0.01em;
}
.hero-float-tl { top: 6%; left: 0; }
.hero-float-tr { top: 6%; right: 0; }
.hero-float-bl { bottom: 10%; left: 0; }
.hero-float-br { bottom: 10%; right: 0; }
.hero-float-muted { opacity: 0.45; }

.hero-bearing-readout {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  padding: 8px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
}
.hero-bearing-key {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.hero-bearing-value {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--teal-400);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.hero-bearing-sub {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
}
