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

    :root {
      --blue-dark: #0a1f44;
      --blue-mid: #1a3a6e;
      --blue-accent: #1e6fdb;
      --blue-light: #3b8af0;
      --gold: #f0a500;
      --white: #ffffff;
      --gray-light: #f5f7fa;
      --gray-mid: #e2e8f0;
      --gray-text: #64748b;
      --text-dark: #1a202c;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
      color: var(--text-dark);
      background: var(--white);
      line-height: 1.7;
    }

    /* ── SCROLL FADE-IN ── */
    .fade-in {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.65s ease, transform 0.65s ease;
    }
    .fade-in.visible {
      opacity: 1;
      transform: none;
    }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      background: rgba(255, 255, 255, 0.97);
      backdrop-filter: blur(8px);
      box-shadow: 0 2px 12px rgba(0,0,0,0.10);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 5%;
      height: 70px;
    }

    .nav-logo {
      text-decoration: none;
      display: flex;
      align-items: center;
    }
    .nav-logo-img {
      height: 150px;
      width: auto;
      object-fit: contain;
    }

    .nav-right {
      display: flex;
      align-items: center;
      gap: 2rem;
    }

    .nav-links { display: flex; gap: 2rem; list-style: none; }
    .nav-links a {
      color: var(--blue-dark);
      text-decoration: none;
      font-size: 0.95rem;
      font-weight: 500;
      transition: color .2s;
    }
    .nav-links a:hover { color: var(--blue-light); }

    .nav-cta {
      background: var(--blue-accent);
      color: var(--white) !important;
      padding: 0.45rem 1.2rem;
      border-radius: 6px;
      font-weight: 600 !important;
      transition: background .2s !important;
    }
    .nav-cta:hover { background: var(--blue-light) !important; color: var(--white) !important; }

    /* ── LANGUAGE SWITCHER ── */
    .lang-switcher {
      display: flex;
      align-items: center;
      gap: 0;
      border: 1px solid rgba(0,0,0,0.2);
      border-radius: 6px;
      overflow: hidden;
      flex-shrink: 0;
    }
    .lang-btn {
      background: transparent;
      border: none;
      color: rgba(0,0,0,0.5);
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 1px;
      padding: 0.3rem 0.65rem;
      cursor: pointer;
      transition: background .2s, color .2s;
      text-transform: uppercase;
    }
    .lang-btn:first-child {
      border-right: 1px solid rgba(0,0,0,0.15);
    }
    .lang-btn.active {
      background: var(--blue-accent);
      color: var(--white);
    }
    .lang-btn:hover:not(.active) {
      background: rgba(0,0,0,0.07);
      color: var(--blue-dark);
    }

    /* Hamburger */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 4px;
    }
    .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--white);
      border-radius: 2px;
      transition: transform .25s, opacity .25s;
    }
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .mobile-menu {
      display: none;
      position: fixed;
      top: 70px; left: 0; right: 0;
      background: rgba(10, 31, 68, 0.98);
      backdrop-filter: blur(8px);
      z-index: 99;
      flex-direction: column;
      padding: 1.5rem 5%;
      gap: 0;
      border-top: 1px solid rgba(255,255,255,0.1);
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a {
      color: rgba(255,255,255,0.85);
      text-decoration: none;
      font-size: 1.05rem;
      font-weight: 500;
      padding: 0.9rem 0;
      border-bottom: 1px solid rgba(255,255,255,0.07);
      transition: color .2s;
    }
    .mobile-menu a:last-child { border-bottom: none; }
    .mobile-menu a:hover { color: var(--blue-light); }

    /* Mobile lang switcher in menu */
    .mobile-lang {
      display: flex;
      gap: 0.75rem;
      padding: 1rem 0 0.5rem;
    }
    .mobile-lang-btn {
      background: transparent;
      border: 1px solid rgba(0,0,0,0.2);
      color: rgba(0,0,0,0.5);
      font-size: 0.82rem;
      font-weight: 700;
      letter-spacing: 1px;
      padding: 0.35rem 0.9rem;
      border-radius: 6px;
      cursor: pointer;
      text-transform: uppercase;
      transition: background .2s, color .2s;
    }
    .mobile-lang-btn.active {
      background: var(--blue-accent);
      border-color: var(--blue-accent);
      color: var(--white);
    }

    /* ── HERO ── */
    #hero {
      min-height: 100vh;
      background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-mid) 60%, #1a5299 100%);
      display: flex;
      align-items: center;
      padding: 120px 5% 80px;
      position: relative;
      overflow: hidden;
    }

    #hero::before {
      content: '';
      position: absolute;
      top: -200px; right: -200px;
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(30,111,219,0.25) 0%, transparent 70%);
      border-radius: 50%;
    }

    #hero::after {
      content: '';
      position: absolute;
      bottom: -150px; left: -100px;
      width: 400px; height: 400px;
      background: radial-gradient(circle, rgba(59,138,240,0.15) 0%, transparent 70%);
      border-radius: 50%;
    }

    .hero-content { max-width: 720px; position: relative; z-index: 1; }

    .hero-tag {
      display: inline-block;
      background: rgba(30,111,219,0.3);
      border: 1px solid rgba(59,138,240,0.5);
      color: var(--blue-light);
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 0.35rem 1rem;
      border-radius: 20px;
      margin-bottom: 1.5rem;
    }

    .hero-content h1 {
      font-size: clamp(2.4rem, 5vw, 3.8rem);
      font-weight: 800;
      color: var(--white);
      line-height: 1.15;
      margin-bottom: 1.25rem;
    }
    .hero-content h1 span { color: var(--blue-light); }

    .hero-content p {
      font-size: 1.15rem;
      color: rgba(255,255,255,0.8);
      max-width: 580px;
      margin-bottom: 2.5rem;
    }

    .hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

    .btn-primary {
      background: var(--blue-accent);
      color: var(--white);
      padding: 0.85rem 2rem;
      border-radius: 8px;
      text-decoration: none;
      font-weight: 700;
      font-size: 1rem;
      transition: background .2s, transform .15s;
      display: inline-block;
    }
    .btn-primary:hover { background: var(--blue-light); transform: translateY(-2px); }

    .btn-secondary {
      background: transparent;
      color: var(--white);
      padding: 0.85rem 2rem;
      border-radius: 8px;
      text-decoration: none;
      font-weight: 600;
      font-size: 1rem;
      border: 2px solid rgba(255,255,255,0.4);
      transition: border-color .2s, background .2s;
      display: inline-block;
    }
    .btn-secondary:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

    .hero-stats {
      display: flex;
      gap: 3rem;
      margin-top: 4rem;
      padding-top: 2rem;
      border-top: 1px solid rgba(255,255,255,0.12);
      flex-wrap: wrap;
    }

    .stat-icon {
      font-size: 1.5rem;
      display: block;
      margin-bottom: 0.25rem;
    }
    .stat-num {
      font-size: 2rem;
      font-weight: 800;
      color: var(--blue-light);
      display: block;
    }
    .stat-label {
      font-size: 0.85rem;
      color: rgba(255,255,255,0.75);
    }

    /* ── SECTIONS ── */
    section { padding: 100px 5%; }
    .section-tag {
      display: inline-block;
      color: var(--blue-accent);
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      margin-bottom: 0.75rem;
    }
    .section-title {
      font-size: clamp(1.8rem, 3.5vw, 2.6rem);
      font-weight: 800;
      color: var(--text-dark);
      line-height: 1.2;
      margin-bottom: 1rem;
    }
    .section-subtitle {
      font-size: 1.05rem;
      color: var(--gray-text);
      max-width: 580px;
    }

    /* ── OVER ONS ── */
    #over-ons { background: var(--gray-light); }

    .over-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
      margin-top: 3.5rem;
    }

    .over-visual {
      background: linear-gradient(135deg, var(--blue-dark), var(--blue-mid));
      border-radius: 16px;
      padding: 3rem;
      color: var(--white);
      position: relative;
      overflow: hidden;
    }

    .over-visual::before {
      content: '';
      position: absolute;
      top: -60px; right: -60px;
      width: 220px; height: 220px;
      background: rgba(30,111,219,0.2);
      border-radius: 50%;
    }

    .over-avatar {
      width: 80px; height: 80px;
      border-radius: 50%;
      background: var(--blue-accent);
      display: flex; align-items: center; justify-content: center;
      font-size: 2rem;
      font-weight: 800;
      color: var(--white);
      margin-bottom: 1.5rem;
      position: relative;
      z-index: 1;
    }

    .over-visual h3 {
      font-size: 1.4rem;
      font-weight: 700;
      margin-bottom: 0.25rem;
      position: relative; z-index: 1;
    }
    .over-visual .functie {
      font-size: 0.9rem;
      color: var(--blue-light);
      font-weight: 600;
      margin-bottom: 1.5rem;
      position: relative; z-index: 1;
    }

    .badges {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin-top: 1.5rem;
      position: relative; z-index: 1;
    }

    .badge {
      background: rgba(59,138,240,0.25);
      border: 1px solid rgba(59,138,240,0.4);
      color: #90c4ff;
      font-size: 0.78rem;
      font-weight: 600;
      padding: 0.3rem 0.8rem;
      border-radius: 20px;
    }

    .over-text p { color: var(--gray-text); margin-bottom: 1rem; font-size: 1rem; }

    .highlight-box {
      background: var(--white);
      border-left: 4px solid var(--blue-accent);
      border-radius: 8px;
      padding: 1.2rem 1.5rem;
      margin-top: 1.5rem;
      box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    }
    .highlight-box strong { color: var(--blue-dark); font-size: 1.05rem; }
    .highlight-box p { margin-bottom: 0; color: var(--gray-text); font-size: 0.93rem; margin-top: 0.3rem; }

    /* ── DIENSTEN ── */
    #diensten { background: var(--white); }

    .diensten-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.75rem;
      margin-top: 3.5rem;
    }

    .dienst-card {
      background: var(--gray-light);
      border-radius: 14px;
      padding: 2.25rem;
      border: 1px solid var(--gray-mid);
      transition: transform .2s, box-shadow .2s, border-color .2s;
    }
    .dienst-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 32px rgba(10,31,68,0.1);
      border-color: var(--blue-light);
    }

    .dienst-icon {
      width: 56px; height: 56px;
      background: linear-gradient(135deg, var(--blue-accent), var(--blue-light));
      border-radius: 14px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.5rem;
      margin-bottom: 1.25rem;
    }

    .dienst-card h3 {
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--blue-dark);
      margin-bottom: 0.6rem;
    }
    .dienst-card p { font-size: 0.93rem; color: var(--gray-text); }

    /* ── WERKWIJZE ── */
    #werkwijze { background: var(--gray-light); }

    .werkwijze-steps {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 2rem;
      margin-top: 3.5rem;
      position: relative;
    }

    .werkwijze-step {
      text-align: center;
      padding: 2rem 1.5rem;
      background: var(--white);
      border-radius: 14px;
      border: 1px solid var(--gray-mid);
      position: relative;
    }

    .step-circle {
      width: 64px; height: 64px;
      background: linear-gradient(135deg, var(--blue-accent), var(--blue-light));
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.6rem;
      margin: 0 auto 1.25rem;
    }

    .werkwijze-step h3 {
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--blue-dark);
      margin-bottom: 0.6rem;
    }
    .werkwijze-step p { font-size: 0.9rem; color: var(--gray-text); }

    /* ── PORTFOLIO ── */
    #portfolio { background: var(--white); }

    .portfolio-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 1.75rem;
      margin-top: 3.5rem;
    }

    .portfolio-card {
      border-radius: 14px;
      overflow: hidden;
      border: 1px solid var(--gray-mid);
      transition: transform .2s, box-shadow .2s;
    }
    .portfolio-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 32px rgba(10,31,68,0.1);
    }

    .portfolio-header {
      background: linear-gradient(135deg, var(--blue-dark), var(--blue-mid));
      padding: 1.75rem;
      color: var(--white);
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
    }

    .portfolio-top {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 0.75rem;
      flex-wrap: wrap;
    }

    .company-tag {
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--blue-light);
      padding-top: 0.2rem;
    }

    .portfolio-header h3 {
      font-size: 1.1rem;
      font-weight: 700;
      line-height: 1.3;
      margin-bottom: 0;
    }

    .result-badge {
      flex-shrink: 0;
      white-space: nowrap;
      background: rgba(59,138,240,0.3);
      border: 1px solid rgba(59,138,240,0.5);
      color: var(--blue-light);
      font-size: 0.9rem;
      font-weight: 800;
      padding: 0.25rem 0.75rem;
      border-radius: 20px;
    }

    .portfolio-body {
      padding: 1.5rem 1.75rem;
      background: var(--gray-light);
    }
    .portfolio-body p { font-size: 0.93rem; color: var(--gray-text); margin-bottom: 1.25rem; }

    .tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
    .tag {
      background: rgba(30,111,219,0.1);
      border: 1px solid rgba(30,111,219,0.2);
      color: var(--blue-accent);
      font-size: 0.75rem;
      font-weight: 600;
      padding: 0.2rem 0.65rem;
      border-radius: 12px;
    }

    /* ── TESTIMONIAL ── */
    #testimonial {
      background: linear-gradient(135deg, var(--blue-dark), var(--blue-mid));
      padding: 80px 5%;
    }

    .testimonial-inner {
      max-width: 720px;
      margin: 0 auto;
      text-align: center;
    }

    .quote-icon {
      font-size: 5rem;
      line-height: 1;
      color: var(--blue-light);
      opacity: 0.4;
      margin-bottom: -1.5rem;
    }

    .testimonial-text {
      font-size: 1.25rem;
      font-style: italic;
      color: rgba(255,255,255,0.9);
      line-height: 1.7;
      margin-bottom: 2rem;
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1rem;
    }

    .author-avatar {
      width: 52px; height: 52px;
      border-radius: 50%;
      background: var(--blue-accent);
      display: flex; align-items: center; justify-content: center;
      font-size: 1rem;
      font-weight: 800;
      color: var(--white);
    }

    .author-name {
      font-weight: 700;
      color: var(--white);
      font-size: 1rem;
    }
    .author-role {
      font-size: 0.85rem;
      color: rgba(0,0,0,0.5);
    }

    /* ── CONTACT ── */
    #contact { background: var(--gray-light); }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1.6fr;
      gap: 4rem;
      margin-top: 3.5rem;
      align-items: start;
    }

    .contact-info { display: flex; flex-direction: column; gap: 1.5rem; }

    .contact-item {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
    }

    .contact-icon {
      width: 44px; height: 44px;
      background: var(--white);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.2rem;
      border: 1px solid var(--gray-mid);
      flex-shrink: 0;
    }

    .contact-item h4 {
      font-size: 0.8rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: var(--gray-text);
      margin-bottom: 0.2rem;
    }
    .contact-item p, .contact-item a {
      font-size: 0.95rem;
      color: var(--text-dark);
      text-decoration: none;
    }
    .contact-item a:hover { color: var(--blue-accent); }

    .contact-form {
      background: var(--white);
      border-radius: 16px;
      padding: 2.5rem;
      border: 1px solid var(--gray-mid);
      box-shadow: 0 4px 24px rgba(10,31,68,0.06);
    }

    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
    .form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.25rem; }
    .form-group label {
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--text-dark);
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
      padding: 0.7rem 1rem;
      border: 1.5px solid var(--gray-mid);
      border-radius: 8px;
      font-size: 0.95rem;
      font-family: inherit;
      color: var(--text-dark);
      background: var(--gray-light);
      transition: border-color .2s;
      outline: none;
    }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--blue-accent);
      background: var(--white);
    }
    .form-group textarea { min-height: 130px; resize: vertical; }

    .btn-submit {
      width: 100%;
      background: var(--blue-accent);
      color: var(--white);
      border: none;
      padding: 0.9rem;
      border-radius: 8px;
      font-size: 1rem;
      font-weight: 700;
      cursor: pointer;
      transition: background .2s, transform .15s;
    }
    .btn-submit:hover { background: var(--blue-light); transform: translateY(-1px); }

    /* ── FOOTER ── */
    footer {
      background: var(--blue-dark);
      color: rgba(255,255,255,0.55);
      text-align: center;
      padding: 2.5rem 5%;
      font-size: 0.85rem;
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }
    footer a { color: rgba(255,255,255,0.55); text-decoration: none; }
    footer a:hover { color: var(--blue-light); }
    .brand { font-weight: 800; color: var(--white); font-size: 1rem; }
    .footer-sep { margin: 0 0.4rem; opacity: 0.3; }
    .footer-row { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 0.1rem; }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      .over-grid { grid-template-columns: 1fr; gap: 2.5rem; }
      .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    }


    @media (max-width: 768px) {
      .nav-logo-img { height: 48px; }
    }
    @media (max-width: 768px) {
      .nav-links { display: none; }
      .hamburger { display: flex; }
      .lang-switcher { display: none; }
      section { padding: 70px 5%; }
      .form-row { grid-template-columns: 1fr; }
    }

