
/* ===== RESET & BASE ===== */

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

:root {
      /* WHITE THEME — rustige, lichte fork van blue.css
         Zachtere, minder verzadigde tinten; lichte hero; minder schaduw en beweging. */
      --c-primary:       #14233A;   /* diep navy — koppen & donkere headers */
      --c-primary-mid:   #243B5C;   /* navy-familie voor gradients */
      --c-primary-light: #4A6B96;   /* hover-randen, focus */
      --c-accent:        #3F8F5B;   /* kalmer, minder verzadigd groen */
      --c-accent-h:      #337A4C;
      --c-accent-bg:     #E8F3EC;   /* zacht mint */
      --c-white:         #FFFFFF;
      --c-bg:            #FBFCFB;   /* schoon near-white, minimale zweem */
      --c-bg-cool:       #F1F2F4;   /* koel blauw-grijs — af en toe als sectie-tint (sluit aan op de blauwe footer) */
      --c-bg-blue:       #F3F7F4;   /* zeer lichte mint i.p.v. blauwzweem */
      --c-text:          #1C2A33;   /* zachter dan #0F172A */
      --c-text-mid:      #55636B;
      --c-text-soft:     #9AA6AC;
      --c-border:        #E4E9E5;   /* iets groen-grijs */
      --ease-out:        cubic-bezier(0.23, 1, 0.32, 1);
      --ease-in-out:     cubic-bezier(0.77, 0, 0.175, 1);
      --sh-sm:  0 1px 2px rgba(20,40,30,.05);
      --sh-md:  0 2px 10px rgba(20,40,30,.06);
      --sh-lg:  0 8px 24px rgba(20,40,30,.07);
      --sh-xl:  0 12px 34px rgba(20,40,30,.09);
      --r-sm: 8px; --r-md: 12px; --r-lg: 16px; --r-xl: 24px; --r-full: 9999px;
      --c-success:       #3F8F5B;
      --c-success-bg:    #E8F3EC;
      /* Kompas-logo, hero-illustratie en tekstaccent */
      --ic-1: #7CC49A;
      --ic-2: #3F8F5B;
      --ic-3: #337A4C;
      --ic-4: #2C6640;
      --ic-5: #285C3B;
      --ic-6: #123D28;
      --ic-7: #0A2A1A;
      --ic-8: #0A2A1A;
      --ic-9: #D9EBDF;
      --c-accent-bright: #3F8F5B;   /* geen neon meer — gelijk aan accent */
      /* Vinkje-icoon (hero-trust, cta-perk): navy cirkel + wit vinkje op lichte secties */
      --c-tick-bg:       var(--c-primary);
      --c-tick-fg:       #FFFFFF;
      --c-accent-on-dark: #7CC49A;  /* lichter groen voor donkere secties (CTA, footer) */
      --c-accent-rgb: 63,143,91;
      /* Witte waas over de hero-achtergrondfoto — percentage hier tunen, niet in de HTML */
      --hero-overlay-color: 255,255,255;
      --hero-overlay-start: .92;    /* dekking links, achter de tekst */
      --hero-overlay-mid:   .78;
      --hero-overlay-end:   0;      /* volledig transparant rechts, foto zichtbaar */
      --hero-roof: #14233A;
      --hero-chimney: #0F2640;
      --hero-chimney-cap: #243B5C;
    }

html { scroll-behavior: smooth; font-size: 16px; }

body {
      font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
      color: var(--c-text);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }


    /* Achtergrond per pagina (body krijgt page-home of page-order klasse via PHP) */
    body.page-home  { background: var(--c-white); }
    body.page-order { background: var(--c-bg); }

/* ===== SCROLL FADE ===== */

.fu {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 640ms var(--ease-out), transform 640ms var(--ease-out);
    }

.fu.visible { opacity: 1; transform: translateY(0); }

.fu-d1 { transition-delay: 80ms; }

.fu-d2 { transition-delay: 160ms; }

.fu-d3 { transition-delay: 240ms; }

.fu-d4 { transition-delay: 320ms; }

.fu-d5 { transition-delay: 400ms; }

/* ===== NAV ===== */

.nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 200;
      padding: 22px 48px;
      display: flex; align-items: center; justify-content: space-between;
      transition: background 300ms var(--ease-out), padding 300ms var(--ease-out), box-shadow 300ms var(--ease-out);
    }

.nav.scrolled {
      background: rgba(15, 30, 22, 0.96);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      padding: 14px 48px;
      box-shadow: 0 4px 32px rgba(0,0,0,.2);
    }

.nav-logo {
      display: flex; align-items: center; gap: 10px;
      text-decoration: none; color: white;
    }

.nav-logo-text { font-weight: 700; font-size: 1.15rem; letter-spacing: -.02em; line-height: 1; }

.nav-logo-text span { color: var(--c-accent); }

.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }

.nav-links a {
      color: rgba(255,255,255,.8); text-decoration: none;
      font-size: .875rem; font-weight: 500;
      transition: color 200ms var(--ease-out);
    }

.nav-links a:hover { color: white; }

.nav-cta {
      background: var(--c-accent) !important; color: white !important;
      padding: 10px 24px; border-radius: var(--r-full);
      font-weight: 600 !important;
      transition: background 200ms var(--ease-out), transform 160ms var(--ease-out) !important;
    }

.nav-cta:hover { background: var(--c-accent-h) !important; }

.nav-cta:active { transform: scale(0.97); }

.nav-burger {
      display: none; background: none; border: none;
      cursor: pointer; padding: 8px; color: white;
      position: relative; z-index: 201;
    }

.nav-burger .icon-close { display: none; }

.nav-burger.open .icon-close { display: block; }

.nav-burger.open .icon-burger { display: none; }

.mob-menu {
      display: none; position: fixed; inset: 0;
      background: var(--c-primary); z-index: 199;
      flex-direction: column; align-items: center; justify-content: center; gap: 36px;
    }

.mob-menu.open { display: flex; }

.mob-menu a {
      color: white; text-decoration: none;
      font-size: 1.5rem; font-weight: 600;
      transition: opacity 200ms;
    }

.mob-menu a:hover { opacity: .75; }

.mob-close {
      position: absolute; top: 20px; right: 20px;
      background: none; border: none; color: white; cursor: pointer; padding: 8px;
    }

/* ===== HERO ===== */

.hero {
      min-height: 100vh;
      background: linear-gradient(140deg, #020810 0%, #041020 30%, var(--c-primary) 65%, var(--c-primary-mid) 100%);
      position: relative; overflow: hidden;
      display: flex; flex-direction: column;
    }

.hero-noise {
      position: absolute; inset: 0; pointer-events: none;
      background-image:
        radial-gradient(ellipse 80% 60% at 15% 55%, rgba(31,58,46,.45) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 85% 15%, rgba(63,143,91,.12) 0%, transparent 50%),
        radial-gradient(ellipse 60% 50% at 55% 85%, rgba(46,81,64,.3) 0%, transparent 55%);
    }

.hero-grid {
      position: absolute; inset: 0; pointer-events: none;
      background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
      background-size: 64px 64px;
    }

.hero-body {
      position: relative; z-index: 2;
      flex: 1; display: flex; align-items: center;
      padding: 120px 48px 80px;
      max-width: 1280px; margin: 0 auto; width: 100%; gap: 60px;
    }

.hero-left { flex: 1; max-width: 620px; }

.hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(63,143,91,.14); border: 1px solid rgba(63,143,91,.3);
      color: var(--c-accent); padding: 6px 16px; border-radius: var(--r-full);
      font-size: .75rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
      margin-bottom: 28px;
      animation: aFadeDown 600ms var(--ease-out) both;
    }

