/* ============================================================
   SHARED — used on both index.html and service.html
   ============================================================ */


  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --navy:   #0C1A40;
    --blue:   #1A3878;
    --accent: #3280F5;
    --sky:    #F7F8FB;
    --white:  #FFFFFF;
    --muted:  #6B7A99;
    --border: rgba(26,56,120,0.12);
    --text:   #111827;
    --font-display: 'Plus Jakarta Sans', sans-serif;
    --font-body:    'DM Sans', sans-serif;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
  }

  html { scroll-behavior: smooth; }
  .hidden { display: none !important; }

  body {
    font-family: var(--font-body);
    background: var(--white);
    color: var(--text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }

  /* ── NAV ─────────────────────────────────────────────── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 48px;
    background: transparent;
    backdrop-filter: none;
    border-bottom: 1px solid transparent;
    transition: background 0.4s var(--ease), border-color 0.4s var(--ease), backdrop-filter 0.4s var(--ease), padding 0.4s var(--ease);
  }
  nav.scrolled {
    background: rgba(255,255,255,0.88);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
    padding: 14px 48px;
  }
  .nav-logo {
    display: flex; align-items: center;
    text-decoration: none;
  }
  .nav-logo img { height: 42px; width: auto; display: block; transition: opacity 0.15s; }
  .nav-cta {
    background: rgba(255,255,255,0.12); color: var(--white);
    font-family: var(--font-body); font-size: 14px; font-weight: 500;
    padding: 10px 22px; border-radius: 100px;
    border: 1px solid rgba(255,255,255,0.4);
    cursor: pointer; text-decoration: none;
    transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
  }
  .nav-cta:hover { background: rgba(255,255,255,0.22); transform: translateY(-1px); }
  nav.scrolled .nav-cta {
    background: var(--navy); border-color: transparent; color: var(--white);
  }
  nav.scrolled .nav-cta:hover { background: var(--blue); }
  .nav-links {
    display: flex; align-items: center; gap: 28px;
    position: absolute; left: 50%; transform: translateX(-50%);
  }
  .nav-link {
    font-family: var(--font-body); font-size: 14px; font-weight: 400;
    color: rgba(255,255,255,0.8); text-decoration: none;
    transition: color 0.2s;
  }
  .nav-link:hover { color: var(--white); }
  nav.scrolled .nav-link { color: var(--muted); }
  nav.scrolled .nav-link:hover { color: var(--navy); }
  .nav-link--active { color: var(--white); font-weight: 500; }
  nav.scrolled .nav-link--active { color: var(--navy); font-weight: 600; }

  /* ── SECTIONS ────────────────────────────────────────── */
  section { width: 100%; }
  .container { max-width: 1100px; margin: 0 auto; padding: 0 48px; }

  /* ── WAT JE KRIJGT ───────────────────────────────────── */
  #watjekrijgt {
    padding: 100px 0 90px;
    background: var(--navy);
  }
  #watjekrijgt .section-tag { color: #88BBFF; }
  #watjekrijgt h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700; letter-spacing: -0.02em;
    color: var(--white); line-height: 1.1; margin-bottom: 64px;
  }
  .deliverables-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 2px; margin-bottom: 64px;
  }
  .deliverable-card {
    background: rgba(255,255,255,0.04);
    padding: 32px; border: 1px solid rgba(255,255,255,0.06);
    border-radius: 0; transition: background 0.3s;
  }
  .deliverable-card:first-child { border-radius: 16px 0 0 0; }
  .deliverable-card:nth-child(3) { border-radius: 0 16px 0 0; }
  .deliverable-card:nth-child(4) { border-radius: 0 0 0 16px; }
  .deliverable-card:last-child { border-radius: 0 0 16px 0; }
  .deliverable-card:hover { background: rgba(255,255,255,0.07); }
  .deliverable-icon {
    font-size: 22px; margin-bottom: 16px;
  }
  .deliverable-title {
    font-family: var(--font-display);
    font-size: 17px; font-weight: 700;
    color: var(--white); margin-bottom: 10px;
  }
  .deliverable-body {
    font-size: 14px; color: rgba(255,255,255,0.5);
    line-height: 1.7; font-weight: 300;
  }
  .time-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .time-box {
    border-radius: 16px; padding: 32px;
  }
  .time-box.klant { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); }
  .time-box.wij   { background: var(--accent); }
  .time-box-title {
    font-size: 12px; font-weight: 600; letter-spacing: 0.1em;
    text-transform: uppercase; color: rgba(255,255,255,0.5);
    margin-bottom: 20px;
  }
  .time-box.wij .time-box-title { color: rgba(255,255,255,0.7); }
  .time-items { display: flex; flex-direction: column; gap: 10px; }
  .time-item {
    font-size: 14px; color: rgba(255,255,255,0.7);
    display: flex; gap: 10px; align-items: start; font-weight: 300;
  }
  .time-item span { color: rgba(255,255,255,0.35); flex-shrink: 0; font-size: 13px; margin-top: 1px; }
  .time-box.wij .time-item { color: rgba(255,255,255,0.9); }
  .time-box.wij .time-item span { color: rgba(255,255,255,0.5); }

  /* ── FOOTER ──────────────────────────────────────────── */
  footer {
    padding: 24px 48px;
    background: rgba(10,22,40,0.95);
    display: flex; justify-content: space-between; align-items: center;
    border-top: 1px solid rgba(255,255,255,0.06);
  }
  footer p { font-size: 13px; color: rgba(255,255,255,0.2); }
  .footer-logo { height: 24px; width: auto; display: block; opacity: 0.6; }
  .footer-linkedin {
    color: rgba(255,255,255,0.25); text-decoration: none; display: flex;
    transition: color 0.2s;
  }
  .footer-linkedin:hover { color: rgba(255,255,255,0.6); }

  /* ── ROI CALCULATOR ─────────────────────────────────── */
  #roi {
    padding: 100px 0 80px;
    background: var(--navy);
  }
  #roi .section-tag { color: #88BBFF; }
  #roi h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700; letter-spacing: -0.02em;
    color: var(--white); line-height: 1.1; margin-bottom: 12px;
  }
  .roi-sub {
    font-size: 17px; color: rgba(255,255,255,0.55);
    font-weight: 300; margin-bottom: 56px;
    max-width: 560px; line-height: 1.7;
  }
  .roi-layout {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 48px; align-items: start;
  }
  .roi-sliders { display: flex; flex-direction: column; gap: 36px; }
  .roi-slider-group { display: flex; flex-direction: column; gap: 10px; }
  .roi-label {
    display: flex; justify-content: space-between; align-items: baseline; gap: 12px;
  }
  .roi-label-text {
    font-size: 14px; color: rgba(255,255,255,0.6); font-weight: 300; line-height: 1.4;
  }
  .roi-label-val {
    font-family: var(--font-display); font-size: 18px;
    font-weight: 700; color: var(--white); white-space: nowrap; flex-shrink: 0;
  }
  input[type="range"] {
    -webkit-appearance: none; appearance: none;
    width: 100%; height: 4px;
    background: rgba(255,255,255,0.12); border-radius: 100px;
    outline: none; cursor: pointer;
  }
  input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none; appearance: none;
    width: 20px; height: 20px; border-radius: 50%;
    background: var(--accent); cursor: pointer;
    box-shadow: 0 2px 8px rgba(50,128,245,0.5);
    transition: transform 0.15s;
  }
  input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.2); }
  input[type="range"]::-moz-range-thumb {
    width: 20px; height: 20px; border-radius: 50%;
    background: var(--accent); cursor: pointer; border: none;
    box-shadow: 0 2px 8px rgba(50,128,245,0.5);
  }
  .roi-range-labels {
    display: flex; justify-content: space-between;
    font-size: 11px; color: rgba(255,255,255,0.3);
  }
  .roi-results {
    background: rgba(255,255,255,0.05); border-radius: 24px;
    padding: 40px; border: 1px solid rgba(255,255,255,0.08);
    position: sticky; top: 100px;
  }
  .roi-results-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 28px; margin-bottom: 32px;
  }
  .roi-result-item { display: flex; flex-direction: column; gap: 6px; }
  .roi-result-label {
    font-size: 11px; font-weight: 600; letter-spacing: 0.1em;
    text-transform: uppercase; color: rgba(255,255,255,0.35);
  }
  .roi-result-value {
    font-family: var(--font-display); font-size: 28px;
    font-weight: 700; color: var(--accent); letter-spacing: -0.02em; line-height: 1.1;
    transition: color 0.25s;
  }
  .roi-result-item.large .roi-result-value {
    font-size: 36px; color: #88BBFF;
  }
  .roi-divider { height: 1px; background: rgba(255,255,255,0.08); margin: 0 0 24px; }
  .roi-disclaimer {
    font-size: 12px; color: rgba(255,255,255,0.25);
    font-style: italic; line-height: 1.6;
  }

  /* ── STICKY CTA BAR ─────────────────────────────────── */
  .sticky-cta {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
    background: var(--navy);
    border-top: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 -8px 32px rgba(12,26,64,0.5);
    padding: 14px 48px;
    display: flex; align-items: center; justify-content: space-between;
    transform: translateY(100%);
    transition: transform 0.4s var(--ease);
  }
  .sticky-cta.active { transform: translateY(0); }
  .sticky-cta-text {
    font-size: 14px; color: rgba(255,255,255,0.55); font-weight: 300;
  }
  .sticky-cta-text strong { color: rgba(255,255,255,0.9); font-weight: 500; }

  /* ── HAMBURGER + OVERLAY ────────────────────────────── */
  .hamburger {
    display: none; flex-direction: column; justify-content: center;
    align-items: center; width: 36px; height: 36px; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 4px; flex-shrink: 0;
  }
  .hamburger span {
    display: block; height: 2px; width: 22px;
    background: rgba(255,255,255,0.9); border-radius: 2px;
    transition: all 0.3s var(--ease);
  }
  nav.scrolled .hamburger span { background: var(--navy); }
  .nav-overlay {
    position: fixed; top: 0; right: 0; bottom: 0; z-index: 200;
    width: 280px; max-width: 85vw;
    background: var(--white);
    display: flex; flex-direction: column;
    padding: 80px 32px 40px;
    transform: translateX(100%);
    transition: transform 0.35s var(--ease);
    box-shadow: -8px 0 40px rgba(12, 26, 64, 0.15);
  }
  .nav-overlay.open { transform: translateX(0); }
  .nav-overlay-backdrop {
    position: fixed; inset: 0; z-index: 199;
    background: rgba(12, 26, 64, 0.4);
    opacity: 0; pointer-events: none;
    transition: opacity 0.35s var(--ease);
  }
  .nav-overlay-backdrop.open { opacity: 1; pointer-events: auto; }
  .nav-overlay-close {
    position: absolute; top: 20px; right: 20px;
    background: none; border: none; cursor: pointer;
    color: var(--muted); font-size: 20px; line-height: 1;
    transition: color 0.2s; width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
  }
  .nav-overlay-close:hover { color: var(--navy); }
  .nav-overlay-links {
    display: flex; flex-direction: column; gap: 0;
  }
  .nav-overlay-link {
    font-family: var(--font-display); font-size: 16px;
    font-weight: 500; color: var(--muted);
    text-decoration: none;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    transition: color 0.2s;
  }
  .nav-overlay-link:first-child { border-top: 1px solid var(--border); }
  .nav-overlay-link:hover { color: var(--navy); }
  .nav-overlay-link--active { color: var(--navy); font-weight: 600; }
  .nav-overlay-cta {
    margin-top: auto;
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    background: var(--navy); color: var(--white);
    font-family: var(--font-body); font-size: 14px; font-weight: 500;
    padding: 14px 24px; border-radius: 100px; border: none;
    cursor: pointer; text-decoration: none;
    transition: background 0.2s;
    width: 100%;
  }
  .nav-overlay-cta:hover { background: var(--blue); }

  /* ── DELIVERABLES GRID 5 ITEMS ───────────────────────── */
  .deliverables-grid--5 {
    grid-template-columns: repeat(3, 1fr);
  }
  .deliverables-grid--5 .deliverable-card:first-child { border-radius: 16px 0 0 0; }
  .deliverables-grid--5 .deliverable-card:nth-child(3) { border-radius: 0 16px 0 0; }
  .deliverables-grid--5 .deliverable-card:nth-child(4) { border-radius: 0 0 0 16px; }
  .deliverables-grid--5 .deliverable-card:nth-child(5) {
    grid-column: 2 / 4; border-radius: 0 0 16px 0;
  }

  /* ── ANIMATIONS ──────────────────────────────────────── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .reveal {
    opacity: 0; transform: translateY(28px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }



/* ============================================================
   === index.html only ===
   ============================================================ */

  /* ── HERO ────────────────────────────────────────────── */
  #hero {
    min-height: 100vh;
    display: flex; flex-direction: column; justify-content: center;
    padding: 120px 0 80px;
    position: relative; overflow: hidden;
    background: var(--navy);
  }
  .hero-bg {
    position: absolute; inset: 0; pointer-events: none;
    background:
      radial-gradient(ellipse 55% 70% at 75% 45%, rgba(50,128,245,0.22) 0%, transparent 60%),
      radial-gradient(ellipse 35% 50% at 10% 85%, rgba(50,128,245,0.10) 0%, transparent 60%),
      radial-gradient(ellipse 50% 40% at 50% 0%, rgba(50,128,245,0.06) 0%, transparent 55%);
  }
  .hero-grid {
    position: absolute; inset: 0; pointer-events: none;
    background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
  }
  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(50,128,245,0.15);
    border: 1px solid rgba(50,128,245,0.3);
    color: #88BBFF; font-size: 13px; font-weight: 500; letter-spacing: 0.06em;
    padding: 6px 14px; border-radius: 100px;
    margin-bottom: 32px;
    animation: fadeUp 0.8s var(--ease) 0.1s both;
  }
  .hero-eyebrow::before {
    content: ''; width: 6px; height: 6px; border-radius: 50%;
    background: #88BBFF; flex-shrink: 0;
  }
  #hero h1 {
    font-family: var(--font-display);
    font-size: clamp(44px, 6vw, 80px);
    font-weight: 700; line-height: 1.1; letter-spacing: -0.02em;
    color: var(--white); max-width: 820px;
    margin-bottom: 28px;
    animation: fadeUp 0.8s var(--ease) 0.2s both;
  }
  #hero h1 em {
    font-style: normal;
    background: linear-gradient(135deg, #88BBFF, var(--accent));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  }
  #hero p {
    font-size: 18px; line-height: 1.7; color: rgba(255,255,255,0.65);
    max-width: 560px; margin-bottom: 40px;
    font-weight: 300;
    animation: fadeUp 0.8s var(--ease) 0.3s both;
  }
  .hero-cta-group {
    display: flex; align-items: center; gap: 16px;
    animation: fadeUp 0.8s var(--ease) 0.4s both;
  }
  .btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--accent); color: var(--white);
    font-family: var(--font-body); font-size: 15px; font-weight: 500;
    padding: 14px 28px; border-radius: 100px; border: none;
    cursor: pointer; text-decoration: none;
    transition: transform 0.25s var(--ease), box-shadow 0.25s;
    box-shadow: 0 4px 20px rgba(50,128,245,0.35);
  }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 36px rgba(50,128,245,0.45); }
  .btn-primary svg { width: 16px; height: 16px; transition: transform 0.2s; }
  .btn-primary:hover svg { transform: translateX(3px); }
  .hero-note {
    font-size: 13px; color: rgba(255,255,255,0.4);
  }
  .hero-stats {
    display: flex; gap: 40px; margin-top: 72px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.08);
    animation: fadeUp 0.8s var(--ease) 0.5s both;
  }
  .stat-item { display: flex; flex-direction: column; gap: 4px; }
  .stat-num {
    font-family: var(--font-display); font-size: 32px;
    font-weight: 700; color: var(--white); letter-spacing: -0.02em;
  }
  .stat-num span { color: var(--accent); }
  .stat-label { font-size: 13px; color: rgba(255,255,255,0.4); font-weight: 300; }

  /* ── PROBLEEM ────────────────────────────────────────── */
  #probleem {
    padding: 100px 0 80px;
    background: var(--white);
  }
  .section-tag {
    font-size: 12px; font-weight: 600; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--accent);
    margin-bottom: 16px;
  }
  #probleem h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700; letter-spacing: -0.02em;
    color: var(--navy); margin-bottom: 24px; line-height: 1.1;
  }
  .probleem-intro {
    font-size: 18px; color: var(--muted); max-width: 560px;
    line-height: 1.7; margin-bottom: 64px; font-weight: 300;
  }
  .pain-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 2px; border-radius: 20px; overflow: hidden;
    border: 2px solid var(--border);
  }
  .pain-card {
    background: var(--white); padding: 40px;
    position: relative; overflow: hidden;
    transition: background 0.3s;
  }
  .pain-card:hover { background: var(--sky); }
  .pain-card::before {
    content: attr(data-num);
    position: absolute; right: 24px; top: 20px;
    font-family: var(--font-display); font-size: 80px; font-weight: 700;
    color: rgba(27,63,122,0.05); line-height: 1;
  }
  .pain-card-title {
    font-family: var(--font-display);
    font-size: 20px; font-weight: 700;
    color: var(--navy); margin-bottom: 12px;
  }
  .pain-card p {
    font-size: 15px; line-height: 1.7;
    color: var(--muted); font-weight: 300;
  }
  .pain-divider {
    grid-column: 1 / -1;
    height: 2px; background: var(--border);
  }
  .pain-banner {
    grid-column: 1 / -1;
    background: var(--navy); padding: 32px 40px;
    display: flex; align-items: center; justify-content: space-between;
  }
  .pain-banner p {
    color: rgba(255,255,255,0.7); font-size: 16px;
    line-height: 1.6; max-width: 600px; font-weight: 300;
  }
  .pain-banner strong { color: var(--white); font-weight: 500; }

  /* ── OPLOSSING ───────────────────────────────────────── */
  #oplossing {
    padding: 80px 0 100px;
    background: var(--sky);
  }
  .oplossing-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 64px; align-items: start;
  }
  .oplossing-left h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700; letter-spacing: -0.02em;
    color: var(--navy); line-height: 1.1;
    margin-bottom: 20px;
  }
  .oplossing-left > p {
    font-size: 17px; color: var(--muted);
    line-height: 1.7; font-weight: 300; margin-bottom: 40px;
  }
  .result-box {
    background: var(--navy); border-radius: 16px;
    padding: 28px 32px;
  }
  .result-box p {
    font-size: 15px; color: rgba(255,255,255,0.6);
    line-height: 1.6; font-weight: 300; margin-bottom: 16px;
  }
  .result-highlights {
    display: flex; flex-direction: column; gap: 10px;
  }
  .result-highlight {
    display: flex; align-items: center; gap: 12px;
    color: var(--white); font-size: 14px; font-weight: 500;
  }
  .result-highlight::before {
    content: '→'; color: var(--accent); font-weight: 700; flex-shrink: 0;
  }
  .feature-list {
    display: flex; flex-direction: column; gap: 0;
  }
  .feature-item {
    padding: 28px 0;
    border-bottom: 1px solid rgba(27,63,122,0.1);
    display: grid; grid-template-columns: 40px 1fr; gap: 16px;
    align-items: start;
  }
  .feature-item:first-child { padding-top: 0; }
  .feature-num {
    font-family: var(--font-display); font-size: 13px;
    font-weight: 700; color: var(--accent); padding-top: 3px;
  }
  .feature-title {
    font-family: var(--font-display);
    font-size: 17px; font-weight: 700;
    color: var(--navy); margin-bottom: 6px;
  }
  .feature-body {
    font-size: 14px; color: var(--muted);
    line-height: 1.6; font-weight: 300;
  }

  /* ── HOE HET WERKT ───────────────────────────────────── */
  #hoehetwerkt {
    padding: 100px 0 90px;
    background: var(--white);
  }
  #hoehetwerkt .section-header {
    text-align: center; margin-bottom: 72px;
  }
  #hoehetwerkt h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700; letter-spacing: -0.02em;
    color: var(--navy); line-height: 1.1;
    margin-bottom: 16px;
  }
  #hoehetwerkt .section-sub {
    font-size: 17px; color: var(--muted);
    font-weight: 300; max-width: 480px; margin: 0 auto;
  }
  .phases {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .phase-card {
    border: 1.5px solid var(--border); border-radius: 20px;
    padding: 40px 32px; position: relative; overflow: hidden;
    transition: border-color 0.3s, transform 0.3s var(--ease);
  }
  .phase-card:hover {
    border-color: var(--accent); transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(50,128,245,0.10);
  }
  .phase-month {
    font-size: 12px; font-weight: 600; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--accent);
    margin-bottom: 8px;
  }
  .phase-title {
    font-family: var(--font-display);
    font-size: 22px; font-weight: 700;
    color: var(--navy); margin-bottom: 8px;
  }
  .phase-goal {
    font-size: 13px; color: var(--muted);
    margin-bottom: 24px; font-weight: 300;
  }
  .phase-items {
    display: flex; flex-direction: column; gap: 10px;
    margin-bottom: 28px;
  }
  .phase-item {
    font-size: 14px; color: var(--text);
    display: flex; gap: 8px; align-items: start;
    line-height: 1.5;
  }
  .phase-item::before {
    content: '–'; color: var(--accent); font-weight: 700;
    flex-shrink: 0; margin-top: 1px;
  }
  .phase-result {
    background: var(--sky); border-radius: 12px;
    padding: 16px 20px;
  }
  .phase-result-label {
    font-size: 11px; font-weight: 600; letter-spacing: 0.08em;
    text-transform: uppercase; color: var(--accent); margin-bottom: 8px;
  }
  .phase-result-items {
    display: flex; flex-direction: column; gap: 6px;
  }
  .phase-result-item {
    font-size: 13px; color: var(--navy); font-weight: 500;
    display: flex; gap: 8px; align-items: start;
  }
  .phase-result-item::before { content: '✓'; color: var(--accent); flex-shrink: 0; }

  /* ── VOOR WIE ────────────────────────────────────────── */
  #voorwie {
    padding: 90px 0 100px;
    background: var(--white);
  }
  #voorwie h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700; letter-spacing: -0.02em;
    color: var(--navy); line-height: 1.1;
    margin-bottom: 48px;
  }
  .fit-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 24px; margin-bottom: 40px;
  }
  .fit-card {
    border-radius: 20px; padding: 36px;
  }
  .fit-card.yes { background: var(--sky); border: 1.5px solid rgba(50,128,245,0.15); }
  .fit-card.no  { background: #FEF3F2; border: 1.5px solid rgba(220,38,38,0.1); }
  .fit-card-label {
    font-size: 12px; font-weight: 600; letter-spacing: 0.1em;
    text-transform: uppercase; margin-bottom: 20px;
  }
  .fit-card.yes .fit-card-label { color: var(--accent); }
  .fit-card.no  .fit-card-label { color: #DC2626; }
  .fit-items { display: flex; flex-direction: column; gap: 12px; }
  .fit-item {
    font-size: 15px; color: var(--text);
    display: flex; gap: 10px; align-items: start;
    line-height: 1.5; font-weight: 300;
  }
  .fit-item .check { flex-shrink: 0; font-weight: 700; margin-top: 1px; }
  .fit-card.yes .check { color: var(--accent); }
  .fit-card.no  .check { color: #DC2626; }
  .honest-note {
    background: var(--sky); border-left: 3px solid var(--accent);
    padding: 24px 28px; border-radius: 0 12px 12px 0;
  }
  .honest-note p { font-size: 15px; color: var(--muted); line-height: 1.7; font-weight: 300; }
  .honest-note strong { color: var(--navy); font-weight: 500; }

  /* ── INVESTERING ─────────────────────────────────────── */
  #investering {
    padding: 90px 0 100px;
    background: var(--sky);
  }
  .price-layout {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 64px; align-items: center;
  }
  .price-left h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700; letter-spacing: -0.02em;
    color: var(--navy); line-height: 1.1; margin-bottom: 8px;
  }
  .price-sub {
    font-size: 16px; color: var(--muted);
    margin-bottom: 32px; font-weight: 300;
  }
  .price-reasoning { display: flex; flex-direction: column; gap: 16px; }
  .reasoning-item {
    font-size: 15px; color: var(--text);
    line-height: 1.7; font-weight: 300;
  }
  .reasoning-item strong { color: var(--navy); font-weight: 500; }
  .price-card {
    background: var(--navy); border-radius: 24px;
    padding: 48px 40px; text-align: center;
  }
  .price-main {
    font-family: var(--font-display);
    font-size: 64px; font-weight: 700;
    color: var(--white); letter-spacing: -0.03em;
    line-height: 1;
  }
  .price-main span { font-size: 28px; color: rgba(255,255,255,0.4); vertical-align: super; margin-right: 4px; }
  .price-period {
    font-size: 14px; color: rgba(255,255,255,0.4);
    margin-top: 8px; margin-bottom: 32px;
  }
  .price-divider {
    height: 1px; background: rgba(255,255,255,0.08);
    margin: 0 0 32px;
  }
  .price-roi {
    background: rgba(50,128,245,0.15); border: 1px solid rgba(50,128,245,0.3);
    border-radius: 12px; padding: 20px 24px; margin-bottom: 24px;
  }
  .price-roi p {
    font-size: 14px; color: rgba(255,255,255,0.7);
    line-height: 1.6; font-weight: 300;
  }
  .price-scarcity {
    font-size: 13px; color: rgba(255,255,255,0.4);
  }
  .price-scarcity strong { color: rgba(255,255,255,0.7); }

  /* ── VOLGENDE STAP ───────────────────────────────────── */
  #volgendestap {
    padding: 120px 0;
    background: var(--navy);
    text-align: center;
  }
  #volgendestap .section-tag { color: #88BBFF; text-align: center; }
  #volgendestap h2 {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 700; letter-spacing: -0.02em;
    color: var(--white); line-height: 1.1;
    margin-bottom: 24px;
  }
  #volgendestap > .container > p {
    font-size: 18px; color: rgba(255,255,255,0.55);
    max-width: 500px; margin: 0 auto 64px;
    line-height: 1.7; font-weight: 300;
  }
  .steps-row {
    display: flex; gap: 0; margin-bottom: 64px;
    justify-content: center;
  }
  .step {
    flex: 1; max-width: 300px; padding: 0 32px;
    border-right: 1px solid rgba(255,255,255,0.08);
    text-align: left;
  }
  .step:last-child { border-right: none; }
  .step-num {
    font-family: var(--font-display);
    font-size: 40px; font-weight: 700;
    color: rgba(255,255,255,0.08); line-height: 1;
    margin-bottom: 12px;
  }
  .step-title {
    font-family: var(--font-display);
    font-size: 17px; font-weight: 700;
    color: var(--white); margin-bottom: 8px;
  }
  .step-body {
    font-size: 14px; color: rgba(255,255,255,0.45);
    line-height: 1.6; font-weight: 300;
  }
  .cta-group {
    display: flex; align-items: center; justify-content: center;
    gap: 16px; flex-wrap: wrap; margin-bottom: 48px;
  }
  .btn-secondary {
    display: inline-flex; align-items: center;
    background: transparent; color: rgba(255,255,255,0.6);
    border: 1px solid rgba(255,255,255,0.15);
    font-family: var(--font-body); font-size: 15px; font-weight: 400;
    padding: 14px 28px; border-radius: 100px;
    cursor: pointer; text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
  }
  .btn-secondary:hover {
    border-color: rgba(255,255,255,0.35); color: var(--white);
  }
  .contact-info {
    font-size: 14px; color: rgba(255,255,255,0.3);
    line-height: 1.8;
  }
  .contact-info a { color: rgba(255,255,255,0.5); text-decoration: none; }
  .contact-info a:hover { color: var(--white); }

  /* ── CREDIBILITY ─────────────────────────────────────── */
  #credibility {
    padding: 100px 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
  }
  .credibility-intro {
    font-size: 17px; color: var(--muted);
    font-weight: 300; margin-bottom: 48px;
    line-height: 1.6;
  }
  .credibility-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px; margin-bottom: 48px;
  }
  .credibility-card {
    border: 1.5px solid var(--border); border-radius: 20px;
    padding: 36px 32px;
    transition: border-color 0.3s, transform 0.3s var(--ease);
  }
  .credibility-card:hover {
    border-color: var(--accent); transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(50,128,245,0.08);
  }
  .credibility-stat {
    font-family: var(--font-display);
    font-size: 56px; font-weight: 700;
    color: var(--accent); letter-spacing: -0.03em;
    line-height: 1; margin-bottom: 16px;
  }
  .credibility-body {
    font-size: 15px; color: var(--muted);
    line-height: 1.7; font-weight: 300;
  }
  .credibility-close {
    font-size: 17px; color: var(--navy);
    font-weight: 500; line-height: 1.6;
    max-width: 640px; margin-bottom: 12px;
  }
  .credibility-source {
    font-size: 12px; color: var(--muted);
    font-style: italic;
  }

  /* ── WAAROM DIT WERKT ────────────────────────────────── */
  #waaromwerkt {
    padding: 80px 0 100px;
    background: var(--sky);
  }
  #waaromwerkt h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700; letter-spacing: -0.02em;
    color: var(--navy); line-height: 1.1;
    margin-bottom: 20px;
  }
  .waarom-intro {
    font-size: 17px; color: var(--muted);
    font-weight: 300; line-height: 1.7;
    max-width: 640px; margin-bottom: 48px;
  }
  .waarom-list { max-width: 760px; }
  .waarom-list .feature-num {
    font-size: 18px; font-weight: 700;
    color: var(--accent); padding-top: 3px;
    min-width: 48px;
  }
  .waarom-close {
    font-size: 16px; color: var(--navy);
    font-weight: 500; line-height: 1.7;
    margin-top: 48px; max-width: 640px;
    padding: 24px 28px;
    background: var(--white); border-radius: 12px;
    border-left: 3px solid var(--accent);
  }

  /* ── VOORBEELDEN ─────────────────────────────────────── */
  #voorbeelden {
    padding: 100px 0;
    background: var(--white);
    text-align: center;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .voorbeelden-container { max-width: 640px; margin: 0 auto; }
  #voorbeelden h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700; letter-spacing: -0.02em;
    color: var(--navy); line-height: 1.1;
    margin-bottom: 16px;
  }
  .voorbeelden-body {
    font-size: 17px; color: var(--muted);
    font-weight: 300; line-height: 1.7;
    margin-bottom: 36px;
  }
  .voorbeelden-note {
    font-size: 12px; color: var(--muted);
    font-style: italic; margin-top: 24px;
  }

  /* ── PROCESS CLOSE ───────────────────────────────────── */
  .process-close {
    font-size: 16px; color: var(--muted);
    font-weight: 300; line-height: 1.7;
    margin-top: 48px; text-align: center;
  }

  /* ── PRICE INCLUDES ──────────────────────────────────── */
  .price-includes {
    display: flex; flex-direction: column; gap: 10px;
    margin-bottom: 8px;
  }
  .price-include-item {
    font-size: 14px; color: rgba(255,255,255,0.7);
    display: flex; gap: 10px; align-items: start;
    font-weight: 300; line-height: 1.5;
  }
  .price-include-item::before {
    content: '✓'; color: var(--accent); font-weight: 700;
    flex-shrink: 0;
  }

  /* ── FAQ ─────────────────────────────────────────────── */
  #faq {
    padding: 80px 0 100px;
    background: var(--sky);
  }
  #faq h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700; letter-spacing: -0.02em;
    color: var(--navy); line-height: 1.1;
    margin-bottom: 48px;
  }
  .faq-list {
    max-width: 760px;
    display: flex; flex-direction: column;
    border-top: 1px solid var(--border);
  }
  .faq-item {
    border-bottom: 1px solid var(--border);
  }
  .faq-question {
    width: 100%; display: flex; justify-content: space-between;
    align-items: center; gap: 16px;
    padding: 24px 0;
    background: none; border: none; cursor: pointer;
    font-family: var(--font-body); font-size: 17px;
    font-weight: 500; color: var(--navy);
    text-align: left; line-height: 1.4;
    transition: color 0.2s;
  }
  .faq-question:hover { color: var(--accent); }
  .faq-icon {
    width: 18px; height: 18px; flex-shrink: 0;
    transition: transform 0.3s var(--ease);
    color: var(--muted);
  }
  .faq-question[aria-expanded="true"] .faq-icon { transform: rotate(180deg); }
  .faq-answer {
    max-height: 0; overflow: hidden;
    transition: max-height 0.35s var(--ease), padding 0.35s var(--ease);
    padding-bottom: 0;
  }
  .faq-answer.open {
    max-height: 300px;
    padding-bottom: 24px;
  }
  .faq-answer p {
    font-size: 15px; color: var(--muted);
    line-height: 1.7; font-weight: 300;
  }

  /* ── BTN OUTLINE ────────────────────────────────────── */
  .btn-outline {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent; color: var(--accent);
    border: 1.5px solid var(--accent);
    font-family: var(--font-body); font-size: 15px; font-weight: 500;
    padding: 12px 24px; border-radius: 100px;
    cursor: pointer; text-decoration: none;
    transition: background 0.2s, color 0.2s;
  }
  .btn-outline:hover { background: var(--accent); color: var(--white); }

  /* ── CTA MICROCOPY ───────────────────────────────────── */
  .cta-microcopy {
    font-size: 13px; color: rgba(255,255,255,0.4);
    margin-top: -32px; margin-bottom: 32px;
  }

  /* ── RESPONSIVE ──────────────────────────────────────── */
  @media (max-width: 768px) {
    nav { padding: 16px 20px; }
    .nav-cta { display: none; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .container { padding: 0 20px; }
    #hero { padding: 100px 0 60px; }
    .hero-stats { flex-direction: column; gap: 20px; }
    .credibility-grid,
    .pain-grid,
    .oplossing-grid,
    .phases,
    .deliverables-grid,
    .deliverables-grid--5,
    .time-grid,
    .fit-grid,
    .price-layout,
    .roi-layout,
    .roi-results-grid { grid-template-columns: 1fr; }
    .deliverables-grid--5 .deliverable-card:nth-child(5) { grid-column: 1; }
    .roi-results { position: static; }
    .pain-banner { flex-direction: column; gap: 16px; }
    .steps-row { display: none; }
    #volgendestap { padding: 72px 0; }
    #volgendestap > .container > p { margin-bottom: 36px; }
    #volgendestap h2 { font-size: clamp(28px, 6vw, 40px); }
    footer { flex-direction: column; gap: 8px; text-align: center; }
    /* Sticky CTA mobile: alleen knop */
    .sticky-cta { padding: 12px 20px; justify-content: center; }
    .sticky-cta-text { display: none; }
    /* Compactere secties op mobile */
    #probleem { padding: 64px 0 48px; }
    #oplossing { padding: 48px 0 64px; }
    #hoehetwerkt { padding: 64px 0 56px; }
    #investering { padding: 56px 0 64px; }
    .phases { gap: 16px; }
    .phase-card { padding: 28px; }
    /* CTA buttons onder elkaar + breder */
    .hero-cta-group { flex-direction: column; align-items: stretch; }
    .hero-cta-group .btn-primary { justify-content: center; }
    .hero-note { text-align: center; }
    .cta-group { flex-direction: column; align-items: stretch; }
    .cta-group .btn-primary { justify-content: center; }
    .cta-group .btn-secondary { text-align: center; }
    /* Content verkorten op mobile */
    .pain-card p { display: none; }
    .phase-result { display: none; }
  }



/* ============================================================
   === service.html only ===
   ============================================================ */

  /* ── DIENST HEADER ───────────────────────────────────── */
  #dienst-header {
    padding: 160px 0 88px;
    background: var(--navy);
    position: relative; overflow: hidden;
  }
  #dienst-header .hero-bg {
    position: absolute; inset: 0; pointer-events: none;
    background:
      radial-gradient(ellipse 55% 70% at 75% 45%, rgba(50,128,245,0.22) 0%, transparent 60%),
      radial-gradient(ellipse 35% 50% at 10% 85%, rgba(50,128,245,0.10) 0%, transparent 60%),
      radial-gradient(ellipse 50% 40% at 50% 0%, rgba(50,128,245,0.06) 0%, transparent 55%);
  }
  #dienst-header .hero-grid {
    position: absolute; inset: 0; pointer-events: none;
    background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
  }
  .dienst-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(50,128,245,0.15);
    border: 1px solid rgba(50,128,245,0.3);
    color: #88BBFF; font-size: 13px; font-weight: 500; letter-spacing: 0.06em;
    padding: 6px 14px; border-radius: 100px;
    margin-bottom: 28px;
    animation: fadeUp 0.8s var(--ease) 0.1s both;
  }
  .dienst-eyebrow::before {
    content: ''; width: 6px; height: 6px; border-radius: 50%;
    background: #88BBFF; flex-shrink: 0;
  }
  #dienst-header h1 {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 700; line-height: 1.1; letter-spacing: -0.02em;
    color: var(--white); max-width: 720px;
    margin-bottom: 20px;
    animation: fadeUp 0.8s var(--ease) 0.2s both;
  }
  #dienst-header h1 em {
    font-style: normal;
    background: linear-gradient(135deg, #88BBFF, var(--accent));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  }
  #dienst-header > .container > p {
    font-size: 18px; line-height: 1.7; color: rgba(255,255,255,0.65);
    max-width: 520px; margin-bottom: 36px;
    font-weight: 300;
    animation: fadeUp 0.8s var(--ease) 0.3s both;
  }
  .dienst-cta-group {
    display: flex; align-items: center; gap: 16px;
    animation: fadeUp 0.8s var(--ease) 0.4s both;
  }

  /* ── PROBLEEM (not on this page but CSS here for safety) ─ */
  #probleem { padding: 100px 0 80px; background: var(--white); }
  .section-tag {
    font-size: 12px; font-weight: 600; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--accent);
    margin-bottom: 16px;
  }

  /* ── WAAROM DIT WERKT ────────────────────────────────── */
  #waaromwerkt {
    padding: 80px 0 100px;
    background: var(--sky);
  }
  #waaromwerkt h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700; letter-spacing: -0.02em;
    color: var(--navy); line-height: 1.1;
    margin-bottom: 20px;
  }
  .waarom-intro {
    font-size: 17px; color: var(--muted);
    font-weight: 300; line-height: 1.7;
    max-width: 640px; margin-bottom: 56px;
  }
  .waarom-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px; margin-bottom: 48px;
  }
  .waarom-card {
    background: var(--white);
    border: 1.5px solid var(--border); border-radius: 20px;
    padding: 40px 32px;
    transition: border-color 0.3s, transform 0.3s var(--ease);
  }
  .waarom-card:hover {
    border-color: var(--accent); transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(50,128,245,0.08);
  }
  .waarom-stat {
    font-family: var(--font-display);
    font-size: 56px; font-weight: 700;
    color: var(--accent); letter-spacing: -0.03em;
    line-height: 1; margin-bottom: 16px;
  }
  .waarom-card-title {
    font-family: var(--font-display);
    font-size: 18px; font-weight: 700;
    color: var(--navy); margin-bottom: 12px;
    line-height: 1.3;
  }
  .waarom-card-body {
    font-size: 15px; color: var(--muted);
    line-height: 1.7; font-weight: 300;
  }
  .waarom-close {
    font-size: 17px; color: var(--navy);
    font-weight: 500; line-height: 1.6;
    max-width: 640px; margin-bottom: 12px;
    padding: 24px 28px;
    background: var(--white); border-radius: 12px;
    border-left: 3px solid var(--accent);
  }
  .waarom-source {
    font-size: 12px; color: var(--muted);
    font-style: italic; margin-top: 12px;
  }

  /* ── VOORBEELDEN ─────────────────────────────────────── */
  #voorbeelden {
    padding: 100px 0;
    background: var(--white);
    text-align: center;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .voorbeelden-container { max-width: 640px; margin: 0 auto; }
  #voorbeelden h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700; letter-spacing: -0.02em;
    color: var(--navy); line-height: 1.1;
    margin-bottom: 16px;
  }
  .voorbeelden-body {
    font-size: 17px; color: var(--muted);
    font-weight: 300; line-height: 1.7;
    margin-bottom: 36px;
  }
  .voorbeelden-note {
    font-size: 12px; color: var(--muted);
    font-style: italic; margin-top: 24px;
  }
  .hero-cta-group {
    display: flex; align-items: center; gap: 16px;
  }
  .btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--accent); color: var(--white);
    font-family: var(--font-body); font-size: 15px; font-weight: 500;
    padding: 14px 28px; border-radius: 100px; border: none;
    cursor: pointer; text-decoration: none;
    transition: transform 0.25s var(--ease), box-shadow 0.25s;
    box-shadow: 0 4px 20px rgba(50,128,245,0.35);
  }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 36px rgba(50,128,245,0.45); }
  .btn-primary svg { width: 16px; height: 16px; transition: transform 0.2s; }
  .btn-primary:hover svg { transform: translateX(3px); }
  .hero-note {
    font-size: 13px; color: rgba(255,255,255,0.4);
  }

  /* ── INVESTERING ─────────────────────────────────────── */
  #investering {
    padding: 90px 0 100px;
    background: var(--sky);
  }
  .price-layout {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 64px; align-items: center;
  }
  .price-left h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700; letter-spacing: -0.02em;
    color: var(--navy); line-height: 1.1; margin-bottom: 8px;
  }
  .price-sub {
    font-size: 16px; color: var(--muted);
    margin-bottom: 32px; font-weight: 300;
  }
  .price-reasoning { display: flex; flex-direction: column; gap: 16px; }
  .reasoning-item {
    font-size: 15px; color: var(--text);
    line-height: 1.7; font-weight: 300;
  }
  .reasoning-item strong { color: var(--navy); font-weight: 500; }
  .price-card {
    background: var(--navy); border-radius: 24px;
    padding: 48px 40px; text-align: center;
  }
  .price-main {
    font-family: var(--font-display);
    font-size: 64px; font-weight: 700;
    color: var(--white); letter-spacing: -0.03em;
    line-height: 1;
  }
  .price-main span { font-size: 28px; color: rgba(255,255,255,0.4); vertical-align: super; margin-right: 4px; }
  .price-period {
    font-size: 14px; color: rgba(255,255,255,0.4);
    margin-top: 8px; margin-bottom: 32px;
  }
  .price-divider {
    height: 1px; background: rgba(255,255,255,0.08);
    margin: 0 0 32px;
  }
  .price-roi {
    background: rgba(50,128,245,0.15); border: 1px solid rgba(50,128,245,0.3);
    border-radius: 12px; padding: 20px 24px; margin-bottom: 24px;
  }
  .price-roi p {
    font-size: 14px; color: rgba(255,255,255,0.7);
    line-height: 1.6; font-weight: 300;
  }
  .price-scarcity {
    font-size: 13px; color: rgba(255,255,255,0.4);
  }
  .price-scarcity strong { color: rgba(255,255,255,0.7); }
  .price-includes {
    display: flex; flex-direction: column; gap: 10px;
    margin-bottom: 8px;
  }
  .price-include-item {
    font-size: 14px; color: rgba(255,255,255,0.7);
    display: flex; gap: 10px; align-items: start;
    font-weight: 300; line-height: 1.5;
  }
  .price-include-item::before {
    content: '✓'; color: var(--accent); font-weight: 700;
    flex-shrink: 0;
  }

  /* ── FAQ ─────────────────────────────────────────────── */
  #faq {
    padding: 80px 0 100px;
    background: var(--white);
  }
  #faq h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700; letter-spacing: -0.02em;
    color: var(--navy); line-height: 1.1;
    margin-bottom: 48px;
  }
  .faq-list {
    max-width: 760px;
    display: flex; flex-direction: column;
    border-top: 1px solid var(--border);
  }
  .faq-item {
    border-bottom: 1px solid var(--border);
  }
  .faq-question {
    width: 100%; display: flex; justify-content: space-between;
    align-items: center; gap: 16px;
    padding: 24px 0;
    background: none; border: none; cursor: pointer;
    font-family: var(--font-body); font-size: 17px;
    font-weight: 500; color: var(--navy);
    text-align: left; line-height: 1.4;
    transition: color 0.2s;
  }
  .faq-question:hover { color: var(--accent); }
  .faq-icon {
    width: 18px; height: 18px; flex-shrink: 0;
    transition: transform 0.3s var(--ease);
    color: var(--muted);
  }
  .faq-question[aria-expanded="true"] .faq-icon { transform: rotate(180deg); }
  .faq-answer {
    max-height: 0; overflow: hidden;
    transition: max-height 0.35s var(--ease), padding 0.35s var(--ease);
    padding-bottom: 0;
  }
  .faq-answer.open {
    max-height: 300px;
    padding-bottom: 24px;
  }
  .faq-answer p {
    font-size: 15px; color: var(--muted);
    line-height: 1.7; font-weight: 300;
  }

  /* ── VOLGENDE STAP ───────────────────────────────────── */
  #volgendestap {
    padding: 120px 0;
    background: var(--navy);
    text-align: center;
  }
  #volgendestap .section-tag { color: #88BBFF; text-align: center; }
  #volgendestap h2 {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 700; letter-spacing: -0.02em;
    color: var(--white); line-height: 1.1;
    margin-bottom: 24px;
  }
  #volgendestap > .container > p {
    font-size: 18px; color: rgba(255,255,255,0.55);
    max-width: 500px; margin: 0 auto 64px;
    line-height: 1.7; font-weight: 300;
  }
  .steps-row {
    display: flex; gap: 0; margin-bottom: 64px;
    justify-content: center;
  }
  .step {
    flex: 1; max-width: 300px; padding: 0 32px;
    border-right: 1px solid rgba(255,255,255,0.08);
    text-align: left;
  }
  .step:last-child { border-right: none; }
  .step-num {
    font-family: var(--font-display);
    font-size: 40px; font-weight: 700;
    color: rgba(255,255,255,0.08); line-height: 1;
    margin-bottom: 12px;
  }
  .step-title {
    font-family: var(--font-display);
    font-size: 17px; font-weight: 700;
    color: var(--white); margin-bottom: 8px;
  }
  .step-body {
    font-size: 14px; color: rgba(255,255,255,0.45);
    line-height: 1.6; font-weight: 300;
  }
  .cta-group {
    display: flex; align-items: center; justify-content: center;
    gap: 16px; flex-wrap: wrap; margin-bottom: 48px;
  }
  .btn-secondary {
    display: inline-flex; align-items: center;
    background: transparent; color: rgba(255,255,255,0.6);
    border: 1px solid rgba(255,255,255,0.15);
    font-family: var(--font-body); font-size: 15px; font-weight: 400;
    padding: 14px 28px; border-radius: 100px;
    cursor: pointer; text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
  }
  .btn-secondary:hover {
    border-color: rgba(255,255,255,0.35); color: var(--white);
  }
  .contact-info {
    font-size: 14px; color: rgba(255,255,255,0.3);
    line-height: 1.8;
  }
  .contact-info a { color: rgba(255,255,255,0.5); text-decoration: none; }
  .contact-info a:hover { color: var(--white); }
  .cta-microcopy {
    font-size: 13px; color: rgba(255,255,255,0.4);
    margin-top: -32px; margin-bottom: 32px;
  }

  /* ── RESPONSIVE ──────────────────────────────────────── */
  @media (max-width: 768px) {
    nav { padding: 16px 20px; }
    .nav-cta { display: none; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .container { padding: 0 20px; }
    #dienst-header { padding: 120px 0 60px; }
    .waarom-grid,
    .deliverables-grid,
    .deliverables-grid--5,
    .time-grid,
    .price-layout,
    .roi-layout,
    .roi-results-grid { grid-template-columns: 1fr; }
    .deliverables-grid--5 .deliverable-card:nth-child(5) { grid-column: 1; }
    .roi-results { position: static; }
    .steps-row { display: none; }
    #volgendestap { padding: 72px 0; }
    #volgendestap > .container > p { margin-bottom: 36px; }
    #volgendestap h2 { font-size: clamp(28px, 6vw, 40px); }
    footer { flex-direction: column; gap: 8px; text-align: center; }
    .sticky-cta { padding: 12px 20px; justify-content: center; }
    .sticky-cta-text { display: none; }
    .dienst-cta-group { flex-direction: column; align-items: stretch; }
    .dienst-cta-group .btn-primary { justify-content: center; }
    .dienst-cta-group .btn-secondary { text-align: center; }
    /* Compactere secties op mobile */
    #voorwie { padding: 64px 0 48px; }
    #waaromwerkt { padding: 48px 0 64px; }
    #watjekrijgt { padding: 64px 0 56px; }
    #investering { padding: 56px 0 64px; }
    #roi { padding: 64px 0 48px; }
    #faq { padding: 48px 0 64px; }
    .deliverable-card { padding: 24px; }
    .waarom-card { padding: 28px 24px; }
    /* Content verkorten op mobile */
    .waarom-card-body { display: none; }
    .time-grid { display: none; }
    .price-reasoning .reasoning-item:not(:first-child) { display: none; }
  }

  /* ── VOOR WIE ─────────────────────────────────────── */
  #voorwie {
    padding: 100px 0 80px;
    background: var(--white);
  }
  #voorwie h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700; letter-spacing: -0.02em;
    color: var(--navy); line-height: 1.1;
    margin-bottom: 48px;
  }
  .voorwie-intro {
    font-size: 17px; color: var(--muted);
    font-weight: 300; line-height: 1.7;
    max-width: 640px; margin-bottom: 48px;
  }
  .fit-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 24px; margin-bottom: 40px;
  }
  .fit-card {
    border-radius: 20px; padding: 36px;
  }
  .fit-card.yes { background: var(--sky); border: 1.5px solid rgba(50,128,245,0.15); }
  .fit-card.no  { background: #FEF3F2; border: 1.5px solid rgba(220,38,38,0.1); }
  .fit-card-label {
    font-size: 12px; font-weight: 600; letter-spacing: 0.1em;
    text-transform: uppercase; margin-bottom: 20px;
  }
  .fit-card.yes .fit-card-label { color: var(--accent); }
  .fit-card.no  .fit-card-label { color: #DC2626; }
  .fit-items { display: flex; flex-direction: column; gap: 12px; }
  .fit-item {
    font-size: 15px; color: var(--text);
    display: flex; gap: 10px; align-items: start;
    line-height: 1.5; font-weight: 300;
  }
  .fit-item .check { flex-shrink: 0; font-weight: 700; margin-top: 1px; }
  .fit-card.yes .check { color: var(--accent); }
  .fit-card.no  .check { color: #DC2626; }
  .honest-note {
    background: var(--sky); border-left: 3px solid var(--accent);
    padding: 24px 28px; border-radius: 0 12px 12px 0;
  }
  .honest-note p { font-size: 15px; color: var(--muted); line-height: 1.7; font-weight: 300; }
  .honest-note strong { color: var(--navy); font-weight: 500; }

  @media (max-width: 768px) {
    .fit-grid { grid-template-columns: 1fr; }
    .fit-card { padding: 28px; }
  }

/* === about.html only === */

#over-header {
  padding: 160px 0 88px;
  background: var(--navy);
  position: relative; overflow: hidden;
}
#over-header .hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 55% 70% at 75% 45%, rgba(50,128,245,0.22) 0%, transparent 60%),
    radial-gradient(ellipse 35% 50% at 10% 85%, rgba(50,128,245,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 50% 0%, rgba(50,128,245,0.06) 0%, transparent 55%);
}
#over-header .hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
#over-header h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700; line-height: 1.1; letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 20px;
  animation: fadeUp 0.8s var(--ease) 0.2s both;
}
#over-header h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #88BBFF, var(--accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
#over-header > .container > p {
  font-size: 18px; line-height: 1.7; color: rgba(255,255,255,0.65);
  max-width: 520px; margin-bottom: 36px;
  font-weight: 300;
  animation: fadeUp 0.8s var(--ease) 0.3s both;
}
@media (max-width: 768px) {
  #over-header { padding: 120px 0 60px; }
}