/* ══════════════════════════════════════════
   MULTI-PAGE ADDITIONS
══════════════════════════════════════════ */

/* Active nav link (page-based, not scroll-based) */
.nav-links a.active,
.mobile-menu a.active {
  color: var(--blue-light);
}
.nav-links a.active { position: relative; }
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -22px;
  height: 2px;
  background: var(--blue-light);
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-mid) 60%, #1a5299 100%);
  padding: 150px 5% 70px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -180px; right: -180px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(30,111,219,0.25) 0%, transparent 70%);
  border-radius: 50%;
}
.page-hero-inner { position: relative; z-index: 1; max-width: 780px; }
.breadcrumb {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1rem;
}
.breadcrumb a { color: rgba(255,255,255,0.7); text-decoration: none; }
.breadcrumb a:hover { color: var(--blue-light); }
.page-hero-tag {
  display: inline-block;
  background: rgba(30,111,219,0.3);
  border: 1px solid rgba(59,138,240,0.5);
  color: var(--blue-light);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 20px;
  margin-bottom: 1.25rem;
}
.page-hero h1 {
  font-size: clamp(2rem, 4.2vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.page-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  max-width: 620px;
}

/* ── SECTION CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-mid));
  border-radius: 20px;
  padding: 3.5rem 3rem;
  text-align: center;
  margin: 0 5% 100px;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  bottom: -120px; left: -80px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(59,138,240,0.2) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-banner h2 {
  position: relative; z-index: 1;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.cta-banner p {
  position: relative; z-index: 1;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin: 0 auto 2rem;
}
.cta-banner .hero-buttons { position: relative; z-index: 1; justify-content: center; }

/* ── HOME: SECTION FOOTER LINK ── */
.section-more {
  margin-top: 3rem;
  text-align: center;
}
.link-arrow {
  color: var(--blue-accent);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: color .2s;
}
.link-arrow:hover { color: var(--blue-light); }

/* ── PROJECT CARD (home preview, compact) ── */
.card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* ══════════════════════════════════════════
   PROJECT DETAIL CASES (projecten.html)
══════════════════════════════════════════ */
.case-intro {
  margin-bottom: 3.5rem;
}

.case {
  border: 1px solid var(--gray-mid);
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 2.5rem;
  background: var(--white);
}

.case-header {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-mid));
  padding: 2.5rem 2.5rem 2rem;
  color: var(--white);
}
.case-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}
.case-header .company-tag { color: var(--blue-light); padding-top: 0.3rem; }
.case-header h3 {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.3;
  max-width: 620px;
  margin-bottom: 0.75rem;
}
.case-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  margin-top: 0.5rem;
}
.case-meta span { display: flex; align-items: center; gap: 0.4rem; }
.case-header .result-badge {
  flex-shrink: 0;
  white-space: nowrap;
  font-size: 1.05rem;
}