.badge-dot {
      width: 6px; height: 6px; border-radius: 50%; background: var(--c-accent);
      animation: aPulse 2.2s ease-in-out infinite;
    }

.hero-h1 {
      font-size: clamp(2.4rem, 5.5vw, 4rem);
      font-weight: 800; color: white;
      line-height: 1.12; letter-spacing: -.03em;
      margin-bottom: 22px;
      animation: aFadeUp 700ms 100ms var(--ease-out) both;
    }

.hero-h1 em { font-style: normal; color: var(--c-accent); }

.hero-sub {
      font-size: 1.1rem; color: rgba(255,255,255,.72);
      font-weight: 400; line-height: 1.75;
      margin-bottom: 44px; max-width: 520px;
      animation: aFadeUp 700ms 200ms var(--ease-out) both;
    }

.hero-search-wrap { animation: aFadeUp 700ms 300ms var(--ease-out) both; margin-bottom: 32px; }

/* Search box */

.sbox {
      display: flex; background: white; border-radius: var(--r-lg);
      overflow: hidden;
      box-shadow: 0 8px 40px rgba(0,0,0,.3), 0 2px 8px rgba(0,0,0,.15);
      transition: box-shadow 200ms var(--ease-out);
    }

.sbox:focus-within {
      box-shadow: 0 8px 40px rgba(0,0,0,.3), 0 2px 8px rgba(0,0,0,.15),
                  0 0 0 3px rgba(63,143,91,.35);
    }

.sbox-icon { display: flex; align-items: center; padding: 0 14px 0 20px; color: var(--c-text-soft); flex-shrink: 0; }

.sbox-input {
      flex: 1; padding: 18px 8px; min-width: 0;
      font-family: 'Poppins', sans-serif; font-size: 1rem; font-weight: 500;
      border: none; outline: none; color: var(--c-text);
    }

.sbox-input::placeholder { color: var(--c-text-soft); font-weight: 400; }

.sbox-btn {
      margin: 8px; padding: 12px 28px;
      background: var(--c-accent); color: white;
      border: none; border-radius: var(--r-md);
      font-family: 'Poppins', sans-serif; font-size: .9rem; font-weight: 600;
      cursor: pointer; white-space: nowrap;
      transition: background 200ms var(--ease-out), transform 160ms var(--ease-out);
      flex-shrink: 0;
    }

.sbox-btn:hover { background: var(--c-accent-h); }

.sbox-btn:active { transform: scale(0.97); }

.hero-trust {
      display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
      animation: aFadeUp 700ms 400ms var(--ease-out) both;
    }

.trust-item {
      display: flex; align-items: center; gap: 8px;
      color: rgba(255,255,255,.78); font-size: .84rem; font-weight: 500;
    }

.trust-item svg { color: var(--c-accent); flex-shrink: 0; }

.hero-example {
      margin: 22px 0 26px; max-width: 520px;
      font-size: .9rem; line-height: 1.6; color: rgba(255,255,255,.6);
      border-left: 2px solid rgba(63,143,91,.5); padding-left: 14px;
      animation: aFadeUp 700ms 350ms var(--ease-out) both;
    }

.hero-example strong { color: rgba(255,255,255,.82); font-weight: 600; }

.hero-example a {
      display: inline-block; margin-top: 4px;
      color: var(--c-accent); font-weight: 600; text-decoration: none;
    }

.hero-example a:hover { text-decoration: underline; }

/* Hero visual */

.hero-right {
      flex: 0 0 480px; position: relative;
      display: none; align-items: center; justify-content: center;
    }

.house-wrap { position: relative; width: 460px; max-width: 100%; }

.hero-img {
      display: block; width: 100%; height: auto;
      filter: drop-shadow(0 30px 60px rgba(0,0,0,.45));
      animation: aFloat 6s ease-in-out infinite;
    }

.fc {
      position: absolute; background: white; border-radius: var(--r-md);
      padding: 14px 18px; box-shadow: var(--sh-xl);
      min-width: 150px;
    }

.fc:nth-child(1) { top: 10px;  left: -40px; animation: aFloat 4.6s ease-in-out infinite 0s; }

.fc:nth-child(2) { top: 80px;  right: -44px; animation: aFloat 5.1s ease-in-out infinite .9s; }

.fc:nth-child(3) { bottom: 100px; left: -50px; animation: aFloat 4.3s ease-in-out infinite 1.8s; }

.fc:nth-child(4) { bottom: 30px; right: -36px; animation: aFloat 4.9s ease-in-out infinite 2.7s; }

.fc-lbl { font-size: .68rem; font-weight: 700; color: var(--c-text-soft); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 4px; }

.fc-val { font-size: 1.05rem; font-weight: 800; color: var(--c-primary); }

.fc-val.green { color: var(--c-accent); }

.fc-badge {
      display: inline-flex; align-items: center; justify-content: center;
      width: 30px; height: 30px; background: var(--c-accent-bg);
      color: var(--c-accent); border-radius: var(--r-sm);
      font-weight: 800; font-size: .9rem; margin-bottom: 6px;
    }

.hero-scroll {
      position: relative; z-index: 2; padding-bottom: 44px;
      display: flex; justify-content: center;
      animation: aFadeUp 700ms 600ms var(--ease-out) both;
    }

.hero-scroll a {
      display: flex; flex-direction: column; align-items: center; gap: 8px;
      color: rgba(255,255,255,.38); text-decoration: none;
      font-size: .72rem; letter-spacing: .07em; text-transform: uppercase;
    }

.hero-scroll svg { animation: aBounce 2.2s ease-in-out infinite; }

/* ===== RAPPORT CATEGORIEËN ===== */

.catg { background: white; border-bottom: 1px solid var(--c-border); }

.catg-hd { text-align: center; margin-bottom: 56px; }

.catg-hd .sec-label { justify-content: center; }

.catg-hd .sec-sub { margin: 0 auto; }

.catg-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }

.catg-card {
      display: flex; gap: 16px; align-items: flex-start;
      background: var(--c-bg); border: 1px solid var(--c-border); border-radius: var(--r-xl);
      padding: 30px 26px;
      transition: transform 320ms var(--ease-out), box-shadow 320ms var(--ease-out),
                  border-color 320ms var(--ease-out), background 320ms var(--ease-out);
    }

.catg-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); border-color: var(--c-primary-light); background: white; }

.catg-ico {
      flex-shrink: 0; width: 44px; height: 44px;
      background: linear-gradient(135deg, var(--c-primary), var(--c-primary-mid));
      border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; color: white;
    }

.catg-card h3 { font-size: .95rem; font-weight: 700; color: var(--c-primary); margin-bottom: 6px; }

.catg-card p { font-size: .82rem; color: var(--c-text-mid); line-height: 1.6; }

/* ===== SHARED SECTION ===== */

.sec { padding: 108px 48px; }

.sec-inner { max-width: 1280px; margin: 0 auto; }

.sec-label {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
      color: var(--c-accent); margin-bottom: 14px;
    }

.sec-label::before { content: ''; display: block; width: 22px; height: 2px; background: var(--c-accent); border-radius: 2px; }

.sec-h2 {
      font-size: clamp(1.9rem, 3.2vw, 2.9rem); font-weight: 800; color: var(--c-primary);
      line-height: 1.18; letter-spacing: -.026em; margin-bottom: 14px;
    }

.sec-sub { font-size: 1.05rem; color: var(--c-text-mid); line-height: 1.72; max-width: 560px; }

