/* ════════════════════════════════
   SHARED STYLES — hogeplantenbak.nl
   Gedeelde CSS voor alle pagina's
   ════════════════════════════════ */

/* ════════════════════════════════
   DESIGN TOKENS
   ════════════════════════════════ */
  :root {
    --groen-donker: #1C3A2A;
    --groen-salie: #3A7D5C;
    --wit: #FFFFFF;
    --salie-waas: #EFF5F0;
    --salie-diep: #E2EDE5;
    --tekst: #1A1A1A;
    --tekst-2: #555555;
    --tekst-3: #737373;
    --goud: #B8860B;
    --kaneel: #B84B32;
    --lijn: #D9DDD9;

    --s1: 8px;
    --s2: 16px;
    --s3: 24px;
    --s4: 32px;
    --s5: 40px;
    --s6: 48px;
    --s8: 64px;
    --s10: 80px;
    --s12: 96px;
    --s16: 128px;

    --radius: 6px;
    --radius-lg: 10px;

    --shadow-sm: 0 1px 3px rgba(28, 58, 42, 0.06);
    --shadow-md: 0 4px 16px rgba(28, 58, 42, 0.08);
    --shadow-lg: 0 8px 32px rgba(28, 58, 42, 0.12);
    --shadow-xl: 0 16px 48px rgba(28, 58, 42, 0.16);

    /* Font switching — verander hier om hele pagina te schakelen */
    /* --font-body: 'Merriweather', serif; */
    --font-body: 'DM Sans', sans-serif;
  }

/* ════════════════════════════════
   RESET & BASE
   ════════════════════════════════ */
  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }

  /* Skip-to-content */
  .skip-link {
    position: absolute;
    top: -100%;
    left: var(--s3);
    background: var(--groen-donker);
    color: #fff;
    padding: 8px 16px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    z-index: 200;
    text-decoration: none;
    transition: top 0.2s ease;
  }
  .skip-link:focus {
    top: var(--s1);
  }

  ::selection {
    background: rgba(58, 125, 92, 0.2);
    color: var(--groen-donker);
  }

  body {
    font-family: var(--font-body);
    background: var(--wit);
    color: var(--tekst);
    font-size: 18px;
    line-height: 1.65; /* was 1.75 — DM Sans heeft minder regelafstand nodig; terug naar 1.75 bij Merriweather */
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

/* ════════════════════════════════
   LAYOUT
   ════════════════════════════════ */
  .container {
    max-width: 820px;
    margin: 0 auto;
    padding-left: var(--s4);
    padding-right: var(--s4);
  }

  .container-narrow {
    max-width: 640px;
    margin: 0 auto;
    padding-left: var(--s4);
    padding-right: var(--s4);
  }

/* ════════════════════════════════
   HEADER
   ════════════════════════════════ */
  .site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #e4ede6;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px max(var(--s4), calc((100% - 820px) / 2));
  }

  .header-banner {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #1C3A2A;
    letter-spacing: 0.01em;
    white-space: nowrap;
  }

  .banner-los {
    display: none;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    padding: 10px var(--s3);
    background: var(--salie-diep);
    color: var(--groen-donker);
    letter-spacing: 0.01em;
    line-height: 1.3;
  }

  .header-logo {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--groen-donker);
    letter-spacing: -0.01em;
  }

  .hamburger {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    border-radius: var(--radius);
    transition: background 0.2s;
  }

  .hamburger:hover { background: rgba(28, 58, 42, 0.06); }

  .hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--groen-donker);
    border-radius: 1px;
  }