.case-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  background: var(--gray-light);
  border-bottom: 1px solid var(--gray-mid);
}
.case-stat {
  flex: 1;
  min-width: 160px;
  padding: 1.5rem 2rem;
  border-right: 1px solid var(--gray-mid);
  text-align: center;
}
.case-stat:last-child { border-right: none; }
.case-stat-compare {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-weight: 800;
}
.case-stat-before {
  color: var(--gray-text);
  font-size: 1.1rem;
  text-decoration: line-through;
  text-decoration-color: rgba(100,116,139,0.4);
}
.case-stat-arrow { color: var(--blue-accent); font-size: 1rem; }
.case-stat-after {
  color: var(--blue-dark);
  font-size: 1.5rem;
}
.case-stat-label {
  font-size: 0.8rem;
  color: var(--gray-text);
  margin-top: 0.4rem;
}

.case-body {
  padding: 2.5rem;
}

.case-sections {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-bottom: 2rem;
}
.case-section {
  background: var(--gray-light);
  border-radius: 12px;
  padding: 1.5rem 1.5rem 1.25rem;
  border-top: 3px solid var(--blue-accent);
}
.case-section.uitdaging { border-top-color: #dc6b3b; }
.case-section.aanpak { border-top-color: var(--blue-accent); }
.case-section.resultaat { border-top-color: #16a34a; }
.case-section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray-text);
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.case-section p { font-size: 0.92rem; color: var(--text-dark); }

.case-methods {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-mid);
}
.case-methods-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gray-text);
  margin-right: 0.25rem;
}

/* ── RESPONSIVE: CASES ── */
@media (max-width: 900px) {
  .case-sections { grid-template-columns: 1fr; }
  .case-stat { border-right: none; border-bottom: 1px solid var(--gray-mid); }
}
@media (max-width: 768px) {
  .page-hero { padding: 110px 5% 50px; }
  .case-header { padding: 2rem 1.5rem 1.5rem; }
  .case-body { padding: 1.75rem 1.5rem; }
  .cta-banner { padding: 2.5rem 1.75rem; margin: 0 5% 70px; }
}