/* ===== HOE HET WERKT ===== */

.hiw { background: var(--c-bg-cool); }

.hiw-hd { text-align: center; margin-bottom: 80px; }

.hiw-hd .sec-label { justify-content: center; }

.hiw-hd .sec-sub { margin: 0 auto; }

.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 36px; position: relative; }

.steps-line {
      position: absolute; top: 52px;
      left: calc(16.67% + 28px); right: calc(16.67% + 28px);
      height: 2px;
      background: linear-gradient(90deg, var(--c-border), var(--c-accent), var(--c-border));
      z-index: 0; pointer-events: none;
    }

.step {
      background: white; border-radius: var(--r-xl); padding: 44px 32px;
      text-align: center; position: relative; z-index: 1;
      border: 1px solid var(--c-border); box-shadow: var(--sh-sm);
      transition: transform 320ms var(--ease-out), box-shadow 320ms var(--ease-out);
    }

.step:hover { transform: translateY(-8px); box-shadow: var(--sh-lg); }

.step-num {
      width: 56px; height: 56px; border-radius: 50%;
      background: linear-gradient(135deg, var(--c-primary), var(--c-primary-mid));
      color: white; font-size: 1.25rem; font-weight: 800;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 24px; box-shadow: 0 4px 18px rgba(31,58,46,.32);
      position: relative; z-index: 2;
    }

.step-ico {
      width: 64px; height: 64px; background: var(--c-bg-blue); border-radius: var(--r-lg);
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 20px; color: var(--c-primary-mid);
    }

.step h3 { font-size: 1.05rem; font-weight: 700; color: var(--c-primary); margin-bottom: 12px; }

.step p { font-size: .88rem; color: var(--c-text-mid); line-height: 1.68; }

/* ===== RAPPORT ===== */

.rpt { background: white; }

.rpt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 88px; align-items: center; }

.mock {
      background: white; border-radius: var(--r-xl);
      box-shadow: var(--sh-xl); overflow: hidden; border: 1px solid var(--c-border);
      position: relative;
    }

.mock-hd {
      background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-mid) 100%);
      padding: 22px 26px; display: flex; align-items: center; gap: 14px;
    }

.mock-logo {
      width: 36px; height: 36px; background: rgba(255,255,255,.15);
      border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; color: white; flex-shrink: 0;
    }

.mock-title { color: white; font-weight: 700; font-size: .88rem; }

.mock-addr { color: rgba(255,255,255,.68); font-size: .74rem; }

.mock-body { padding: 22px 26px; }

.mock-row {
      display: flex; justify-content: space-between; align-items: center;
      padding: 11px 0; border-bottom: 1px solid var(--c-border);
    }

.mock-row:last-child { border-bottom: none; }

.mock-lbl { font-size: .8rem; color: var(--c-text-mid); font-weight: 500; }

.mock-val { font-size: .88rem; font-weight: 700; color: var(--c-primary); }

.mock-val.g { color: var(--c-accent); }

.mock-val.b {
      background: var(--c-accent-bg); color: var(--c-accent);
      padding: 3px 10px; border-radius: var(--r-full); font-size: .76rem;
    }

.mock-score {
      position: absolute; top: -18px; right: -18px;
      background: white; border-radius: var(--r-xl); padding: 16px 20px;
      box-shadow: var(--sh-xl); border: 1px solid var(--c-border); text-align: center;
    }

.mock-score-lbl { font-size: .68rem; font-weight: 700; color: var(--c-text-soft); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 4px; }

.mock-score-val { font-size: 2.2rem; font-weight: 800; color: var(--c-accent); line-height: 1; }

.mock-score-sub { font-size: .7rem; color: var(--c-text-mid); margin-top: 2px; }

.rpt-feats { display: flex; flex-direction: column; gap: 18px; margin-top: 32px; }

.rpt-feat { display: flex; align-items: flex-start; gap: 14px; }

.rpt-feat-ico {
      flex-shrink: 0; width: 24px; height: 24px;
      background: var(--c-accent-bg); border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      margin-top: 2px; color: var(--c-accent);
    }

.rpt-feat h4 { font-size: .9rem; font-weight: 700; color: var(--c-primary); margin-bottom: 2px; }

.rpt-feat p { font-size: .82rem; color: var(--c-text-mid); line-height: 1.55; }

.src-row { display: flex; align-items: center; gap: 14px; margin-top: 36px; flex-wrap: wrap; }

.src-lbl { font-size: .72rem; color: var(--c-text-soft); font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }

.src-badge {
      background: var(--c-bg); border: 1px solid var(--c-border);
      border-radius: var(--r-sm); padding: 5px 12px;
      font-size: .74rem; font-weight: 700; color: var(--c-text-mid);
    }

/* ===== STATS BAR ===== */

.stats {
      background: linear-gradient(135deg, var(--c-primary) 0%, #0F2640 100%);
      padding: 72px 48px;
    }

.stats-inner {
      max-width: 1280px; margin: 0 auto;
      display: grid; grid-template-columns: repeat(4,1fr); gap: 40px;
    }

.stat { text-align: center; }

.stat-val { font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 800; color: white; line-height: 1; margin-bottom: 8px; }

.stat-val span { color: var(--c-accent); }

.stat-lbl { font-size: .85rem; color: rgba(255,255,255,.6); font-weight: 500; }

/* ===== TESTIMONIALS ===== */

.tst { background: linear-gradient(180deg, var(--c-bg) 0%, white 100%); }

.tst-hd { text-align: center; margin-bottom: 56px; }

.tst-hd .sec-label { justify-content: center; }

.tst-hd .sec-sub { margin: 0 auto; }

.rating-bar {
      display: flex; align-items: center; justify-content: center;
      gap: 14px; margin-bottom: 52px;
    }

.stars { display: flex; gap: 4px; color: #F59E0B; }

.rating-val { font-weight: 800; font-size: 1.25rem; color: var(--c-primary); }

.rating-cnt { color: var(--c-text-soft); font-size: .84rem; }

.tst-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }

.tst-card {
      background: white; border-radius: var(--r-xl); padding: 32px;
      border: 1px solid var(--c-border); box-shadow: var(--sh-sm);
      transition: transform 320ms var(--ease-out), box-shadow 320ms var(--ease-out);
    }

.tst-card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }

.tst-stars { display: flex; gap: 3px; color: #F59E0B; margin-bottom: 16px; }

.tst-quote {
      font-size: .91rem; line-height: 1.72; color: var(--c-text-mid);
      margin-bottom: 24px; font-style: italic; position: relative; padding-top: 12px;
    }

.tst-quote::before {
      content: '\201C'; font-size: 3rem; color: var(--c-accent); line-height: .3;
      display: block; margin-bottom: 10px; font-style: normal; font-weight: 700;
    }

.tst-author {
      display: flex; align-items: center; gap: 13px;
      padding-top: 20px; border-top: 1px solid var(--c-border);
    }

.tst-av { width: 44px; height: 44px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }

.tst-name { font-weight: 700; font-size: .88rem; color: var(--c-primary); }

.tst-city { font-size: .77rem; color: var(--c-text-soft); }

/* ===== FAQ ===== */

.faq { background: white; }

.faq-hd { text-align: center; margin-bottom: 64px; }

.faq-hd .sec-label { justify-content: center; }

.faq-hd .sec-sub { margin: 0 auto; }

.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }

.faq-item {
      border: 1px solid var(--c-border); border-radius: var(--r-lg); overflow: hidden;
      transition: border-color 200ms var(--ease-out), box-shadow 200ms var(--ease-out);
    }