/* ════════════════════════════════
   MOBILE NAV
   ════════════════════════════════ */
  /* Mobile nav */
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(28, 58, 42, 0.3);
    z-index: 199;
  }
  .nav-overlay.open {
    display: block;
  }

  .mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 380px;
    background: var(--salie-waas);
    z-index: 200;
    padding: var(--s2) var(--s4) var(--s3);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -8px 0 32px rgba(28, 58, 42, 0.12);
  }
  .nav-logo {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--groen-donker);
    letter-spacing: -0.01em;
    margin-bottom: var(--s1);
    padding-bottom: var(--s1);
    border-bottom: 1px solid var(--lijn);
  }
  .mobile-nav.open { transform: translateX(0); }

  .nav-close {
    position: absolute;
    top: var(--s2);
    right: var(--s2);
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: var(--tekst-3);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.15s, color 0.15s;
  }
  .nav-close:hover { background: var(--salie-diep); color: var(--groen-donker); }

  /* Nav groepen */
  .nav-groep {
    display: flex;
    flex-direction: column;
  }
  .nav-groep-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: var(--groen-salie);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 6px;
  }
  .nav-groep + .nav-groep {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--lijn);
  }

  /* Primaire links (sectie-navigatie) */
  .nav-groep a {
    display: block;
    padding: 8px 0;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--groen-donker);
    text-decoration: none;
    transition: color 0.15s;
  }
  .nav-groep a:hover { color: var(--groen-salie); }
  /* Info-links — kleiner, lichter */
  .nav-groep-info a {
    font-size: 14px;
    font-weight: 400;
    color: var(--tekst-2);
    padding: 7px 0;
  }
  .nav-groep-info a:hover { color: var(--groen-salie); }

  /* Contact */
  .nav-groep-contact a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
    color: var(--groen-donker);
    padding: 8px 0;
  }
  .nav-groep-contact a:hover { color: var(--groen-salie); }
  .nav-groep-contact svg {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    color: var(--groen-salie);
  }
  .nav-uren {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: var(--tekst-2);
    margin-top: -2px;
    padding-left: 26px;
  }

  /* Footer — trust */
  .nav-footer {
    margin-top: var(--s2);
    padding-top: var(--s2);
    border-top: 1px solid var(--lijn);
    text-align: center;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--tekst-2);
    letter-spacing: 0.02em;
  }
  .nav-footer .nav-ster {
    color: var(--goud);
  }
  .nav-footer .nav-score {
    font-weight: 600;
    color: var(--groen-donker);
  }
  .nav-footer-review {
    display: block;
    margin-top: 6px;
  }
  .nav-footer-cta {
    display: inline-block;
    padding: 10px 28px;
    border-radius: 100px;
    background: var(--groen-donker);
    color: var(--wit);
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.15s;
  }
  .nav-footer-cta:hover { background: var(--groen-salie); }

/* ════════════════════════════════
   BUTTONS
   ════════════════════════════════ */
  .cta-groep {
    display: flex;
    gap: var(--s2);
    flex-wrap: wrap;
    align-items: center;
  }

  .btn {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    padding: 16px 36px;
    border-radius: var(--radius);
    text-decoration: none;
    cursor: pointer;
    transition: background 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1), transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    border: none;
    line-height: 1;
  }

  .btn-primair {
    background: var(--groen-salie);
    color: var(--wit);
    box-shadow: 0 2px 8px rgba(58, 125, 92, 0.3), 0 1px 2px rgba(58, 125, 92, 0.2);
  }
  .btn-primair:hover {
    background: #327050;
    box-shadow: 0 4px 16px rgba(58, 125, 92, 0.35), 0 2px 4px rgba(58, 125, 92, 0.2);
    transform: translateY(-1px);
  }

  .btn-secundair {
    background: transparent;
    color: var(--groen-donker);
    border: 2px solid rgba(28, 58, 42, 0.25);
    padding: 14px 34px;
  }
  .btn-secundair:hover {
    border-color: var(--groen-donker);
    background: rgba(28, 58, 42, 0.03);
  }

  .btn:focus-visible {
    outline: 3px solid var(--groen-salie);
    outline-offset: 3px;
  }

/* ════════════════════════════════
   SECTION BASE
   ════════════════════════════════ */
  .sectie { padding: var(--s12) 0; scroll-margin-top: 56px; }
  .sectie-wit { background: var(--wit); }
  .sectie-salie { background: var(--salie-waas); }

  h2 {
    font-family: var(--font-body);
    font-size: 32px;
    font-weight: 700;
    color: var(--groen-donker);
    margin-bottom: var(--s3);
    line-height: 1.25;
    letter-spacing: -0.01em;
    text-wrap: balance;
  }

  p {
    color: var(--tekst);
    margin-bottom: var(--s2);
    max-width: 600px;
  }
  p:last-child { margin-bottom: 0; }

