  /* ===================================================================
     ADVERA — Eén-pagina leadbureau website
     Kleurpalet, basisstijlen en variabelen
     =================================================================== */
  :root {
    --navy: #1a2b5e;
    --navy-dark: #142046;
    --navy-light: #25397a;
    --accent: #e8513a;
    --accent-dark: #c93f2b;
    --bordeaux: #7a1f33;
    --bordeaux-dark: #611728;
    --purple: #5b3c8f;
    --purple-dark: #472e72;
    --bg-light: #f4f6fb;
    --footer-bg: #edf2fb;
    --white: #ffffff;
    --text: #3a4256;
    --text-muted: #6b7488;
    --border: #e3e7f0;
    --shadow: 0 10px 30px rgba(26, 43, 94, 0.08);
    --shadow-hover: 0 18px 45px rgba(26, 43, 94, 0.16);
    --radius: 18px;
    --radius-sm: 12px;
    --radius-pill: 9999px;
  }

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

  html { scroll-behavior: smooth; overflow-x: hidden; }

  body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.65;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
  }

  /* Niets mag breder zijn dan het scherm (voorkomt horizontaal scrollen) */
  img, svg, video, canvas { max-width: 100%; }

  h1, h2, h3, h4 { color: var(--navy); font-weight: 700; line-height: 1.2; }

  a { text-decoration: none; color: inherit; }

  .container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 24px; }

  section { padding: 84px 0; }

  .section-head { text-align: center; max-width: 680px; margin: 0 auto 54px; }
  .section-head h2 { font-size: 2.1rem; margin-bottom: 16px; }
  .section-head p { color: var(--text-muted); font-size: 1.05rem; }

  /* Pagina-kop (op de losse subpagina's) — zelfde sfeer als de hero */
  .page-head { background: linear-gradient(160deg, #f7f9fd 0%, #eef2fb 100%); padding: 72px 0 52px; text-align: center; }
  .page-head h1 { font-size: 2.6rem; margin-bottom: 14px; }
  .page-head p { color: var(--text-muted); font-size: 1.1rem; max-width: 640px; margin: 0 auto; }

  /* Ondersteunende info-kaarten op de contactpagina */
  .info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 900px; margin: 0 auto; }
  .info-card { background: #fff; border-radius: var(--radius); padding: 28px 26px; box-shadow: var(--shadow); text-align: center; }
  .info-card .info-icon { font-size: 1.8rem; margin-bottom: 12px; }
  .info-card h4 { font-size: 1.05rem; margin-bottom: 8px; }
  .info-card p { font-size: .93rem; color: var(--text-muted); line-height: 1.8; }
  @media (max-width: 768px) { .info-grid { grid-template-columns: 1fr; } }

  /* Knoppen */
  .btn {
    display: inline-block;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-weight: 600;
    font-size: 1rem;
    padding: 14px 34px;
    border-radius: var(--radius-pill);
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  }
  .btn-accent { background: var(--accent); color: #fff; box-shadow: 0 8px 20px rgba(232, 81, 58, .3); }
  .btn-accent:hover { background: var(--accent-dark); transform: translateY(-3px); box-shadow: 0 12px 28px rgba(232, 81, 58, .4); }
  .btn-dark { background: var(--navy); color: #fff; }
  .btn-dark:hover { background: var(--navy-dark); transform: translateY(-3px); box-shadow: 0 12px 26px rgba(20, 32, 70, .35); }
  .btn-block { display: block; width: 100%; text-align: center; }

  /* ===================================================================
     1. NAVIGATIE — sticky witte balk
     =================================================================== */
  .navbar {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 14px rgba(26, 43, 94, .04);
  }
  .nav-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }
  .logo { font-size: 1.6rem; font-weight: 800; letter-spacing: -.5px; }
  .logo .b1 { color: var(--navy); }
  .logo .b2 { color: var(--accent); }

  .nav-links { display: flex; align-items: center; gap: 34px; list-style: none; }
  .nav-links a {
    font-weight: 500; color: var(--navy); font-size: .98rem;
    position: relative; padding: 4px 0; transition: color .2s;
  }
  .nav-links a::after {
    content: ''; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
    background: var(--accent); transition: width .25s ease;
  }
  .nav-links a:hover { color: var(--accent); }
  .nav-links a:hover::after { width: 100%; }
  /* Actief menu-item: subtiele accent-onderstreping */
  .nav-links a.active { color: var(--accent); }
  .nav-links a.active::after { width: 100%; }

  .nav-right { display: flex; align-items: center; gap: 22px; }
  .search-btn {
    background: var(--bg-light); border: none; cursor: pointer;
    width: 40px; height: 40px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: background .2s, transform .2s;
  }
  .search-btn:hover { background: #e6eaf5; transform: scale(1.06); }
  .search-btn svg { stroke: var(--navy); }

  .hamburger {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 6px;
  }
  .hamburger span { width: 26px; height: 3px; background: var(--navy); border-radius: 3px; transition: .3s; }
  .hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  /* ===================================================================
     2. HERO
     =================================================================== */
  .hero { background: linear-gradient(160deg, #f7f9fd 0%, #eef2fb 100%); padding: 80px 0 0; }
  .hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; align-items: center; }
  .hero-text h1 { font-size: 3rem; line-height: 1.12; margin-bottom: 22px; }
  .hero-text h1 .hl { color: var(--accent); }
  .hero-text p { font-size: 1.18rem; color: var(--text-muted); margin-bottom: 34px; max-width: 520px; }
  .hero-art { display: flex; justify-content: center; align-items: center; }
  .hero-art svg { width: 100%; max-width: 440px; height: auto; }
  /* Full-bleed accentlijn: van rand tot rand, los van de container */
  .hero-accent-line { height: 3px; width: 100%; background: var(--accent); margin-top: 70px; }
  /* Parallax: vloeiende beweging van tekst en illustratie */
  .hero-text, .hero-art { transition: transform .2s ease-out; will-change: transform; }
  @media (prefers-reduced-motion: reduce) {
    .hero-text, .hero-art { transition: none; transform: none !important; }
  }

  /* ===================================================================
     3. PRIJSKAARTEN
     =================================================================== */
  .pricing { background: var(--white); }
  .price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
  .price-card {
    border-radius: var(--radius); padding: 34px 30px; color: #fff;
    box-shadow: var(--shadow); transition: transform .3s ease, box-shadow .3s ease;
    display: flex; flex-direction: column;
  }
  .price-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
  .price-card.blue { background: linear-gradient(160deg, var(--navy-light), var(--navy)); }
  .price-card.red { background: linear-gradient(160deg, #8d2640, var(--bordeaux)); }
  .price-card.purple { background: linear-gradient(160deg, #6c4aa6, var(--purple)); }

  .price-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 6px; }
  .price-card h3 { color: #fff; font-size: 1.4rem; }
  .price-card .subtitle { color: rgba(255,255,255,.75); font-size: .92rem; margin-bottom: 20px; }
  .price-amount { text-align: right; line-height: 1; white-space: nowrap; }
  .price-amount .big { font-size: 2rem; font-weight: 700; }
  .price-amount sup { font-size: .85rem; font-weight: 600; top: -.7em; }
  .price-amount .from { display: block; font-size: .72rem; color: rgba(255,255,255,.7); margin-top: 4px; }

  .feat-list { list-style: none; margin: 6px 0 4px; }
  .feat-list li { font-size: .96rem; padding: 6px 0; color: rgba(255,255,255,.92); }
  .feat-list li::before { content: '★'; color: rgba(255,255,255,.6); margin-right: 8px; }

  .card-divider { border: none; border-top: 1px solid rgba(255,255,255,.2); margin: 18px 0; }

  .data-list { list-style: none; margin-bottom: 26px; }
  .data-list li { display: flex; align-items: center; gap: 10px; font-size: .92rem; padding: 5px 0; color: rgba(255,255,255,.9); }
  .data-list .check {
    flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%;
    background: rgba(255,255,255,.18); display: flex; align-items: center; justify-content: center;
  }
  .data-list .check svg { stroke: #fff; }
  .price-card .btn { margin-top: auto; }

  /* ===================================================================
     4. DIENSTEN
     =================================================================== */
  .services { background: var(--bg-light); }
  .services-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: center; }
  .services-intro h2 { font-size: 2rem; margin-bottom: 20px; }
  .services-intro p { color: var(--text-muted); margin-bottom: 28px; font-size: 1.05rem; }
  .svc-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
  .svc-card {
    background: #fff; border-radius: var(--radius); padding: 28px 24px;
    box-shadow: var(--shadow); transition: transform .3s ease, box-shadow .3s ease;
  }
  .svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
  .svc-icon {
    width: 52px; height: 52px; border-radius: 14px; margin-bottom: 16px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(150deg, #eef2fb, #e1e8f8);
  }
  .svc-icon svg { stroke: var(--accent); }
  .svc-card h4 { font-size: 1.12rem; margin-bottom: 8px; }
  .svc-card p { font-size: .92rem; color: var(--text-muted); }

  /* ===================================================================
     5. CONTACTFORMULIER
     =================================================================== */
  .contact { background: var(--navy); color: #fff; position: relative; overflow: hidden; }
  .contact .deco-circles {
    position: absolute; inset: 0; pointer-events: none; opacity: .5;
  }
  .contact .container { position: relative; z-index: 2; }
  .contact .section-head h2 { color: #fff; }
  .contact .section-head p { color: rgba(255,255,255,.75); }
  .contact-form {
    max-width: 720px; margin: 0 auto;
    background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius); padding: 38px; backdrop-filter: blur(4px);
  }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
  .field { margin-bottom: 18px; }
  .field label { display: block; font-size: .88rem; margin-bottom: 7px; color: rgba(255,255,255,.85); font-weight: 500; }
  .field input, .field select, .field textarea {
    width: 100%; padding: 14px 22px; border-radius: var(--radius-pill);
    border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.95);
    font-family: inherit; font-size: .96rem; color: var(--text); transition: box-shadow .2s, border .2s;
  }
  /* Meerregelig veld: ruim afgerond i.p.v. volledig ovaal */
  .field textarea { resize: vertical; min-height: 120px; border-radius: 20px; padding: 16px 22px; }
  .field input:focus, .field select:focus, .field textarea:focus {
    outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(232,81,58,.25);
  }
  .field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #ff8a76; box-shadow: 0 0 0 3px rgba(255,138,118,.3); }
  .form-msg {
    display: none; margin-top: 18px; padding: 14px 18px; border-radius: var(--radius-sm);
    background: rgba(126, 217, 87, .15); border: 1px solid rgba(126, 217, 87, .5);
    color: #d8ffce; font-size: .96rem; text-align: center;
  }
  .form-msg.show { display: block; }
  /* Placeholder-tekst in zachtgrijs */
  .field input::placeholder, .field textarea::placeholder { color: #9aa3b5; opacity: 1; }

  /* --- Custom dropdown (Onderwerp) --- */
  .dropdown { position: relative; }
  .dropdown-toggle {
    width: 100%; padding: 14px 22px; border-radius: var(--radius-pill);
    border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.95);
    font-family: inherit; font-size: .96rem; color: var(--text); cursor: pointer;
    display: flex; align-items: center; justify-content: space-between; gap: 10px; text-align: left;
    transition: box-shadow .2s, border .2s;
  }
  .dropdown-toggle:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(232,81,58,.25); }
  .field.invalid .dropdown-toggle { border-color: #ff8a76; box-shadow: 0 0 0 3px rgba(255,138,118,.3); }
  .dropdown-value.placeholder { color: #9aa3b5; }
  .dropdown-chevron { flex-shrink: 0; stroke: var(--navy); transition: transform .25s ease; }
  .dropdown.open .dropdown-chevron { transform: rotate(180deg); }

  .dropdown-list {
    list-style: none; position: absolute; top: calc(100% + 8px); left: 0; right: 0; z-index: 20;
    background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
    box-shadow: var(--shadow-hover); padding: 8px; margin: 0; max-height: 280px; overflow-y: auto;
    opacity: 0; transform: translateY(-8px); pointer-events: none;
    transition: opacity .18s ease, transform .18s ease;
  }
  .dropdown.open .dropdown-list { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .dropdown-list li {
    padding: 11px 16px; border-radius: 12px; font-size: .95rem; color: var(--text); cursor: pointer;
    display: flex; align-items: center; justify-content: space-between; gap: 8px; transition: background .15s, color .15s;
  }
  .dropdown-list li:hover, .dropdown-list li.active { background: var(--bg-light); }
  .dropdown-list li.selected { color: var(--accent); font-weight: 600; }
  .dropdown-list li.selected::after { content: '✓'; color: var(--accent); font-weight: 700; }
  @media (prefers-reduced-motion: reduce) {
    .dropdown-chevron, .dropdown-list,
    .field input, .field select, .field textarea, .dropdown-toggle, .btn { transition: none; }
  }

  /* ===================================================================
     6. ONS PROCES
     =================================================================== */
  .process { background: var(--white); }
  .process-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 56px; align-items: center; }
  .process-art { display: flex; justify-content: center; }
  .process-art svg { width: 100%; max-width: 320px; }
  /* Voortgangsring: vloeiend bij-/afvullen */
  #processRing { transition: stroke-dashoffset .5s ease; }
  @media (prefers-reduced-motion: reduce) { #processRing { transition: none; } }
  .accordion-item { border: 1px solid var(--border); border-radius: var(--radius-sm); margin-bottom: 14px; overflow: hidden; transition: box-shadow .25s; }
  .accordion-item:hover { box-shadow: var(--shadow); }
  .accordion-header {
    width: 100%; text-align: left; background: #fff; border: none; cursor: pointer;
    padding: 20px 24px; font-family: inherit; font-size: 1.05rem; font-weight: 600; color: var(--navy);
    display: flex; justify-content: space-between; align-items: center; gap: 12px;
  }
  .accordion-header .num { color: var(--accent); margin-right: 12px; font-weight: 700; }
  .accordion-header .icon { font-size: 1.5rem; color: var(--accent); transition: transform .3s; flex-shrink: 0; }
  .accordion-item.open .accordion-header .icon { transform: rotate(45deg); }
  .accordion-body { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
  .accordion-body p { padding: 0 24px 22px; color: var(--text-muted); font-size: .96rem; }

  /* ===================================================================
     7. BRANCHES
     =================================================================== */
  .branches { background: var(--bg-light); position: relative; overflow: hidden; }
  .branches .blob {
    position: absolute; width: 620px; height: 620px; border-radius: 50%;
    background: radial-gradient(circle, rgba(37,57,122,.10), rgba(37,57,122,0) 70%);
    top: 50%; left: 50%; transform: translate(-50%, -50%); pointer-events: none;
  }
  .branches .container { position: relative; z-index: 2; }
  .branch-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .branch-card {
    background: #fff; border-radius: var(--radius); padding: 28px 26px;
    box-shadow: var(--shadow); transition: transform .3s ease, box-shadow .3s ease;
  }
  .branch-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
  .branch-icon {
    width: 56px; height: 56px; border-radius: 50%; margin-bottom: 18px;
    display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
  }
  .branch-card h4 { font-size: 1.15rem; margin-bottom: 8px; }
  .branch-card p { font-size: .93rem; color: var(--text-muted); }

  /* ===================================================================
     8. STATISTIEKEN
     =================================================================== */
  .stats { background: var(--navy); color: #fff; }
  .stats .section-head h2 { color: #fff; }
  .stats .section-head p { color: rgba(255,255,255,.75); }
  .stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
  .stat { text-align: center; }
  .stat-icon {
    width: 64px; height: 64px; margin: 0 auto 16px; border-radius: 18px;
    background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center;
  }
  .stat-icon svg { stroke: var(--accent); }
  .stat-num { font-size: 2.8rem; font-weight: 800; color: #fff; line-height: 1; }
  .stat-label { color: rgba(255,255,255,.8); margin-top: 8px; font-size: .98rem; }

  /* ===================================================================
     9. ONZE PRIJZEN (tussenkop)
     =================================================================== */
  .prices-intro { background: var(--white); text-align: center; padding: 70px 0; }
  .prices-intro h2 { font-size: 2rem; margin-bottom: 14px; }
  .prices-intro p { color: var(--text-muted); max-width: 620px; margin: 0 auto; font-size: 1.08rem; }

  /* ===================================================================
     10. TEAM
     =================================================================== */
  .team { background: var(--bg-light); }
  .team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
  .team-card {
    background: #fff; border-radius: var(--radius); padding: 32px 24px; text-align: center;
    box-shadow: var(--shadow); transition: transform .3s ease, box-shadow .3s ease;
  }
  .team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
  .avatar {
    width: 92px; height: 92px; border-radius: 50%; margin: 0 auto 18px;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1.8rem; font-weight: 700;
  }
  .team-card h4 { font-size: 1.12rem; margin-bottom: 4px; }
  .team-card .role { color: var(--accent); font-size: .9rem; font-weight: 500; margin-bottom: 16px; }
  .socials { display: flex; justify-content: center; gap: 12px; }
  .socials a {
    width: 34px; height: 34px; border-radius: 50%; background: var(--bg-light);
    display: flex; align-items: center; justify-content: center; transition: background .2s, transform .2s;
  }
  .socials a:hover { background: var(--accent); transform: translateY(-3px); }
  .socials a:hover svg { fill: #fff; }
  .socials svg { fill: var(--navy); }

  /* ===================================================================
     11. FOOTER — licht, met naadloze golfovergang
     =================================================================== */
  /* De wave zit direct bovenop de footer; achtergrond = sectie eráchter,
     vulkleur = footer, zodat er geen witte strook of kleurrandje ontstaat. */
  .footer-wave {
    display: block; width: 100%; height: 64px; line-height: 0;
    background: var(--bg-light);   /* = kleur van de team-sectie erboven */
    margin: 0; margin-bottom: -1px; /* dek subpixel-naad met de footer af */
  }
  .footer-wave svg { display: block; width: 100%; height: 100%; }
  footer { background: var(--footer-bg); color: var(--text); padding: 50px 0 0; margin-top: -1px; }
  .footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 36px; padding-bottom: 40px; }
  footer h4 { color: var(--navy); font-size: 1.05rem; margin-bottom: 18px; }
  footer .logo { font-size: 1.5rem; margin-bottom: 14px; }
  footer .logo .b1 { color: var(--navy); }
  footer p, footer li { font-size: .92rem; line-height: 1.9; color: var(--text-muted); }
  footer ul { list-style: none; }
  footer .contact-line { display: flex; gap: 8px; align-items: flex-start; }
  .badge {
    width: 110px; height: 110px; border-radius: 16px;
    background: rgba(26,43,94,.04); border: 1px dashed rgba(26,43,94,.22);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center; font-size: .72rem; color: var(--text-muted); padding: 10px;
  }
  .badge .seal { font-size: 1.8rem; margin-bottom: 4px; }
  .footer-bottom { border-top: 1px solid rgba(26,43,94,.1); padding: 22px 0; text-align: center; font-size: .88rem; color: var(--text-muted); }

  /* ===================================================================
     RESPONSIVE
     =================================================================== */
  /* ---------- Tablet landscape — ≤1024px ---------- */
  @media (max-width: 1024px) {
    .container { padding: 0 22px; }
    .hero-grid { gap: 34px; }
    .hero-text h1 { font-size: 2.6rem; }
    .services-grid { gap: 40px; }
    .price-grid { gap: 20px; }
    .branch-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
  }

  /* ---------- Tablet portret / mobiel — ≤768px ---------- */
  @media (max-width: 768px) {
    section { padding: 60px 0; }
    /* ---- Innovatief full-screen overlay-menu ---- */
    .hamburger { display: flex; }
    /* backdrop-filter maakt een containing block voor position:fixed —
       op mobiel uit, zodat het overlay het hele scherm vult (niet alleen de navbar) */
    .navbar { backdrop-filter: none; -webkit-backdrop-filter: none; }
    /* Hamburger boven het overlay houden, zodat de X klikbaar blijft om te sluiten */
    .hamburger { position: relative; z-index: 95; }
    .nav-links {
      /* Start ONDER de navbar (74px), zodat de hamburger/X zichtbaar + klikbaar blijft */
      position: fixed; top: 74px; left: 0; right: 0; bottom: 0; z-index: 90;
      flex-direction: column; justify-content: center; align-items: flex-start;
      gap: 4px; padding: 30px 44px 48px;
      background: linear-gradient(155deg, #21346d 0%, #15224a 60%, #11193a 100%);
      counter-reset: navi;
      /* Gesloten: cirkel-onthulling vanaf de hamburger rechtsboven */
      opacity: 0; visibility: hidden;
      clip-path: circle(0% at calc(100% - 44px) -32px);
      transition: clip-path .55s cubic-bezier(.66,0,.2,1), opacity .35s ease, visibility .55s;
    }
    .nav-links.open {
      opacity: 1; visibility: visible;
      clip-path: circle(175% at calc(100% - 44px) -32px);
    }
    /* Subtiele radiale gloed in het paneel */
    .nav-links::before {
      content: ''; position: absolute; top: -10%; right: -20%;
      width: 320px; height: 320px; border-radius: 50%;
      background: radial-gradient(circle, rgba(232,81,58,.28), transparent 70%);
      pointer-events: none;
    }
    .nav-links li {
      width: 100%; counter-increment: navi; border-bottom: 1px solid rgba(255,255,255,.08);
      opacity: 0; transform: translateX(28px);
      transition: opacity .45s ease, transform .45s cubic-bezier(.5,0,.2,1);
    }
    .nav-links.open li { opacity: 1; transform: translateX(0); }
    .nav-links.open li:nth-child(1) { transition-delay: .14s; }
    .nav-links.open li:nth-child(2) { transition-delay: .21s; }
    .nav-links.open li:nth-child(3) { transition-delay: .28s; }
    .nav-links.open li:nth-child(4) { transition-delay: .35s; }
    .nav-links a {
      display: flex; align-items: baseline; gap: 16px;
      color: #fff; font-size: clamp(1.7rem, 7vw, 2.3rem); font-weight: 600;
      padding: 16px 4px; transition: color .2s, padding-left .25s ease;
    }
    /* Genummerde index in accentkleur i.p.v. de desktop-onderstreping */
    .nav-links a::after { display: none; }
    .nav-links a::before {
      content: '0' counter(navi); font-size: .9rem; font-weight: 700;
      color: var(--accent); letter-spacing: 1px; transform: translateY(-.4em);
    }
    .nav-links a:hover, .nav-links a.active { color: var(--accent); padding-left: 14px; }
    /* Eén kolom stapelen */
    .hero-grid, .services-grid, .process-grid { grid-template-columns: 1fr; }
    .hero-art { order: -1; }
    .hero-art svg { max-width: 340px; }
    .process-art { max-width: 240px; margin: 0 auto; }
    .price-grid, .svc-cards, .branch-grid, .form-row { grid-template-columns: 1fr; }
    .stats-grid, .team-grid { grid-template-columns: repeat(2, 1fr); }
    /* Koppen schalen mee */
    .hero-text h1 { font-size: 2.1rem; }
    .section-head h2 { font-size: 1.7rem; }
    .page-head { padding: 56px 0 44px; }
    .page-head h1 { font-size: 2rem; }
  }

  /* ---------- Kleine mobiel — ≤480px ---------- */
  @media (max-width: 480px) {
    section { padding: 48px 0; }
    .container { padding: 0 18px; }
    .hero { padding-top: 56px; }
    .hero-text h1 { font-size: 1.85rem; }
    .hero-text p { font-size: 1.05rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid, .footer-grid { grid-template-columns: 1fr; }
    /* Footer gecentreerd op smal scherm */
    .footer-grid { text-align: center; }
    .footer-grid .logo { display: inline-block; }
    footer .contact-line { justify-content: center; }
    .contact-form { padding: 26px 20px; }
    .price-card { padding: 28px 24px; }
    .price-amount .big { font-size: 1.7rem; }
    .section-head h2 { font-size: 1.55rem; }
    .page-head h1 { font-size: 1.75rem; }
  }

  /* Overlay-menu: animaties uit bij bewegingsreductie (alleen fade) */
  @media (prefers-reduced-motion: reduce) {
    .nav-links { clip-path: none !important; transition: opacity .2s ease, visibility .2s !important; }
    .nav-links li { transform: none !important; transition: opacity .2s ease !important; }
  }