.faq-item.open { border-color: var(--c-primary-light); box-shadow: 0 0 0 3px rgba(31,58,46,.09); }

.faq-q {
      display: flex; align-items: center; justify-content: space-between;
      padding: 20px 26px; cursor: pointer; gap: 16px;
      font-weight: 600; font-size: .93rem; color: var(--c-primary);
      background: white; transition: background 200ms var(--ease-out);
      user-select: none; list-style: none;
    }

.faq-q:hover { background: var(--c-bg); }

.faq-chev {
      flex-shrink: 0; width: 32px; height: 32px; background: var(--c-bg);
      border-radius: 50%; display: flex; align-items: center; justify-content: center;
      transition: transform 320ms var(--ease-out), background 200ms var(--ease-out);
      color: var(--c-primary-mid);
    }

.faq-item.open .faq-chev { transform: rotate(180deg); background: var(--c-primary); color: white; }

.faq-a { max-height: 0; overflow: hidden; transition: max-height 420ms var(--ease-in-out); }

.faq-a-inner { padding: 0 26px 26px; font-size: .89rem; color: var(--c-text-mid); line-height: 1.78; }

/* ===== CTA ===== */

.cta-sec {
      background: linear-gradient(140deg, var(--c-primary) 0%, var(--c-primary-mid) 100%);
      padding: 108px 48px; text-align: center; position: relative; overflow: hidden;
    }

.cta-sec::before {
      content: ''; position: absolute; inset: 0;
      background-image:
        radial-gradient(ellipse 60% 50% at 25% 55%, rgba(63,143,91,.12) 0%, transparent 55%),
        radial-gradient(ellipse 40% 35% at 75% 20%, rgba(255,255,255,.05) 0%, transparent 45%);
    }

.cta-inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }

.cta-h2 {
      font-size: clamp(1.9rem, 3.5vw, 3.1rem); font-weight: 800; color: white;
      line-height: 1.18; letter-spacing: -.026em; margin-bottom: 16px;
    }

.cta-sub { font-size: 1.05rem; color: rgba(255,255,255,.72); margin-bottom: 44px; line-height: 1.65; }

.price-pill {
      display: inline-flex; align-items: baseline; gap: 5px;
      background: rgba(63,143,91,.16); border: 1px solid rgba(63,143,91,.32);
      border-radius: var(--r-full); padding: 8px 22px; margin-bottom: 36px; color: var(--c-accent);
    }

.price-pill .amt { font-size: 1.5rem; font-weight: 800; }

.price-pill .per { font-size: .84rem; font-weight: 500; opacity: .8; }

.cta-search { max-width: 620px; margin: 0 auto 32px; }

.cta-perks { display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; }

.cta-perk { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.82); font-size: .84rem; font-weight: 500; }

.cta-perk svg { color: var(--c-accent); }

.cta-example { margin-top: 26px; font-size: .9rem; color: rgba(255,255,255,.62); }

.cta-example a { color: var(--c-accent); font-weight: 600; text-decoration: none; }

.cta-example a:hover { text-decoration: underline; }

/* ===== FOOTER ===== */

.footer { background: #020810; color: rgba(255,255,255,.65); padding: 88px 48px 44px; }

.footer-inner { max-width: 1280px; margin: 0 auto; }

.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 64px; margin-bottom: 64px; }

.footer-brand { max-width: 290px; }

.footer-logo {
      display: flex; align-items: center; gap: 10px;
      color: white; text-decoration: none; margin-bottom: 16px;
    }

.footer-logo-txt { font-weight: 700; font-size: 1.1rem; letter-spacing: -.02em; }

.footer-logo-txt span { color: var(--c-accent); }

.footer-desc { font-size: .86rem; line-height: 1.72; margin-bottom: 24px; }

.footer-socials { display: flex; gap: 10px; }

.footer-soc {
      width: 36px; height: 36px; background: rgba(255,255,255,.07);
      border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,.65); text-decoration: none;
      transition: background 200ms var(--ease-out), color 200ms var(--ease-out);
    }

.footer-soc:hover { background: var(--c-accent); color: white; }

.footer-col h4 {
      color: white; font-weight: 700; font-size: .82rem;
      text-transform: uppercase; letter-spacing: .08em; margin-bottom: 20px;
    }

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-links a {
      color: rgba(255,255,255,.6); text-decoration: none;
      font-size: .86rem; transition: color 200ms var(--ease-out);
    }

.footer-links a:hover { color: white; }

.footer-btm {
      border-top: 1px solid rgba(255,255,255,.07); padding-top: 32px;
      display: flex; align-items: center; justify-content: space-between;
      flex-wrap: wrap; gap: 16px;
    }

.footer-copy { font-size: .8rem; }

.footer-legal { display: flex; gap: 24px; }

.footer-legal a { color: rgba(255,255,255,.45); text-decoration: none; font-size: .8rem; transition: color 200ms; }

.footer-legal a:hover { color: white; }

/* ===== MODALS ===== */

.modal-backdrop {
      position: fixed; inset: 0; z-index: 300;
      background: rgba(15, 30, 22, 0.72);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
      display: flex; align-items: center; justify-content: center; padding: 24px;
      opacity: 0; pointer-events: none;
      transition: opacity 250ms var(--ease-out);
    }

.modal-backdrop.open {
      opacity: 1; pointer-events: all;
    }

.modal {
      background: white; border-radius: var(--r-xl);
      width: 100%; max-width: 640px; max-height: 80vh;
      display: flex; flex-direction: column;
      box-shadow: var(--sh-xl);
      transform: scale(0.95) translateY(12px);
      transition: transform 280ms var(--ease-out);
    }

.modal-backdrop.open .modal {
      transform: scale(1) translateY(0);
    }

.modal-header {
      display: flex; align-items: center; justify-content: space-between;
      padding: 24px 28px; border-bottom: 1px solid var(--c-border); flex-shrink: 0;
    }

.modal-title {
      font-size: 1.1rem; font-weight: 700; color: var(--c-primary); letter-spacing: -.02em;
    }

.modal-close {
      width: 36px; height: 36px; border-radius: 50%;
      background: var(--c-bg); border: none; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      color: var(--c-text-mid);
      transition: background 180ms var(--ease-out), transform 160ms var(--ease-out);
      flex-shrink: 0;
    }

.modal-close:hover { background: var(--c-border); }

.modal-close:active { transform: scale(0.93); }

.modal-body {
      padding: 28px; overflow-y: auto; line-height: 1.75;
      font-size: .9rem; color: var(--c-text-mid);
    }

.modal-body h2,
.modal-body h3 {
      font-size: .95rem; font-weight: 700; color: var(--c-primary);
      margin: 20px 0 8px;
    }

.modal-body h2:first-child,
.modal-body h3:first-child { margin-top: 0; }

.modal-body p { margin-bottom: 12px; }

.modal-body ul { padding-left: 20px; margin-bottom: 12px; }

.modal-body ul li { margin-bottom: 6px; }

/* ===== KEYFRAMES ===== */

@keyframes aFadeUp   { from { opacity:0; transform:translateY(22px); } to { opacity:1; transform:translateY(0); } }

@keyframes aFadeDown { from { opacity:0; transform:translateY(-14px); } to { opacity:1; transform:translateY(0); } }

@keyframes aPulse    { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:.65; transform:scale(1.45); } }

@keyframes aFloat    { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-13px); } }

@keyframes aBounce   { 0%,100% { transform:translateY(0); } 50% { transform:translateY(6px); } }