#bio { padding: 80px 0 48px; background: var(--white); }
.bio-layout { display: grid; grid-template-columns: 300px 1fr; gap: 80px; align-items: start; }
.bio-left { text-align: center; }
.about-photo {
  width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: center top;
  border-radius: 20px;
  box-shadow: 12px 12px 0 0 var(--accent), 0 8px 32px rgba(12, 26, 64, 0.18);
}
.about-name { font-size: 18px; font-weight: 600; margin-top: 16px; color: var(--text); font-family: var(--font-display); }
.about-title { font-size: 14px; color: var(--muted); margin-top: 4px; font-weight: 300; }
.bio-intro { font-size: 18px; font-weight: 300; line-height: 1.7; color: var(--text); margin-bottom: 20px; }
.bio-body { font-size: 16px; font-weight: 300; line-height: 1.8; color: var(--muted); margin-bottom: 16px; }

#missie { padding: 64px 0 72px; background: var(--sky); }

.mission-rows { margin-top: 48px; }
.mission-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  padding: 32px 0;
  border-top: 1px solid var(--border);
  align-items: baseline;
}
.mission-row:last-child { border-bottom: 1px solid var(--border); }
.mission-row-left { display: flex; gap: 16px; align-items: baseline; }
.mission-num {
  font-size: 13px; font-weight: 600; color: var(--accent);
  font-family: var(--font-display); flex-shrink: 0;
}
.mission-title {
  font-size: 18px; font-weight: 600; color: var(--text);
  font-family: var(--font-display); line-height: 1.4;
  margin: 0;
}
.mission-body {
  font-size: 15px; font-weight: 300; line-height: 1.8;
  color: var(--muted); margin: 0;
}

