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

    :root {
      --blauw:    #0D2B4E;
      --groen:    #3A8C3F;
      --groen-licht: #E8F5E9;
      --geel:     #F59E0B;
      --geel-licht: #FFFBEB;
      --oranje:   #EA580C;
      --oranje-licht: #FFF3EE;
      --rood:     #DC2626;
      --rood-licht: #FEF2F2;
      --grijs:    #F0F2F5;
      --grijs-2:  #E2E6EA;
      --grijs-3:  #9CA3AF;
      --tekst:    #1A2E42;
      --wit:      #FFFFFF;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Inter', sans-serif;
      color: var(--tekst);
      background: var(--wit);
      font-size: 16px;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

    h1, h2, h3, h4 { font-family: 'Montserrat', sans-serif; line-height: 1.2; }

    /* ─── NAV ─────────────────────────────────────────────── */
    nav {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(255,255,255,0.97);
      backdrop-filter: blur(8px);
      border-bottom: 1px solid var(--grijs-2);
      padding: 0 5%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 80px;
    }


    .nav-logo-img {
      height: 42px;
      width: auto;
      object-fit: contain;
    }
    .footer-logo .nav-logo-img {
      height: 34px;
      vertical-align: middle;
    }
    .nav-logo {
      font-family: 'Montserrat', sans-serif;
      font-size: 1.35rem;
      font-weight: 800;
      letter-spacing: -0.02em;
      text-decoration: none;
      line-height: 1;
      display: flex;
      align-items: center;
      gap: 0.4rem;
    }
    .wordmark { display: inline-flex; }
    .nav-logo span:first-of-type { color: var(--blauw); margin-bottom: 6px; }
    .nav-logo span:last-of-type  { color: var(--groen); margin-bottom: 6px; }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 2rem;
      list-style: none;
    }
    .nav-links a {
      color: var(--blauw);
      text-decoration: none;
      font-size: 0.9rem;
      font-weight: 500;
      opacity: 0.75;
      transition: opacity .2s;
    }
    .nav-links a:hover { opacity: 1; }

    .btn-nav {
      background: var(--groen);
      color: var(--wit) !important;
      opacity: 1 !important;
      padding: 0.5rem 1.1rem;
      border-radius: 8px;
      font-weight: 600 !important;
      font-size: 0.875rem !important;
      transition: background .2s !important;
    }
    .btn-nav:hover { background: #2d6e32 !important; }

    /* ─── HERO ────────────────────────────────────────────── */
    .hero {
      padding: 80px 5% 72px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
    }

    .hero-label {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: var(--groen-licht);
      color: var(--groen);
      border: 1px solid #b7dfb9;
      border-radius: 100px;
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      padding: 0.3rem 0.85rem;
      margin-bottom: 1.25rem;
    }
    .hero-label::before {
      content: '';
      width: 7px; height: 7px;
      background: var(--groen);
      border-radius: 50%;
    }

    .hero-title {
      font-size: clamp(2rem, 4vw, 2.85rem);
      font-weight: 800;
      color: var(--blauw);
      line-height: 1.15;
      letter-spacing: -0.025em;
      margin-bottom: 1.1rem;
    }
    .hero-title em {
      font-style: normal;
      color: var(--groen);
    }

    .hero-sub {
      font-size: 1.05rem;
      color: #4B617A;
      line-height: 1.65;
      margin-bottom: 2rem;
      max-width: 480px;
    }

    .hero-ctas {
      display: flex;
      gap: 0.875rem;
      flex-wrap: wrap;
      margin-bottom: 2.5rem;
    }

    .btn-primary {
      background: var(--groen);
      color: var(--wit);
      padding: 0.8rem 1.6rem;
      border-radius: 10px;
      font-weight: 700;
      font-size: 0.95rem;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: background .2s, transform .15s;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
    }
    .btn-primary:hover { background: #2d6e32; transform: translateY(-1px); }

    .btn-ghost {
      background: transparent;
      color: var(--blauw);
      padding: 0.8rem 1.4rem;
      border-radius: 10px;
      font-weight: 600;
      font-size: 0.95rem;
      text-decoration: none;
      border: 2px solid var(--grijs-2);
      cursor: pointer;
      transition: border-color .2s, background .2s;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
    }
    .btn-ghost:hover { border-color: var(--blauw); background: var(--grijs); }

    .hero-trust {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }
    .trust-item {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      font-size: 0.875rem;
      color: #4B617A;
      font-weight: 500;
    }
    .trust-item svg { color: var(--groen); flex-shrink: 0; }

    /* ─── RAPPORT MOCKUP ──────────────────────────────────── */
    .hero-visual {
      display: flex;
      justify-content: center;
      position: relative;
    }

    .rapport-card {
      background: var(--wit);
      border: 1px solid var(--grijs-2);
      border-radius: 16px;
      padding: 1.75rem;
      width: 320px;
      box-shadow: 0 20px 60px rgba(13,43,78,0.12), 0 4px 16px rgba(13,43,78,0.07);
      position: relative;
    }

    .rapport-header {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      margin-bottom: 1.25rem;
      padding-bottom: 1rem;
      border-bottom: 1px solid var(--grijs-2);
    }
    .rapport-logo-text {
      font-family: 'Montserrat', sans-serif;
      font-size: 1.1rem;
      font-weight: 800;
    }
    .rapport-logo-text span:first-of-type { color: var(--blauw); margin-bottom: 8px; }
    .rapport-logo-text span:last-of-type  { color: var(--groen); margin-bottom: 8px; }

    .rapport-tag {
      font-size: 0.7rem;
      color: var(--grijs-3);
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      margin-bottom: 0.6rem;
    }

    .stoplicht-badge {
      display: flex;
      align-items: flex-start;
      gap: 0.875rem;
      background: var(--groen-licht);
      border: 1.5px solid #b7dfb9;
      border-radius: 10px;
      padding: 0.875rem 1rem;
      margin-bottom: 1rem;
    }
    .stoplicht-dot {
      width: 20px; height: 20px;
      border-radius: 50%;
      background: var(--groen);
      flex-shrink: 0;
      margin-top: 2px;
      box-shadow: 0 0 0 4px #c8e6c9;
    }
    .stoplicht-text strong {
      display: block;
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--groen);
      margin-bottom: 0.2rem;
    }
    .stoplicht-text span {
      font-size: 0.8rem;
      color: #2d6e32;
    }

    .rapport-note {
      background: var(--geel-licht);
      border-left: 3px solid var(--geel);
      border-radius: 0 6px 6px 0;
      padding: 0.6rem 0.75rem;
      font-size: 0.78rem;
      color: #78350f;
      margin-bottom: 1rem;
    }
    .rapport-note strong { display: block; font-weight: 600; margin-bottom: 0.2rem; }

    .rapport-bar {
      display: flex;
      gap: 3px;
      margin-bottom: 1rem;
    }
    .rapport-bar span {
      height: 6px;
      border-radius: 3px;
      flex: 1;
    }
    .rapport-bar .b-groen { background: var(--groen); }
    .rapport-bar .b-geel  { background: var(--geel); }
    .rapport-bar .b-oranje { background: var(--oranje); opacity: .3; }
    .rapport-bar .b-rood  { background: var(--rood); opacity: .3; }

    .rapport-items { display: flex; flex-direction: column; gap: 0.45rem; }
    .rapport-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.78rem;
    }
    .rapport-row-label { color: #4B617A; }
    .rapport-row-val {
      font-weight: 600;
      color: var(--blauw);
    }
    .rapport-row-val.groen { color: var(--groen); }

    .rapport-disclaimer {
      margin-top: 1rem;
      padding-top: 0.75rem;
      border-top: 1px solid var(--grijs-2);
      font-size: 0.7rem;
      color: var(--grijs-3);
      line-height: 1.5;
    }

    .rapport-badge {
      position: absolute;
      top: -12px;
      right: 16px;
      background: var(--blauw);
      color: var(--wit);
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 0.25rem 0.65rem;
      border-radius: 6px;
    }

    /* ─── WAAROM ──────────────────────────────────────────── */
    .waarom {
      background: var(--grijs);
      padding: 80px 5%;
    }
    .waarom-inner {
      max-width: 1100px;
      margin: 0 auto;
    }

    .sectie-label {
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--groen);
      margin-bottom: 0.75rem;
    }

    .sectie-titel {
      font-size: clamp(1.6rem, 3vw, 2.2rem);
      font-weight: 800;
      color: var(--blauw);
      letter-spacing: -0.02em;
      margin-bottom: 3rem;
      max-width: 560px;
    }

    .kaarten {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }

    .kaart {
      background: var(--wit);
      border: 1px solid var(--grijs-2);
      border-radius: 14px;
      padding: 1.75rem;
    }

    .kaart-icoon {
      width: 44px; height: 44px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
      margin-bottom: 1rem;
    }
    .icoon-blauw { background: #EEF4FB; }
    .icoon-groen { background: var(--groen-licht); }

    .kaart h3 {
      font-size: 1rem;
      font-weight: 700;
      color: var(--blauw);
      margin-bottom: 0.5rem;
    }
    .kaart p { font-size: 0.9rem; color: #4B617A; line-height: 1.6; }

    /* ─── HOE WERKT HET ───────────────────────────────────── */
    .hoe {
      padding: 80px 5%;
      max-width: 1100px;
      margin: 0 auto;
    }

    .stappen {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      position: relative;
      justify-content: center;
    }

    .stappen::before { display: none; }

    .stap {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      padding: 1.5rem;
      background: var(--wit);
      border: 1px solid var(--grijs-2);
      border-radius: 14px;
      position: relative;
      flex: 0 0 calc(33.333% - 0.75rem);
      max-width: calc(33.333% - 0.75rem);
      box-sizing: border-box;
    }

    .stap-nr {
      width: 36px; height: 36px;
      border-radius: 50%;
      background: var(--blauw);
      color: var(--wit);
      font-family: 'Montserrat', sans-serif;
      font-weight: 800;
      font-size: 0.85rem;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1rem;
      position: relative;
      z-index: 1;
    }

    .stap:nth-child(4),
    .stap:nth-child(5) {
      flex: 0 0 calc(40% - 0.5rem);
      max-width: calc(40% - 0.5rem);
    }
    .stap:nth-child(2) .stap-nr { background: #1a4a6e; }
    .stap:nth-child(3) .stap-nr { background: #2a6e30; }
    .stap:nth-child(4) .stap-nr { background: var(--groen); }
    .stap:nth-child(5) .stap-nr { background: var(--groen); }

    .stap h3 { font-size: 0.95rem; font-weight: 700; color: var(--blauw); margin-bottom: 0.4rem; }
    .stap p  { font-size: 0.85rem; color: #4B617A; line-height: 1.55; }

    /* ─── STOPLICHT ───────────────────────────────────────── */
    .stoplicht-sectie {
      background: var(--grijs);
      padding: 80px 5%;
    }
    .stoplicht-inner {
      max-width: 1100px;
      margin: 0 auto;
    }

    .stoplicht-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1rem;
    }

    .sl-kaart {
      border-radius: 14px;
      padding: 1.5rem;
      border: 1.5px solid transparent;
    }
    .sl-kaart.groen  { background: var(--groen-licht);   border-color: #b7dfb9; }
    .sl-kaart.geel   { background: var(--geel-licht);    border-color: #fcd34d; }
    .sl-kaart.oranje { background: var(--oranje-licht);  border-color: #fdba74; }
    .sl-kaart.rood   { background: var(--rood-licht);    border-color: #fca5a5; }

    .sl-dot {
      width: 18px; height: 18px;
      border-radius: 50%;
      margin-bottom: 0.875rem;
    }
    .sl-kaart.groen  .sl-dot { background: var(--groen); }
    .sl-kaart.geel   .sl-dot { background: var(--geel); }
    .sl-kaart.oranje .sl-dot { background: var(--oranje); }
    .sl-kaart.rood   .sl-dot { background: var(--rood); }

    .sl-kaart h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.35rem; }
    .sl-kaart.groen  h3 { color: #1b5e20; }
    .sl-kaart.geel   h3 { color: #78350f; }
    .sl-kaart.oranje h3 { color: #7c2d12; }
    .sl-kaart.rood   h3 { color: #7f1d1d; }
    .sl-kaart p { font-size: 0.83rem; line-height: 1.55; }
    .sl-kaart.groen  p { color: #2d6e32; }
    .sl-kaart.geel   p { color: #92400e; }
    .sl-kaart.oranje p { color: #9a3412; }
    .sl-kaart.rood   p { color: #991b1b; }

    /* ─── FACTOREN ────────────────────────────────────────── */
    .factoren {
      padding: 80px 5%;
      max-width: 1100px;
      margin: 0 auto;
    }

    .factor-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1rem;
    }

    .factor-item {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      padding: 1.1rem;
      border: 1px solid var(--grijs-2);
      border-radius: 10px;
      background: var(--grijs);
    }
    .factor-emoji { font-size: 1.1rem; flex-shrink: 0; }
    .factor-label { font-size: 0.85rem; font-weight: 600; color: var(--blauw); }

    /* ─── TRANSPARANTIE BAND ──────────────────────────────── */
    .transparantie {
      background: var(--blauw);
      padding: 72px 5%;
      text-align: center;
    }
    .transparantie-inner { max-width: 680px; margin: 0 auto; }

    .trans-titel {
      font-size: clamp(1.6rem, 3vw, 2.1rem);
      font-weight: 800;
      color: var(--wit);
      letter-spacing: -0.02em;
      margin-bottom: 1.25rem;
    }
    .trans-titel span { color: #6DD375; }

    .trans-tekst {
      font-size: 1rem;
      color: rgba(255,255,255,0.75);
      line-height: 1.65;
      margin-bottom: 2rem;
    }

    .trans-chips {
      display: flex;
      flex-wrap: wrap;
      gap: 0.6rem;
      justify-content: center;
    }
    .trans-chip {
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.2);
      color: rgba(255,255,255,0.85);
      padding: 0.4rem 0.9rem;
      border-radius: 100px;
      font-size: 0.82rem;
      font-weight: 500;
    }

    /* ─── OVER ────────────────────────────────────────────── */
    .over {
      padding: 80px 5%;
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }

    .over-tekst h2 {
      font-size: clamp(1.5rem, 2.5vw, 2rem);
      font-weight: 800;
      color: var(--blauw);
      letter-spacing: -0.02em;
      margin-bottom: 1rem;
    }
    .over-tekst p {
      font-size: 0.95rem;
      color: #4B617A;
      line-height: 1.7;
      margin-bottom: 0.875rem;
    }

    .over-stats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }
    .stat-kaart {
      background: var(--grijs);
      border-radius: 12px;
      padding: 1.25rem;
      border: 1px solid var(--grijs-2);
    }
    .stat-nr {
      font-family: 'Montserrat', sans-serif;
      font-size: 1.75rem;
      font-weight: 800;
      color: var(--blauw);
      letter-spacing: -0.03em;
      line-height: 1;
      margin-bottom: 0.3rem;
    }
    .stat-nr span { color: var(--groen); }
    .stat-label { font-size: 0.8rem; color: #4B617A; font-weight: 500; }

    /* ─── WACHTLIJST ──────────────────────────────────────── */
    .wachtlijst {
      background: linear-gradient(135deg, #0D2B4E 0%, #1a4a6e 100%);
      padding: 80px 5%;
      text-align: center;
    }
    .wachtlijst-inner { max-width: 520px; margin: 0 auto; }

    .wachtlijst h2 {
      font-size: clamp(1.6rem, 3vw, 2.1rem);
      font-weight: 800;
      color: var(--wit);
      letter-spacing: -0.02em;
      margin-bottom: 0.75rem;
    }
    .wachtlijst p {
      color: rgba(255,255,255,0.7);
      font-size: 0.95rem;
      margin-bottom: 2rem;
      line-height: 1.6;
    }

    .aanmeld-form {
      display: flex;
      gap: 0.6rem;
      max-width: 440px;
      margin: 0 auto 1rem;
    }
    .aanmeld-form input {
      flex: 1;
      padding: 0.8rem 1rem;
      border-radius: 10px;
      border: 2px solid rgba(255,255,255,0.2);
      background: rgba(255,255,255,0.1);
      color: var(--wit);
      font-size: 0.9rem;
      outline: none;
      transition: border-color .2s;
    }
    .aanmeld-form input::placeholder { color: rgba(255,255,255,0.5); }
    .aanmeld-form input:focus { border-color: var(--groen); }
    .aanmeld-form button {
      background: var(--groen);
      color: var(--wit);
      border: none;
      padding: 0.8rem 1.4rem;
      border-radius: 10px;
      font-weight: 700;
      font-size: 0.9rem;
      cursor: pointer;
      transition: background .2s;
      white-space: nowrap;
    }
    .aanmeld-form button:hover { background: #2d6e32; }

    .privacy-note {
      font-size: 0.75rem;
      color: rgba(255,255,255,0.45);
    }

    /* ─── FOOTER ──────────────────────────────────────────── */
    footer {
      background: #0D2B4E;
      padding: 48px 5% 32px;
    }
    .footer-inner {
      max-width: 1100px;
      margin: 0 auto;
    }
    .footer-top {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr;
      gap: 3rem;
      margin-bottom: 3rem;
    }

    .footer-logo {
      display: flex;
      align-items: center;
      gap: 0.4rem;
      font-family: 'Montserrat', sans-serif;
      font-size: 1.25rem;
      font-weight: 800;
      text-decoration: none;
      display: block;
      margin-bottom: 0.75rem;
    }
    .footer-logo span:first-of-type { color: var(--wit); }
    .footer-logo span:last-of-type  { color: var(--groen); }

    .footer-tagline {
      font-size: 0.83rem;
      color: rgba(255,255,255,0.6);
      line-height: 1.6;
    }

    .footer-col h4 {
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.6);
      margin-bottom: 0.875rem;
    }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
    .footer-col ul a {
      font-size: 0.85rem;
      color: rgba(255,255,255,0.75);
      text-decoration: none;
      transition: color .2s;
    }
    .footer-col ul a:hover { color: var(--wit); }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.08);
      padding-top: 1.5rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 0.5rem;
    }
    .footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.3); }
    .footer-disclaimer {
      font-size: 0.75rem;
      color: rgba(255,255,255,0.25);
      max-width: 480px;
      text-align: right;
    }

    /* ─── RESPONSIVE ──────────────────────────────────────── */
    @media (max-width: 960px) {
      .hero { grid-template-columns: 1fr; gap: 3rem; }
      .hero-visual { order: -1; }
      .kaarten { grid-template-columns: 1fr 1fr; }
      .stappen { display: grid; grid-template-columns: 1fr 1fr; }
      .stappen::before { display: none; }
      .stoplicht-grid { grid-template-columns: 1fr 1fr; }
      .factor-grid { grid-template-columns: 1fr 1fr; }
      .over { grid-template-columns: 1fr; gap: 2.5rem; }
      .footer-top { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 600px) {
      .kaarten { grid-template-columns: 1fr; }
      .stappen { display: grid; grid-template-columns: 1fr; }
      .stap, .stap:nth-child(4), .stap:nth-child(5) { flex: unset; max-width: unset; }
      .stoplicht-grid { grid-template-columns: 1fr; }
      .factor-grid { grid-template-columns: 1fr 1fr; }
      .footer-top { grid-template-columns: 1fr; }
      .aanmeld-form { flex-direction: column; }
      .nav-links { display: none; }
      .footer-disclaimer { text-align: left; }
    }

    @media (prefers-reduced-motion: reduce) {
      * { transition: none !important; }
    }
  