    /* ── Reset & Base ── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Exo 2', sans-serif;
      font-weight: 400;
      background: #F9FCFA;
      color: #6C8EAD;
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* ── Tokens ── */
    :root {
      --forest:    #1A6B45;
      --mint:      #3DA882;
      --sage:      #A8D8B8;
      --frost:     #E8F7F0;
      --nacht:     #0D1F17;
      --diep:      #1C3328;
      --slate:     #2E4A3C;
      --wit:       #F9FCFA;
      --steel:     #6C8EAD;
      --mist:      #80C4BA;
      --perkament: #F4F0E8;
      --amber:     #E8A852;
      --radius-sm: 8px;
      --radius-md: 16px;
      --radius-lg: 24px;
    }

    /* ── Typography ── */
    h1 { font-family: 'Exo 2', sans-serif; font-weight: 800; line-height: 1.1; font-size: clamp(2.8rem, 6vw, 5rem); color: var(--frost); }
    h2 { font-family: 'Exo 2', sans-serif; font-weight: 700; line-height: 1.2; font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--slate); text-wrap: balance; }
    h3 { font-size: 1.1rem; color: var(--forest); font-family: 'Exo 2', sans-serif; font-weight: 600; }
    h4 { font-family: 'Exo 2', sans-serif; font-weight: 600; }
    p  { color: var(--steel); }

    /* ── Layout ── */
    .container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
    section { padding: 96px 0; }

    /* ── Navigation ── */
    nav {
      position: sticky; top: 0; z-index: 100;
      background: rgba(249, 252, 250, 0.92);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--mist);
    }
    .nav-inner {
      display: flex; align-items: center; justify-content: space-between;
      height: 68px;
    }
    .nav-logo img { height: 44px; width: auto; display: block; }
    .nav-links {
      display: flex; gap: 36px; list-style: none;
    }
    .nav-links a {
      font-family: 'Exo 2', sans-serif; font-weight: 500; font-size: 0.9rem;
      color: var(--slate); text-decoration: none; letter-spacing: 0.04em;
      text-transform: uppercase; transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--mint); }
    .nav-links a.active { color: var(--forest); }
    .nav-cta {
      background: var(--forest); color: var(--wit) !important;
      padding: 10px 22px; border-radius: var(--radius-sm);
      transition: background 0.2s !important;
    }
    .nav-cta:hover { background: var(--mint) !important; color: var(--wit) !important; }

    /* ── Hero ── */
    #hero {
      background: var(--nacht);
      padding: 120px 0 100px;
      position: relative;
      overflow: hidden;
    }
    #hero::before {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(61,168,130,0.08) 0%, transparent 70%);
      pointer-events: none;
    }
    .hero-bg-mark {
      position: absolute;
      right: -2%;
      top: 50%;
      transform: translateY(-52%);
      width: min(46%, 520px);
      pointer-events: none;
      opacity: 0.11;
      mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.4) 35%, rgba(0,0,0,1) 75%);
      -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.4) 35%, rgba(0,0,0,1) 75%);
    }