@keyframes aShake {
      0%,100% { transform:translateX(0); }
      20%     { transform:translateX(-8px); }
      40%     { transform:translateX(8px); }
      60%     { transform:translateX(-6px); }
      80%     { transform:translateX(5px); }
    }

/* ===== RESPONSIVE ===== */

/* ===== CONTACT FORM ===== */

.cf-row { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }

.cf-label { font-size: .78rem; font-weight: 700; color: var(--c-primary); }

.cf-input, .cf-textarea, .cf-select {
      width: 100%; padding: 11px 14px;
      font-family: 'Poppins', sans-serif; font-size: .88rem; color: var(--c-text);
      background: var(--c-bg); border: 1px solid var(--c-border);
      border-radius: var(--r-md); outline: none;
      transition: border-color 180ms var(--ease-out), box-shadow 180ms var(--ease-out);
    }

.cf-input:focus, .cf-textarea:focus, .cf-select:focus {
      border-color: var(--c-accent);
      box-shadow: 0 0 0 3px rgba(63,143,91,.18);
    }

.cf-textarea { resize: vertical; min-height: 110px; line-height: 1.6; }

.cf-btn {
      width: 100%; padding: 13px 24px;
      background: var(--c-accent); color: white;
      font-family: 'Poppins', sans-serif; font-size: .9rem; font-weight: 600;
      border: none; border-radius: var(--r-full); cursor: pointer;
      transition: background 200ms var(--ease-out), transform 160ms var(--ease-out);
    }

.cf-btn:hover  { background: var(--c-accent-h); }

.cf-btn:active { transform: scale(0.97); }

.cf-note { font-size: .76rem; color: var(--c-text-soft); margin-top: 12px; text-align: center; }

.cf-status { font-size:.82rem; margin-top:10px; padding:10px 14px; border-radius:7px; text-align:center; display:none; }

.cf-status--error { display:block; background:rgba(220,38,38,.08); color:#B91C1C; border:1px solid rgba(220,38,38,.16); }

.cf-success { text-align:center; padding:28px 8px 8px; display:none; }

.cf-success svg { display:block; margin:0 auto 12px; }

.cf-success strong { display:block; font-size:1rem; color:var(--c-text); margin-bottom:6px; }

.cf-success p { font-size:.88rem; color:var(--c-text-soft); line-height:1.55; margin:0; }

.tst-role-tag {
      display: inline-block; font-size: .6rem; font-weight: 700;
      text-transform: uppercase; letter-spacing: .08em;
      color: var(--c-accent); background: var(--c-accent-bg);
      padding: 3px 10px; border-radius: var(--r-full); margin-bottom: 14px;
    }

/* ===== AUTOCOMPLETE ===== */

.sbox-wrap { position: relative; }

.ac-dropdown {
      position: fixed;
      background: white; border-radius: var(--r-md);
      border: 1px solid var(--c-border);
      box-shadow: var(--sh-lg);
      overflow: hidden; z-index: 9999;
      animation: aFadeDown 160ms var(--ease-out) both;
    }

.ac-item {
      display: flex; align-items: center; gap: 12px;
      padding: 13px 18px;
      font-size: .88rem; color: var(--c-text); cursor: pointer;
      border-bottom: 1px solid var(--c-border);
      transition: background 120ms var(--ease-out);
    }

.ac-item:last-child { border-bottom: none; }

.ac-item:hover { background: var(--c-bg); }

.ac-item.ac-active { background: var(--c-accent-bg); }

.ac-item-icon { flex-shrink: 0; color: var(--c-accent); }

.ac-item-text { flex: 1; min-width: 0; line-height: 1.45; }

.ac-item-text b { font-weight: 700; color: var(--c-primary); }

.ac-result {
      margin-top: 10px;
      background: white;
      border: 1px solid var(--c-border);
      border-left: 3px solid var(--c-accent);
      border-radius: var(--r-md);
      padding: 16px 20px;
      animation: aFadeDown 200ms var(--ease-out) both;
    }

.ac-result-lbl-top {
      font-size: .68rem; font-weight: 700;
      color: var(--c-text-soft); text-transform: uppercase;
      letter-spacing: .06em; margin-bottom: 10px;
      display: flex; align-items: center; gap: 6px;
    }

.ac-result-lbl-top svg { color: var(--c-accent); }

.ac-result-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
      gap: 10px 24px;
    }

.ac-result-key {
      font-size: .68rem; font-weight: 700;
      color: var(--c-text-soft); text-transform: uppercase;
      letter-spacing: .06em; margin-bottom: 2px;
    }

.ac-result-val {
      font-size: .88rem; font-weight: 600; color: var(--c-primary);
    }

.ac-spinner {
      display: flex; justify-content: center; padding: 14px;
      color: var(--c-text-soft); font-size: .82rem; gap: 8px; align-items: center;
    }

@keyframes acSpin {
      to { transform: rotate(360deg); }
    }

.ac-spin-ico { animation: acSpin .7s linear infinite; }

.grecaptcha-badge { visibility: hidden; }



    /* ================================================================
       ORDER-OVERVIEW PAGINA (order_view.html) — pagina-specifieke stijlen
       ================================================================ */

/* ===== ORDER HEADER ===== */

.order-header {
      background: linear-gradient(140deg, #020810 0%, #041020 30%, var(--c-primary) 65%, var(--c-primary-mid) 100%);
      padding: 110px 48px 64px;
      position: relative; overflow: hidden;
    }

.oh-noise {
      position: absolute; inset: 0; pointer-events: none;
      background-image:
        radial-gradient(ellipse 80% 60% at 15% 55%, rgba(31,58,46,.45) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 85% 15%, rgba(63,143,91,.12) 0%, transparent 50%);
    }

.oh-grid {
      position: absolute; inset: 0; pointer-events: none;
      background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
      background-size: 64px 64px;
    }

.oh-inner {
      position: relative; z-index: 2;
      max-width: 1100px; margin: 0 auto;
    }

/* Progress */

.progress {
      display: flex; align-items: center;
      margin-bottom: 44px;
      animation: aFadeDown 600ms var(--ease-out) both;
    }

.ps { display: flex; flex-direction: column; align-items: center; gap: 7px; flex: 0 0 auto; }

.ps-num {
      width: 38px; height: 38px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: .82rem; font-weight: 700;
      background: rgba(255,255,255,.1); color: rgba(255,255,255,.38);
      border: 2px solid rgba(255,255,255,.16);
    }

.ps-lbl { font-size: .72rem; font-weight: 600; color: rgba(255,255,255,.4); white-space: nowrap; }

.ps.done .ps-num { background: var(--c-success); color: white; border-color: var(--c-success); }

.ps.done .ps-lbl { color: rgba(255,255,255,.7); }

.ps.active .ps-num { background: var(--c-accent); color: white; border-color: var(--c-accent); font-weight: 800; }

.ps.active .ps-lbl { color: white; font-weight: 700; }

.pl {
      flex: 1; height: 2px; background: rgba(255,255,255,.14);
      min-width: 32px; max-width: 80px; margin: 0 6px;
      position: relative; top: -14px;
    }

.pl.done { background: var(--c-success); }

.oh-title {
      font-size: clamp(1.9rem, 3.5vw, 2.8rem); font-weight: 800; color: white;
      letter-spacing: -.026em; line-height: 1.18; margin-bottom: 10px;
      animation: aFadeUp 700ms 100ms var(--ease-out) both;
    }

.oh-addr {
      font-size: 1.05rem; color: rgba(255,255,255,.66); font-weight: 400;
      animation: aFadeUp 700ms 200ms var(--ease-out) both;
    }

.oh-addr strong { color: rgba(255,255,255,.92); font-weight: 600; }

/* ===== ORDER BODY ===== */

.order-body { padding: 44px 48px 88px; }

.order-body-inner { max-width: 1100px; margin: 0 auto; }

.order-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 400px;
      gap: 32px;
      align-items: start;
    }