/* ════════════════════════════════
   FOOTER
   ════════════════════════════════ */
  .footer {
    background: #D2DFD6;
    border-top: 1px solid rgba(28, 58, 42, 0.1);
    color: var(--groen-donker);
    padding: var(--s5) 0 var(--s5);
  }

  .footer-inner {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 var(--s4);
  }

  /* Brand bovenaan */
  .footer-brand {
    text-align: center;
    padding-bottom: var(--s3);
    margin-bottom: var(--s3);
    border-bottom: 1px solid rgba(28, 58, 42, 0.20);
  }
  .logo-woordmerk {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--groen-donker);
    letter-spacing: -0.01em;
    line-height: 1;
    margin-bottom: 8px;
  }
  .footer-brand-sub {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    color: var(--groen-donker);
    opacity: 0.80;
    max-width: none;
  }

  .footer-slogan {
    text-align: center;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--groen-donker);
    opacity: 0.75;
    margin-bottom: var(--s5);
    max-width: none;
    letter-spacing: 0.01em;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--s4);
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
    color: rgba(28, 58, 42, 0.80);
    margin-bottom: var(--s3);
  }

  .footer-col-label {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: var(--groen-donker);
    margin-bottom: var(--s2);
    padding-bottom: 12px;
    font-family: 'DM Sans', sans-serif;
    position: relative;
  }
  .footer-col-label::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2px;
    background: var(--groen-salie);
    opacity: 0.5;
  }

  .footer-telefoon {
    font-size: 15px;
    font-weight: 400;
    color: rgba(28, 58, 42, 0.80);
  }

  .footer-adres-link {
    color: rgba(28, 58, 42, 0.75);
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-adres-link:hover { color: var(--groen-salie); }
  .footer-afspraak {
    display: block;
    margin-top: 4px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--groen-donker);
  }

  .footer-grid a {
    color: rgba(28, 58, 42, 0.75);
    text-decoration: none;
    transition: opacity 0.15s;
  }
  .footer-grid a:hover { opacity: 0.7; }

  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .footer-links .footer-col-label {
    margin-bottom: 12px; /* compenseert flex-gap voor uitlijning met kolom 1 & 2 */
  }
  .footer-links a {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: rgba(28, 58, 42, 0.75);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    padding-bottom: 1px;
    transition: border-color 0.3s ease, color 0.3s ease;
  }
  .footer-links a:hover {
    border-bottom-color: var(--groen-salie);
    color: var(--groen-salie);
  }

  /* Scheidingslijn grid / bodem */
  .footer-divider {
    border: none;
    border-top: 1px solid rgba(28, 58, 42, 0.12);
    margin-bottom: var(--s2);
  }

  /* Bodem: betaal + copyright */
  .footer-bodem {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    font-family: 'DM Sans', sans-serif;
  }

  .footer-betaal {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .betaal-icoon {
    height: 22px;
    width: auto;
    border-radius: 3px;
  }

  .footer-copy {
    font-size: 13px;
    font-weight: 400;
    color: var(--groen-donker);
    opacity: 0.75;
  }

/* ════════════════════════════════
   POPUP / OVERLAY
   ════════════════════════════════ */
  .popup-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(28, 58, 42, 0.55);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }
  .popup-overlay.active { display: flex; }

  .popup {
    background: var(--wit);
    border-radius: var(--radius-lg);
    max-width: 520px;
    width: 92%;
    max-height: 92vh;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-xl);
  }

  .popup-inner {
    padding: clamp(18px, 2.5vh, 28px) 20px clamp(20px, 2.8vh, 28px);
    max-height: 92vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }

  .popup-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--groen-salie);
    text-align: center;
    margin-bottom: 0;
    max-width: none;
  }

  .popup-trust {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--tekst-2);
    text-align: center;
    margin-bottom: clamp(4px, 0.8vh, 8px);
    max-width: none;
  }

  .popup-bezorg-ok {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--salie-waas);
    border: 1px solid var(--groen-salie);
    border-radius: var(--radius);
    padding: 7px 14px;
    margin-bottom: 6px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--groen-donker);
    text-align: center;
  }
  .popup-bezorg-ok svg { flex-shrink: 0; }
  .popup-bezorg-buiten {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #FFF8F0;
    border: 1px solid #E8A84C;
    border-radius: var(--radius);
    padding: 7px 14px;
    margin-bottom: 6px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--groen-donker);
    text-align: center;
  }
  .popup-bezorg-buiten svg { flex-shrink: 0; }

  .popup h3 {
    font-family: var(--font-body);
    font-size: 22px;
    font-weight: 700;
    color: var(--groen-donker);
    margin-bottom: 0;
    line-height: 1.25;
    text-align: center;
    padding-right: 0;
  }
  .popup-review {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--goud);
    margin-top: 3px;
    margin-bottom: 0;
    max-width: none;
  }
  .popup-review .review-bron {
    font-weight: 400;
    color: var(--tekst-3);
    font-size: 12px;
    line-height: 1;
  }

  .popup .close-btn {
    position: absolute;
    top: 18px; right: 20px;
    font-size: 22px;
    cursor: pointer;
    color: var(--tekst-3);
    background: none;
    border: none;
    line-height: 1;
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    transition: background 0.15s, color 0.15s;
  }
  .popup .close-btn:hover { background: var(--salie-waas); color: var(--groen-donker); }
  .popup .close-btn:focus { outline: none; }
  .popup .close-btn:focus-visible { outline: 3px solid var(--groen-salie); outline-offset: 2px; }

  .popup-tabs {
    display: flex;
    border-bottom: 2px solid var(--lijn);
    margin: var(--s2) calc(-1 * var(--s4)) 12px;
    padding: 0 var(--s4);
  }

  .popup-tab {
    flex: 1;
    padding: 10px 8px;
    border: none;
    background: none;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--tekst-3);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: color 0.15s, border-color 0.15s;
  }
  .popup-tab.active { color: var(--groen-salie); border-bottom-color: var(--groen-salie); }
  .popup-tab:hover:not(.active) { color: var(--groen-donker); }

  .popup-panel { display: none; }
  .popup-panel.active { display: block; }

  /* Stappen-indicator */
  .form-stappen {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-top: clamp(6px, 1vh, 12px);
    margin-bottom: clamp(6px, 1vh, 12px);
    padding-bottom: clamp(6px, 1vh, 12px);
    border-bottom: 1px solid rgba(58, 125, 92, 0.1);
  }
  .form-stap-dot {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: rgba(28, 58, 42, 0.35);
    transition: color 0.2s;
  }
  .form-stap-dot span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1.5px solid rgba(58, 125, 92, 0.2);
    font-size: 12px;
    font-weight: 600;
    transition: background 0.2s, transform 0.2s;
  }
  .form-stap-dot.active { color: var(--groen-donker); }
  .form-stap-dot.active span {
    background: var(--groen-salie);
    color: var(--wit);
    border-color: var(--groen-salie);
  }
  .form-stap-dot.done span {
    background: var(--groen-salie);
    color: var(--wit);
    border-color: var(--groen-salie);
  }
  .form-stap-dot.done { color: var(--groen-salie); }
  .form-stap-lijn {
    width: 40px;
    height: 1.5px;
    background: rgba(58, 125, 92, 0.15);
    margin: 0 12px;
  }

  /* Stap visibility */
  .form-stap { display: none; }
  .form-stap.active { display: block; }

  .form-terug {
    display: block;
    width: 100%;
    margin-top: clamp(8px, 1.3vh, 16px);
    padding: 4px;
    background: none;
    border: none;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    color: rgba(28, 58, 42, 0.5);
    cursor: pointer;
    text-align: center;
    transition: color 0.15s;
  }
  .form-terug:hover { color: var(--groen-donker); }

  .popup .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
  .popup .field { margin-bottom: clamp(6px, 1vh, 10px); }

  .adres-veld { position: relative; }
  .adres-veld input[readonly] {
    background: rgba(58, 125, 92, 0.04);
    color: var(--groen-donker);
  }
  .adres-status {
    position: absolute;
    right: 12px;
    top: 32px;
    font-size: 12px;
    color: rgba(28, 58, 42, 0.4);
  }
  .adres-status.ok { color: var(--groen-salie); }
  .adres-status.fout { color: #c0392b; }

  .popup-ssl {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: clamp(10px, 1.5vh, 18px);
    margin-bottom: 4px;
    font-size: 13px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: var(--groen-salie);
  }
  .popup-ssl svg { flex-shrink: 0; }

  .popup .field label {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 3px;
    color: var(--groen-donker);
  }

  .popup .field .req { color: #c0392b; }

  .popup .field input,
  .popup .field select,
  .popup .field textarea {
    width: 100%;
    padding: clamp(7px, 1vh, 10px) 12px;
    border: 1px solid var(--lijn);
    border-radius: var(--radius);
    font-size: 15px;
    font-family: 'DM Sans', sans-serif;
    color: var(--tekst);
    background: var(--wit);
    transition: border-color 0.15s, box-shadow 0.15s;
  }
  .popup .field input,
  .popup .field textarea {
    -webkit-appearance: none;
    appearance: none;
  }
  .popup .field select {
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23555' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 32px;
  }

  .popup .field input:focus,
  .popup .field select:focus,
  .popup .field textarea:focus {
    outline: none;
    border-color: var(--groen-salie);
  }
  .popup .field input:focus-visible,
  .popup .field select:focus-visible,
  .popup .field textarea:focus-visible {
    outline: none;
  }

  .popup .field textarea { min-height: 32px; resize: vertical; scrollbar-width: thin; }
  .popup .field input::placeholder,
  .popup .field textarea::placeholder { color: #767676; }
  .popup .field select.placeholder-select { color: #767676; }
  .popup .field select option { color: var(--tekst); }

  .popup .privacy-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: clamp(16px, 2.5vh, 28px);
    margin-bottom: clamp(10px, 1.8vh, 18px);
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    color: var(--tekst-2);
    line-height: 1.4;
  }

  .popup .privacy-check input[type="checkbox"] {
    width: 22px; height: 22px;
    margin-top: 1px;
    flex-shrink: 0;
    cursor: pointer;
    accent-color: var(--groen-salie);
  }

  .popup .privacy-check a { color: var(--groen-salie); text-decoration: underline; }

  .popup .submit-btn {
    width: 100%;
    background: var(--groen-salie);
    color: var(--wit);
    border: none;
    padding: clamp(10px, 1.4vh, 14px);
    border-radius: var(--radius);
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1), transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 2px;
    box-shadow: 0 2px 8px rgba(58, 125, 92, 0.25);
  }
  .popup .submit-btn:hover { background: #327050; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(58, 125, 92, 0.35); }
  .popup .submit-btn:disabled { background: #8bb8a0; cursor: not-allowed; transform: none; box-shadow: none; }

  .popup .success-msg { display: none; text-align: center; padding: var(--s5) 0 var(--s3); }
  .popup .success-msg .check-icon {
    width: 56px; height: 56px;
    background: var(--salie-waas);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto var(--s2);
  }
  .popup .success-msg .check-icon svg { width: 28px; height: 28px; color: var(--groen-salie); }
  .popup .success-msg h4 {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 700;
    color: var(--groen-donker);
    margin-bottom: 8px;
  }
  .popup .success-msg p { font-family: 'DM Sans', sans-serif; font-size: 15px; color: var(--tekst-2); max-width: none; }

/* ════════════════════════════════
   RESPONSIVE — shared components
   ════════════════════════════════ */
  @media (max-width: 768px) {
    .mobile-nav { max-width: 100%; box-shadow: none; }
    .header-banner { font-size: 14px; font-weight: 600; white-space: normal; text-align: center; }

    h2 { font-size: 28px; }

    .container { max-width: 100%; }

    .cta-groep { flex-direction: column; }
    .cta-groep .btn { text-align: center; width: 100%; }

    .sectie { padding: var(--s8) 0; }

    .footer { padding: var(--s5) 0 var(--s3); }
    .footer-grid { gap: var(--s3); margin-bottom: var(--s4); }
  }

  @media (max-width: 480px) {
    /* Banner: verberg in header, toon als losse balk boven hero */
    .header-banner { display: none; }
    .banner-los { display: block; position: sticky; top: 61px; z-index: 99; }

    h2 { font-size: 26px; }
    body { font-size: 17px; }

    .site-header { padding: 12px var(--s3); }

    .container, .container-narrow {
      padding-left: var(--s2);
      padding-right: var(--s2);
    }

    .cta-groep { flex-direction: column; }
    .cta-groep .btn { text-align: center; width: 100%; }

    .sectie { padding: var(--s6) 0; }

    .popup-inner { padding: 24px 16px; }
    .popup-tabs { margin-left: calc(-1 * var(--s3)); margin-right: calc(-1 * var(--s3)); padding: 0 var(--s3); }
    .popup .form-row { gap: 8px; }
    .popup h3 { font-size: 20px; }

    .footer { padding: var(--s5) 0 var(--s3); }
    .footer-brand { margin-bottom: var(--s4); }
    .footer-grid { grid-template-columns: 1fr; gap: var(--s3); margin-bottom: var(--s3); font-size: 16px; }
    .footer-grid a { font-size: 16px; }
    .footer-links a { font-size: 16px; }
    .footer-bodem { flex-direction: column; gap: var(--s2); align-items: center; }
    .footer-betaal { flex-wrap: wrap; justify-content: center; }
  }

/* ════════════════════════════════
   REDUCED MOTION
   ════════════════════════════════ */
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
  }

/* ════════════════════════════════
   TOUCH / HOVER
   ════════════════════════════════ */
  @media (hover: none) {
    .btn-primair:hover { transform: none; box-shadow: 0 2px 8px rgba(58, 125, 92, 0.3), 0 1px 2px rgba(58, 125, 92, 0.2); }
    .btn-secundair:hover { border-color: rgba(28, 58, 42, 0.25); background: transparent; }
    .popup .submit-btn:hover { transform: none; box-shadow: none; }
    .footer-grid a:hover { opacity: 1; }
    .footer-links a:hover { opacity: 1; color: rgba(28, 58, 42, 0.75); }
    .footer-adres-link:hover { color: rgba(28, 58, 42, 0.75); }
  }