#hero h1 span { color: var(--mint); }
    #hero p {
      color: var(--mist); font-size: 1.15rem; max-width: 540px;
      margin: 24px 0 40px; line-height: 1.75;
    }
    .hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
    .btn-primary {
      background: var(--mint); color: var(--wit);
      padding: 16px 32px; border-radius: var(--radius-sm); border: none;
      font-family: 'Exo 2', sans-serif; font-weight: 600; font-size: 0.95rem;
      letter-spacing: 0.02em; cursor: pointer; text-decoration: none;
      display: inline-block; transition: background 0.2s, transform 0.15s;
    }
    .btn-primary:hover { background: var(--forest); transform: translateY(-1px); }
    .btn-ghost {
      color: var(--frost); border: 1px solid rgba(232, 247, 240, 0.25);
      padding: 15px 28px; border-radius: var(--radius-sm);
      font-family: 'Exo 2', sans-serif; font-weight: 500; font-size: 0.95rem;
      text-decoration: none; display: inline-block; transition: border-color 0.2s, color 0.2s;
    }
    .btn-ghost:hover { border-color: var(--mint); color: var(--mint); }
    .hero-stats {
      display: flex; gap: 48px; margin-top: 64px;
      border-top: 1px solid rgba(128, 196, 186, 0.2); padding-top: 40px;
    }
    .hero-stat-value {
      font-family: 'Exo 2', sans-serif; font-weight: 800; font-size: 2rem; color: var(--frost);
    }
    .hero-stat-label { font-size: 0.82rem; color: var(--mist); letter-spacing: 0.05em; text-transform: uppercase; margin-top: 2px; }

    /* ── Diensten ── */
    #diensten { background: var(--wit); }
    .section-label {
      font-size: 0.78rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
      color: var(--mint); margin-bottom: 12px;
    }
    #diensten h2 { margin-bottom: 16px; }
    #diensten > .container > p { max-width: 560px; margin-bottom: 56px; font-size: 1.05rem; }
    .diensten-grid {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
    }
    .dienst-card {
      background: var(--frost); border: 1px solid rgba(168, 216, 184, 0.4);
      border-radius: var(--radius-lg); padding: 36px 32px;
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .dienst-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(26, 107, 69, 0.1); }
    .dienst-icon {
      width: 56px; height: 56px; border-radius: var(--radius-sm);
      background: var(--wit); border: 1px solid rgba(168, 216, 184, 0.5);
      display: flex; align-items: center; justify-content: center;
      padding: 10px; margin-bottom: 20px;
    }
    .dienst-icon img { width: 100%; height: 100%; object-fit: contain; }
    .dienst-card h3 { font-size: 1.35rem; margin-bottom: 8px; }
    .dienst-card .dienst-sub { font-size: 0.82rem; color: var(--mint); font-weight: 500; margin-bottom: 16px; letter-spacing: 0.04em; }
    .dienst-card p { font-size: 0.95rem; line-height: 1.7; }

    /* ── Pijlers (uitgebreid) ── */
    #pijlers { background: var(--perkament); }
    #pijlers h2 { margin-bottom: 8px; }
    #pijlers > .container > p { margin-bottom: 56px; font-size: 1.05rem; }
    .pijlers-list { display: flex; flex-direction: column; gap: 48px; }
    .pijler-item {
      display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
    }
    .pijler-item.reverse { direction: rtl; }
    .pijler-item.reverse > * { direction: ltr; }
    .pijler-content {}
    .pijler-number {
      font-family: 'Exo 2', sans-serif; font-weight: 800;
      font-size: 5rem; color: rgba(26, 107, 69, 0.08); line-height: 1;
      margin-bottom: -16px;
    }
    .pijler-content h3 {
      font-family: 'Exo 2', sans-serif; font-size: 1.5rem; font-weight: 700;
      color: var(--forest); margin-bottom: 12px;
    }
    .pijler-content p { font-size: 1rem; line-height: 1.75; margin-bottom: 24px; }
    .tech-tags { display: flex; flex-wrap: wrap; gap: 8px; }
    .tech-tag {
      background: var(--frost); border: 1px solid var(--sage);
      color: var(--forest); padding: 6px 14px; border-radius: 999px;
      font-size: 0.82rem; font-weight: 500;
    }
    .pijler-visual {
      background: var(--wit);
      border: 1px solid rgba(168, 216, 184, 0.5);
      border-radius: var(--radius-lg); padding: 32px;
      display: flex; flex-direction: column; gap: 12px;
      box-shadow: 0 4px 24px rgba(26, 107, 69, 0.06);
    }
    .pijler-visual-item {
      display: flex; align-items: center; gap: 16px;
      padding: 14px 16px; background: var(--wit);
      border-radius: var(--radius-sm);
      border: 1px solid rgba(168, 216, 184, 0.5);
      transition: box-shadow 0.2s;
    }
    .pijler-visual-item:hover {
      box-shadow: 0 2px 12px rgba(26, 107, 69, 0.08);
    }
    .pijler-visual-icon {
      width: 44px; height: 44px; border-radius: 10px;
      background: var(--frost); border: 1px solid rgba(168, 216, 184, 0.5);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0; padding: 7px; overflow: hidden;
    }
    .pijler-visual-icon img { width: 100%; height: 100%; object-fit: contain; }
    .pijler-visual-name { font-weight: 600; color: var(--slate); font-size: 0.9rem; }
    .pijler-visual-desc { font-size: 0.8rem; color: var(--slate); opacity: 0.7; line-height: 1.5; }

    /* ── Technologie ── */
    #technologie { background: var(--nacht); }
    #technologie .section-label { color: var(--mint); }
    #technologie h2 { color: var(--frost); margin-bottom: 12px; }
    #technologie > .container > p { color: var(--mist); margin-bottom: 56px; font-size: 1.05rem; }
    .tech-categories { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .tech-category-card {
      background: rgba(255,255,255,0.04); border: 1px solid rgba(128, 196, 186, 0.15);
      border-radius: var(--radius-md); padding: 32px;
    }
    .tech-category-title {
      font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--mint); margin-bottom: 20px;
    }
    .tech-item {
      display: flex; align-items: flex-start; gap: 14px;
      padding: 14px 0; border-bottom: 1px solid rgba(128, 196, 186, 0.1);
    }
    .tech-item:last-child { border-bottom: none; padding-bottom: 0; }
    .tech-item-icon {
      width: 40px; height: 40px; border-radius: 8px; flex-shrink: 0;
      background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.12);
      display: flex; align-items: center; justify-content: center;
      padding: 7px;
    }
    .tech-item-icon img { width: 100%; height: 100%; object-fit: contain; filter: brightness(0) invert(1); }
    .tech-item-icon img.no-invert { filter: none; }
    .tech-item-name { font-weight: 600; color: var(--frost); font-size: 0.9rem; }
    .tech-item-desc { font-size: 0.8rem; color: var(--mist); margin-top: 2px; line-height: 1.5; }

    /* ── Integraties ── */
    #integraties { background: var(--wit); }
    #integraties h2 { margin-bottom: 12px; }
    #integraties > .container > .intro { max-width: 580px; margin-bottom: 16px; font-size: 1.05rem; }
    .integratie-sub { color: var(--forest); font-weight: 500; font-size: 0.9rem; margin-bottom: 48px; }
    .integraties-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 48px;
    }
    .integratie-card {
      background: var(--perkament); border: 1px solid rgba(168, 216, 184, 0.35);
      border-radius: var(--radius-md); padding: 28px 24px;
      display: flex; align-items: flex-start; gap: 16px;
      transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
      text-decoration: none; color: inherit;
    }
    .integratie-card:hover { transform: translateY(-2px); border-color: var(--sage); box-shadow: 0 4px 16px rgba(26, 107, 69, 0.08); }
    .integratie-card-icon {
      width: 48px; height: 48px; border-radius: var(--radius-sm);
      background: var(--wit); border: 1px solid rgba(168, 216, 184, 0.4);
      display: flex; align-items: center; justify-content: center;
      padding: 8px; flex-shrink: 0; margin-top: 2px;
    }
    .integratie-card-icon img { width: 100%; height: 100%; object-fit: contain; }
    .integratie-card-name { font-weight: 600; color: var(--slate); font-size: 0.95rem; }
    .integratie-card-type { font-size: 0.75rem; color: var(--mint); font-weight: 600; margin-top: 2px; text-transform: uppercase; letter-spacing: 0.04em; }
    .integratie-card-desc { font-size: 0.8rem; color: var(--steel); margin-top: 6px; line-height: 1.5; }
    .integratie-tech-note {
      background: var(--frost); border: 1px solid var(--sage);
      border-radius: var(--radius-md); padding: 24px 28px;
      display: flex; align-items: flex-start; gap: 16px;
    }
    .integratie-tech-note-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
    .integratie-tech-note p { font-size: 0.92rem; line-height: 1.7; }
    .integratie-tech-note strong { color: var(--forest); }

    /* ── Aanpak ── */
    #aanpak { background: var(--frost); }
    #aanpak h2 { margin-bottom: 8px; }
    #aanpak > .container > p { margin-bottom: 56px; font-size: 1.05rem; }
    .aanpak-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
    .aanpak-step {
      background: var(--wit); border: 1px solid rgba(168, 216, 184, 0.4);
      border-radius: var(--radius-md); padding: 32px 28px; position: relative;
    }
    .step-number {
      font-family: 'Exo 2', sans-serif; font-weight: 800;
      font-size: 3rem; color: var(--sage); line-height: 1; margin-bottom: 16px;
    }
    .aanpak-step h3 { color: var(--forest); margin-bottom: 12px; }
    .aanpak-step p { font-size: 0.92rem; line-height: 1.7; }
    .aanpak-connector {
      position: absolute; top: 52px; right: -14px;
      width: 28px; height: 2px; background: var(--sage); z-index: 1;
    }
    .aanpak-step:last-child .aanpak-connector { display: none; }

    /* ── Contact ── */
    #contact { background: var(--forest); padding: 96px 0; }
    #contact h2 { color: var(--frost); margin-bottom: 16px; }
    #contact p { color: rgba(232, 247, 240, 0.75); font-size: 1.05rem; margin-bottom: 40px; max-width: 520px; }
    #contact .section-label { color: var(--sage); }
    .contact-form-area h3 { color: var(--frost); font-family: 'Exo 2', sans-serif; font-weight: 700; font-size: 1.3rem; margin-bottom: 12px; }
    .contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
    .contact-methods { display: flex; flex-direction: column; gap: 16px; }
    .contact-method {
      display: flex; align-items: center; gap: 16px;
      background: rgba(255,255,255,0.08); border: 1px solid rgba(232, 247, 240, 0.2);
      border-radius: var(--radius-sm); padding: 18px 22px;
      color: var(--frost); text-decoration: none;
      transition: background 0.2s, border-color 0.2s;
    }
    .contact-method:hover { background: rgba(255,255,255,0.14); border-color: var(--mint); }
    .contact-method-icon { width: 24px; height: 24px; flex-shrink: 0; }
    .contact-method-icon img { width: 100%; height: 100%; object-fit: contain; filter: brightness(0) invert(1); }
    .contact-method-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--sage); margin-bottom: 2px; }
    .contact-method-value { font-weight: 600; font-size: 0.95rem; }
    button.contact-method { background: rgba(255,255,255,0.08); border: 1px solid rgba(232, 247, 240, 0.2); font-family: inherit; cursor: pointer; width: 100%; text-align: left; }
    .contact-method-phone .contact-method-value { color: var(--sage); font-weight: 400; font-size: 0.85rem; letter-spacing: 0.02em; }
    .contact-method-phone.revealed .contact-method-value { color: var(--frost); font-weight: 600; font-size: 0.95rem; letter-spacing: normal; }
    .contact-form-area {
      background: rgba(255,255,255,0.06); border: 1px solid rgba(232, 247, 240, 0.15);
      border-radius: var(--radius-lg); padding: 40px;
    }
    .contact-form-area p { color: rgba(232, 247, 240, 0.6); font-size: 0.9rem; margin-bottom: 24px; }
    .btn-contact {
      display: inline-block; background: var(--mint); color: var(--wit);
      padding: 16px 36px; border-radius: var(--radius-sm);
      font-family: 'Exo 2', sans-serif; font-weight: 600; font-size: 0.95rem;
      text-decoration: none; transition: background 0.2s;
    }
    .btn-contact:hover { background: var(--nacht); }

    /* ── Footer ── */
    footer {
      background: var(--diep); padding: 48px 0 32px;
      border-top: 1px solid rgba(128, 196, 186, 0.15);
    }
    .footer-inner {
      display: grid; grid-template-columns: 1.6fr 1fr 1fr;
      gap: 48px; align-items: start;
      padding-bottom: 28px; margin-bottom: 28px;
      border-bottom: 1px solid rgba(128, 196, 186, 0.1);
    }
    .footer-logo img { height: 36px; width: auto; }
    .footer-tagline { font-size: 0.82rem; color: var(--mist); margin-top: 8px; letter-spacing: 0.04em; }
    .footer-about { font-size: 0.82rem; color: rgba(128, 196, 186, 0.55); line-height: 1.6; margin-top: 12px; max-width: 280px; }
    .footer-links { display: flex; flex-direction: column; gap: 12px; list-style: none; }
    .footer-links a { color: var(--mist); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
    .footer-links a:hover { color: var(--mint); }
    .footer-contact-title { font-size: 0.85rem; font-weight: 600; color: var(--frost); margin-bottom: 10px; }
    .footer-contact-info address { font-style: normal; font-size: 0.82rem; color: rgba(128, 196, 186, 0.55); line-height: 1.7; margin-bottom: 12px; }
    .footer-contact-info dl { display: grid; grid-template-columns: auto 1fr; gap: 2px 12px; }
    .footer-contact-info dt { font-size: 0.75rem; color: var(--mint); font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em; }
    .footer-contact-info dd { font-size: 0.82rem; color: rgba(128, 196, 186, 0.55); }
    .footer-bottom {
      display: flex; justify-content: space-between; align-items: center;
    }
    .footer-copy { font-size: 0.8rem; color: rgba(128, 196, 186, 0.5); }
    .footer-legal { display: flex; gap: 24px; }
    .footer-legal a { font-size: 0.8rem; color: rgba(128, 196, 186, 0.5); text-decoration: none; transition: color 0.2s; }
    .footer-legal a:hover { color: var(--mint); }

    /* ── Legal pages ── */
    .legal-hero {
      background: var(--nacht); padding: 72px 0 56px;
      border-bottom: 1px solid rgba(128, 196, 186, 0.15);
    }
    .legal-hero .section-label { color: var(--sage); margin-bottom: 16px; }
    .legal-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--frost); margin-bottom: 12px; }
    .legal-hero p { color: var(--mist); font-size: 0.9rem; }
    .legal-body { padding: 64px 0 96px; }
    .legal-content {
      max-width: 760px; margin: 0 auto;
    }
    .legal-content h2 {
      font-size: 1.15rem; color: var(--forest); font-weight: 700;
      margin: 40px 0 12px; padding-bottom: 8px;
      border-bottom: 1px solid rgba(168, 216, 184, 0.35);
    }
    .legal-content h2:first-child { margin-top: 0; }
    .legal-content h3 { font-size: 0.95rem; color: var(--slate); font-weight: 600; margin: 20px 0 6px; }
    .legal-content p { color: var(--slate); font-size: 0.9rem; line-height: 1.75; margin-bottom: 12px; }
    .legal-content ul, .legal-content ol { color: var(--slate); font-size: 0.9rem; line-height: 1.75; margin: 0 0 12px 20px; }
    .legal-content li { margin-bottom: 4px; }
    .legal-content strong { color: var(--forest); font-weight: 600; }
    .legal-content a { color: var(--mint); text-decoration: none; }
    .legal-content a:hover { text-decoration: underline; }
    .legal-back {
      display: inline-flex; align-items: center; gap: 8px;
      color: var(--mint); text-decoration: none; font-size: 0.85rem; font-weight: 500;
      margin-bottom: 40px; transition: gap 0.2s;
    }
    .legal-back:hover { gap: 12px; }
    .legal-meta {
      background: var(--frost); border: 1px solid rgba(168, 216, 184, 0.4);
      border-radius: var(--radius-md); padding: 20px 24px;
      margin-bottom: 40px; font-size: 0.82rem; color: var(--steel);
      display: flex; gap: 32px; flex-wrap: wrap;
    }
    .legal-meta strong { color: var(--forest); display: block; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 2px; }

    /* ── Responsive ── */
    @media (max-width: 900px) {
      .diensten-grid, .aanpak-steps { grid-template-columns: 1fr 1fr; }
      .diensten-grid { grid-template-columns: repeat(2, 1fr); }
      .integraties-grid { grid-template-columns: 1fr 1fr; }
      .pijler-item, .contact-inner { grid-template-columns: 1fr; }
      .pijler-item.reverse { direction: ltr; }
      .hero-stats { gap: 28px; }
    }
    @media (max-width: 600px) {
      .diensten-grid, .tech-categories, .aanpak-steps, .integraties-grid { grid-template-columns: 1fr; }

      .nav-links { display: none; }
      h1 { font-size: 2.4rem; }
      .hero-stats { flex-wrap: wrap; gap: 20px; }
      .footer-inner { grid-template-columns: 1fr; gap: 32px; }
      .footer-about { max-width: 100%; }
      .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    }
