/* ============================================================
   autokwijt.nl — design system
   Concept: eerlijk & nuchter Noord-Nederlands, premium uitgevoerd.
   Palet: dennengroen (vertrouwen) + honing-goud (waarde) + gele
   kentekenplaat (het enige domein-signaal) op helder wit.
   Type: Bricolage Grotesque (display, karakter) + Hanken Grotesk (body).
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,500;12..96,600;12..96,700;12..96,800&family=Hanken+Grotesk:wght@400;500;600;700&display=swap');

:root {
  /* ---- kleur ---- */
  --forest:       #15362a;   /* primair donker */
  --forest-deep:  #0d231b;   /* donkerst: footer, hero-bodem */
  --moss:         #2c6e49;   /* mid groen: iconen, links */
  --moss-bright:  #3a8a5c;
  --action:       #1f7a4d;   /* primaire CTA-groen */
  --action-hover: #19663f;
  --gold:         #e0a52e;   /* honing-goud: waarde, garantie */
  --gold-deep:    #b9831c;
  --gold-soft:    #f6e7c4;
  --paper:        #f6f4ee;   /* warme lichte sectie */
  --cloud:        #eef2ee;   /* koele lichte sectie */
  --white:        #ffffff;
  --ink:          #16201c;   /* tekst */
  --ink-soft:     #51605a;   /* gedempte tekst */
  --line:         #e4e3da;   /* randen */
  --line-soft:    #eeede4;
  --plate:        #f9cf2e;   /* kentekenplaat-geel */
  --plate-edge:   #e3b91e;
  --plate-blue:   #16357a;   /* NL EU-strip */

  /* ---- spacing (4px-basis) ---- */
  --s1: 4px;  --s2: 8px;  --s3: 12px; --s4: 16px; --s5: 24px;
  --s6: 32px; --s7: 48px; --s8: 64px; --s9: 96px; --s10: 128px;

  /* ---- radius ---- */
  --r-sm: 8px; --r: 14px; --r-lg: 22px; --r-xl: 30px; --r-pill: 999px;

  /* ---- schaduw (zacht, gelaagd) ---- */
  --sh-sm: 0 1px 2px rgba(13,35,27,.06), 0 2px 6px rgba(13,35,27,.05);
  --sh:    0 4px 14px rgba(13,35,27,.08), 0 2px 6px rgba(13,35,27,.05);
  --sh-lg: 0 18px 50px rgba(13,35,27,.16), 0 6px 18px rgba(13,35,27,.08);
  --sh-gold: 0 10px 30px rgba(224,165,46,.32);

  /* ---- type ---- */
  --font-display: 'Bricolage Grotesque', system-ui, sans-serif;
  --font-body: 'Hanken Grotesk', system-ui, -apple-system, sans-serif;

  --maxw: 1180px;
}

/* ============================================================ reset / base */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select { font: inherit; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; border-radius: 4px; }

/* ============================================================ typografie */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.04; letter-spacing: -.02em; color: var(--forest); }
.display { font-size: clamp(2.6rem, 6.2vw, 4.6rem); font-weight: 800; letter-spacing: -.035em; line-height: .98; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
h3 { font-size: clamp(1.2rem, 1.8vw, 1.45rem); }
.lead { font-size: clamp(1.06rem, 1.5vw, 1.28rem); color: var(--ink-soft); line-height: 1.5; }
.eyebrow {
  font-family: var(--font-body); font-weight: 700; font-size: .8rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--moss);
  display: inline-flex; align-items: center; gap: var(--s2);
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--gold); border-radius: 2px; }
.text-gold { color: var(--gold-deep); }
mark { background: linear-gradient(180deg, transparent 58%, var(--plate) 58%); color: inherit; padding: 0 .06em; -webkit-box-decoration-break: clone; box-decoration-break: clone; }