/* ===== ADDRESS CARD ===== */

.addr-card {
      background: white; border-radius: var(--r-xl);
      border: 1px solid var(--c-border); box-shadow: var(--sh-sm);
      padding: 28px 32px; margin-bottom: 20px;
    }

.addr-verified {
      display: inline-flex; align-items: center; gap: 6px;
      background: var(--c-success-bg); color: var(--c-success);
      border-radius: var(--r-full); padding: 5px 14px;
      font-size: .72rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
      margin-bottom: 18px;
    }

.addr-street {
      font-size: 1.65rem; font-weight: 800; color: var(--c-primary);
      letter-spacing: -.025em; line-height: 1.15; margin-bottom: 6px;
      overflow-wrap: break-word;
    }

.addr-city { font-size: 1rem; color: var(--c-text-mid); font-weight: 500; margin-bottom: 18px; }

.addr-tags {
      display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
      margin-bottom: 22px; padding-bottom: 22px; border-bottom: 1px solid var(--c-border);
    }

.addr-tag {
      background: var(--c-bg); border: 1px solid var(--c-border);
      border-radius: var(--r-sm); padding: 4px 12px;
      font-size: .76rem; font-weight: 600; color: var(--c-text-mid);
    }

.btn-back {
      display: inline-flex; align-items: center; gap: 7px;
      color: var(--c-text-mid); text-decoration: none;
      font-size: .84rem; font-weight: 500;
      transition: color 200ms var(--ease-out);
    }

.btn-back:hover { color: var(--c-primary); }

.btn-back svg { transition: transform 200ms var(--ease-out); }

.btn-back:hover svg { transform: translateX(-3px); }

/* ===== INCLUDES CARD ===== */

.includes-card {
      background: white; border-radius: var(--r-xl);
      border: 1px solid var(--c-border); box-shadow: var(--sh-sm);
      padding: 28px 32px; margin-bottom: 20px;
    }

.includes-card h3 {
      font-size: 1rem; font-weight: 700; color: var(--c-primary);
      margin-bottom: 20px; padding-bottom: 14px; border-bottom: 1px solid var(--c-border);
    }

.inc-list { list-style: none; display: flex; flex-direction: column; gap: 13px; margin-bottom: 22px; }

.inc-item { display: flex; align-items: flex-start; gap: 12px; }

.inc-ico {
      flex-shrink: 0; width: 22px; height: 22px;
      background: var(--c-accent-bg); border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      margin-top: 1px; color: var(--c-accent);
    }

.inc-text { font-size: .86rem; color: var(--c-text-mid); line-height: 1.55; overflow-wrap: break-word; min-width: 0; }

.inc-text b { color: var(--c-text); font-weight: 600; }

/* ===== TRUST ROW ===== */

.trust-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }

.trust-val { font-size: 1.15rem; font-weight: 800; color: var(--c-primary); line-height: 1; margin-bottom: 5px; }

.trust-val span { color: var(--c-accent); }

.trust-lbl { font-size: .72rem; color: var(--c-text-soft); font-weight: 500; line-height: 1.4; }

/* ===== ORDER CARD (RIGHT) ===== */

.order-card-sticky { position: sticky; top: 90px; }

.order-card {
      background: white; border-radius: var(--r-xl);
      border: 1px solid var(--c-border); box-shadow: var(--sh-lg);
      overflow: hidden;
    }

.order-card-hd {
      background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-mid) 100%);
      padding: 22px 28px;
      display: flex; align-items: center; gap: 14px;
    }

.oc-logo {
      width: 38px; height: 38px; background: rgba(255,255,255,.15);
      border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center;
      color: white; flex-shrink: 0;
    }

.oc-hdtxt { flex: 1; min-width: 0; }

.oc-title { font-size: .9rem; font-weight: 700; color: white; margin-bottom: 2px; }

