:root {
      --groen:   #1e4d0a;
      --groen2:  #2d6b10;
      --accent:  #4a9020;
      --accent2: #3a7518;
      --light:   #f5f8f2;
      --white:   #ffffff;
      --border:  #dde8cc;
      --muted:   #5a7048;
      --text:    #1a2e0a;
    }
    * { box-sizing: border-box; margin: 0; padding: 0; }
    .skip-link { position: absolute; top: -40px; left: 0; background: var(--groen); color: #fff; padding: 8px 16px; font-size: 0.9rem; font-weight: 600; text-decoration: none; z-index: 9999; border-radius: 0 0 6px 0; transition: top 0.2s; }
    .skip-link:focus { top: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
      background: var(--light);
      color: var(--text);
      line-height: 1.7;
    }

    /* ── NAV ── */
    nav {
      background: var(--groen);
      padding: 0 5%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      height: 64px;
      position: sticky;
      top: 0;
      z-index: 100;
    }
    .logo {
      font-size: 1.4rem;
      font-weight: 800;
      color: #fff;
      text-decoration: none;
      letter-spacing: -0.5px;
    }
    .logo span { color: #b8e68a; }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 0;
      list-style: none;
    }
    .nav-links a {
      color: #a8c490;
      text-decoration: none;
      font-size: 0.9rem;
      margin-left: 2rem;
      transition: color 0.2s;
    }
    .nav-links a:hover, .nav-links a.nav-active { color: #fff; }

    /* ── HAMBURGER ── */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 4px;
    }
    .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: white;
      border-radius: 2px;
      transition: all 0.3s;
    }
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    @media (max-width: 680px) {
      .hamburger { display: flex; }
      .nav-links {
        display: none;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: var(--groen);
        flex-direction: column;
        padding: 1.5rem 5% 2rem;
        gap: 0.2rem;
        border-top: 1px solid rgba(255,255,255,0.1);
      }
      .nav-links.open { display: flex; }
      .nav-links a { margin-left: 0; padding: 0.7rem 0; font-size: 1rem; }
    }

    /* ── HERO ── */
    .hero {
      background: var(--groen);
      padding: 72px 5% 80px;
      position: relative;
      overflow: hidden;
    }
    .hero-inner { max-width: 680px; position: relative; z-index: 1; }
    .hero h1 {
      font-size: clamp(2rem, 4.5vw, 3.2rem);
      font-weight: 900;
      letter-spacing: -1.5px;
      color: #fff;
      line-height: 1.1;
      margin-bottom: 16px;
    }
    .hero h1 em { font-style: normal; color: #b8e68a; }
    .hero p {
      font-size: 1.1rem;
      color: rgba(255,255,255,0.9);
      max-width: 520px;
      line-height: 1.75;
    }
    .hero-deco {
      position: absolute;
      right: 5%;
      top: 50%;
      transform: translateY(-50%);
      opacity: 0.06;
      pointer-events: none;
    }
    @media (max-width: 700px) { .hero-deco { display: none; } }

    /* ── SECTIONS ── */
    .section { padding: 72px 5%; }
    .section-white { background: var(--white); }
    .section-light { background: var(--light); }
    .section-green { background: var(--groen); }
    .section-green .methode-link { color: #b8e68a; font-weight: 700; text-decoration: none; }
    .section-green .methode-link:hover { text-decoration: underline; }
    .section-inner { max-width: 840px; margin: 0 auto; }

    .label {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: #3a7016;
      margin-bottom: 10px;
    }
    .label-light { color: #b8e68a; }

    h2 {
      font-size: clamp(1.6rem, 3vw, 2.2rem);
      font-weight: 800;
      letter-spacing: -0.8px;
      line-height: 1.2;
      margin-bottom: 16px;
    }
    .h2-white { color: #fff; }

    .lead {
      font-size: 1.05rem;
      color: var(--muted);
      line-height: 1.8;
      max-width: 640px;
      margin-bottom: 48px;
    }
    .lead-light { color: rgba(255,255,255,0.6); }

    /* ── TEKST ── */
    .tekst p {
      font-size: 1rem;
      color: var(--muted);
      line-height: 1.9;
      margin-bottom: 22px;
      max-width: 680px;
    }
    .tekst p:last-child { margin-bottom: 0; }

    /* ── EXPERTISE KAARTJES ── */
    .expertise-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
      gap: 16px;
      margin-bottom: 48px;
    }
    .expertise-card {
      background: var(--light);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 24px 20px;
      text-align: center;
    }
    .expertise-icon { font-size: 1.8rem; margin-bottom: 12px; }
    .expertise-card h3 {
      font-size: 0.92rem;
      font-weight: 800;
      color: var(--text);
      margin-bottom: 6px;
    }
    .expertise-card p { font-size: 0.8rem; color: var(--muted); line-height: 1.5; }

    /* ── D+ STAPPEN ── */
    .stappen {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
      gap: 16px;
      margin-top: 32px;
    }
    .stap {
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 10px;
      padding: 24px 20px;
    }
    .stap-nr {
      width: 34px;
      height: 34px;
      background: #3a7016;
      color: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.8rem;
      font-weight: 800;
      margin-bottom: 14px;
    }
    .stap h3 { font-size: 0.95rem; font-weight: 800; color: #fff; margin-bottom: 8px; }
    .stap p { font-size: 0.83rem; color: rgba(255,255,255,0.75); line-height: 1.6; }

    /* ── DEMO VIDEO ── */
    .video-wrap {
      position: relative;
      width: 100%;
      max-width: 860px;
      margin: 32px auto 0;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 8px 40px rgba(0,0,0,0.18);
      background: #000;
    }
    .video-wrap video {
      display: block;
      width: 100%;
      height: auto;
    }

    /* ── CONTACT BLOK ── */
    .contact-blok {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 32px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 20px;
    }
    .contact-blok p { font-size: 1rem; color: var(--muted); line-height: 1.7; }
    .contact-blok strong { color: var(--text); }
    .btn-mail {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--groen);
      color: #fff;
      font-weight: 700;
      font-size: 0.9rem;
      padding: 12px 24px;
      border-radius: 7px;
      text-decoration: none;
      white-space: nowrap;
      transition: background 0.2s;
    }
    .btn-mail:hover { background: var(--groen2); }

    /* ── DISCLAIMER ── */
    .disclaimer {
      background: var(--light);
      border: 1px solid var(--border);
      border-top: 3px solid var(--accent);
      border-radius: 0 0 10px 10px;
      padding: 28px 32px;
      margin-top: 32px;
    }
    .disclaimer-label {
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: #3a7016;
      margin-bottom: 10px;
    }
    .disclaimer p {
      font-size: 0.85rem;
      color: var(--muted);
      line-height: 1.75;
      margin-bottom: 10px;
    }
    .disclaimer p:last-child { margin-bottom: 0; }

    /* ── AAN DE SLAG GRID ── */
    @media (max-width: 600px) {
      .aandeslag-grid { grid-template-columns: 1fr !important; }
    }

    /* ── FOOTER ── */
    footer {
      background: #111e08;
      color: rgba(255,255,255,0.5);
      padding: 48px 5% 32px;
    }
      .hero-tag { display: block; font-size: 0.72rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: #7dc94a; margin-bottom: 16px; }

/* Aanrader-component (voor-pagina) */
.ds-aanr{max-width:1000px;margin:0 auto;padding:56px 6%;font-family:'DM Sans',-apple-system,sans-serif;}
.ds-aanr-label{display:block;font-size:0.72rem;font-weight:700;letter-spacing:2px;text-transform:uppercase;color:#3a7016;margin-bottom:12px;}
.ds-aanr h2{font-size:1.5rem;font-weight:800;letter-spacing:-0.5px;color:#0f1a0a;margin:0 0 10px;line-height:1.2;}
.ds-aanr-intro{font-size:0.95rem;color:#5a7048;line-height:1.6;max-width:560px;margin:0 0 26px;}
.ds-aanr-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;}
.ds-aanr-kaart{display:flex;gap:14px;align-items:flex-start;background:#fff;border:1px solid #dde8c8;border-radius:10px;padding:16px;text-decoration:none;transition:border-color .2s,box-shadow .2s;}
.ds-aanr-kaart:hover{border-color:#3a7016;box-shadow:0 4px 16px rgba(30,77,10,.08);}
.ds-aanr-kaart:focus-visible{outline:3px solid #3a7016;outline-offset:2px;}
.ds-aanr-kaart img{width:64px;height:94px;object-fit:cover;border-radius:5px;flex-shrink:0;box-shadow:0 2px 8px rgba(0,0,0,.15);}
.ds-aanr-tit{font-size:0.98rem;font-weight:800;color:#0f1a0a;line-height:1.2;display:block;}
.ds-aanr-aut{font-size:0.78rem;color:#5a7048;display:block;margin:2px 0 6px;}
.ds-aanr-why{font-size:0.82rem;color:#1a2410;line-height:1.5;margin:0;}
.ds-aanr-cta{display:inline-block;margin-top:22px;font-size:0.9rem;font-weight:700;color:#3a7016;text-decoration:none;}
.ds-aanr-cta:hover{text-decoration:underline;}
@media(max-width:760px){.ds-aanr-grid{grid-template-columns:1fr;}}