/* ============================================================ layout */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: max(var(--s5), env(safe-area-inset-left)) max(var(--s5), env(safe-area-inset-right)); }
.section { padding-block: clamp(var(--s8), 9vw, var(--s10)); }
.section-tight { padding-block: clamp(var(--s7), 6vw, var(--s9)); }
.center { text-align: center; }
.section-head { max-width: 720px; }
.section-head.center { margin-inline: auto; }
.section-head .lead { margin-top: var(--s4); }
.bg-paper { background: var(--paper); }
.bg-cloud { background: var(--cloud); }
.bg-forest { background: var(--forest); color: #e8efe9; }
.bg-forest h2, .bg-forest h3 { color: var(--white); }
.bg-forest .lead { color: #b9cabf; }

/* ============================================================ knoppen */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--s3);
  font-family: var(--font-body); font-weight: 700; font-size: 1.02rem;
  padding: var(--s4) var(--s6); border-radius: var(--r-pill);
  transition: transform .18s ease, box-shadow .2s ease, background .2s ease;
  min-height: 56px; white-space: nowrap;
}
.btn svg { width: 20px; height: 20px; }
.btn-primary { background: var(--action); color: #fff; box-shadow: 0 8px 22px rgba(31,122,77,.32); }
.btn-primary:hover { background: var(--action-hover); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(31,122,77,.4); }
.btn-gold { background: var(--gold); color: #2a1e05; box-shadow: var(--sh-gold); }
.btn-gold:hover { background: #ecb24a; transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--forest); border: 1.5px solid var(--line); }
.btn-ghost:hover { border-color: var(--forest); background: var(--white); }
.btn-light { background: #fff; color: var(--forest); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--sh-lg); }
.btn-lg { min-height: 64px; font-size: 1.1rem; padding-inline: var(--s7); }
.btn-block { width: 100%; }

/* ============================================================ header / nav */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.86); backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid var(--line-soft);
}
.nav { display: flex; align-items: center; justify-content: space-between; min-height: 74px; gap: var(--s5); }
.brand { display: inline-flex; align-items: center; gap: var(--s3); font-family: var(--font-display); font-weight: 800; font-size: 1.32rem; color: var(--forest); letter-spacing: -.03em; }
.brand-mark {
  width: 38px; height: 38px; border-radius: 11px; flex: none;
  background: linear-gradient(150deg, var(--moss), var(--forest));
  display: grid; place-items: center; color: var(--plate); box-shadow: var(--sh-sm);
}
.brand-mark svg { width: 22px; height: 22px; }
.brand b { color: var(--gold-deep); font-weight: 800; }
.nav-links { display: flex; align-items: center; gap: var(--s6); }
.nav-links a { font-weight: 600; color: var(--ink); font-size: .98rem; transition: color .15s; }
.nav-links a:hover { color: var(--moss); }
.nav-cta { display: flex; align-items: center; gap: var(--s4); }
.nav-phone { display: inline-flex; align-items: center; gap: var(--s2); font-weight: 700; color: var(--forest); }
.nav-phone svg { width: 18px; height: 18px; color: var(--moss); }
.nav-toggle { display: none; width: 46px; height: 46px; border-radius: 12px; border: 1px solid var(--line); align-items: center; justify-content: center; }
.nav-toggle svg { width: 24px; height: 24px; }

/* ============================================================ kentekenplaat */
.plate {
  display: flex; align-items: stretch; background: var(--plate);
  border: 2px solid var(--plate-edge); border-radius: 10px;
  box-shadow: inset 0 -3px 0 rgba(0,0,0,.10), 0 6px 18px rgba(13,35,27,.14);
  overflow: hidden; height: 68px;
}
.plate-eu { background: var(--plate-blue); color: #fff; width: 40px; flex: none; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; padding-top: 4px; }
.plate-eu .stars { font-size: 13px; line-height: 1; color: var(--plate); }
.plate-eu .cc { font-weight: 800; font-size: 14px; letter-spacing: .04em; }
.plate-input {
  flex: 1; min-width: 0; background: transparent; border: 0;
  font-family: var(--font-display); font-weight: 800; font-size: clamp(1.6rem, 5vw, 2.1rem);
  letter-spacing: .12em; text-transform: uppercase; text-align: center; color: #1a1a1a;
}
.plate-input::placeholder { color: rgba(20,20,20,.4); letter-spacing: .1em; }
.plate-input:focus { outline: none; }

/* taxatie-blok in hero */
.valuator { background: #fff; border-radius: var(--r-lg); padding: var(--s5); box-shadow: var(--sh-lg); border: 1px solid var(--line-soft); }
.valuator .plate-row { display: flex; gap: var(--s3); }
.valuator .plate { flex: 1; }
.valuator-foot { display: flex; align-items: center; justify-content: space-between; margin-top: var(--s4); gap: var(--s4); flex-wrap: wrap; }
.valuator-note { font-size: .9rem; color: var(--ink-soft); }
.valuator-note a { color: var(--moss); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }

/* ============================================================ hero */
.hero { position: relative; background: var(--forest-deep); color: #eaf1ec; overflow: hidden; }
.hero::before { /* sfeer-gradient + textuur */
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(900px 500px at 78% -8%, rgba(44,110,73,.55), transparent 60%),
    radial-gradient(700px 600px at 110% 90%, rgba(224,165,46,.18), transparent 55%),
    linear-gradient(160deg, #123026, #0c2019 70%);
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(var(--s6), 5vw, var(--s9)); align-items: center; padding-block: clamp(var(--s8), 8vw, 132px); }
.hero-grid > * { min-width: 0; }   /* voorkom dat een lange kop/regel de kolom breder dan de viewport maakt */
.hero-copy { min-width: 0; }
.valuator { max-width: 100%; }
.hero-trustbar { display: flex; flex-wrap: wrap; gap: var(--s2) var(--s5); margin-bottom: var(--s5); }
.hero-trustbar span { display: inline-flex; align-items: center; gap: var(--s2); font-weight: 600; font-size: .92rem; color: #bcd0c4; }
.hero-trustbar svg { width: 18px; height: 18px; color: var(--gold); }
.hero h1 { color: #fff; }
.hero h1 mark { background: linear-gradient(180deg, transparent 55%, rgba(249,207,46,.9) 55%); color: #fff; }
.hero-sub { color: #c4d4ca; font-size: clamp(1.06rem, 1.5vw, 1.24rem); margin-top: var(--s5); max-width: 30ch; }
.hero-cta-row { display: flex; align-items: center; gap: var(--s4); margin-top: var(--s6); flex-wrap: wrap; }
.hero-rating { display: inline-flex; align-items: center; gap: var(--s3); margin-top: var(--s6); }
.stars { color: var(--gold); letter-spacing: 1px; }
.hero-rating b { color: #fff; }
.hero-rating span { color: #aebfb4; font-size: .92rem; }

/* hero visual kant */
.hero-visual { position: relative; }
.hero-photo { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-lg); aspect-ratio: 4/5; background: #0e261d; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
/* nette fallback als er (nog) geen foto is */
.hero-photo.photo-fallback {
  background:
    radial-gradient(120% 80% at 70% 0%, rgba(58,138,92,.6), transparent 60%),
    radial-gradient(100% 70% at 0% 100%, rgba(224,165,46,.28), transparent 55%),
    linear-gradient(150deg, #1a4533, #0c2019);
  display: grid; place-items: center; position: relative;
}
.hero-photo.photo-fallback::after {
  content: ""; width: 64%; aspect-ratio: 1/1; opacity: .9;
  background: center/contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f9cf2e' stroke-width='1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 17H3v-5l2-5h11l3 5h2v5h-2'/%3E%3Ccircle cx='7.5' cy='17' r='2'/%3E%3Ccircle cx='16.5' cy='17' r='2'/%3E%3C/svg%3E");
}
/* het zegel: "het bod dat blijft staan" */
.seal {
  position: absolute; left: -26px; bottom: -22px; width: 148px; height: 148px;
  border-radius: var(--r-pill); background: var(--gold);
  color: var(--forest-deep); display: grid; place-items: center; text-align: center;
  box-shadow: var(--sh-gold); transform: rotate(-9deg); border: 3px solid #fff;
}
.seal-inner { font-family: var(--font-display); font-weight: 800; line-height: 1.02; font-size: .92rem; padding: var(--s3); }
.seal-inner small { display: block; font-weight: 700; font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 3px; color: var(--gold-deep); }

/* hero floating valuator on mobile becomes block */
.hero .valuator { margin-top: var(--s6); }

/* ============================================================ logos / trust strip */
.proof-strip { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: var(--s5) var(--s8); padding-block: var(--s6); }
.proof-strip .pitem { display: inline-flex; align-items: center; gap: var(--s3); color: var(--ink-soft); font-weight: 600; font-size: .95rem; }
.proof-strip .pitem b { color: var(--ink); font-family: var(--font-display); font-size: 1.05rem; }
.proof-strip svg { width: 22px; height: 22px; color: var(--moss); }

/* ============================================================ stappen */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s6); margin-top: var(--s8); counter-reset: step; }
.step { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: var(--s7) var(--s6) var(--s6); box-shadow: var(--sh-sm); }
.step .num { counter-increment: step; position: absolute; top: -22px; left: var(--s6); width: 46px; height: 46px; border-radius: var(--r-pill); background: var(--forest); color: var(--plate); font-family: var(--font-display); font-weight: 800; display: grid; place-items: center; box-shadow: var(--sh); }
.step .num::before { content: counter(step); }
.step .ico { width: 50px; height: 50px; color: var(--moss); margin-bottom: var(--s4); }
.step h3 { margin-bottom: var(--s3); }
.step p { color: var(--ink-soft); }
.steps-line { display: none; }

/* ============================================================ USP-kaarten */
.cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s5); }
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: var(--s6); box-shadow: var(--sh-sm); transition: transform .2s ease, box-shadow .2s ease; }
.card:hover { transform: translateY(-3px); box-shadow: var(--sh); }
.card .ico-badge { width: 52px; height: 52px; border-radius: 14px; background: var(--paper); display: grid; place-items: center; color: var(--moss); margin-bottom: var(--s4); }
.card.gold .ico-badge { background: var(--gold-soft); color: var(--gold-deep); }
.card .ico-badge svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: var(--s3); }
.card p { color: var(--ink-soft); font-size: .98rem; }

/* ============================================================ garantie-blok */
.guarantee { display: grid; grid-template-columns: 160px 1fr; gap: var(--s7); align-items: center; }
.guarantee .seal { position: static; transform: rotate(-6deg); width: 160px; height: 160px; }
.guarantee h2 { color: #fff; }

/* ============================================================ cijfers */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s6); text-align: center; }
.stat .big { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.6rem, 5vw, 3.6rem); color: var(--plate); line-height: 1; letter-spacing: -.03em; }
.stat .lbl { color: #b9cabf; margin-top: var(--s3); font-weight: 500; }

/* ============================================================ "alles welkom" rij */
.welkom { display: flex; flex-wrap: wrap; gap: var(--s3); margin-top: var(--s6); }
.chip { display: inline-flex; align-items: center; gap: var(--s2); background: #fff; border: 1px solid var(--line); border-radius: var(--r-pill); padding: var(--s3) var(--s5); font-weight: 600; box-shadow: var(--sh-sm); }
.chip svg { width: 18px; height: 18px; color: var(--moss); }

/* ============================================================ vestigingen */
.vest-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s5); margin-top: var(--s8); }
.vest { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: var(--s6); box-shadow: var(--sh-sm); display: flex; flex-direction: column; gap: var(--s3); }
.vest .vest-ico { width: 48px; height: 48px; border-radius: 13px; background: var(--paper); display: grid; place-items: center; color: var(--moss); margin-bottom: var(--s2); }
.vest .vest-ico svg { width: 24px; height: 24px; }
.vest h3 { margin-bottom: 2px; }
.vest .vest-adres { color: var(--ink-soft); }
.vest .vest-links { display: flex; flex-wrap: wrap; gap: var(--s3); margin-top: var(--s3); }
.vest .vest-tel { display: inline-flex; align-items: center; gap: var(--s2); font-weight: 700; color: var(--forest); }
.vest .vest-tel svg { width: 18px; color: var(--moss); }
.vest .vest-map { display: inline-flex; align-items: center; gap: var(--s2); font-weight: 600; color: var(--moss); text-decoration: underline; text-underline-offset: 2px; }
.vest .vest-map svg { width: 16px; }

/* ============================================================ reviews */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s5); }
.review { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: var(--s6); box-shadow: var(--sh-sm); display: flex; flex-direction: column; gap: var(--s4); }
.review .stars { font-size: 1.05rem; }
.review p { color: var(--ink); font-size: 1.02rem; }
.review .who { display: flex; align-items: center; gap: var(--s3); margin-top: auto; }
.review .avatar { width: 42px; height: 42px; border-radius: var(--r-pill); background: linear-gradient(150deg, var(--moss), var(--forest)); color: #fff; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; }
.review .who b { display: block; }
.review .who span { color: var(--ink-soft); font-size: .88rem; }

/* ============================================================ FAQ */
.faq { max-width: 820px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: var(--s4); padding: var(--s5) 0; text-align: left; font-family: var(--font-display); font-weight: 700; font-size: 1.12rem; color: var(--forest); }
.faq-q .pm { width: 30px; height: 30px; flex: none; border-radius: var(--r-pill); background: var(--paper); display: grid; place-items: center; color: var(--moss); transition: transform .25s ease, background .2s; }
.faq-item[open] .faq-q .pm { transform: rotate(45deg); background: var(--moss); color: #fff; }
.faq-a { padding: 0 0 var(--s5); color: var(--ink-soft); max-width: 70ch; }
.faq-q::-webkit-details-marker { display: none; }

/* ============================================================ CTA-band */
.ctaband { background: linear-gradient(150deg, var(--forest), var(--forest-deep)); border-radius: var(--r-xl); padding: clamp(var(--s7), 6vw, var(--s9)); text-align: center; color: #fff; position: relative; overflow: hidden; }
.ctaband::after { content: ""; position: absolute; inset: 0; background: radial-gradient(600px 300px at 50% -20%, rgba(224,165,46,.22), transparent 60%); }
.ctaband > * { position: relative; }
.ctaband h2 { color: #fff; }
.ctaband .lead { color: #c4d4ca; margin: var(--s4) auto var(--s6); max-width: 52ch; }

/* ============================================================ footer */
.site-footer { background: var(--forest-deep); color: #9fb3a7; padding-block: var(--s9) var(--s6); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: var(--s6); }
.site-footer .brand { color: #fff; margin-bottom: var(--s4); }
.site-footer p { font-size: .94rem; max-width: 32ch; }
.footer-col h4 { color: #fff; font-size: .92rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: var(--s4); font-family: var(--font-body); }
.footer-col a { display: block; padding: var(--s2) 0; color: #9fb3a7; font-size: .96rem; transition: color .15s; }
.footer-col a:hover { color: var(--plate); }
.footer-bottom { display: flex; flex-wrap: wrap; gap: var(--s4); justify-content: space-between; align-items: center; border-top: 1px solid rgba(255,255,255,.1); margin-top: var(--s8); padding-top: var(--s5); font-size: .9rem; }
.footer-loc { display: inline-flex; align-items: center; gap: var(--s3); }
.footer-loc svg { width: 18px; color: var(--gold); }

/* ============================================================ reveal-animatie
   Alleen verbergen als JS actief is (.js op <html>). Zonder JS blijft alle content zichtbaar. */
.reveal { transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.js .reveal { opacity: 0; transform: translateY(22px); }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================ taxatie-flow (aparte pagina) */
.flow-shell { min-height: 100dvh; display: grid; grid-template-rows: auto 1fr; grid-template-columns: minmax(0, 1fr); background: var(--paper); }
.flow-head { background: #fff; border-bottom: 1px solid var(--line); }
.progress { height: 6px; background: var(--line-soft); border-radius: var(--r-pill); overflow: hidden; }
.progress > i { display: block; height: 100%; background: linear-gradient(90deg, var(--moss), var(--action)); width: 20%; transition: width .4s cubic-bezier(.2,.7,.2,1); }
.flow-main { padding: var(--s7) max(var(--s5), env(safe-area-inset-left)) var(--s9) max(var(--s5), env(safe-area-inset-right)); }
.flow-card { width: 100%; max-width: 620px; margin-inline: auto; background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl); box-shadow: var(--sh-lg); padding: clamp(var(--s5), 4vw, var(--s8)); }
.flow-step { display: none; }
.flow-step.active { display: block; animation: stepIn .4s ease; }
@keyframes stepIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.flow-step h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: var(--s3); }
.flow-step .sub { color: var(--ink-soft); margin-bottom: var(--s6); }
.field { margin-bottom: var(--s5); }
.field label { display: block; font-weight: 700; margin-bottom: var(--s3); color: var(--forest); }
.field input[type=text], .field input[type=number], .field input[type=email], .field input[type=tel], .field select {
  width: 100%; padding: var(--s4) var(--s5); border: 1.5px solid var(--line); border-radius: var(--r); background: #fff; transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus { outline: none; border-color: var(--moss); box-shadow: 0 0 0 4px rgba(44,110,73,.12); }
.opt-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); gap: var(--s3); }
.opt { border: 1.5px solid var(--line); border-radius: var(--r); padding: var(--s4); text-align: center; font-weight: 600; transition: all .15s; background: #fff; }
.opt:hover { border-color: var(--moss); }
.opt.sel { border-color: var(--action); background: #eef7f1; box-shadow: 0 0 0 3px rgba(31,122,77,.12); color: var(--action-hover); }
.flow-nav { display: flex; justify-content: space-between; gap: var(--s4); margin-top: var(--s7); }
.car-found { display: flex; gap: var(--s4); align-items: center; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: var(--s5); margin-bottom: var(--s5); animation: stepIn .4s ease; }
.car-found .ck { width: 44px; height: 44px; flex: none; border-radius: var(--r-pill); background: var(--action); color: #fff; display: grid; place-items: center; }
.car-found b { display: block; color: var(--forest); font-family: var(--font-display); font-size: 1.15rem; margin-bottom: 2px; }
.car-found span { display: block; color: var(--ink-soft); font-size: .94rem; }
.flow-error { color: #b3261e; font-size: .92rem; margin-top: var(--s2); min-height: 1.2em; }
.flow-trust { display: flex; align-items: center; justify-content: center; gap: var(--s5); margin-top: var(--s6); color: var(--ink-soft); font-size: .9rem; flex-wrap: wrap; }
.flow-trust span { display: inline-flex; align-items: center; gap: var(--s2); }
.flow-trust svg { width: 16px; color: var(--moss); }
/* foto-upload */
.upload-zone { display: block; border: 2px dashed var(--line); border-radius: var(--r-lg); padding: var(--s7) var(--s5); text-align: center; cursor: pointer; transition: border-color .15s, background .15s; background: var(--paper); }
.upload-zone:hover, .upload-zone.drag { border-color: var(--moss); background: #eef7f1; }
.upload-zone .up-ico { width: 48px; height: 48px; color: var(--moss); margin: 0 auto var(--s3); }
.upload-zone b { display: block; color: var(--forest); font-family: var(--font-display); font-size: 1.1rem; }
.upload-zone span { color: var(--ink-soft); font-size: .92rem; }
.upload-hint { display: flex; flex-wrap: wrap; gap: var(--s2) var(--s4); margin-top: var(--s4); font-size: .88rem; color: var(--ink-soft); }
.upload-hint span { display: inline-flex; align-items: center; gap: 6px; }
.upload-hint svg { width: 15px; color: var(--moss); }
.thumbs { display: grid; grid-template-columns: repeat(auto-fill, minmax(96px, 1fr)); gap: var(--s3); margin-top: var(--s5); }
.thumb { position: relative; aspect-ratio: 1/1; border-radius: var(--r); overflow: hidden; border: 1px solid var(--line); background: #fff; }
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb button { position: absolute; top: 4px; right: 4px; width: 26px; height: 26px; border-radius: var(--r-pill); background: rgba(13,35,27,.78); color: #fff; display: grid; place-items: center; }
.thumb button svg { width: 15px; height: 15px; }
.thumb-count { font-weight: 700; color: var(--forest); margin-top: var(--s4); }

/* adres-autofill velden */
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s4); }
.field-found { display: flex; align-items: center; gap: var(--s2); color: var(--action-hover); font-weight: 600; font-size: .9rem; margin-top: var(--s2); }
.field-found svg { width: 16px; }
.field input:disabled, .field input[readonly] { background: var(--paper); color: var(--ink); }

.flow-done { text-align: center; }
.flow-done .big-check { width: 86px; height: 86px; border-radius: var(--r-pill); background: var(--action); color: #fff; display: grid; place-items: center; margin: 0 auto var(--s5); box-shadow: var(--sh-gold); }
.flow-done .big-check svg { width: 46px; height: 46px; }

/* ============================================================ landingspagina */
.lp-hero { background: var(--forest); color: #eaf1ec; }
.lp-hero .wrap { padding-block: clamp(var(--s8), 7vw, 110px); }
.lp-hero h1 { color: #fff; max-width: 16ch; }
.lp-hero .lead { color: #c4d4ca; margin-top: var(--s5); max-width: 56ch; }
.lp-body { display: grid; grid-template-columns: 1fr 360px; gap: var(--s8); align-items: start; }
.lp-body > * { min-width: 0; }   /* voorkom dat brede content de kolom oprekt op mobiel */
.lp-content h2 { margin-top: var(--s7); margin-bottom: var(--s4); }
.lp-content h2:first-child { margin-top: 0; }
.lp-content p { margin-bottom: var(--s4); color: #36423c; }
.lp-content ul { margin: 0 0 var(--s5) var(--s5); color: #36423c; }
.lp-content li { margin-bottom: var(--s2); }
.lp-aside { position: sticky; top: 96px; }
.breadcrumbs { font-size: .88rem; color: #aec3b6; margin-bottom: var(--s4); }
.breadcrumbs a:hover { color: #fff; }

/* ============================================================ responsive */
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--s7) var(--s5); }
  .lp-body { grid-template-columns: 1fr; }
  .lp-aside { position: static; }
  .cards, .cards-3, .reviews, .steps, .stats, .vest-grid { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: repeat(3,1fr); gap: var(--s4); }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .nav-links, .nav-phone { display: none; }
  .nav-cta .btn-primary { display: none; }       /* losse CTA weg op mobiel; hamburger + hero-valuator nemen 't over */
  .nav-toggle { display: inline-flex; }
  .nav.open .nav-links { display: flex; position: absolute; top: 74px; left: 0; right: 0; flex-direction: column; gap: 0; background: #fff; border-bottom: 1px solid var(--line); padding: var(--s4) var(--s5); box-shadow: var(--sh); }
  .nav.open .nav-links a { padding: var(--s4) 0; border-bottom: 1px solid var(--line-soft); width: 100%; }
  /* hero-kop niet laten overlopen */
  .display { font-size: clamp(2rem, 8.4vw, 2.9rem); letter-spacing: -.02em; }
  .hero h1, h1, h2 { overflow-wrap: break-word; hyphens: auto; }
  .hero-sub { max-width: none; }
  /* kenteken + knop onder elkaar i.p.v. geperst */
  .valuator .plate-row { flex-direction: column; }
  .valuator .plate-row .btn { width: 100%; }
  /* lange CTA-knoppen niet laten overlopen op smal scherm */
  .hero-cta-row { flex-direction: column; align-items: stretch; }
  .hero-cta-row .btn, .center > .btn { white-space: normal; max-width: 100%; }
  .cards { grid-template-columns: 1fr; }
  .guarantee { grid-template-columns: 1fr; text-align: center; justify-items: center; gap: var(--s5); }
  .guarantee .seal { margin-bottom: var(--s3); }
  .stats { grid-template-columns: 1fr; gap: var(--s6); }
  .footer-grid { grid-template-columns: 1fr; }
  .flow-nav { flex-direction: column-reverse; }
  .flow-nav .btn { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================ WordPress-context
   Een plugin laadt Bootstrap (.btn/.btn-primary = blauw) dat onze knop-classes
   overschrijft. Hier forceren we onze eigen knopkleuren terug (hoge voorrang). */
.btn.btn-primary, a.btn.btn-primary { background-color: var(--action) !important; background-image: none !important; color: #fff !important; border: 0 !important; }
.btn.btn-primary:hover { background-color: var(--action-hover) !important; }
.btn.btn-gold, a.btn.btn-gold { background-color: var(--gold) !important; background-image: none !important; color: #2a1e05 !important; border: 0 !important; }
.btn.btn-gold:hover { background-color: #ecb24a !important; }
.btn.btn-ghost, a.btn.btn-ghost { background-color: transparent !important; color: var(--forest) !important; border: 1.5px solid var(--line) !important; }
.btn.btn-ghost:hover { border-color: var(--forest) !important; background-color: #fff !important; }
.btn.btn-light, a.btn.btn-light { background-color: #fff !important; color: var(--forest) !important; border: 0 !important; }
a.btn, button.btn { border-radius: var(--r-pill); text-decoration: none; }
/* Hello Elementor kleurt button/[type=button] roze (#cc3366) — herstel onze button-tekst */
.opt { color: var(--ink) !important; }
.opt:hover { color: var(--ink) !important; }
.opt.sel { color: var(--action-hover) !important; }
/* lange labels (bv. "Kleine gebruikssporen") mogen afbreken i.p.v. buiten de knop steken; tekst gecentreerd, knoppen even hoog */
.opt { white-space: normal !important; display: flex !important; align-items: center; justify-content: center; text-align: center; line-height: 1.25; min-height: 3em; }
.opt-grid { grid-auto-rows: 1fr; } /* alle knop-rijen even hoog, ook als één label op 2 regels valt */
.nav-toggle { color: var(--forest) !important; }
.plate-input { color: #1a1a1a !important; }
.faq-q { color: var(--forest) !important; }
.valuator .btn-label { color: inherit !important; }
/* decoratieve gloed-overlays mogen klikken niet opvangen (knoppen eronder blijven klikbaar) */
.ctaband::after, .hero::before, .hero-photo.photo-fallback::after { pointer-events: none !important; }
