:root {
    --navy: #0E2748;
    --navy-deep: #060F1E;
    --navy-soft: #14304F;
    --sky: #46A3D6;
    --sky-bright: #5EBDEE;
    --sky-dim: #2E7FA8;
    --mint: #C9F088;
    --mint-deep: #A8DD5C;
    --cream: #F5F1E8;
    --cream-soft: #FAF7EF;
    --cream-warm: #EDE6D6;
    --ink: #0A1428;
    --mute: #8595A8;
    --steel: #DDE5EE;
    --line: rgba(14,39,72,0.12);
    --line-dark: rgba(244,241,234,0.14);
  }

  * { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
  html { scroll-behavior: smooth; }
  body {
    overflow-x: hidden;
    background: var(--cream);
    color: var(--ink);
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.55;
  }

  .font-display { font-family: 'Archivo', sans-serif; letter-spacing: -0.028em; line-height: 0.88; }
  .font-serif { font-family: 'Fraunces', serif; letter-spacing: -0.015em; }
  .font-mono { font-family: 'JetBrains Mono', monospace; }
  .font-body { font-family: 'DM Sans', sans-serif; }

  @media (hover: hover) and (pointer: fine) {
    body { cursor: none; }
    a, button, [data-cursor] { cursor: none; }
    .cursor-dot, .cursor-ring {
      pointer-events: none; position: fixed; top: 0; left: 0; z-index: 9999;
      will-change: transform; mix-blend-mode: difference;
    }
    .cursor-dot {
      width: 6px; height: 6px; border-radius: 50%;
      background: var(--cream); transform: translate(-50%, -50%);
    }
    .cursor-ring {
      width: 36px; height: 36px; border-radius: 50%;
      border: 1px solid var(--cream);
      transform: translate(-50%, -50%);
      transition: width .25s, height .25s, border-color .25s;
    }
    .cursor-ring.active { width: 60px; height: 60px; border-color: var(--mint); }
  }

  /* Loader */
  #loader {
    position: fixed; inset: 0; background: var(--navy-deep);
    z-index: 10000; display: flex; align-items: center; justify-content: center;
    transition: opacity .6s ease, visibility .6s ease;
  }
  #loader.gone { opacity: 0; visibility: hidden; }
  #loader .mark {
    color: var(--cream); font-family: 'Archivo', sans-serif; font-weight: 900;
    letter-spacing: -0.04em; font-size: clamp(40px, 8vw, 96px);
    display: flex; align-items: baseline; gap: 0.25em;
  }
  #loader .mark span {
    color: var(--mint); font-family: 'JetBrains Mono', monospace;
    font-size: 0.3em; letter-spacing: 0.1em; font-weight: 500;
  }

  /* Reveal */
  .reveal { opacity: 0; transform: translateY(30px); }
  .reveal.in { opacity: 1; transform: translateY(0); transition: .9s cubic-bezier(.2,.7,.1,1); }

  /* Nav underline */
  .nav-link { position: relative; }
  .nav-link::after {
    content: ''; position: absolute; left: 0; bottom: -6px; right: 0;
    height: 1px; background: currentColor;
    transform: scaleX(0); transform-origin: left;
    transition: transform .4s cubic-bezier(.2,.7,.1,1);
  }
  .nav-link:hover::after { transform: scaleX(1); }

  /* Buttons */
  .btn {
    display: inline-flex; align-items: center; gap: .55rem;
    padding: 1rem 1.6rem; border-radius: 999px; font-weight: 600;
    transition: all .35s cubic-bezier(.2,.7,.1,1);
    font-size: .92rem; letter-spacing: 0.01em;
  }
  .btn-solid { background: var(--navy); color: var(--cream); }
  .btn-solid:hover { background: var(--navy-deep); transform: translateY(-2px); }
  .btn-outline { border: 1px solid currentColor; }
  .btn-outline:hover { background: var(--navy); color: var(--cream); border-color: var(--navy); }
  .btn-mint { background: var(--mint); color: var(--navy); }
  .btn-mint:hover { background: var(--mint-deep); transform: translateY(-2px); }
  .btn-ghost { padding-left: 0; }
  .btn-ghost:hover .arrow { transform: translateX(4px); }
  .arrow { display: inline-block; transition: transform .3s; }
  .spark { color: var(--mint-deep); }

  /* Eyebrow ✦ LABEL */
  .eyebrow {
    display: inline-flex; align-items: center; gap: .75rem;
    font-family: 'JetBrains Mono', monospace; font-size: .72rem;
    letter-spacing: .22em; text-transform: uppercase;
    color: var(--mute); padding-bottom: .4rem;
    border-bottom: 1px solid var(--line);
    min-width: 160px;
  }
  .eyebrow .star {
    color: var(--mint-deep); font-size: 1rem; line-height: 1; transform: translateY(-1px);
  }

  /* Ticker */
  .ticker { display: flex; gap: 4rem; animation: tickerMove 60s linear infinite; }
  @keyframes tickerMove { to { transform: translateX(-50%); } }
  .ticker:hover { animation-play-state: paused; }
  .ticker-item { white-space: nowrap; display: inline-flex; align-items: center; gap: .9rem; }
  .ticker-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--mint); animation: pulse 2s ease-in-out infinite; }
  @keyframes pulse { 0%,100% { opacity: 1; transform: scale(1);} 50% { opacity: .4; transform: scale(.8);} }

  /* Big word marquee (Voltify-style RELIABLE * SMART) */
  .word-marquee { display: flex; gap: 4rem; animation: wordMove 30s linear infinite; align-items: center; }
  @keyframes wordMove { to { transform: translateX(-50%); } }
  .word-marquee .w {
    font-family: 'Archivo', sans-serif; font-weight: 900;
    font-size: clamp(56px, 9vw, 140px); letter-spacing: -0.03em;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(14,39,72,0.55);
    text-stroke: 1.5px rgba(14,39,72,0.55);
    white-space: nowrap; line-height: 1;
  }
  .word-marquee .sep {
    flex-shrink: 0; display: inline-flex; align-items: center;
    width: clamp(20px, 3vw, 36px); height: clamp(20px, 3vw, 36px);
  }
  .word-marquee .sep svg { width: 100%; height: 100%; }

  /* Photo frames */
  .photo-frame {
    position: relative; overflow: hidden; border-radius: 24px;
    background: var(--steel);
  }
  .photo-frame img { width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform 1.6s cubic-bezier(.2,.7,.1,1); }
  .photo-frame:hover img { transform: scale(1.03); }

  /* Two-tone mega headline */
  .mega-tone-1 {
    font-family: 'Archivo', sans-serif; font-weight: 900;
    letter-spacing: -0.035em; line-height: 0.86;
    color: var(--navy);
    font-size: clamp(64px, 12vw, 220px);
    display: block;
  }
  .mega-tone-2 {
    font-family: 'Archivo', sans-serif; font-weight: 900;
    letter-spacing: -0.035em; line-height: 0.86;
    color: var(--sky-dim);
    font-size: clamp(64px, 12vw, 220px);
    display: block;
  }

  /* Rotating CTA circle */
  .rot-cta {
    position: relative;
    width: 168px; height: 168px;
    display: inline-flex; align-items: center; justify-content: center;
    cursor: pointer;
  }
  .rot-cta .ring {
    position: absolute; inset: 0;
    animation: spinRing 18s linear infinite;
  }
  .rot-cta:hover .ring { animation-duration: 6s; }
  @keyframes spinRing { to { transform: rotate(360deg); } }
  .rot-cta .ring svg { width: 100%; height: 100%; }
  .rot-cta .ring text {
    fill: var(--navy); font-family: 'JetBrains Mono', monospace;
    font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 500;
  }
  .rot-cta .hub {
    width: 76px; height: 76px; border-radius: 50%;
    background: var(--navy); color: var(--mint);
    display: flex; align-items: center; justify-content: center;
    font-size: 28px; transition: all .35s;
    position: relative; z-index: 2;
  }
  .rot-cta:hover .hub { background: var(--mint); color: var(--navy); transform: scale(1.05); }

  /* Stats card overlay */
  .stats-card {
    background: rgba(6,15,30,0.78); backdrop-filter: blur(20px);
    border: 1px solid rgba(244,241,234,0.14);
    color: var(--cream); padding: 1.6rem 1.8rem; border-radius: 18px;
  }

  /* Service item (image 6 style) */
  .svc-item {
    display: flex; align-items: baseline; justify-content: space-between;
    gap: 2rem; padding: 1.5rem 0;
    border-bottom: 1px solid rgba(244,241,234,0.12);
    cursor: pointer; transition: all .35s;
  }
  .svc-item:last-child { border-bottom: none; }
  .svc-item h3 {
    font-family: 'Archivo', sans-serif; font-weight: 800;
    font-size: clamp(28px, 3.2vw, 44px); letter-spacing: -0.025em;
    color: rgba(244,241,234,0.45); transition: color .35s, transform .35s;
  }
  .svc-item:hover h3 { color: var(--cream); transform: translateX(8px); }
  .svc-item.active h3 { color: var(--cream); }
  .svc-item .svc-num {
    font-family: 'JetBrains Mono', monospace; font-size: .7rem;
    letter-spacing: .2em; color: var(--mute); flex-shrink: 0;
  }

  /* Client logo cell */
  .client-cell {
    aspect-ratio: 7/4; border-radius: 18px; background: var(--cream-soft);
    border: 1px solid var(--line);
    display: flex; align-items: center; justify-content: center;
    padding: 1rem; transition: all .3s;
  }
  .client-cell:hover { border-color: var(--navy); transform: translateY(-2px); }
  .client-cell .client-name {
    font-family: 'Archivo', sans-serif; font-weight: 800;
    font-size: 1.05rem; letter-spacing: -0.01em; color: var(--mute);
    transition: color .3s;
  }
  .client-cell:hover .client-name { color: var(--navy); }
  .client-cell.feature {
    background: var(--mint); border-color: var(--mint);
    flex-direction: column; gap: .25rem;
  }
  .client-cell.feature .big {
    font-family: 'Archivo', sans-serif; font-weight: 900;
    font-size: 1.85rem; letter-spacing: -0.03em; color: var(--navy); line-height: 1;
  }
  .client-cell.feature .sub {
    font-family: 'DM Sans', sans-serif; font-size: .72rem; color: var(--navy);
    opacity: .8; text-align: center; line-height: 1.3;
  }

  /* Certificering badges (placeholders — vervang door officiële logo-bestanden) */
  .cert-badge {
    background: var(--cream-soft); border: 1px solid var(--line);
    border-radius: 18px; padding: 1.75rem 1.25rem;
    display: flex; flex-direction: column; align-items: center;
    justify-content: center; gap: 0.7rem; transition: all .3s;
    min-height: 170px;
  }
  .cert-badge:hover { border-color: var(--navy); transform: translateY(-2px); }
  .cert-badge .cert-mark {
    width: 44px; height: 44px; color: var(--sky-dim);
    transition: color .3s;
  }
  .cert-badge:hover .cert-mark { color: var(--navy); }
  .cert-badge .cert-name {
    font-family: 'Archivo', sans-serif; font-weight: 900;
    font-size: 1.5rem; letter-spacing: -0.02em; color: var(--navy);
    line-height: 1;
  }
  .cert-badge .cert-sub {
    font-family: 'JetBrains Mono', monospace; font-size: 0.65rem;
    letter-spacing: 0.2em; text-transform: uppercase; color: var(--mute);
    text-align: center; line-height: 1.4;
  }

  /* Blog featured */
  .blog-feature-img {
    border-radius: 22px; overflow: hidden; aspect-ratio: 4/5;
    background: var(--steel);
  }
  .blog-feature-img img { width: 100%; height: 100%; object-fit: cover; }
  .blog-thumb {
    border-radius: 12px; overflow: hidden; aspect-ratio: 1; position: relative;
    cursor: pointer; transition: transform .3s;
  }
  .blog-thumb:hover { transform: translateY(-3px); }
  .blog-thumb img { width: 100%; height: 100%; object-fit: cover; }
  .blog-thumb.active::after {
    content: ''; position: absolute; left: 0; right: 0; bottom: 0;
    height: 3px; background: var(--navy);
  }

  /* Testimonial gradient card */
  .test-grad {
    border-radius: 24px; padding: 2.5rem 2.5rem 2rem;
    background: linear-gradient(135deg, #5EBDEE 0%, #C9F088 100%);
    color: var(--navy); position: relative; overflow: hidden;
    min-height: 380px; display: flex; flex-direction: column; justify-content: space-between;
  }
  .test-grad .quote-mark {
    font-family: 'Fraunces', serif; font-weight: 600;
    font-size: 5rem; line-height: 0.7; color: var(--navy);
    opacity: .25;
  }
  .test-image-card {
    border-radius: 24px; overflow: hidden; position: relative;
    min-height: 380px; background: var(--navy);
  }
  .test-image-card img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
  .test-image-card .overlay {
    position: absolute; inset: 0; padding: 2rem 2.5rem;
    background: linear-gradient(180deg, rgba(6,15,30,0) 30%, rgba(6,15,30,0.78) 100%);
    display: flex; align-items: flex-end; justify-content: space-between;
    color: var(--cream);
  }

  /* Wagenpark grid */
  .wagen-tile { position: relative; overflow: hidden; border-radius: 16px; aspect-ratio: 1; background: var(--navy-soft); }
  .wagen-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s cubic-bezier(.2,.7,.1,1); }
  .wagen-tile:hover img { transform: scale(1.05); }
  .wagen-tile::after {
    content: attr(data-cap); position: absolute; left: 1rem; bottom: 1rem;
    color: var(--cream); font-family: 'JetBrains Mono', monospace;
    font-size: .68rem; letter-spacing: .1em; text-transform: uppercase;
    background: rgba(6,15,30,0.6); padding: .35rem .65rem; border-radius: 999px;
    backdrop-filter: blur(6px); opacity: 0; transition: opacity .35s;
  }
  .wagen-tile:hover::after { opacity: 1; }

  /* Newsletter input */
  .nl-form {
    display: flex; gap: .5rem; align-items: center;
    background: rgba(244,241,234,0.06); border: 1px solid rgba(244,241,234,0.14);
    border-radius: 999px; padding: .35rem .35rem .35rem 1.4rem;
    max-width: 480px; transition: border-color .3s;
  }
  .nl-form:focus-within { border-color: var(--mint); }
  .nl-form input {
    flex: 1; background: transparent; border: none; outline: none;
    color: var(--cream); font-family: 'DM Sans', sans-serif; font-size: .95rem;
  }
  .nl-form input::placeholder { color: rgba(244,241,234,0.4); }
  .nl-form button {
    background: var(--mint); color: var(--navy); border: none;
    padding: .8rem 1.6rem; border-radius: 999px; cursor: pointer;
    font-weight: 600; font-size: .85rem; letter-spacing: .03em;
    transition: all .3s; font-family: 'JetBrains Mono', monospace;
    text-transform: uppercase;
  }
  .nl-form button:hover { background: var(--mint-deep); }

  /* Get in touch mega */
  .git-mega {
    font-family: 'Archivo', sans-serif; font-weight: 900;
    font-size: clamp(72px, 16vw, 280px); letter-spacing: -0.04em;
    line-height: 0.85; color: var(--cream);
    display: flex; align-items: center; justify-content: center;
    gap: clamp(20px, 4vw, 60px); flex-wrap: wrap;
  }
  .git-mega .accent { color: var(--mint); }
  .git-mega .ico {
    display: inline-flex; align-items: center; justify-content: center;
    width: clamp(60px, 10vw, 140px); height: clamp(60px, 10vw, 140px);
    border-radius: 50%; background: var(--sky-dim); color: var(--cream);
    font-size: clamp(28px, 5vw, 64px);
    flex-shrink: 0;
  }

  ::selection { background: var(--navy); color: var(--mint); }

  .h-mega { font-size: clamp(56px, 10vw, 168px); }
  .h-huge { font-size: clamp(40px, 7vw, 108px); }
  .h-big  { font-size: clamp(32px, 4.5vw, 68px); }

  /* Need-driven hero tiles */
  .need-tile {
    background: var(--cream-soft); border: 1px solid var(--line);
    border-radius: 24px; padding: 2.25rem 2rem 1.75rem;
    text-decoration: none; color: inherit;
    transition: all 0.4s cubic-bezier(.2,.7,.1,1);
    display: flex; flex-direction: column;
    position: relative; overflow: hidden;
    min-height: 340px; cursor: pointer;
  }
  .need-tile::before {
    content: ''; position: absolute; inset: 0; opacity: 0; transition: opacity 0.4s;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
    z-index: 0;
  }
  .need-tile:hover { transform: translateY(-6px); }
  .need-tile:hover::before { opacity: 1; }
  .need-tile > * { position: relative; z-index: 1; transition: color 0.4s; }
  .need-tile .nt-icon {
    width: 56px; height: 56px; background: var(--mint); border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    color: var(--navy); margin-bottom: 1.25rem; transition: transform 0.4s;
  }
  .need-tile:hover .nt-icon { transform: scale(1.08) rotate(-4deg); }
  .need-tile .nt-num {
    font-family: 'JetBrains Mono', monospace; font-size: 0.68rem;
    letter-spacing: 0.22em; text-transform: uppercase; color: var(--mute);
    margin-bottom: 0.6rem; transition: color 0.4s;
  }
  .need-tile:hover .nt-num { color: var(--mint); }
  .need-tile h3 {
    font-family: 'Archivo', sans-serif; font-weight: 900;
    color: var(--navy); font-size: 1.55rem; letter-spacing: -0.02em;
    line-height: 1.1; margin: 0 0 0.7rem;
  }
  .need-tile:hover h3 { color: var(--cream); }
  .need-tile p {
    color: var(--ink); opacity: 0.7; font-size: 0.92rem; line-height: 1.5;
    margin: 0; flex: 1;
  }
  .need-tile:hover p { color: rgba(244,241,234,0.85); opacity: 1; }
  .need-tile .nt-action {
    margin-top: 1.25rem; padding-top: 1.1rem;
    border-top: 1px solid var(--line);
    display: flex; align-items: center; justify-content: space-between;
    transition: border-color 0.4s;
  }
  .need-tile:hover .nt-action { border-color: rgba(244,241,234,0.15); }
  .need-tile .nt-cta {
    font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 0.95rem;
    color: var(--navy); letter-spacing: -0.01em;
  }
  .need-tile:hover .nt-cta { color: var(--mint); }
  .need-tile .nt-arrow {
    width: 40px; height: 40px; border-radius: 50%;
    border: 1px solid var(--line);
    display: flex; align-items: center; justify-content: center;
    color: var(--navy); transition: all 0.4s; flex-shrink: 0;
  }
  .need-tile:hover .nt-arrow {
    background: var(--mint); border-color: var(--mint); color: var(--navy);
    transform: rotate(-45deg);
  }

  /* Offerte form */
  .of-form-card {
    background: var(--cream); border-radius: 24px;
    padding: 2.5rem; box-shadow: 0 20px 80px -32px rgba(14,39,72,0.22);
    border: 1px solid var(--line);
  }
  .of-head {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid var(--line);
  }
  .of-head .ttl {
    font-family: 'Archivo', sans-serif; font-weight: 800;
    color: var(--navy); font-size: 1.3rem; letter-spacing: -0.02em;
  }
  .of-head .badge {
    background: var(--mint); color: var(--navy);
    padding: 0.4rem 0.8rem; border-radius: 999px;
    font-family: 'JetBrains Mono', monospace; font-size: 0.65rem;
    letter-spacing: 0.15em; text-transform: uppercase; font-weight: 600;
  }
  .of-row { display: grid; gap: 0.85rem; margin-bottom: 0.85rem; }
  .of-row.two { grid-template-columns: 1fr 1fr; }
  .of-field { display: flex; flex-direction: column; gap: 0.4rem; }
  .of-field label {
    font-family: 'JetBrains Mono', monospace; font-size: 0.65rem;
    letter-spacing: 0.18em; text-transform: uppercase; color: var(--mute);
  }
  .of-field input, .of-field select {
    border: 1px solid var(--line); background: var(--cream-soft);
    padding: 0.85rem 1rem; border-radius: 10px;
    font-family: 'DM Sans', sans-serif; font-size: 0.95rem; color: var(--navy);
    transition: all 0.2s; outline: none;
  }
  .of-field input:focus, .of-field select:focus { border-color: var(--navy); background: white; }
  .of-submit-row {
    margin-top: 1.2rem; padding-top: 1.2rem; border-top: 1px solid var(--line);
    display: flex; gap: 1rem; align-items: center; justify-content: space-between;
  }
  .of-submit-row .note {
    font-family: 'JetBrains Mono', monospace; font-size: 0.65rem;
    letter-spacing: 0.15em; text-transform: uppercase; color: var(--mute);
    max-width: 240px; line-height: 1.4;
  }
  .of-submit-row button {
    background: var(--navy); color: var(--cream); border: none;
    padding: 1.1rem 1.8rem; border-radius: 999px; cursor: pointer;
    font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 0.95rem;
    display: inline-flex; align-items: center; gap: 0.6rem;
    transition: all 0.3s; flex-shrink: 0;
  }
  .of-submit-row button:hover { background: var(--navy-deep); transform: translateY(-2px); }

  @media (max-width: 768px) {
    .of-row.two { grid-template-columns: 1fr; }
    .of-submit-row { flex-direction: column; align-items: stretch; }
    .of-form-card { padding: 1.75rem; }
  }

  /* Manifesto cards onder de brush-headline */
  .manifesto-card {
    background: var(--cream-soft);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 2.25rem 2rem 2rem;
    position: relative;
    transition: all 0.4s cubic-bezier(.2,.7,.1,1);
    overflow: hidden;
    display: flex; flex-direction: column;
  }
  .manifesto-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--mint-deep);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(.2,.7,.1,1);
  }
  .manifesto-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 60px -28px rgba(14,39,72,0.2);
    border-color: rgba(14,39,72,0.2);
  }
  .manifesto-card:hover::before { transform: scaleX(1); }
  .manifesto-card .mc-icon {
    width: 56px; height: 56px;
    background: var(--mint);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    color: var(--navy);
    margin-bottom: 1.5rem;
    transition: transform 0.4s;
  }
  .manifesto-card:hover .mc-icon { transform: rotate(-4deg) scale(1.05); }
  .manifesto-card .mc-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--mute);
    margin-bottom: 0.65rem;
  }
  .manifesto-card .mc-title {
    font-family: 'Archivo', sans-serif;
    font-weight: 900;
    font-size: 1.45rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: var(--navy);
    margin: 0 0 0.75rem;
  }
  .manifesto-card .mc-body {
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--ink);
    opacity: 0.75;
    margin: 0;
  }

  /* Mint brush-stroke accent voor sommige woorden in headers */
  .brush-word {
    position: relative;
    display: inline-block;
    z-index: 1;
    white-space: nowrap;
  }
  .brush-mark {
    position: absolute;
    left: -2%;
    right: -2%;
    bottom: 4%;
    width: 104%;
    height: 38%;
    z-index: -1;
    opacity: 0.92;
    pointer-events: none;
  }

  /* === FULL-BLEED HERO === */
  .hero-fb {
    position: relative; min-height: 100vh;
    overflow: hidden; background: var(--navy-deep);
    color: var(--cream);
    display: flex; flex-direction: column;
  }
  .hero-fb .bg { position: absolute; inset: 0; z-index: 0; }
  .hero-fb .bg img {
    width: 100%; height: 100%; object-fit: cover;
    transform: scale(1.04);
    animation: heroFbZoom 16s ease-out infinite alternate;
  }
  @keyframes heroFbZoom {
    0% { transform: scale(1.02) translate(0, 0); }
    100% { transform: scale(1.08) translate(-1%, -0.5%); }
  }
  .hero-fb .veil {
    position: absolute; inset: 0; z-index: 1;
    background:
      linear-gradient(95deg,
        rgba(6,15,30,0.88) 0%,
        rgba(6,15,30,0.68) 38%,
        rgba(6,15,30,0.35) 65%,
        rgba(6,15,30,0.5) 100%),
      linear-gradient(180deg,
        rgba(6,15,30,0.35) 0%,
        rgba(6,15,30,0) 25%,
        rgba(6,15,30,0) 70%,
        rgba(6,15,30,0.75) 100%);
  }
  .hero-fb .live-pill-fb {
    position: absolute; top: 6.5rem; right: 2.5rem; z-index: 3;
    display: inline-flex; align-items: center; gap: 0.7rem;
    background: rgba(244,241,234,0.08); backdrop-filter: blur(14px);
    border: 1px solid rgba(244,241,234,0.18);
    padding: 0.65rem 1.1rem; border-radius: 999px;
    font-family: 'JetBrains Mono', monospace; font-size: 0.7rem;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--cream);
  }
  .hero-fb .live-pill-fb .dot {
    width: 7px; height: 7px; border-radius: 50%; background: var(--mint);
    box-shadow: 0 0 0 4px rgba(201,240,136,0.25);
    animation: heroFbPulse 2s infinite;
  }
  @keyframes heroFbPulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(0.85); opacity: 0.65; } }
  .hero-fb .content-fb {
    position: relative; z-index: 2; flex: 1;
    display: flex; align-items: center;
    padding: 7rem 2.5rem 4rem;
  }
  .hero-fb .inner-fb {
    max-width: 1300px; margin: 0 auto; width: 100%;
    display: grid; grid-template-columns: 1.4fr 1fr; gap: 4rem;
    align-items: end;
  }
  .hero-fb .eyebrow-fb {
    font-family: 'JetBrains Mono', monospace; font-size: 0.72rem;
    letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--mint); margin-bottom: 1.5rem;
    display: inline-flex; align-items: center; gap: 0.6rem;
  }
  .hero-fb .eyebrow-fb .line {
    height: 1px; width: 32px; background: var(--mint); opacity: 0.5;
  }
  .hero-fb h1.h1-fb {
    font-family: 'Archivo', sans-serif; font-weight: 900;
    font-size: clamp(48px, 6.5vw, 104px); letter-spacing: -0.038em;
    line-height: 0.97; color: var(--cream); margin: 0 0 1.5rem;
    text-shadow: 0 4px 40px rgba(6,15,30,0.5);
  }
  .hero-fb h1.h1-fb .accent { color: var(--mint); }
  .hero-fb .lead-fb {
    font-size: clamp(1rem, 1.2vw, 1.2rem); line-height: 1.55;
    max-width: 540px; opacity: 0.92; margin-bottom: 2.5rem;
  }
  .hero-fb .ctas-fb {
    display: flex; gap: 0.85rem; flex-wrap: wrap; align-items: center;
  }
  .hero-fb .cta-primary-fb {
    background: var(--mint); color: var(--navy);
    padding: 1.15rem 1.85rem; border-radius: 999px;
    text-decoration: none; font-weight: 700; font-size: 1.05rem;
    display: inline-flex; align-items: center; gap: 0.7rem;
    transition: all 0.3s;
    box-shadow: 0 14px 40px -12px rgba(201,240,136,0.45);
  }
  .hero-fb .cta-primary-fb:hover {
    background: var(--mint-deep); transform: translateY(-3px);
    box-shadow: 0 18px 50px -12px rgba(201,240,136,0.6);
  }
  .hero-fb .cta-primary-fb svg { transition: transform 0.3s; }
  .hero-fb .cta-primary-fb:hover svg { transform: rotate(-12deg) scale(1.1); }
  .hero-fb .cta-secondary-fb {
    border: 1px solid rgba(244,241,234,0.45);
    color: var(--cream); padding: 1.1rem 1.7rem;
    border-radius: 999px; text-decoration: none;
    font-weight: 500; font-size: 0.95rem;
    display: inline-flex; align-items: center; gap: 0.55rem;
    transition: all 0.3s; backdrop-filter: blur(8px);
  }
  .hero-fb .cta-secondary-fb:hover {
    background: var(--cream); color: var(--navy);
    border-color: var(--cream); transform: translateY(-2px);
  }
  .hero-fb .info-card-fb {
    align-self: end;
    background: rgba(244,241,234,0.06);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(244,241,234,0.18);
    border-radius: 24px; padding: 1.75rem;
    color: var(--cream);
    max-width: 340px; justify-self: end;
  }
  .hero-fb .ic-head-fb {
    display: flex; align-items: center; justify-content: space-between;
    padding-bottom: 1rem; margin-bottom: 1rem;
    border-bottom: 1px solid rgba(244,241,234,0.15);
  }
  .hero-fb .ic-head-fb .ttl {
    font-family: 'JetBrains Mono', monospace; font-size: 0.7rem;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: rgba(244,241,234,0.7);
  }
  .hero-fb .ic-head-fb .badge {
    background: var(--mint); color: var(--navy);
    padding: 0.3rem 0.65rem; border-radius: 999px;
    font-family: 'JetBrains Mono', monospace; font-size: 0.58rem;
    letter-spacing: 0.15em; text-transform: uppercase; font-weight: 700;
  }
  .hero-fb .ic-rows-fb { display: flex; flex-direction: column; gap: 0.85rem; }
  .hero-fb .ic-row-fb {
    display: flex; justify-content: space-between; align-items: center;
    font-size: 0.88rem;
  }
  .hero-fb .ic-row-fb .lbl { color: rgba(244,241,234,0.65); }
  .hero-fb .ic-row-fb .val {
    font-family: 'Archivo', sans-serif; font-weight: 700;
    color: var(--cream);
  }
  .hero-fb .ic-row-fb .val.mint { color: var(--mint); }
  .hero-fb .trust-strip-fb {
    position: relative; z-index: 2;
    padding: 1.3rem 2.5rem;
    border-top: 1px solid rgba(244,241,234,0.15);
    display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
    gap: 0.5rem 2rem;
    font-family: 'JetBrains Mono', monospace; font-size: 0.7rem;
    letter-spacing: 0.22em; text-transform: uppercase; color: rgba(244,241,234,0.7);
  }
  .hero-fb .trust-strip-fb .sep { opacity: 0.3; }
  @media (max-width: 900px) {
    .hero-fb .inner-fb { grid-template-columns: 1fr; gap: 2rem; }
    .hero-fb .live-pill-fb { right: 1rem; top: 5rem; }
    .hero-fb .info-card-fb { max-width: 100%; justify-self: stretch; }
  }

  /* nav frosted glass for readability over any background */
  header#nav {
    backdrop-filter: blur(14px);
    background: rgba(245,241,232,0.82);
    border-bottom: 1px solid rgba(14,39,72,0.06);
  }

  /* Dark contact form (Netlify) */
  .ct-form { margin-bottom: 3rem; }
  .ct-row { display: grid; gap: 0.85rem; margin-bottom: 0.85rem; }
  .ct-row.two { grid-template-columns: 1fr 1fr; }
  .ct-field { display: flex; flex-direction: column; gap: 0.4rem; }
  .ct-field label {
    font-family: 'JetBrains Mono', monospace; font-size: 0.62rem;
    letter-spacing: 0.18em; text-transform: uppercase; color: rgba(244,241,234,0.5);
  }
  .ct-field input, .ct-field select, .ct-field textarea {
    border: 1px solid rgba(244,241,234,0.18);
    background: rgba(244,241,234,0.04);
    padding: 0.85rem 1rem; border-radius: 12px;
    font-family: 'DM Sans', sans-serif; font-size: 0.95rem; color: var(--cream);
    outline: none; transition: all 0.2s; width: 100%;
  }
  .ct-field input::placeholder, .ct-field textarea::placeholder { color: rgba(244,241,234,0.35); }
  .ct-field input:focus, .ct-field select:focus, .ct-field textarea:focus {
    border-color: var(--mint); background: rgba(244,241,234,0.07);
  }
  .ct-field select option { background: var(--navy-deep); color: var(--cream); }
  .ct-field textarea { resize: vertical; min-height: 90px; }
  .ct-submit {
    margin-top: 0.5rem;
    display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  }
  .ct-submit .note {
    font-family: 'JetBrains Mono', monospace; font-size: 0.62rem;
    letter-spacing: 0.15em; text-transform: uppercase; color: rgba(244,241,234,0.45);
    max-width: 240px; line-height: 1.5;
  }
  .ct-submit button {
    background: var(--mint); color: var(--navy); border: none;
    padding: 1.05rem 1.8rem; border-radius: 999px; cursor: pointer;
    font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 0.98rem;
    display: inline-flex; align-items: center; gap: 0.6rem;
    transition: all 0.3s;
  }
  .ct-submit button:hover { background: var(--mint-deep); transform: translateY(-2px); }
  @media (max-width: 640px) {
    .ct-row.two { grid-template-columns: 1fr; }
    .ct-submit { flex-direction: column; align-items: stretch; }
    .ct-submit button { width: 100%; justify-content: center; }
  }

  /* Mobile menu links */
  .mobile-link {
    font-family: 'Archivo', sans-serif; font-weight: 800;
    font-size: 1.75rem; letter-spacing: -0.02em;
    color: var(--cream); text-decoration: none;
    padding: 0.6rem 0; display: block;
    border-bottom: 1px solid rgba(244,241,234,0.1);
    transition: color 0.2s, padding-left 0.2s;
  }
  .mobile-link:active, .mobile-link:hover { color: var(--mint); padding-left: 0.4rem; }

  /* Mobile menu open state */
  #mobile-menu.is-open { visibility: visible !important; }
  #mobile-menu.is-open #mobile-menu-backdrop { opacity: 1; }
  #mobile-menu.is-open #mobile-menu-panel { transform: translateX(0) !important; }
  body.menu-locked { overflow: hidden; }

  /* hamburger -> X animation */
  #menu-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  #menu-toggle.is-active span:nth-child(2) { opacity: 0; }
  #menu-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* ============================================ */
  /* MOBILE TUNING — ≤640px                        */
  /* ============================================ */
  @media (max-width: 640px) {
    /* Full-bleed hero */
    .hero-fb { min-height: 92vh; }
    .hero-fb .content-fb { padding: 6rem 1.25rem 2.5rem; align-items: center; }
    .hero-fb .inner-fb { gap: 1.5rem; }
    .hero-fb h1.h1-fb { font-size: clamp(40px, 12vw, 60px); }
    .hero-fb .lead-fb { font-size: 1rem; margin-bottom: 1.75rem; }
    .hero-fb .ctas-fb { flex-direction: column; align-items: stretch; }
    .hero-fb .cta-primary-fb, .hero-fb .cta-secondary-fb { justify-content: center; width: 100%; }
    .hero-fb .live-pill-fb { top: 5rem; right: 1rem; font-size: 0.6rem; padding: 0.5rem 0.85rem; }
    .hero-fb .info-card-fb { padding: 1.4rem; }
    .hero-fb .trust-strip-fb { padding: 1rem 1.25rem; gap: 0.4rem 1rem; font-size: 0.58rem; letter-spacing: 0.15em; }
    .hero-fb .veil {
      background:
        linear-gradient(180deg, rgba(6,15,30,0.55) 0%, rgba(6,15,30,0.35) 40%, rgba(6,15,30,0.85) 100%);
    }

    /* General section padding */
    section { padding-left: 0; padding-right: 0; }

    /* Manifesto */
    .manifesto-card { padding: 1.75rem 1.5rem 1.5rem; }
    .brush-word { white-space: normal; }

    /* Marquee / mega type tone down */
    .h-mega { font-size: clamp(44px, 13vw, 72px) !important; }

    /* Forms stack */
    .of-row.two { grid-template-columns: 1fr; }
    .of-submit-row { flex-direction: column; align-items: stretch; gap: 0.85rem; }
    .of-submit-row button { width: 100%; justify-content: center; }

    /* Touch targets: larger tap area on nav contact */
    .btn { padding: 0.9rem 1.4rem; }
  }

  /* Tablet tuning */
  @media (max-width: 900px) and (min-width: 641px) {
    .hero-fb h1.h1-fb { font-size: clamp(52px, 8vw, 80px); }
    .hero-fb .ctas-fb { flex-wrap: wrap; }
  }

  /* logomark */
  .logomark {
    position: relative; display: inline-flex; align-items: center; justify-content: center;
    width: 44px; height: 44px; background: var(--sky); border-radius: 8px;
    color: var(--cream); font-family: 'Archivo', sans-serif; font-weight: 900;
    font-size: 28px; line-height: 1; padding-bottom: 2px;
    overflow: hidden;
  }
  .logomark::before {
    content: ''; position: absolute; top: 42%; left: 10%; width: 80%; height: 3px;
    background: var(--cream); transform: translateY(-50%);
  }

  @media (max-width: 768px) {
    .hero-grid-mobile { grid-template-columns: 1fr !important; }
    .stats-card-mobile { position: relative !important; inset: auto !important; margin-top: 1rem; }
    .git-mega { font-size: clamp(48px, 14vw, 90px); }
  }

  /* ============================================ */
  /* V6 — toevoegingen (materieel, FAQ, a11y)      */
  /* ============================================ */

  .skip-link {
    position: absolute; left: -9999px; top: 0; z-index: 10001;
    background: var(--navy); color: var(--cream); padding: .8rem 1.3rem;
    border-radius: 0 0 12px 0; font-family: 'DM Sans', sans-serif; font-weight: 600;
  }
  .skip-link:focus { left: 0; }

  a:focus-visible, button:focus-visible, input:focus-visible,
  select:focus-visible, textarea:focus-visible, summary:focus-visible {
    outline: 3px solid var(--sky-bright); outline-offset: 3px; border-radius: 6px;
  }

  /* Capability chip */
  .cap-chip {
    display: inline-flex; align-items: center; gap: .55rem;
    padding: .55rem 1rem; border-radius: 999px;
    border: 1px solid var(--line); background: var(--cream-soft);
    font-family: 'JetBrains Mono', monospace; font-size: .66rem;
    letter-spacing: .14em; text-transform: uppercase; color: var(--navy);
  }
  .cap-chip .d { width: 7px; height: 7px; border-radius: 50%; background: var(--mint-deep); }

  /* Materieel cards */
  .mat-card {
    background: var(--cream-soft); border: 1px solid var(--line);
    border-radius: 22px; overflow: hidden; display: flex; flex-direction: column;
    transition: transform .4s, border-color .4s;
  }
  .mat-card:hover { transform: translateY(-4px); border-color: var(--navy); }
  .mat-card .mat-img { aspect-ratio: 16/10; overflow: hidden; background: var(--steel); }
  .mat-card .mat-img img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform 1.2s cubic-bezier(.2,.7,.1,1);
  }
  .mat-card:hover .mat-img img { transform: scale(1.04); }
  .mat-card .mat-body { padding: 1.6rem 1.5rem 1.5rem; display: flex; flex-direction: column; gap: .8rem; flex: 1; }
  .mat-card .mat-num {
    font-family: 'JetBrains Mono', monospace; font-size: .6rem;
    letter-spacing: .2em; text-transform: uppercase; color: var(--mute);
  }
  .mat-card h3 {
    font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 1.35rem;
    letter-spacing: -.02em; color: var(--navy); line-height: 1.15;
  }
  .mat-card p { color: var(--ink); font-size: .95rem; }

  .spec-list { margin-top: auto; border-top: 1px solid var(--line); padding-top: .9rem; display: flex; flex-direction: column; gap: .55rem; }
  .spec-row { display: flex; justify-content: space-between; gap: 1rem; align-items: baseline; }
  .spec-row .k {
    font-family: 'JetBrains Mono', monospace; font-size: .6rem;
    letter-spacing: .16em; text-transform: uppercase; color: var(--mute);
  }
  .spec-row .v { font-family: 'JetBrains Mono', monospace; font-size: .72rem; color: var(--navy); text-align: right; }
  .spec-row .v.todo { color: var(--mute); border-bottom: 1px dashed var(--mute); }

  /* FAQ */
  .faq-item { border-bottom: 1px solid var(--line); }
  .faq-item summary {
    list-style: none; cursor: pointer; padding: 1.5rem 0;
    display: flex; gap: 1.5rem; align-items: baseline; justify-content: space-between;
    font-family: 'Archivo', sans-serif; font-weight: 800;
    font-size: clamp(19px, 2.1vw, 27px); letter-spacing: -.02em; color: var(--navy);
  }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-item summary .plus {
    flex-shrink: 0; width: 34px; height: 34px; border-radius: 50%;
    border: 1px solid var(--line); display: flex; align-items: center; justify-content: center;
    transition: all .3s; color: var(--navy); font-size: 1.15rem; line-height: 1;
  }
  .faq-item[open] summary .plus { background: var(--navy); color: var(--cream); transform: rotate(45deg); }
  .faq-item .faq-a { padding: 0 0 1.6rem; max-width: 780px; color: var(--ink); font-size: 1.02rem; }
  .faq-item .faq-a ul { margin-top: .7rem; padding-left: 1.15rem; list-style: disc; }
  .faq-item .faq-a li { margin-bottom: .25rem; }

  /* Stappen */
  .step-card { background: var(--cream-soft); border: 1px solid var(--line); border-radius: 22px; padding: 1.8rem 1.6rem; }
  .step-card .s-num {
    font-family: 'JetBrains Mono', monospace; font-size: .6rem;
    letter-spacing: .2em; text-transform: uppercase; color: var(--mute); margin-bottom: .9rem;
  }
  .step-card h3 {
    font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 1.3rem;
    color: var(--navy); margin-bottom: .5rem; letter-spacing: -.02em;
  }
  .step-card p { color: var(--ink); font-size: .95rem; }

  /* Spoedpaneel bij het formulier */
  .spoed-panel {
    border-radius: 22px; padding: 1.4rem 1.6rem;
    background: rgba(201,240,136,0.10); border: 1px solid rgba(201,240,136,0.35);
    display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between;
    margin-bottom: 2rem;
  }

  /* Diensten-kop op donkere achtergrond */
  .svc-heading {
    font-family: 'Archivo', sans-serif; font-weight: 900; color: var(--cream);
    font-size: clamp(34px, 4.2vw, 60px); letter-spacing: -.03em; line-height: 1; margin-bottom: 2.5rem;
  }

  .placeholder-note {
    font-family: 'JetBrains Mono', monospace; font-size: .62rem;
    letter-spacing: .15em; text-transform: uppercase; color: var(--mute);
  }

  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: .001ms !important; animation-iteration-count: 1 !important;
      transition-duration: .001ms !important; scroll-behavior: auto !important;
    }
    .ticker, .word-marquee, .hero-fb .bg img { animation: none !important; }
  }
  /* ============================================ */
  /* SPOED-CTA STRIP — schuift uit de menubalk      */
  /* ============================================ */
  .nav-cta {
    background: var(--navy-deep);
    border-bottom: 1px solid rgba(244,241,234,0.14);
    box-shadow: 0 14px 40px rgba(6,15,30,0.20);
    max-height: 0; opacity: 0; overflow: hidden;
    transition: max-height .45s cubic-bezier(.2,.7,.1,1), opacity .3s ease;
  }
  #nav.cta-open .nav-cta { max-height: 120px; opacity: 1; }
  body.menu-locked #nav .nav-cta { max-height: 0; opacity: 0; }

  .nav-cta .nc-inner {
    max-width: 1400px; margin: 0 auto;
    padding: .7rem 1.5rem;
    display: flex; align-items: center; justify-content: space-between; gap: .8rem 2rem;
  }
  .nav-cta .nc-msg { display: flex; align-items: center; gap: .85rem; color: var(--cream); min-width: 0; }
  .nav-cta .nc-pulse {
    width: 9px; height: 9px; border-radius: 50%; background: var(--mint);
    flex-shrink: 0; animation: pulse 2s ease-in-out infinite;
  }
  .nav-cta .nc-t {
    display: block; font-family: 'Archivo', sans-serif; font-weight: 800;
    font-size: 1.02rem; letter-spacing: -.02em; line-height: 1.15;
  }
  .nav-cta .nc-s {
    display: block; margin-top: .22rem; font-family: 'JetBrains Mono', monospace;
    font-size: .58rem; letter-spacing: .18em; text-transform: uppercase;
    color: rgba(244,241,234,0.55);
  }
  .nav-cta .nc-acts { display: flex; align-items: center; gap: .55rem; flex-shrink: 0; }
  .nav-cta .nc-call, .nav-cta .nc-form {
    display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
    border-radius: 999px; padding: .7rem 1.3rem; white-space: nowrap;
    font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: .92rem;
    text-decoration: none; transition: all .3s;
  }
  .nav-cta .nc-call { background: var(--mint); color: var(--navy); }
  .nav-cta .nc-call:hover { background: var(--mint-deep); transform: translateY(-2px); }
  .nav-cta .nc-form { border: 1px solid rgba(244,241,234,0.3); color: var(--cream); }
  .nav-cta .nc-form:hover { background: var(--cream); color: var(--navy); border-color: var(--cream); }

  @media (max-width: 900px) {
    .nav-cta .nc-s { display: none; }
    .nav-cta .nc-inner { padding: .6rem 1rem; gap: .7rem; }
    .nav-cta .nc-t { font-size: .88rem; }
    .nav-cta .nc-call, .nav-cta .nc-form { padding: .68rem 1rem; font-size: .86rem; }
  }
  @media (max-width: 640px) {
    .nav-cta .nc-msg { display: none; }
    .nav-cta .nc-acts { width: 100%; }
    .nav-cta .nc-call, .nav-cta .nc-form { flex: 1; padding: .8rem .7rem; font-size: .85rem; }
  }
  /* ============================================ */
  /* FORMULIER — leesbaarheid                      */
  /* ============================================ */
  .ct-row { gap: 1.1rem; margin-bottom: 1.15rem; }
  .ct-field { gap: 0.5rem; }

  .ct-field label {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.92rem; font-weight: 600;
    letter-spacing: 0; text-transform: none;
    color: rgba(244,241,234,0.92);
  }
  .ct-field label .req { color: var(--mint); font-weight: 700; margin-left: .1rem; }

  .ct-field input, .ct-field select, .ct-field textarea {
    background: rgba(244,241,234,0.06);
    border: 1px solid rgba(244,241,234,0.28);
    border-radius: 14px;
    color: var(--cream);
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem; line-height: 1.4;
    padding: 0.95rem 1.1rem;
    color-scheme: dark;
    transition: border-color .25s, background .25s, box-shadow .25s;
  }
  .ct-field input::placeholder, .ct-field textarea::placeholder { color: rgba(244,241,234,0.58); }
  .ct-field input:hover, .ct-field select:hover, .ct-field textarea:hover { border-color: rgba(244,241,234,0.45); }
  .ct-field input:focus, .ct-field select:focus, .ct-field textarea:focus {
    outline: none; border-color: var(--mint);
    background: rgba(244,241,234,0.10);
    box-shadow: 0 0 0 3px rgba(201,240,136,0.20);
  }
  .ct-field textarea { min-height: 120px; }

  .ct-field select {
    appearance: none; -webkit-appearance: none;
    padding-right: 2.8rem;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23F5F1E8' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
    background-repeat: no-repeat;
    background-position: right 1.1rem center;
    background-size: 15px;
  }
  .ct-field select option { background: var(--navy-deep); color: var(--cream); }

  .ct-legend {
    display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between;
    gap: .4rem 1.5rem; margin-bottom: 1.4rem;
  }
  .ct-legend .lg-t {
    font-family: 'JetBrains Mono', monospace; font-size: .72rem;
    letter-spacing: .18em; text-transform: uppercase; color: rgba(244,241,234,0.72);
  }
  .ct-legend .lg-s { font-family: 'DM Sans', sans-serif; font-size: .88rem; color: rgba(244,241,234,0.68); }
  .ct-legend .lg-s .req { color: var(--mint); font-weight: 700; }

  .ct-submit { gap: 1.5rem; }
  .ct-submit .note {
    font-family: 'DM Sans', sans-serif; font-size: .88rem;
    letter-spacing: 0; text-transform: none; line-height: 1.5;
    color: rgba(244,241,234,0.72); max-width: 380px;
  }
  .ct-submit button { font-size: 1rem; padding: 1.05rem 1.9rem; }

  @media (max-width: 640px) {
    .ct-field input, .ct-field select, .ct-field textarea { font-size: 16px; }
  }
  /* ============================================ */
  /* SPOED IN DE MENUBALK                          */
  /* ============================================ */
  .nav-spoed {
    display: inline-flex; align-items: center; gap: .55rem;
    background: var(--mint); color: var(--navy);
    border-radius: 999px; padding: .58rem 1.15rem;
    font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: .88rem;
    text-decoration: none; white-space: nowrap; transition: all .3s;
  }
  .nav-spoed:hover { background: var(--mint-deep); transform: translateY(-2px); }
  .nav-spoed .ns-dot {
    width: 8px; height: 8px; border-radius: 50%; background: var(--navy);
    flex-shrink: 0; animation: pulse 2s ease-in-out infinite;
  }
  .nav-spoed .ns-num { font-family: 'JetBrains Mono', monospace; font-size: .78rem; }
  @media (max-width: 1150px) { .nav-spoed .ns-num { display: none; } }

  .nav-spoed-mob {
    display: inline-flex; align-items: center; justify-content: center;
    width: 44px; height: 44px; border-radius: 999px;
    background: var(--mint); color: var(--navy); text-decoration: none; transition: all .3s;
  }
  .nav-spoed-mob:hover { background: var(--mint-deep); }

  .mobile-link.is-spoed { color: var(--mint); display: flex; align-items: center; gap: .6rem; }
  .mobile-link.is-spoed .ns-dot {
    width: 9px; height: 9px; border-radius: 50%; background: var(--mint);
    flex-shrink: 0; animation: pulse 2s ease-in-out infinite;
  }
  /* ============================================ */
  /* SPOED-KNOP — pulserende aandachttrekker        */
  /* ============================================ */
  @keyframes spoedRing {
    0%   { box-shadow: 0 0 0 0 rgba(201,240,136,0.60), 0 0 20px rgba(201,240,136,0.30); }
    70%  { box-shadow: 0 0 0 15px rgba(201,240,136,0), 0 0 20px rgba(201,240,136,0.08); }
    100% { box-shadow: 0 0 0 0 rgba(201,240,136,0), 0 0 20px rgba(201,240,136,0.30); }
  }
  @keyframes spoedTint {
    0%, 100% { background-color: var(--mint); }
    50%      { background-color: var(--mint-deep); }
  }

  .nav-spoed, .nav-spoed-mob {
    animation: spoedRing 2.4s cubic-bezier(.2,.7,.1,1) infinite,
               spoedTint 2.4s ease-in-out infinite;
    will-change: box-shadow;
  }
  .nav-spoed:hover, .nav-spoed-mob:hover,
  .nav-spoed:focus-visible, .nav-spoed-mob:focus-visible {
    animation-play-state: paused;
    background-color: var(--mint-deep);
    box-shadow: 0 0 0 4px rgba(201,240,136,0.28);
  }

  .nav-spoed { font-weight: 800; letter-spacing: .01em; }
  .nav-spoed .ns-dot { width: 9px; height: 9px; }

  /* ============================================ */
  /* MULTIPAGE — paginakop, breadcrumb, CTA-band   */
  /* ============================================ */

  .nav-link.is-active::after { transform: scaleX(1); }
  .nav-link.is-active { font-weight: 700; }

  /* Paginakop op subpagina's */
  .page-hero {
    background: var(--navy-deep); color: var(--cream);
    padding: 9rem 0 4.5rem; position: relative; overflow: hidden;
  }
  .page-hero::after {
    content: ''; position: absolute; right: -120px; top: -120px;
    width: 380px; height: 380px; border-radius: 50%;
    background: radial-gradient(circle, rgba(94,189,238,0.16), transparent 68%);
    pointer-events: none;
  }
  .page-hero .ph-inner { max-width: 1400px; margin: 0 auto; padding: 0 1.5rem; position: relative; z-index: 1; }
  .page-hero h1 {
    font-family: 'Archivo', sans-serif; font-weight: 900; color: var(--cream);
    font-size: clamp(36px, 5.4vw, 76px); letter-spacing: -.035em; line-height: 1.02;
    max-width: 16ch;
  }
  .page-hero .ph-lead {
    margin-top: 1.5rem; font-size: clamp(17px, 1.5vw, 21px);
    color: rgba(244,241,234,0.82); max-width: 62ch; line-height: 1.55;
  }
  .page-hero .ph-ctas { margin-top: 2.25rem; display: flex; flex-wrap: wrap; gap: .75rem; }

  /* Breadcrumb */
  .crumbs {
    font-family: 'JetBrains Mono', monospace; font-size: .66rem;
    letter-spacing: .16em; text-transform: uppercase;
    color: rgba(244,241,234,0.55); margin-bottom: 1.75rem;
    display: flex; flex-wrap: wrap; gap: .5rem; align-items: center;
  }
  .crumbs a { color: rgba(244,241,234,0.8); text-decoration: none; }
  .crumbs a:hover { color: var(--mint); }
  .crumbs .sep { opacity: .4; }
  .crumbs [aria-current] { color: var(--mint); }

  /* Tekstblokken op contentpagina's */
  .prose { max-width: 68ch; color: var(--ink); font-size: 1.05rem; line-height: 1.65; }
  .prose > * + * { margin-top: 1.1rem; }
  .prose h2 {
    font-family: 'Archivo', sans-serif; font-weight: 900; color: var(--navy);
    font-size: clamp(26px, 3.2vw, 42px); letter-spacing: -.03em; line-height: 1.1;
    margin-top: 3rem;
  }
  .prose h3 {
    font-family: 'Archivo', sans-serif; font-weight: 800; color: var(--navy);
    font-size: clamp(19px, 2vw, 25px); letter-spacing: -.02em; margin-top: 2rem;
  }
  .prose ul { padding-left: 1.2rem; list-style: disc; }
  .prose ul li { margin-top: .4rem; }
  .prose strong { font-weight: 700; color: var(--navy); }
  .prose a { color: var(--navy); border-bottom: 1px solid var(--mint-deep); text-decoration: none; }
  .prose a:hover { background: rgba(201,240,136,0.28); }

  /* Antwoord-eerst blok */
  .answer-box {
    background: var(--cream-soft); border: 1px solid var(--line);
    border-left: 4px solid var(--mint-deep);
    border-radius: 18px; padding: 1.6rem 1.8rem; max-width: 72ch;
  }
  .answer-box .ab-q {
    font-family: 'JetBrains Mono', monospace; font-size: .62rem;
    letter-spacing: .18em; text-transform: uppercase; color: var(--mute); margin-bottom: .6rem;
  }
  .answer-box p { color: var(--ink); font-size: 1.08rem; line-height: 1.6; }

  /* CTA-band onderaan pagina's */
  .cta-band {
    background: var(--navy-deep); color: var(--cream);
    border-radius: 28px; padding: 2.75rem 2.5rem;
    display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem 2rem;
  }
  .cta-band h2 {
    font-family: 'Archivo', sans-serif; font-weight: 900; color: var(--cream);
    font-size: clamp(26px, 3.4vw, 44px); letter-spacing: -.03em; line-height: 1.05; max-width: 18ch;
  }
  .cta-band p { color: rgba(244,241,234,0.72); margin-top: .75rem; max-width: 46ch; }
  .cta-band .cb-acts { display: flex; flex-wrap: wrap; gap: .7rem; }

  /* Verwante links */
  .link-card {
    display: block; text-decoration: none;
    background: var(--cream-soft); border: 1px solid var(--line); border-radius: 18px;
    padding: 1.35rem 1.5rem; transition: transform .35s, border-color .35s, background .35s;
  }
  .link-card:hover { transform: translateY(-3px); border-color: var(--navy); background: var(--cream-warm); }
  .link-card .lc-k {
    font-family: 'JetBrains Mono', monospace; font-size: .58rem;
    letter-spacing: .2em; text-transform: uppercase; color: var(--mute);
  }
  .link-card .lc-t {
    display: block; margin-top: .5rem; font-family: 'Archivo', sans-serif;
    font-weight: 800; font-size: 1.12rem; letter-spacing: -.02em; color: var(--navy);
  }
  .link-card .lc-d { display: block; margin-top: .4rem; font-size: .92rem; color: var(--ink); opacity: .82; }

  /* Dienstenlijst als links */
  .svc-item a { display: flex; align-items: baseline; justify-content: space-between; gap: 2rem; width: 100%; text-decoration: none; }
  .svc-item a:hover h3 { color: var(--cream); transform: translateX(8px); }

  @media (max-width: 768px) {
    .page-hero { padding: 7.5rem 0 3.25rem; }
    .cta-band { padding: 2rem 1.5rem; border-radius: 22px; }
    .cta-band .cb-acts { width: 100%; }
    .cta-band .cb-acts .btn { flex: 1; justify-content: center; }
  }

  /* ============================================ */
  /* MOBIEL — laatste afstelling                   */
  /* ============================================ */
  [id] { scroll-margin-top: 104px; }

  @media (max-width: 640px) {
    .page-hero .ph-ctas { flex-direction: column; align-items: stretch; }
    .page-hero .ph-ctas .btn { justify-content: center; width: 100%; }
    .page-hero h1 { max-width: none; }
    .crumbs { font-size: .58rem; letter-spacing: .12em; }
    .cta-band h2 { font-size: clamp(24px, 7vw, 34px); }
    .cta-band p { font-size: .95rem; }
    .prose { font-size: 1rem; }
    .prose h2 { margin-top: 2.25rem; }
    .answer-box { padding: 1.3rem 1.3rem; border-radius: 16px; }
    .link-card { padding: 1.15rem 1.25rem; }
    .svc-item { padding: 1.15rem 0; }
    .svc-item h3 { font-size: clamp(22px, 6.5vw, 30px); }
    .mat-card .mat-body { padding: 1.35rem 1.25rem 1.25rem; }
    .faq-item summary { padding: 1.2rem 0; gap: 1rem; }
  }

  @media (max-width: 380px) {
    .nav-spoed-mob { width: 42px; height: 42px; }
    .nav-cta .nc-call, .nav-cta .nc-form { font-size: .8rem; padding: .75rem .6rem; }
  }

  /* ============================================ */
  /* MATERIEELKAARTEN — leesbaarheid               */
  /* ============================================ */
  .mat-card .mat-num {
    font-size: .68rem; letter-spacing: .16em;
    color: var(--sky-dim); font-weight: 500;
  }
  .mat-card h3 { font-size: 1.4rem; line-height: 1.2; }
  .mat-card p { font-size: 1rem; line-height: 1.6; color: var(--ink); opacity: .92; }

  .spec-list { gap: .7rem; padding-top: 1.1rem; }
  .spec-row .k {
    font-family: 'DM Sans', sans-serif; font-size: .85rem; font-weight: 500;
    letter-spacing: 0; text-transform: none; color: rgba(14,39,72,0.68);
  }
  .spec-row .v {
    font-family: 'DM Sans', sans-serif; font-size: .88rem; font-weight: 700;
    color: var(--navy); text-align: right;
  }
  .spec-row .v.todo {
    font-weight: 600; color: #2E6E92; border-bottom: none;
    background: rgba(46,127,168,0.10); border: 1px dashed rgba(46,127,168,0.42);
    border-radius: 999px; padding: .1rem .6rem; font-size: .76rem; white-space: nowrap;
  }

  /* Notitieregels: leesbaar op licht én donker */
  .placeholder-note {
    font-family: 'DM Sans', sans-serif; font-size: .9rem;
    letter-spacing: 0; text-transform: none; line-height: 1.55;
    color: inherit; opacity: .72;
  }

  @media (max-width: 640px) {
    .mat-card h3 { font-size: 1.25rem; }
    .spec-row .k, .spec-row .v { font-size: .82rem; }
  }

  /* ============================================ */
  /* HERO-CTA — nadrukkelijker                     */
  /* ============================================ */
  .hero-fb .ctas-fb { margin-top: 2.4rem; gap: 1rem; }
  .hero-fb .cta-primary-fb {
    padding: 1.25rem 2.15rem; font-size: 1.1rem; font-weight: 800;
    box-shadow: 0 12px 36px rgba(201,240,136,0.32);
  }
  .hero-fb .cta-primary-fb:hover { box-shadow: 0 16px 44px rgba(201,240,136,0.45); }
  .hero-fb .cta-secondary-fb {
    background: rgba(6,15,30,0.42);
    -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
    border: 1px solid rgba(244,241,234,0.55); color: var(--cream);
    padding: 1.2rem 1.75rem; font-weight: 700; font-size: 1rem;
    display: inline-flex; align-items: center; gap: .65rem;
  }
  .hero-fb .cta-secondary-fb:hover { background: var(--cream); color: var(--navy); border-color: var(--cream); }
  .hero-fb .cta-hint {
    margin-top: 1rem; font-family: 'JetBrains Mono', monospace; font-size: .62rem;
    letter-spacing: .16em; text-transform: uppercase; color: rgba(244,241,234,0.62);
  }
  @media (max-width: 640px) {
    .hero-fb .cta-primary-fb { padding: 1.15rem 1.5rem; font-size: 1rem; }
    .hero-fb .cta-secondary-fb { padding: 1.1rem 1.5rem; }
  }

  /* Erkenningslogo's */
  .cert-cell {
    background: #fff; border: 1px solid var(--line); border-radius: 16px;
    min-height: 96px; display: flex; align-items: center; justify-content: center;
    padding: 1rem; transition: transform .3s, border-color .3s;
  }
  .cert-cell:hover { transform: translateY(-3px); border-color: var(--navy); }
  .cert-cell img { max-height: 52px; max-width: 100%; width: auto; object-fit: contain; }

  /* Fotogalerij: tegels zijn links naar de grote versie */
  a.wagen-tile { display: block; text-decoration: none; }