#aanpak { padding: 64px 0 80px; background: var(--white); }
#aanpak .phases { margin-top: 48px; }

@media (max-width: 768px) {
  .bio-layout { grid-template-columns: 1fr; gap: 40px; }
  .bio-left { max-width: 220px; margin: 0 auto; }
  .about-photo { aspect-ratio: 1/1; }
  .mission-row { grid-template-columns: 1fr; gap: 12px; }
  #bio { padding: 56px 0 36px; }
  #missie { padding: 48px 0 56px; }
  #aanpak { padding: 48px 0 56px; }
  #aanpak .phases { gap: 16px; }
  #aanpak .phase-card { padding: 28px; }
  #over-header { padding: 100px 0 48px; }
  .dienst-cta-group { flex-direction: column; align-items: stretch; }
  .dienst-cta-group .btn-primary { justify-content: center; }
  .dienst-cta-group .btn-secondary { text-align: center; }
  /* About page CTA compacter */
  #volgendestap { padding: 72px 0; }
  .steps-row { display: none; }
  #volgendestap > .container > p { margin-bottom: 36px; }
  #volgendestap h2 { font-size: clamp(28px, 6vw, 40px); }
  /* Content verkorten op mobile */
  .mission-body { display: none; }
  .phase-result { display: none; }
}

  /* ── RESULTATEN (case studies) ──────────────────────── */
  #resultaten {
    padding: 90px 0 100px;
    background: var(--sky);
  }
  .resultaten-intro {
    font-size: 18px; color: var(--muted);
    font-weight: 300; line-height: 1.7;
    max-width: 640px; margin-bottom: 56px;
  }
  .case-grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .case-card {
    background: var(--white);
    border: 1.5px solid var(--border); border-radius: 20px;
    padding: 40px; display: flex; flex-direction: column; gap: 28px;
    transition: border-color 0.3s, transform 0.3s var(--ease);
  }
  .case-card:hover {
    border-color: var(--accent); transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(50,128,245,0.08);
  }
  .case-header {
    display: flex; align-items: center; gap: 16px;
  }
  .case-avatar {
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--navy); color: rgba(255,255,255,0.5);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-size: 14px; font-weight: 700;
    flex-shrink: 0;
  }
  .case-name {
    font-family: var(--font-display);
    font-size: 17px; font-weight: 700; color: var(--navy);
  }
  .case-role {
    font-size: 13px; color: var(--muted); font-weight: 300; margin-top: 2px;
  }
  .case-badge {
    margin-left: auto; font-size: 12px; font-weight: 600;
    color: var(--accent); background: rgba(50,128,245,0.08);
    padding: 4px 12px; border-radius: 20px;
    font-family: var(--font-display); text-transform: uppercase;
    letter-spacing: 0.04em; white-space: nowrap;
  }
  .case-section-label {
    font-family: var(--font-display);
    font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.08em;
    color: var(--accent); margin-bottom: 8px;
  }
  .case-section-body {
    font-size: 15px; color: var(--muted);
    line-height: 1.7; font-weight: 300;
  }
  .case-stats {
    display: flex; gap: 24px; margin-top: 8px;
  }
  .case-stat {
    flex: 1; text-align: center;
    padding: 20px 12px; background: var(--sky);
    border-radius: 12px;
  }
  .case-stat-value {
    font-family: var(--font-display);
    font-size: 28px; font-weight: 700;
    color: var(--accent); letter-spacing: -0.02em;
    line-height: 1; margin-bottom: 6px;
  }
  .case-stat-label {
    font-size: 12px; color: var(--muted); font-weight: 400;
    line-height: 1.3;
  }
  .case-quote {
    border-left: 3px solid var(--accent);
    padding: 20px 24px; background: rgba(50,128,245,0.03);
    border-radius: 0 12px 12px 0;
  }
  .case-quote p {
    font-size: 15px; color: var(--navy);
    line-height: 1.7; font-style: italic; font-weight: 300;
    margin-bottom: 8px;
  }
  .case-quote cite {
    font-size: 13px; color: var(--muted);
    font-style: normal; font-weight: 500;
  }

  @media (max-width: 768px) {
    .case-grid { grid-template-columns: 1fr; }
    .case-header { flex-wrap: wrap; }
    .case-badge { margin-left: 0; margin-top: 8px; }
    .case-stats { flex-direction: column; gap: 12px; }
  }

  /* ── BLOG ARTICLE ───────────────────────────────────── */
  .blog-page { padding-top: 80px; }

  .blog-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px;
  }

  .blog-header {
    padding: 64px 0 40px;
  }
  .blog-meta {
    display: flex; align-items: center; gap: 8px;
    font-size: 14px; color: var(--muted); font-weight: 400;
    margin-bottom: 20px;
  }
  .blog-meta-sep { color: var(--border); }
  .blog-meta time { font-weight: 500; }

  .blog-header h1 {
    font-family: var(--font-display);
    font-size: clamp(28px, 5vw, 44px);
    font-weight: 700; color: var(--navy);
    line-height: 1.15; letter-spacing: -0.02em;
    margin-bottom: 24px;
  }

  .blog-lead {
    font-size: 19px; line-height: 1.7;
    color: var(--muted); font-weight: 300;
    max-width: 640px;
  }

  /* Hero image */
  .blog-hero {
    margin-bottom: 48px;
  }
  .blog-hero img,
  .blog-hero-placeholder svg {
    width: 100%; height: auto;
    border-radius: 16px;
    display: block;
  }

  /* Article body typography */
  .blog-body {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text);
    font-weight: 300;
  }
  .blog-body p {
    margin-bottom: 24px;
  }
  .blog-body h2 {
    font-family: var(--font-display);
    font-size: 26px; font-weight: 700;
    color: var(--navy); line-height: 1.3;
    margin-top: 56px; margin-bottom: 20px;
    letter-spacing: -0.01em;
  }
  .blog-body h3 {
    font-family: var(--font-display);
    font-size: 20px; font-weight: 600;
    color: var(--navy); line-height: 1.4;
    margin-top: 40px; margin-bottom: 16px;
  }
  .blog-body ul,
  .blog-body ol {
    margin-bottom: 24px;
    padding-left: 24px;
  }
  .blog-body li {
    margin-bottom: 10px;
    padding-left: 4px;
  }
  .blog-body li::marker {
    color: var(--accent);
  }
  .blog-body strong {
    font-weight: 600; color: var(--navy);
  }
  .blog-body blockquote {
    border-left: 3px solid var(--accent);
    margin: 40px 0;
    padding: 24px 28px;
    background: rgba(50,128,245,0.03);
    border-radius: 0 12px 12px 0;
  }
  .blog-body blockquote p {
    font-size: 19px;
    font-style: italic;
    color: var(--navy);
    line-height: 1.7;
    margin-bottom: 0;
  }

  /* Inline figures */
  .blog-inline-figure {
    margin: 40px 0;
  }
  .blog-inline-figure figcaption {
    font-size: 13px; color: var(--muted);
    text-align: center; margin-top: 12px;
    font-weight: 400;
  }

  /* Author box */
  .blog-author {
    display: flex; align-items: center; gap: 16px;
    margin-top: 64px; padding: 32px;
    border: 1.5px solid var(--border);
    border-radius: 16px;
    flex-wrap: wrap;
  }
  .blog-author-avatar {
    width: 52px; height: 52px; border-radius: 50%;
    background: var(--navy); color: rgba(255,255,255,0.5);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-size: 15px; font-weight: 700;
    flex-shrink: 0;
  }
  .blog-author-info {
    display: flex; flex-direction: column; gap: 2px;
  }
  .blog-author-name {
    font-family: var(--font-display);
    font-size: 16px; font-weight: 700; color: var(--navy);
  }
  .blog-author-role {
    font-size: 13px; color: var(--muted); font-weight: 300;
  }
  .blog-author-link {
    margin-left: auto;
    font-size: 14px; font-weight: 600;
    color: var(--accent);
    text-decoration: none;
    font-family: var(--font-display);
    transition: color 0.2s;
  }
  .blog-author-link:hover { color: var(--navy); }

  /* Blog CTA */
  .blog-cta {
    margin-top: 56px; margin-bottom: 80px;
    padding: 48px;
    background: var(--sky);
    border-radius: 20px;
    text-align: center;
  }
  .blog-cta h2 {
    font-family: var(--font-display);
    font-size: 24px; font-weight: 700;
    color: var(--navy); margin-bottom: 12px;
  }
  .blog-cta p {
    font-size: 16px; color: var(--muted);
    font-weight: 300; margin-bottom: 28px;
    line-height: 1.6;
  }

  @media (max-width: 768px) {
    .blog-header { padding: 40px 0 32px; }
    .blog-body h2 { font-size: 22px; margin-top: 40px; }
    .blog-body h3 { font-size: 18px; margin-top: 32px; }
    .blog-body blockquote { padding: 20px 20px; margin: 32px 0; }
    .blog-author { padding: 24px; }
    .blog-author-link { margin-left: 0; margin-top: 8px; width: 100%; }
    .blog-cta { padding: 32px 24px; }
  }
