    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

    :root {
      --brand: #1d9e75;
      --brand-dark: #0f6e56;
      --ink: #0f0f0f;
      --body: #4a4a4a;
      --muted: #6b6b6b;
      --line: #ececec;
      --surface: #f9f9f9;
      --radius: 12px;
    }

    html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

    body {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
      color: var(--ink);
      background: #ffffff;
      line-height: 1.6;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    img, svg { max-width: 100%; height: auto; display: block; }

    a { color: var(--brand-dark); }

    :focus-visible {
      outline: 3px solid var(--brand);
      outline-offset: 3px;
      border-radius: 4px;
    }

    .skip-link {
      position: absolute;
      left: -9999px;
      top: 8px;
      z-index: 200;
      background: var(--ink);
      color: #fff;
      padding: 12px 20px;
      border-radius: 8px;
      text-decoration: none;
      font-size: 14px;
      font-weight: 600;
    }
    .skip-link:focus { left: 16px; }

    .container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

    /* ---------- Header ---------- */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(255, 255, 255, 0.92);
      backdrop-filter: saturate(180%) blur(12px);
      -webkit-backdrop-filter: saturate(180%) blur(12px);
      border-bottom: 1px solid var(--line);
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 16px 0;
    }

    /* ---------- Logo ---------- */
    .logo {
      font-size: 20px;
      font-weight: 700;
      letter-spacing: -0.5px;
      text-decoration: none;
      color: var(--ink);
      white-space: nowrap;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      min-height: 44px;
    }

    .logo-mark { width: 30px; height: 30px; flex: 0 0 auto; }
    .logo-dot { color: var(--brand); }

    /* ---------- Iconen ----------
       Eén set op een raster van 24px, lijndikte 1,75, ronde uiteinden.
       Kleur volgt currentColor, zodat een icoon zich aanpast aan zijn
       omgeving in plaats van dat we per plek een variant nodig hebben. */
    .icon {
      width: 24px;
      height: 24px;
      display: block;
      fill: none;
      stroke: currentColor;
      stroke-width: 1.75;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .icon-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

    .nav-wrap { display: flex; align-items: center; gap: 28px; }

    nav.main-nav { display: flex; gap: 28px; }

    nav.main-nav a {
      font-size: 14px;
      font-weight: 500;
      color: var(--muted);
      text-decoration: none;
      transition: color 0.2s;
    }
    nav.main-nav a:hover { color: var(--ink); }

    /* Dropdowns in de hoofdnav (Diensten / Oplossingen). Klik-gestuurd,
       niet hover-only — werkt zo ook op touch-schermen. */
    .nav-dropdown { position: relative; display: flex; align-items: center; }

    .nav-dropdown-toggle {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      background: none;
      border: none;
      font: inherit;
      font-size: 14px;
      font-weight: 500;
      color: var(--muted);
      cursor: pointer;
      padding: 0;
      transition: color 0.2s;
    }
    .nav-dropdown-toggle:hover { color: var(--ink); }
    .nav-dropdown-toggle::after {
      content: '';
      width: 6px;
      height: 6px;
      border-right: 1.5px solid currentColor;
      border-bottom: 1.5px solid currentColor;
      transform: rotate(45deg);
      margin-top: -3px;
      transition: transform 0.2s ease;
    }
    .nav-dropdown-toggle[aria-expanded="true"]::after { transform: rotate(-135deg); margin-top: 3px; }

    .nav-dropdown-menu {
      display: none;
      position: absolute;
      top: calc(100% + 16px);
      left: 50%;
      transform: translateX(-50%);
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 10px;
      box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
      padding: 8px;
      min-width: 230px;
      z-index: 110;
    }
    .nav-dropdown-menu[data-open="true"] { display: block; }
    .nav-dropdown-menu a {
      display: block;
      padding: 10px 12px;
      border-radius: 6px;
      font-size: 14px;
      font-weight: 500;
      color: var(--ink);
      white-space: nowrap;
    }
    .nav-dropdown-menu a:hover { background: var(--surface); color: var(--brand-dark); }

    .nav-cta { font-size: 14px; padding: 10px 20px; }

    .nav-toggle {
      display: none;
      align-items: center;
      justify-content: center;
      gap: 6px;
      background: #fff;
      border: 1.5px solid var(--line);
      border-radius: 8px;
      padding: 10px 14px;
      font-size: 14px;
      font-weight: 600;
      color: var(--ink);
      cursor: pointer;
      min-height: 44px;
    }

    .nav-toggle .bars {
      display: inline-flex;
      flex-direction: column;
      gap: 4px;
      width: 16px;
    }
    .nav-toggle .bars i {
      display: block;
      height: 2px;
      background: var(--ink);
      border-radius: 2px;
      transition: transform 0.25s ease, opacity 0.2s ease;
    }
    .nav-toggle[aria-expanded="true"] .bars i:nth-child(1) { transform: translateY(6px) rotate(45deg); }
    .nav-toggle[aria-expanded="true"] .bars i:nth-child(2) { opacity: 0; }
    .nav-toggle[aria-expanded="true"] .bars i:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

    /* ---------- Hero ---------- */
    .hero {
      padding: 88px 0 80px;
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 64px;
      align-items: center;
    }

    .eyebrow {
      display: inline-block;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.4px;
      text-transform: uppercase;
      color: var(--brand-dark);
      background: rgba(29, 158, 117, 0.1);
      padding: 6px 14px;
      border-radius: 999px;
      margin-bottom: 22px;
    }

    .hero-text h1 {
      font-size: clamp(32px, 5.2vw, 56px);
      font-weight: 700;
      line-height: 1.12;
      margin-bottom: 14px;
      letter-spacing: -1px;
      text-wrap: balance;
    }

    /* Merkslogan: prominent, maar bewust geen H1 — die rol is voor de
       SEO-kop. Staat tussen H1 en de uitlegregel in. */
    .hero-text .slogan {
      font-size: clamp(17px, 2.1vw, 20px);
      font-weight: 700;
      color: var(--brand-dark);
      margin-bottom: 18px;
    }

    .hero-text .lead {
      font-size: clamp(17px, 2vw, 19px);
      color: var(--body);
      line-height: 1.7;
      margin-bottom: 36px;
      max-width: 34em;
    }

    .cta-group { display: flex; gap: 14px; flex-wrap: wrap; }

    .trust-line {
      margin-top: 28px;
      font-size: 14px;
      color: var(--muted);
    }

    .btn {
      padding: 14px 28px;
      border-radius: 8px;
      font-size: 15px;
      font-weight: 600;
      font-family: inherit;
      border: none;
      cursor: pointer;
      transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 48px;
      line-height: 1.2;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
      color: #fff;
      box-shadow: 0 4px 12px rgba(29, 158, 117, 0.3);
    }
    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(29, 158, 117, 0.4);
    }

    .btn-secondary {
      background: #fff;
      color: var(--ink);
      border: 1.5px solid #e0e0e0;
    }
    .btn-secondary:hover { background: var(--surface); border-color: var(--brand); }

    .btn-light { background: #fff; color: var(--ink); }
    .btn-light:hover { background: #efefef; transform: translateY(-2px); }

    /* Hero-kaart: was een lege gradient, is nu inhoudelijke samenvatting */
    .hero-card {
      background: linear-gradient(135deg, #f0fdf8 0%, #f6f6f6 100%);
      border: 1px solid #e4f2ec;
      border-radius: 16px;
      padding: 32px;
      position: relative;
      overflow: hidden;
    }

    .hero-card::before {
      content: '';
      position: absolute;
      width: 220px;
      height: 220px;
      background: radial-gradient(circle, rgba(29, 158, 117, 0.13) 0%, transparent 70%);
      border-radius: 50%;
      top: -70px;
      right: -70px;
      pointer-events: none;
    }

    .hero-card h2 {
      font-size: 13px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.6px;
      color: var(--brand-dark);
      margin-bottom: 20px;
      position: relative;
    }

    .hero-card ul { list-style: none; position: relative; }

    .hero-card li {
      display: flex;
      gap: 12px;
      align-items: flex-start;
      padding: 13px 0;
      border-bottom: 1px solid rgba(15, 15, 15, 0.06);
      font-size: 15px;
      color: #2f2f2f;
    }
    .hero-card li:last-child { border-bottom: none; }

    .hero-card li b { display: block; font-size: 15px; color: var(--ink); }
    .hero-card li small { font-size: 13px; color: var(--muted); }

    .tick {
      flex: 0 0 22px;
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: var(--brand);
      color: #fff;
      font-size: 12px;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 2px;
    }

    /* ---------- Sections ---------- */
    .section { padding: 88px 0; border-top: 1px solid var(--line); }

    .section-header { text-align: center; margin-bottom: 56px; }

    .section-header h2 {
      font-size: clamp(28px, 4vw, 44px);
      font-weight: 700;
      margin-bottom: 14px;
      letter-spacing: -0.5px;
      text-wrap: balance;
    }

    .section-header p {
      font-size: 17px;
      color: var(--muted);
      max-width: 560px;
      margin: 0 auto;
    }

    .split {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 72px;
      align-items: center;
    }
    .split.top { align-items: start; }

    .split h3 {
      font-size: clamp(22px, 3vw, 28px);
      font-weight: 700;
      margin-bottom: 18px;
      letter-spacing: -0.5px;
    }

    .split p { font-size: 16px; color: var(--body); line-height: 1.8; margin-bottom: 18px; }

    /* ---------- Kennisbank-artikelen ----------
       Smallere kolom dan de commerciële pagina's: leesbaarheid van lopende
       tekst staat voorop, geen kaarten-grid. */
    .article-hero { padding: 40px 0 24px; max-width: 720px; }
    .article-hero h1 {
      font-size: clamp(28px, 4.2vw, 42px);
      font-weight: 700;
      line-height: 1.2;
      letter-spacing: -0.5px;
      margin-bottom: 16px;
      text-wrap: balance;
    }
    .article-meta { font-size: 13.5px; color: var(--muted); margin-bottom: 20px; }
    .article-dek { font-size: 18px; color: var(--body); line-height: 1.7; }

    .article-body { max-width: 720px; padding-bottom: 24px; }
    .article-body h2 {
      font-size: 24px;
      font-weight: 700;
      letter-spacing: -0.3px;
      margin: 40px 0 16px;
    }
    .article-body h3 {
      font-size: 18px;
      font-weight: 700;
      margin: 28px 0 12px;
    }
    .article-body p {
      font-size: 16px;
      color: var(--body);
      line-height: 1.8;
      margin-bottom: 18px;
    }
    .article-body ul, .article-body ol {
      margin: 0 0 20px 22px;
      color: var(--body);
      font-size: 16px;
      line-height: 1.8;
    }
    .article-body li { margin-bottom: 8px; }
    .article-body strong { color: var(--ink); }
    .article-body a { text-decoration: underline; text-underline-offset: 2px; }

    .article-cta {
      background: linear-gradient(135deg, rgba(29, 158, 117, 0.08) 0%, rgba(29, 158, 117, 0.03) 100%);
      border-left: 4px solid var(--brand);
      border-radius: 12px;
      padding: 28px;
      margin: 40px 0;
      max-width: 720px;
    }
    .article-cta h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
    .article-cta p { font-size: 15px; color: var(--body); line-height: 1.7; margin-bottom: 18px; }

    /* Kennisbank-overzicht */
    .kb-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }
    .kb-grid a {
      display: block;
      padding: 26px;
      background: #fff;
      border: 1.5px solid var(--line);
      border-radius: 12px;
      text-decoration: none;
      color: var(--ink);
      transition: border-color 0.2s ease, box-shadow 0.2s ease;
    }
    .kb-grid a:hover { border-color: var(--brand); box-shadow: 0 12px 32px rgba(29, 158, 117, 0.1); }
    .kb-grid h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.2px; }
    .kb-grid p { font-size: 14px; color: var(--muted); line-height: 1.6; margin: 0; }

    @media (max-width: 640px) {
      .kb-grid { grid-template-columns: 1fr; }
    }

    .value-list { list-style: none; margin-top: 26px; }

    .value-list li {
      font-size: 15px;
      padding: 11px 0 11px 32px;
      position: relative;
      color: #333;
    }

    .value-list li::before {
      content: '✓';
      position: absolute;
      left: 0;
      color: var(--brand);
      font-weight: bold;
      font-size: 18px;
      line-height: 1.6;
    }

    .note-italic { margin-top: 28px; font-size: 14px; color: var(--muted); font-style: italic; }

    .panel {
      background: linear-gradient(135deg, #fafafa 0%, #f4f4f4 100%);
      border-radius: 16px;
      padding: 32px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 14px;
    }

    .service-box {
      position: relative;
      background: #fff;
      border-left: 4px solid var(--brand);
      padding: 22px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
      display: flex;
      gap: 14px;
      align-items: flex-start;
    }

    /* Klein volgnummer rechtsboven: maakt van de 3 losse diensten zichtbaar
       één opeenvolgend traject (scan -> bouw -> borging), niet 3 keuzes. */
    .service-step {
      position: absolute;
      top: -9px;
      right: 16px;
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: var(--brand-dark);
      color: #fff;
      font-size: 11px;
      font-weight: 700;
      line-height: 20px;
      text-align: center;
    }

    .service-icon { flex: 0 0 auto; width: 22px; height: 22px; color: var(--brand); margin-top: 1px; }

    .service-box strong { display: block; color: var(--ink); margin-bottom: 6px; }
    .service-box p { font-size: 14px; color: var(--muted); margin: 0; line-height: 1.6; }

    .problem-list { list-style: none; }

    .problem-list li {
      font-size: 16px;
      padding: 14px 0 14px 32px;
      position: relative;
      color: #333;
      line-height: 1.6;
    }

    .problem-list li::before {
      content: '→';
      position: absolute;
      left: 0;
      color: var(--brand);
      font-weight: bold;
      font-size: 18px;
    }

    .highlight-box {
      background: linear-gradient(135deg, rgba(29, 158, 117, 0.08) 0%, rgba(29, 158, 117, 0.03) 100%);
      border-left: 4px solid var(--brand);
      padding: 26px;
      border-radius: 12px;
    }

    .highlight-box p { font-size: 15px; color: #333; line-height: 1.8; margin: 0; }

    .timeline-note {
      margin-top: 18px;
      padding: 18px;
      background: var(--surface);
      border-radius: 8px;
      font-size: 13.5px;
      color: var(--muted);
      line-height: 1.7;
    }

    .steps-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }

    .step {
      padding: 28px;
      background: var(--surface);
      border-radius: 12px;
      border: 1px solid var(--line);
      transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
    }

    .step:hover {
      transform: translateY(-4px);
      border-color: var(--brand);
      background: #fff;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    }

    .step-badge {
      width: 40px;
      height: 40px;
      background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
      color: #fff;
      border-radius: 50%;
      text-align: center;
      line-height: 40px;
      font-weight: 700;
      margin-bottom: 14px;
    }

    .step h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
    .step p { font-size: 14px; color: var(--muted); line-height: 1.7; }

    .cards-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .card {
      padding: 30px;
      background: #fff;
      border: 1.5px solid var(--line);
      border-radius: 12px;
      transition: border-color 0.3s ease, box-shadow 0.3s ease;
    }

    .card:hover { border-color: var(--brand); box-shadow: 0 12px 32px rgba(29, 158, 117, 0.12); }

    .card h3 { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
    .card p { font-size: 14px; color: var(--muted); line-height: 1.7; }

    .card-icon {
      width: 44px;
      height: 44px;
      background: linear-gradient(135deg, rgba(29, 158, 117, 0.16) 0%, rgba(29, 158, 117, 0.05) 100%);
      border-radius: 10px;
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--brand-dark);
      transition: background 0.3s ease;
    }

    .card:hover .card-icon {
      background: linear-gradient(135deg, rgba(29, 158, 117, 0.26) 0%, rgba(29, 158, 117, 0.1) 100%);
    }

    .stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
      text-align: center;
    }

    .stat { padding: 32px 20px; }

    .stat-number {
      font-size: clamp(40px, 6vw, 48px);
      font-weight: 700;
      background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      color: var(--brand-dark);
      margin-bottom: 6px;
      line-height: 1.1;
    }

    .stat-label { font-size: 14px; color: var(--muted); font-weight: 500; line-height: 1.6; }

    .closing-line {
      text-align: center;
      margin: 44px auto 0;
      font-size: 16px;
      color: var(--body);
      max-width: 620px;
      line-height: 1.8;
    }

    /* ---------- 404 ---------- */
    .error-body { max-width: 520px; margin: 0 auto; text-align: center; }
    .error-body p { color: var(--body); font-size: 16px; line-height: 1.8; margin-bottom: 32px; }
    .error-body .cta-group { justify-content: center; }

    /* ---------- Subpagina's (commerciële SEO-landingspagina's) ---------- */
    .breadcrumb {
      padding: 16px 0 0;
      font-size: 13px;
      color: var(--muted);
    }
    .breadcrumb a { color: var(--muted); text-decoration: none; }
    .breadcrumb a:hover { color: var(--brand-dark); text-decoration: underline; }
    .breadcrumb span[aria-current] { color: var(--ink); }

    .page-hero {
      padding: 40px 0 72px;
      max-width: 760px;
    }
    .page-hero .eyebrow { margin-bottom: 18px; }
    .page-hero h1 {
      font-size: clamp(30px, 4.6vw, 48px);
      font-weight: 700;
      line-height: 1.15;
      letter-spacing: -1px;
      margin-bottom: 18px;
      text-wrap: balance;
    }
    .page-hero .lead {
      font-size: clamp(17px, 2vw, 19px);
      color: var(--body);
      line-height: 1.7;
      margin-bottom: 28px;
      max-width: 42em;
    }

    /* FAQ: native <details>/<summary>, geen JS nodig */
    .faq-item {
      border-bottom: 1px solid var(--line);
      padding: 20px 0;
    }
    .faq-item:first-child { border-top: 1px solid var(--line); }
    .faq-item summary {
      font-size: 16px;
      font-weight: 700;
      color: var(--ink);
      cursor: pointer;
      list-style: none;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }
    .faq-item summary::-webkit-details-marker { display: none; }
    .faq-item summary::after {
      content: '+';
      flex: 0 0 auto;
      font-size: 22px;
      font-weight: 400;
      color: var(--brand);
      line-height: 1;
      transition: transform 0.2s ease;
    }
    .faq-item[open] summary::after { transform: rotate(45deg); }
    .faq-item p {
      font-size: 15px;
      color: var(--body);
      line-height: 1.75;
      margin-top: 14px;
      max-width: 68ch;
    }

    /* Doorlink-rij naar de andere commerciële pagina's (homepage + subpagina's) */
    .related-links { margin-top: 60px; margin-bottom: 60px; }
    .related-links h2 {
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 20px;
    }
    .related-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .related-grid a {
      display: block;
      padding: 20px;
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: 10px;
      text-decoration: none;
      color: var(--ink);
      font-weight: 700;
      font-size: 15px;
      transition: border-color 0.2s ease, background 0.2s ease;
    }
    .related-grid a:hover { border-color: var(--brand); background: #fff; }
    .related-grid a span {
      display: block;
      font-weight: 400;
      color: var(--muted);
      font-size: 13.5px;
      margin-top: 6px;
    }

    @media (max-width: 640px) {
      .related-grid { grid-template-columns: 1fr; }
    }

    /* Verticale tijdlijn: een rail door de weekfasen, met een punt per fase
       op dezelfde manier als de genummerde stap-badges elders op de pagina. */
    .timeline { position: relative; padding-left: 32px; }
    .timeline::before {
      content: '';
      position: absolute;
      left: 9px;
      top: 6px;
      bottom: 6px;
      width: 2px;
      background: var(--line);
    }

    .process-item { position: relative; padding: 18px 0; border-bottom: 1px solid var(--line); }
    .process-item:last-child { border-bottom: none; }
    .process-item::before {
      content: '';
      position: absolute;
      left: -32px;
      top: 22px;
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: var(--brand);
      border: 3px solid #fff;
      box-shadow: 0 0 0 1px var(--line);
    }
    .process-item h3 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
    .process-item p { font-size: 14px; color: var(--muted); margin: 0; line-height: 1.7; }

    /* ---------- Radardiagram (voorbeeldprofiel op 8 dimensies) ---------- */
    .radar-figure { margin: 32px 0 0; }
    .radar-chart { width: 100%; max-width: 400px; height: auto; display: block; margin: 0 auto; }
    .radar-grid { fill: none; stroke: var(--line); stroke-width: 1; }
    .radar-axis { stroke: var(--line); stroke-width: 1; }
    .radar-shape { fill: rgba(29, 158, 117, 0.14); stroke: var(--brand); stroke-width: 2; stroke-linejoin: round; }
    .radar-dot { fill: var(--brand-dark); }
    .radar-label { font-size: 11px; fill: var(--muted); font-family: inherit; }
    .radar-figure figcaption { text-align: center; font-size: 13px; color: var(--muted); margin-top: 6px; font-style: italic; }

    /* ---------- Boeken / Calendly ---------- */
    .booking {
      background: linear-gradient(135deg, #0f0f0f 0%, #1c1c1c 100%);
      border-radius: 16px;
      padding: 64px 48px;
      margin: 88px 0;
      position: relative;
      overflow: hidden;
    }

    .booking::before {
      content: '';
      position: absolute;
      width: 340px;
      height: 340px;
      background: radial-gradient(circle, rgba(29, 158, 117, 0.14) 0%, transparent 70%);
      border-radius: 50%;
      top: -120px;
      right: -110px;
      pointer-events: none;
    }

    .booking-inner { position: relative; z-index: 1; text-align: center; }
    .booking-inner .cta-group { justify-content: center; }

    .booking h2 {
      font-size: clamp(28px, 4.5vw, 46px);
      font-weight: 700;
      color: #fff;
      margin-bottom: 14px;
      letter-spacing: -0.5px;
      text-wrap: balance;
    }

    .booking > .booking-inner > p.sub {
      font-size: 17px;
      color: #d0d0d0;
      margin: 0 auto 32px;
      max-width: 46em;
    }

    .price-note { font-size: 13px; color: #a5a5a5; margin-top: 20px; }
    .price-note a { color: #7fd8b8; }

    /* ---------- Contactformulier ----------
       Verstuurt niets naar een server: bij versturen wordt een mailto-link
       met alle velden al ingevuld geopend. Geen account of API-key nodig. */
    .contact-form { max-width: 640px; margin: 0 auto; }

    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 20px; }

    .form-field { margin-bottom: 20px; }

    .form-field label {
      display: block;
      font-size: 14px;
      font-weight: 600;
      color: var(--ink);
      margin-bottom: 8px;
    }
    .form-field label .optional { font-weight: 400; color: var(--muted); }

    .form-field input,
    .form-field textarea {
      width: 100%;
      padding: 12px 14px;
      border: 1.5px solid var(--line);
      border-radius: 8px;
      font: inherit;
      font-size: 15px;
      color: var(--ink);
      background: #fff;
      transition: border-color 0.2s ease;
    }
    .form-field input:focus,
    .form-field textarea:focus {
      outline: none;
      border-color: var(--brand);
    }
    .form-field textarea { resize: vertical; min-height: 120px; }

    .contact-form .btn { width: 100%; }

    .form-status {
      margin-top: 14px;
      font-size: 13px;
      color: var(--muted);
      text-align: center;
      min-height: 1em;
    }
    .form-status--ok { color: var(--brand-dark); font-weight: 600; }
    .form-status--error { color: #b3261e; font-weight: 600; }

    @media (max-width: 640px) {
      .form-row { grid-template-columns: 1fr; }
    }

    .calendly-shell {
      margin-top: 36px;
      background: #fff;
      border-radius: 12px;
      overflow: hidden;
      min-height: 200px;
    }

    .calendly-inline-widget { min-width: 280px; height: 700px; }

    .calendly-placeholder {
      padding: 40px 28px;
      text-align: center;
      color: var(--body);
    }

    .calendly-placeholder h3 { font-size: 18px; margin-bottom: 10px; color: var(--ink); }
    .calendly-placeholder p { font-size: 14px; color: var(--muted); margin-bottom: 20px; }

    .spinner {
      width: 26px;
      height: 26px;
      border: 3px solid #e6e6e6;
      border-top-color: var(--brand);
      border-radius: 50%;
      margin: 0 auto 14px;
      animation: spin 0.8s linear infinite;
    }
    @keyframes spin { to { transform: rotate(360deg); } }

    /* ---------- Footer ---------- */
    footer {
      border-top: 1px solid var(--line);
      padding: 40px 0 56px;
      text-align: center;
      font-size: 13.5px;
      color: var(--muted);
    }

    .footer-locations {
      margin-top: 10px;
      display: flex;
      flex-wrap: wrap;
      gap: 4px 18px;
      justify-content: center;
      font-size: 12.5px;
    }
    .footer-locations a { color: var(--muted); text-decoration: none; }
    .footer-locations a:hover { color: var(--brand-dark); text-decoration: underline; }

    .footer-links { margin-top: 8px; display: flex; flex-wrap: wrap; gap: 0 20px; justify-content: center; }

    .footer-links a, .footer-links button {
      color: var(--brand-dark);
      text-decoration: none;
      background: none;
      border: none;
      font: inherit;
      cursor: pointer;
      /* 44px hoog: voldoet aan de minimale tap-target op mobiel */
      padding: 13px 4px;
      min-height: 44px;
      display: inline-flex;
      align-items: center;
    }
    .footer-links a:hover, .footer-links button:hover { text-decoration: underline; }

    /* ---------- Cookiebanner ---------- */
    .cookie-banner {
      position: fixed;
      left: 16px;
      right: 16px;
      bottom: 16px;
      z-index: 150;
      max-width: 720px;
      margin: 0 auto;
      background: #fff;
      border: 1px solid #e0e0e0;
      border-radius: 12px;
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
      padding: 20px 22px;
      display: none;
      gap: 16px;
      align-items: center;
      flex-wrap: wrap;
    }
    .cookie-banner[data-open="true"] { display: flex; }

    .cookie-banner p { font-size: 13.5px; color: var(--body); line-height: 1.6; flex: 1 1 320px; margin: 0; }

    .cookie-actions { display: flex; gap: 10px; flex: 0 0 auto; flex-wrap: wrap; }

    .cookie-actions .btn { padding: 11px 20px; font-size: 14px; min-height: 44px; }

    /* ---------- Responsive ---------- */
    @media (max-width: 1024px) {
      .hero { grid-template-columns: 1fr; gap: 44px; padding: 56px 0 64px; }
      .split { grid-template-columns: 1fr; gap: 40px; }
      .steps-grid { grid-template-columns: repeat(2, 1fr); }
      .cards-grid { grid-template-columns: repeat(2, 1fr); }
      .section { padding: 64px 0; }
      .booking { padding: 56px 32px; margin: 64px 0; }

      .nav-toggle { display: inline-flex; }
      .nav-wrap {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        border-bottom: 1px solid var(--line);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 8px 24px 20px;
        display: none;
      }
      .nav-wrap[data-open="true"] { display: flex; }
      nav.main-nav { flex-direction: column; gap: 0; }
      nav.main-nav a {
        padding: 14px 0;
        font-size: 16px;
        color: var(--ink);
        border-bottom: 1px solid var(--line);
      }
      .nav-cta { margin-top: 16px; width: 100%; }

      /* Op mobiel wordt de dropdown een accordion binnen het menu-paneel,
         geen zwevend paneel. */
      .nav-dropdown { display: block; }
      .nav-dropdown-toggle {
        width: 100%;
        justify-content: space-between;
        padding: 14px 0;
        font-size: 16px;
        color: var(--ink);
        border-bottom: 1px solid var(--line);
      }
      .nav-dropdown-menu {
        display: none;
        position: static;
        transform: none;
        background: var(--surface);
        border: none;
        box-shadow: none;
        border-radius: 8px;
        padding: 4px 0 4px 16px;
        margin-bottom: 4px;
      }
      .nav-dropdown-menu[data-open="true"] { display: block; }
      .nav-dropdown-menu a {
        padding: 12px 0;
        border-bottom: 1px solid var(--line);
        font-size: 15px;
      }
      .nav-dropdown-menu a:last-child { border-bottom: none; }
    }

    @media (max-width: 640px) {
      .container { padding: 0 20px; }
      .section { padding: 52px 0; }
      .section-header { margin-bottom: 36px; }
      .steps-grid, .cards-grid, .stats { grid-template-columns: 1fr; }
      .stat { padding: 16px 12px; }
      .cta-group { flex-direction: column; align-items: stretch; }
      .cta-group .btn { width: 100%; }
      .hero-card { padding: 24px 20px; }
      .panel { padding: 22px 18px; }
      .booking { padding: 44px 16px; margin: 52px 0; border-radius: 14px; }
      /* Calendly heeft minimaal 320px nodig; op een 375px-scherm haalt de
         widget dat alleen als hij door de padding van de kaart heen breekt. */
      .calendly-shell { margin-left: -16px; margin-right: -16px; border-radius: 10px; }
      .calendly-inline-widget { height: 820px; }
      .cookie-banner { left: 10px; right: 10px; bottom: 10px; padding: 18px; }
      .cookie-actions { width: 100%; }
      .cookie-actions .btn { flex: 1 1 auto; }
    }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
      }
      .step:hover, .btn:hover { transform: none; }
    }

    @media print {
      .site-header, .cookie-banner, .booking, .nav-toggle { display: none !important; }
      body { color: #000; }
    }