.oc-addr { font-size: .76rem; color: rgba(255,255,255,.65); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.order-card-body { padding: 24px 28px; }

.oc-product {
      display: flex; justify-content: space-between; align-items: flex-start;
      padding-bottom: 16px; border-bottom: 1px solid var(--c-border);
      gap: 16px; margin-bottom: 10px;
    }

.oc-product-lbl { font-size: .88rem; font-weight: 700; color: var(--c-primary); margin-bottom: 3px; }

.oc-product-sub { font-size: .76rem; color: var(--c-text-soft); line-height: 1.45; }

.oc-product-price { font-size: .92rem; font-weight: 700; color: var(--c-text); white-space: nowrap; }

.oc-row { display: flex; justify-content: space-between; font-size: .83rem; color: var(--c-text-mid); padding: 5px 0; }

.oc-total {
      display: flex; justify-content: space-between; align-items: center;
      padding: 16px 0; border-top: 2px solid var(--c-border);
      margin: 8px 0 20px;
    }

.oc-total-lbl { font-size: .95rem; font-weight: 700; color: var(--c-primary); }

.oc-total-incl { font-size: .72rem; color: var(--c-text-soft); margin-top: 2px; }

.oc-total-amt { font-size: 1.65rem; font-weight: 800; color: var(--c-primary); line-height: 1; }

/* Payment methods */

.pm-section { margin-bottom: 18px; }

.pm-lbl { font-size: .72rem; font-weight: 700; color: var(--c-text-soft); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 10px; }

.pm-methods { display: flex; gap: 6px; flex-wrap: wrap; }

.pm-badge {
      height: 28px; padding: 0 10px;
      background: var(--c-bg); border: 1px solid var(--c-border);
      border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center;
      font-size: .72rem; font-weight: 700; color: var(--c-text-mid); gap: 5px;
    }

.pm-ideal    { background: #CC0066; color: white; border-color: #CC0066; }

.pm-banc     { background: #005499; color: white; border-color: #005499; }

/* Contact fields */

.contact-section {
      border-top: 1px solid var(--c-border); padding-top: 18px; margin-bottom: 18px;
    }

.cs-lbl { font-size: .72rem; font-weight: 700; color: var(--c-text-soft); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 4px; }

.cs-sub { font-size: .8rem; color: var(--c-text-soft); margin-bottom: 14px; line-height: 1.5; }

.form-field { margin-bottom: 12px; }

.form-field:last-child { margin-bottom: 0; }

.form-label { display: block; font-size: .78rem; font-weight: 600; color: var(--c-text-mid); margin-bottom: 5px; }

.form-input {
      display: block; width: 100%;
      padding: 10px 14px;
      font-family: 'Poppins', sans-serif; font-size: .88rem; color: var(--c-text);
      background: white; border: 1.5px solid var(--c-border); border-radius: var(--r-md);
      outline: none;
      transition: border-color 200ms var(--ease-out), box-shadow 200ms var(--ease-out);
    }

.form-input::placeholder { color: var(--c-text-soft); font-weight: 400; }

.form-input:focus {
      border-color: var(--c-primary-light);
      box-shadow: 0 0 0 3px rgba(63,143,91,.14);
    }

.form-input.invalid {
      border-color: #DC2626;
      box-shadow: 0 0 0 3px rgba(220,38,38,.1);
      animation: aShake 400ms var(--ease-out);
    }

/* Terms */

.terms-wrap { margin-bottom: 16px; }

.terms-lbl {
      display: flex; align-items: flex-start; gap: 10px; cursor: pointer;
      font-size: .83rem; color: var(--c-text-mid); line-height: 1.6; user-select: none;
    }

.terms-lbl a { color: var(--c-primary); font-weight: 600; }

.terms-lbl a:hover { color: var(--c-accent); }

.terms-cb {
      flex-shrink: 0; width: 18px; height: 18px; margin-top: 2px;
      border: 2px solid var(--c-border); border-radius: 4px;
      background: white; cursor: pointer;
      appearance: none; -webkit-appearance: none;
      display: inline-flex; align-items: center; justify-content: center;
      transition: border-color 200ms var(--ease-out), background 200ms var(--ease-out);
      position: relative;
    }

.terms-cb:checked { background: var(--c-primary); border-color: var(--c-primary); }

.terms-cb:checked::after {
      content: '';
      position: absolute;
      width: 10px; height: 6px;
      border-left: 2px solid white; border-bottom: 2px solid white;
      transform: rotate(-45deg) translate(0, -1px);
    }

.terms-cb:focus { outline: 3px solid rgba(63,143,91,.28); outline-offset: 2px; }

.terms-cb.shake { animation: aShake 400ms var(--ease-out); }

.terms-cb.shake-border { border-color: #DC2626 !important; }

/* Pay button */

.btn-pay {
      display: flex; align-items: center; justify-content: center; gap: 10px;
      width: 100%; padding: 16px 24px;
      background: var(--c-accent); color: white;
      border: none; border-radius: var(--r-full);
      font-family: 'Poppins', sans-serif; font-size: 1rem; font-weight: 700;
      cursor: pointer; letter-spacing: -.01em;
      box-shadow: 0 4px 20px rgba(63,143,91,.32);
      transition: background 200ms var(--ease-out), transform 160ms var(--ease-out), box-shadow 200ms var(--ease-out);
      margin-bottom: 12px;
    }

.btn-pay:hover { background: var(--c-accent-h); box-shadow: 0 6px 26px rgba(63,143,91,.42); }

.btn-pay:active { transform: scale(0.97); }

/* Security note */

.security-note {
      display: flex; align-items: center; justify-content: center; gap: 6px;
      font-size: .75rem; color: var(--c-text-soft); text-align: center; line-height: 1.5;
    }

.security-note svg { color: var(--c-success); flex-shrink: 0; }


    /* Bronnen-badges: iets compacter op de order-pagina dan op home */
    body.page-order .src-row { gap: 8px; margin-top: 0; padding-top: 18px; border-top: 1px solid var(--c-border); }
    body.page-order .src-lbl { font-size: .68rem; }
    body.page-order .src-badge { padding: 3px 10px; font-size: .72rem; }


    /* Vertrouwenskaartjes op de order-pagina (was .trust-item, hernoemd i.v.m. naamconflict met home) */

.trust-card {
      background: white; border-radius: var(--r-lg);
      border: 1px solid var(--c-border); box-shadow: var(--sh-sm);
      padding: 16px 12px; text-align: center;
    }


    /* ================================================================
       WHITE THEME — STRUCTURELE INGREPEN
       Staat bewust vóór de RESPONSIVE-blokken zodat de media-queries
       hieronder blijven winnen op mobiel.
       ================================================================ */

    /* ---- Navigatie: lichte balk i.p.v. transparant op donkere hero ---- */
    .nav {
      background: rgba(255,255,255,.88);
      backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
      box-shadow: inset 0 -1px 0 var(--c-border);
    }
    .nav.scrolled { background: rgba(255,255,255,.96); box-shadow: var(--sh-sm); }
    .nav-logo { color: var(--c-text); }
    .nav-logo-text span { color: var(--c-accent); }
    .nav-links a { color: var(--c-text-mid); }
    .nav-links a:hover { color: var(--c-text); }
    .nav-burger { color: var(--c-text); }
    .nav-burger.open { color: #fff; }

    /* ---- Hero: licht, rustig, zonder ruislagen en beweging ---- */
    .hero {
      min-height: auto;
      /* fallback-kleur zolang de achtergrondfoto (inline in de HTML) nog laadt of ontbreekt */
      background: linear-gradient(165deg, #e3efe7 0%, #eaf2ec 50%, #f4f8f5 100%);
      /* alleen de bestandsnaam staat inline in de HTML; grootte/positie staan hier zodat
         de mobiele media query hieronder de positie kan wijzigen */
      background-size: cover;
      background-position: left center;
      background-repeat: no-repeat;
    }
    /* Witte waas over de foto — vervangt de ingebakken vaging van de afbeelding zelf,
       zodat elke achtergrondfoto (background01.png, background02.png, ...) even leesbaar is. */
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      z-index: 1;
      pointer-events: none;
      background: linear-gradient(90deg,
        rgba(var(--hero-overlay-color), var(--hero-overlay-start)) 0%,
        rgba(var(--hero-overlay-color), var(--hero-overlay-mid)) 32%,
        rgba(var(--hero-overlay-color), var(--hero-overlay-end)) 68%
      );
    }
    .hero-noise, .hero-grid, .hero-scroll { display: none; }
    .hero-body { padding: 150px 48px 110px; gap: 72px; }
    .hero-badge {
      /* witte pil i.p.v. mint: mint-vulling valt weg tegen de groene hero-wash */
      background: #fff; border-color: rgba(63,143,91,.28);
      color: var(--c-accent-h); box-shadow: var(--sh-sm); animation: none;
    }
    .badge-dot { background: var(--c-accent); animation: none; }
    .hero-h1 {
      color: var(--c-text); font-weight: 700;
      font-size: clamp(2.1rem, 4.6vw, 3.4rem);
      letter-spacing: -.02em; animation: none;
    }
    .hero-h1 em { color: var(--c-accent); }
    .hero-sub { color: var(--c-text); animation: none; }
    .hero-search-wrap { animation: none; }
    .hero-trust { animation: none; }
    .trust-item { color: var(--c-text-mid); }
    .trust-item svg { color: var(--c-accent); }
    .hero-example {
      color: var(--c-text); border-left-color: rgba(63,143,91,.4);
      animation: none;
    }
    .hero-example strong { color: var(--c-text); }
    .hero-example a { color: var(--c-accent); }
    .sbox {
      border: 1px solid var(--c-border); box-shadow: var(--sh-md);
    }
    .sbox:focus-within { box-shadow: var(--sh-md), 0 0 0 3px rgba(63,143,91,.18); }
    .hero-img { filter: none; animation: none; }
    .fc { box-shadow: var(--sh-lg); border: 1px solid var(--c-border); animation: none; }

    /* ---- Rustiger type- en ruimte-ritme ---- */
    .sec { padding: 128px 48px; }
    .sec-h2 { font-weight: 700; letter-spacing: -.02em; font-size: clamp(1.7rem, 2.8vw, 2.4rem); }

    /* ---- Rapport-categorieën: platte kaarten, geen lift ---- */
    /* Tien onderwerpen delen niet door 3 (dat geeft een losse kaart op de laatste rij),
       daarom twee kolommen: 5 volle rijen. De media queries hieronder blijven winnen. */
    .catg-grid-10 { grid-template-columns: repeat(2, 1fr); }
    .catg-card { background: #fff; box-shadow: none; }
    .catg-card:hover {
      transform: none; box-shadow: var(--sh-sm);
      border-color: var(--c-accent); background: #fff;
    }
    .catg-ico { background: var(--c-accent-bg); color: var(--c-accent-h); }

    .hiw-hd { margin-bottom: 56px; }
    .steps {
      grid-template-columns: 1fr; gap: 16px;
      max-width: 780px; margin: 0 auto;
    }
    .steps-line { display: none; }
    .step {
      display: grid;
      grid-template-columns: auto 1fr;
      column-gap: 22px; row-gap: 4px;
      text-align: left; align-items: start;
      padding: 30px 34px;
      box-shadow: none; border: 1px solid var(--c-border);
    }
    .step:hover { transform: none; box-shadow: var(--sh-md); }
    .step-ico { display: none; }
    .step-num {
      grid-column: 1; grid-row: 1 / 3; align-self: start;
      margin: 0; width: 46px; height: 46px;
      background: var(--c-accent-bg); color: var(--c-accent-h);
      box-shadow: none; font-size: 1.05rem;
    }
    .step h3 { grid-column: 2; margin-bottom: 4px; }
    .step p  { grid-column: 2; }

    /* ---- Stats: terug naar 2, koele grijstint i.p.v. donkere balk ---- */
    .stats {
      background: var(--c-bg-cool);
      border-top: 1px solid var(--c-border); border-bottom: 1px solid var(--c-border);
      padding: 60px 48px;
    }
    .stats-inner { grid-template-columns: repeat(2,1fr); max-width: 680px; gap: 48px; }
    /* toon in de rustige weergave: "rapporten opgesteld" + de bestemmingsplan-straal */
    .stat:nth-child(2), .stat:nth-child(4) { display: none; }
    .stat-val { color: var(--c-primary); font-size: clamp(1.8rem, 3vw, 2.5rem); }
    .stat-val span { color: var(--c-accent); }
    .stat-lbl { color: var(--c-text-mid); }

    /* ---- Rapport-sectie: zachtere schaduw ---- */
    .mock, .mock-score { box-shadow: var(--sh-lg); }

    /* ---- Testimonials: gedempte sterren, geen lift ---- */
    .tst { background: #fff; }
    .stars, .tst-stars { color: #C9A96A; }
    .tst-card { box-shadow: none; }
    .tst-card:hover { transform: none; box-shadow: var(--sh-md); }
    .tst-quote::before { color: var(--c-accent); }
    .rating-val { color: var(--c-primary); }

    /* ---- FAQ: groene i.p.v. blauwe open-staat ---- */
    .faq-item.open { border-color: var(--c-accent); box-shadow: 0 0 0 3px rgba(63,143,91,.1); }
    .faq-item.open .faq-chev { background: var(--c-accent); }

    /* ---- CTA: zelfde koele grijstint als .hiw, donkere tekst ---- */
    .cta-sec { background: var(--c-bg-cool); }
    .cta-sec::before { display: none; }
    .cta-h2 { font-weight: 700; color: var(--c-primary); }
    .cta-sub { color: var(--c-text-mid); }
    .cta-perk { color: var(--c-text-mid); }
    .cta-perk svg { color: var(--c-accent); }
    .cta-example { color: var(--c-text-mid); }
    .cta-example a { color: var(--c-accent); }
    .price-pill {
      background: #fff; border-color: rgba(63,143,91,.28);
      color: var(--c-accent-h); box-shadow: var(--sh-sm);
    }

    /* ---- Order-header (order_overview): groene gradient (base) zonder ruislagen ---- */
    .oh-noise, .oh-grid { display: none; }

    /* ---- Footer: blauw houden zoals in blue.css ---- */
    .footer { background: #020810; }
    .footer-logo-txt span { color: var(--c-accent-on-dark); }

    /* ---- Minder beweging overal ---- */
    .fu { transition: opacity 500ms var(--ease-out), transform 500ms var(--ease-out); }


    /* ================================================================
       RESPONSIVE
       ================================================================ */

@media (min-width: 1024px) { .hero-right { display: flex; } }

@media (max-width: 1023px) {
      .nav-links { display: none; }
      .nav-burger { display: flex; }
      .catg-grid { grid-template-columns: repeat(2,1fr); }
      .steps { grid-template-columns: 1fr; gap: 24px; }
      .steps-line { display: none; }
      .rpt-grid { grid-template-columns: 1fr; gap: 52px; }
      .stats-inner { grid-template-columns: repeat(2,1fr); gap: 40px; }
      .tst-grid { grid-template-columns: 1fr; gap: 20px; }
      .footer-top { grid-template-columns: 1fr 1fr; gap: 44px; }
      .order-grid { grid-template-columns: minmax(0, 1fr); }
      .order-left, .order-right { min-width: 0; }
      .order-card-sticky { position: static; order: -1; }
    }

@media (max-width: 639px) {
      .sec, .cta-sec, .stats { padding: 72px 24px; }
      .nav { padding-left: 24px; padding-right: 24px; }
      .nav.scrolled { padding-left: 24px; padding-right: 24px; }
      .hero-body { padding: 100px 24px 60px; }
      /* Achtergrondfoto op mobiel: een ander deel van de foto tonen én spiegelen.
         "left center" (desktop) toont het linkerdeel van de bronfoto — bij background05.png
         is dat het drukke icoontjes-/bordcluster. Op mobiel, waar geen fotohelft meer
         overblijft naast de tekst, verschuiven we naar het rustigere rechterdeel (bij
         background05.png de twee woningen) en spiegelen we dat alsnog horizontaal. */
      .hero { transform: scaleX(-1); background-position: 82% center; }
      .hero-body, .hero-scroll { transform: scaleX(-1); }
      /* Lichtere, gelijkmatige waas i.p.v. het links-naar-rechts-verloop van desktop —
         op mobiel is er geen "foto-only"-helft meer, dus moet de hele breedte leesbaar
         zijn. Licht genoeg gehouden om de foto (nu de woningen) zichtbaar te laten. */
      .hero::before { background: rgba(255,255,255,.8); }
      .sbox { flex-wrap: wrap; }
      .sbox-icon { padding: 14px 8px 14px 16px; }
      .sbox-input { flex: 1; padding: 14px 8px; min-width: 0; }
      .sbox-btn { margin: 0 8px 8px; width: calc(100% - 16px); padding: 14px 28px; flex-basis: 96%; }
      .catg-grid { grid-template-columns: 1fr; }
      .stats-inner { grid-template-columns: 1fr 1fr; gap: 28px; }
      .footer-top { grid-template-columns: 1fr; gap: 32px; }
      .footer-btm { flex-direction: column; align-items: center; text-align: center; }
      .footer-legal { justify-content: center; flex-wrap: wrap; column-gap: 20px; row-gap: 8px; }
      .mock-score { top: -12px; right: -8px; }
      .nav { padding: 14px 24px; }
      .nav.scrolled { padding: 12px 24px; }
      .order-header { padding: 90px 24px 44px; }
      .order-body { padding: 24px 24px 64px; }
      .progress .ps-lbl { display: none; }
      .addr-card, .includes-card { padding: 20px 22px; }
      .order-card-body { padding: 20px; }
      .trust-row { grid-template-columns: repeat(3, 1fr); }
      .footer { padding: 56px 24px 36px; }
    }

@media (prefers-reduced-motion: reduce) {
      .fu, .fc, .hero-img { transition: opacity 200ms ease; animation: none; }
      @keyframes aFadeUp { from { opacity:0; } to { opacity:1; } }
      @keyframes aFadeDown { from { opacity:0; } to { opacity:1; } }
      .fu { transition: opacity 200ms ease; animation: none; }
    }
