@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --brand: #a51c1c;
  --brand-light: #c42d2d;
  --brand-glow: rgba(165, 28, 28, .15);
  --bg: #121214;
  --bg-card: #121214;
  --bg-elevated: #161619;
  --bg-input: #121214;
  --text: #e4e4e7;
  --text-muted: #8b8b94;
  --text-dim: #636369;
  --border: rgba(255,255,255,.06);
  --border-hover: rgba(255,255,255,.12);
  --max: 1120px;
  --radius: 10px;
  --radius-lg: 16px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  background: #0a0a0c;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── SCROLLBARS (donker thema) ──────────────────────────── */
* { scrollbar-width: thin; scrollbar-color: rgba(255, 255, 255, .16) transparent; }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, .14);
  border-radius: 999px;
  border: 2px solid transparent;
  background-clip: padding-box;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, .26);
  background-clip: padding-box;
}
::-webkit-scrollbar-corner { background: transparent; }
textarea { scrollbar-width: thin; scrollbar-color: rgba(255, 255, 255, .2) transparent; }

/* ── TOAST-MELDINGEN (rechtsboven) ──────────────────────── */
.toast-wrap {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 2147483000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: min(360px, calc(100vw - 32px));
}
.toast {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 16px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text);
  background: var(--bg-elevated);
  border: 1px solid var(--border-hover);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .5);
  opacity: 0;
  transform: translateX(24px);
  transition: opacity .28s ease, transform .28s ease;
}
.toast.in { opacity: 1; transform: translateX(0); }
.toast.uit { opacity: 0; transform: translateX(24px); }
.toast .toast-ico { flex-shrink: 0; display: grid; place-items: center; }
.toast .toast-ico svg { width: 20px; height: 20px; }
.toast-ok { border-color: rgba(47, 174, 106, .4); }
.toast-ok .toast-ico { color: #34d27b; }
.toast-fout { border-color: rgba(196, 45, 45, .5); }
.toast-fout .toast-ico { color: var(--brand-light); }

/* ── ONDERHOUDSSCHERM (volledige blokkade) ──────────────── */
.onderhoud-scherm {
  position: fixed;
  inset: 0;
  z-index: 2147483647;
  display: grid;
  place-items: center;
  padding: 24px;
  text-align: center;
  background:
    radial-gradient(900px 600px at 50% -10%, rgba(165, 28, 28, .18), transparent 70%),
    #0a0a0c;
}
.onderhoud-inner {
  max-width: 460px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.onderhoud-logo { height: 64px; width: auto; margin-bottom: 28px; }
.onderhoud-ico {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 50%;
  color: var(--brand-light);
  background: rgba(165, 28, 28, .12);
  border: 1px solid rgba(165, 28, 28, .28);
}
.onderhoud-ico svg { width: 32px; height: 32px; }
.onderhoud-inner h1 {
  font-size: clamp(28px, 6vw, 40px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.01em;
}
.onderhoud-inner p {
  margin-top: 14px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
}

/* ── FOOTER SOCIALE MEDIA ────────────────────────────────── */
.footer-socials { display: flex; gap: 10px; margin-top: 4px; }
.footer-socials a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: color .2s, border-color .2s, background .2s;
}
.footer-socials a:hover {
  color: #fff;
  border-color: var(--brand);
  background: var(--brand-glow);
}
.footer-socials svg { width: 18px; height: 18px; }

/* ── JURIDISCHE PAGINA (voorwaarden / privacy) ──────────── */
.juridisch-tekst { color: var(--text-muted); }
.juridisch-tekst h2 { color: #fff; font-size: 22px; font-weight: 700; margin: 30px 0 10px; }
.juridisch-tekst h3 { color: #fff; font-size: 17px; font-weight: 700; margin: 28px 0 8px; }
.juridisch-tekst h2:first-child, .juridisch-tekst h3:first-child { margin-top: 0; }
.juridisch-tekst p { font-size: 15px; line-height: 1.8; margin-bottom: 6px; }
.juridisch-tekst ul, .juridisch-tekst ol { margin: 6px 0 12px; padding-left: 24px; }
.juridisch-tekst li { font-size: 15px; line-height: 1.8; margin-bottom: 4px; }
.juridisch-tekst blockquote { margin: 10px 0; padding: 6px 0 6px 16px; border-left: 3px solid var(--brand); color: var(--text); }
.juridisch-tekst a { color: var(--brand-light); text-decoration: underline; }
.juridisch-tekst strong { color: var(--text); }

img, svg { max-width: 100%; display: block; }

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

button, input, select, textarea { font: inherit; }

ul { list-style: none; }

/* ── HEADER (liquid glass) ──────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(180deg, rgba(255,255,255,.06) 0%, rgba(255,255,255,.02) 100%), rgba(12, 12, 16, .55);
  border-bottom: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 8px 32px rgba(0,0,0,.35);
}

.nav-wrap {
  position: relative;
  width: min(100% - 40px, var(--max));
  height: 58px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand { display: inline-flex; align-items: center; }
.brand img { height: 52px; width: auto; }

.nav-toggle {
  width: 42px;
  height: 42px;
  display: none;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  transition: border-color .2s;
}
.nav-toggle:hover { border-color: var(--border-hover); }

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  width: 18px; height: 1.5px;
  display: block; background: currentColor; content: '';
}
.nav-toggle span { position: relative; }
.nav-toggle span::before,
.nav-toggle span::after { position: absolute; left: 0; }
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.main-nav a {
  height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color .2s, background .2s;
  white-space: nowrap;
}

.main-nav a:hover { color: var(--text); background: rgba(255,255,255,.04); }
.main-nav a.active { color: #fff; }

.main-nav .nav-cta {
  margin-left: 12px;
  color: #fff;
  background: var(--brand);
  font-weight: 600;
}

@media (min-width: 981px) {
  .nav-wrap {
    justify-content: center;
  }

  .brand {
    position: absolute;
    left: 0;
  }

  .main-nav .nav-cta {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 0;
  }
}
.main-nav .nav-cta:hover,
.main-nav .nav-cta.active {
  background: var(--brand-light);
  color: #fff;
}

/* ── HERO ───────────────────────── */
.hero {
  position: relative;
  min-height: calc(100vh - 58px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg);
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%; right: -20%;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(255, 0, 0, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(100% - 40px, 1320px);
  margin: 0 auto;
  padding: 80px 0 120px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 600px);
  align-items: center;
  gap: clamp(24px, 3vw, 56px);
}

.hero-copy { min-width: 0; }

.hero-logo {
  justify-self: end;
  width: min(100%, 600px);
  padding: 36px;
  border: 1px solid rgba(226, 232, 240, .24);
  border-radius: var(--radius-lg);
  background: transparent;
}

.hero-logo img {
  width: 100%;
  height: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 12px;
  margin-bottom: 20px;
  border-radius: 999px;
  border: 1px solid rgba(184, 29, 29, 0.4);
  background: rgba(165,28,28,.08);
  color: var(--brand-light);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.hero h1, .page-hero h1 {
  max-width: 680px;
  font-size: 56px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0;
  color: #fff;
}

.hero p, .page-hero p {
  max-width: 520px;
  margin-top: 20px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-muted);
}

.hero-actions, .section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}


/* ── BUTTONS ────────────────────── */
.button {
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s ease;
  white-space: nowrap;
}
.button:hover { transform: translateY(-1px); }

.button-primary {
  color: #fff;
  background: var(--brand);
  border-color: var(--brand);
}
.button-primary:hover { background: var(--brand-light); border-color: var(--brand-light); }

.button-secondary {
  color: var(--text);
  border-color: var(--border-hover);
  background: transparent;
}
.button-secondary:hover {
  border-color: rgba(255,255,255,.24);
  background: rgba(255,255,255,.04);
}

.button-ghost {
  color: var(--brand-light);
  border-color: rgba(165,28,28,.3);
  background: transparent;
}
.button-ghost:hover { border-color: var(--brand); background: var(--brand-glow); }

/* ── HERO STRIP ─────────────────── */
.hero-strip {
  position: absolute;
  right: 0; bottom: 32px;
  z-index: 2;
  width: min(540px, calc(100% - 40px));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  overflow: hidden;
}

.hero-stat {
  padding: 20px;
  border-right: 1px solid var(--border);
}
.hero-stat:last-child { border-right: 0; }

.hero-stat strong {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: var(--brand-light);
  line-height: 1.2;
}

.hero-stat span {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  color: var(--text-dim);
  font-weight: 500;
}

/* ── SECTIONS ───────────────────── */
.section { padding: 88px 0; border-top: 1px solid var(--border); }

.section-soft { background: var(--bg-card); }
.section-dark { color: #fff; background: #18181b; }

/* Afwisselend zwart / grijs per sectie */
main > section { background: #0a0a0c; }
main > section:nth-of-type(even) { background: #16171b; }

.container {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
}

.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}

.section-head h2,
.split-copy h2,
.form-panel h2 {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0;
  color: #fff;
}

.section-head p,
.split-copy p,
.form-panel p {
  margin-top: 14px;
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── GRID ───────────────────────── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }

/* ── CARDS ───────────────────────── */
.service-card,
.why-card,
.project-card,
.contact-card,
.form-panel,
.info-panel {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  transition: border-color .25s;
}

.service-card:hover,
.why-card:hover,
.project-card:hover,
.contact-card:hover {
  border-color: var(--border-hover);
}

.service-card,
.why-card,
.contact-card,
.info-panel {
  padding: 28px;
}

.service-card h3,
.why-card h3,
.project-card h3,
.contact-card h3,
.info-panel h3 {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
}

.service-card p,
.why-card p,
.project-card p,
.contact-card p,
.info-panel p {
  margin-top: 10px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
}

.icon-mark {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  margin-bottom: 16px;
  border-radius: var(--radius);
  background: var(--brand-glow);
  border: 1px solid rgba(165,28,28,.2);
  color: var(--brand-light);
  font-size: 14px;
  font-weight: 700;
}

/* ── SPLIT ──────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.split-copy ul, .check-list {
  display: grid; gap: 12px;
  margin-top: 24px;
}

.split-copy li, .check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--text);
  font-weight: 500;
  font-size: 14px;
}

.split-copy li::before, .check-list li::before {
  content: '\2713';
  position: absolute; top: 1px; left: 0;
  width: 18px; height: 18px;
  display: grid; place-items: center;
  border-radius: 50%;
  font-size: 10px;
  color: var(--brand-light);
  background: var(--brand-glow);
  border: 1px solid rgba(165,28,28,.2);
}

.visual-panel {
  min-height: 400px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background:
    linear-gradient(135deg, rgba(165,28,28,.12), rgba(24,24,27,.9)),
    var(--bg-elevated);
}

/* ── SECTION HEAD (centered) ────── */
.section-head-center {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ── OVER ONS ───────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 2.3fr 1fr;
  gap: 16px;
  align-items: stretch;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.value-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  transition: border-color .25s;
}
.value-card:hover { border-color: var(--border-hover); }

.value-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
}

.value-card p {
  margin-top: 10px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
}

.icon-mark svg { width: 20px; height: 20px; }

.about-stats {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 16px;
}

.stat-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  transition: border-color .25s;
}
.stat-box:hover { border-color: var(--border-hover); }

.stat-box strong {
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
  color: var(--brand-light);
  text-shadow: 0 0 24px var(--brand-glow);
}

.stat-box span {
  margin-top: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── WERKWIJZE ──────────────────── */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.step-card {
  padding: 32px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-elevated);
  text-align: center;
  transition: border-color .25s, transform .25s;
}
.step-card:hover { border-color: var(--border-hover); transform: translateY(-2px); }

.step-num {
  font-size: 58px;
  font-weight: 800;
  line-height: 1;
  color: var(--brand-light);
  text-shadow: 0 0 30px var(--brand-glow);
}

.step-card h3 {
  margin-top: 18px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.4;
}

.step-card p {
  margin-top: 12px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── CTA BAND ───────────────────── */
.cta-band {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cta-inner {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  padding: 72px 0;
  display: grid;
  grid-template-columns: 1.5fr .5fr;
  gap: 32px;
  align-items: center;
}

.cta-inner h2 {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
}

.cta-inner p {
  max-width: 540px;
  margin-top: 12px;
  color: var(--text-muted);
  font-size: 16px;
}

.cta-inner .button {
  justify-self: end;
  color: #fff;
  background: var(--brand);
  border-color: var(--brand);
}
.cta-inner .button:hover {
  background: var(--brand-light);
  border-color: var(--brand-light);
}

/* ── PAGE HERO ──────────────────── */
.page-hero {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

/* ── FORM HERO ──────────────────── */
.form-hero {
  background: var(--bg);
  padding: 60px 0 40px;
  text-align: center;
}
.form-hero + .section {
  border-top: none;
  padding-top: 0;
  background: var(--bg);
}
.form-hero-inner {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
}
.form-hero h1 {
  font-size: 54px;
  font-weight: 800;
  color: #fff;
  line-height: 1.05;
  margin-top: 16px;
  letter-spacing: 0;
}
.form-hero p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.6;
  margin-top: 18px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.page-hero-inner {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  padding: 72px 0 80px;
}

.breadcrumb {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 16px;
  color: var(--text-dim);
  font-size: 13px;
  font-weight: 500;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: #fff; }

/* ── PROJECT GRID ───────────────── */
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.project-card { overflow: hidden; }

.project-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  background: var(--bg-elevated);
}

.project-card-content { padding: 22px; }

.project-meta {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-top: 14px;
}

.tag {
  display: inline-flex; align-items: center;
  height: 26px; padding: 0 10px;
  border-radius: 999px;
  font-size: 12px; font-weight: 600;
  color: var(--brand-light);
  background: var(--brand-glow);
  border: 1px solid rgba(165,28,28,.15);
}

/* ── CONTACT / FORM ─────────────── */
.contact-layout, .offerte-layout {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 24px;
  align-items: start;
}

.contact-stack { display: grid; gap: 14px; }

.contact-card a {
  display: inline-flex;
  margin-top: 10px;
  color: var(--brand-light);
  font-weight: 600;
  font-size: 14px;
}
.contact-card a:hover { color: #fff; }

.form-panel { padding: 32px; }

/* ── INTL TEL INPUT (dark theme) ── */
.iti {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color .2s, box-shadow .2s;
  background: var(--bg-input);
}
.iti:focus-within {
  border-color: rgba(165,28,28,.5);
  box-shadow: 0 0 0 3px var(--brand-glow);
}
.iti__flag-container { height: 100%; }
.iti__selected-flag {
  background: transparent !important;
  border-right: 1px solid var(--border);
  border-radius: calc(var(--radius) - 1px) 0 0 calc(var(--radius) - 1px);
  padding: 0 10px;
  height: 100%;
}
.iti__selected-flag:hover,
.iti__selected-flag:focus { background: rgba(255,255,255,.04) !important; }
.iti input[type=tel],
.iti input[type=text] {
  border: none !important;
  border-radius: 0 calc(var(--radius) - 1px) calc(var(--radius) - 1px) 0 !important;
  box-shadow: none !important;
  background: transparent !important;
  /* Iets meer ruimte tussen de landcode (+32) en het invoerveld. */
  padding-left: 94px !important;
}
.iti__selected-dial-code { color: var(--text-muted) !important; font-size: 14px; margin-left: 4px; }
.iti__arrow { border-top-color: var(--text-muted) !important; }
.iti__arrow--up { border-bottom-color: var(--text-muted) !important; border-top-color: transparent !important; }
.iti__country-list {
  background-color: var(--bg-elevated) !important;
  border: 1px solid var(--border) !important;
  box-shadow: 0 12px 32px rgba(0,0,0,.5) !important;
  border-radius: var(--radius) !important;
  max-height: 220px;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}
.iti__country-name { color: var(--text-muted) !important; }
.iti__dial-code { color: var(--text-muted) !important; }
.iti__country:hover { background-color: rgba(255,255,255,.04) !important; }
.iti__country.iti__highlight { background-color: rgba(165,28,28,.08) !important; }
.iti__country.iti__highlight .iti__country-name,
.iti__country.iti__highlight .iti__dial-code { color: var(--text) !important; }
.iti__divider { border-bottom-color: var(--border) !important; }

/* ── CUSTOM SELECT ──────────────── */
.custom-select-wrap { position: relative; }

.custom-select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-input);
  font-size: 14px;
  font-family: inherit;
  cursor: pointer;
  user-select: none;
  transition: border-color .2s;
}
.custom-select-trigger:hover { border-color: var(--border-hover); }
.cs-text { color: var(--text-muted); }
.cs-text.has-value { color: var(--text); }
.cs-arrow { color: var(--text-muted); flex-shrink: 0; transition: transform .2s; }
.custom-select-wrap.is-open .custom-select-trigger {
  border-color: rgba(165,28,28,.5);
  box-shadow: 0 0 0 3px var(--brand-glow);
}
.custom-select-wrap.is-open .cs-arrow { transform: rotate(180deg); }

.custom-select-list {
  position: absolute;
  top: calc(100% + 6px);
  left: 0; right: 0;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  z-index: 200;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity .15s, transform .15s;
  box-shadow: 0 12px 32px rgba(0,0,0,.5);
}
.custom-select-wrap.is-open .custom-select-list {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.custom-select-opt {
  padding: 11px 14px;
  font-size: 14px;
  color: var(--text-muted);
  cursor: pointer;
  transition: background .12s, color .12s;
}
.custom-select-opt:hover { background: rgba(255,255,255,.04); color: var(--text); }
.custom-select-opt.is-active { color: var(--brand-light); background: rgba(165,28,28,.08); }

/* ── BTW CARD OPTIONS ───────────── */
.btw-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.btw-option { cursor: pointer; }
.btw-option input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }
.btw-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  transition: border-color .2s, background .2s;
}
.btw-card svg { color: var(--text-muted); flex-shrink: 0; transition: color .2s; }
.btw-option input:checked + .btw-card { border-color: var(--brand-light); background: rgba(165,28,28,.06); }
.btw-option input:checked + .btw-card svg { color: var(--brand-light); }
.btw-card-name { font-size: 14px; font-weight: 600; color: var(--text); line-height: 1.3; }
.btw-card-rate { font-size: 12px; font-weight: 600; color: var(--brand-light); margin-top: 3px; }

/* ── TRUST STRIP ────────────────── */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 24px;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  border-right: 1px solid var(--border);
  background: var(--bg-elevated);
}
.trust-badge:last-child { border-right: none; }
.trust-badge svg { color: var(--brand-light); width: 16px; height: 16px; flex-shrink: 0; }

/* ── BTW BLOCK ──────────────────── */
.btw-block {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  margin-bottom: 24px;
  background: var(--bg-elevated);
}
.btw-block-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 14px;
}
.btw-block-label .req,
.form-new .field label .req { color: var(--brand-light); }
.radio-opt {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
  cursor: pointer;
  margin-bottom: 8px;
  line-height: 1.4;
}
.radio-opt input[type="radio"] {
  appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid var(--border);
  border-radius: 50%;
  background: var(--bg-input);
  flex-shrink: 0;
  cursor: pointer;
  transition: border-color .2s;
  position: relative;
}
.radio-opt input[type="radio"]:checked {
  border-color: var(--brand-light);
  box-shadow: inset 0 0 0 4px var(--brand-light), inset 0 0 0 7px var(--bg-input);
}
.radio-opt input[type="radio"]:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px var(--brand-glow);
}
.btw-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 12px;
  line-height: 1.5;
}

/* ── FORM NEW LAYOUT ────────────── */
.form-new .form-grid { margin-top: 0; }
.form-new .field label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--text);
}

/* ── FORM FOOTER ROW ────────────── */
.form-footer-row {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.form-footer-row .button { margin-left: auto; }
.check-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
  cursor: pointer;
}
.check-label a { color: var(--text-muted); text-decoration: underline; }
.check-label a:hover { color: #fff; }
.check-label input[type="checkbox"] {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 1.5px solid var(--border-hover);
  border-radius: 6px;
  background: var(--bg-input);
  flex-shrink: 0;
  cursor: pointer;
  display: inline-grid;
  place-content: center;
  transition: border-color .18s, background .18s;
}
.check-label input[type="checkbox"]::after {
  content: '';
  width: 12px;
  height: 12px;
  transform: scale(0);
  transition: transform .18s cubic-bezier(.45, 1.6, .55, 1);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / contain no-repeat;
}
.check-label input[type="checkbox"]:hover { border-color: var(--brand-light); }
.check-label input[type="checkbox"]:checked {
  border-color: var(--brand);
  background: var(--brand);
}
.check-label input[type="checkbox"]:checked::after { transform: scale(1); }
.check-label input[type="checkbox"]:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px var(--brand-glow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.field { display: grid; gap: 6px; }
.field-full { grid-column: 1 / -1; }

.field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: .02em;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  background: var(--bg-input);
  font-size: 14px;
  font-family: inherit;
  transition: border-color .2s;
}
.field input::placeholder,
.field textarea::placeholder { color: var(--text-muted); opacity: 1; }
.field select option { background: #1a1a1e; color: var(--text); }

.field textarea { min-height: 120px; resize: none; overflow: hidden; }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(165,28,28,.5);
  box-shadow: 0 0 0 3px var(--brand-glow);
}

.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%238b8b94'%3E%3Cpath d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

/* ── FOOTER ─────────────────────── */
.site-footer {
  background: #0c0c0e;
  border-top: 1px solid var(--border);
}

.footer-inner {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  padding: 64px 0 40px;
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1.2fr;
  gap: 40px;
  align-items: start;
}

.footer-brand-name {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #fff;
}

.footer-brand p {
  max-width: 340px;
  margin-top: 18px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.8;
}

.footer-col h3 {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-dim);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.footer-links { display: grid; gap: 14px; }

.footer-links a {
  color: var(--text-muted);
  font-size: 14.5px;
  transition: color .2s;
}
.footer-links a:hover { color: #fff; }

.footer-contact { display: grid; gap: 14px; }

.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 14.5px;
  transition: color .2s;
}
.footer-contact a:hover { color: #fff; }

.footer-contact svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--text-dim);
}

.footer-bottom {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  padding: 22px 0 28px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--text-dim);
  font-size: 13px;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-legal a {
  color: var(--text-dim);
  transition: color .2s;
}
.footer-legal a:hover { color: var(--text); }
.footer-legal .sep { color: var(--border-hover); }

/* ── RESPONSIVE ─────────────────── */
@media (max-width: 980px) {
  .nav-toggle { display: inline-flex; }

  .main-nav {
    position: absolute;
    top: 58px; right: 0; left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 16px 16px;
    border-bottom: 1px solid var(--border);
    background: rgba(10,10,11,.96);
    backdrop-filter: blur(20px);
  }
  .main-nav.is-open { display: flex; }

  .main-nav a {
    justify-content: center;
    height: 44px;
    color: var(--text);
  }

  .main-nav .nav-cta { margin-left: 0; }

  .hero { min-height: 680px; }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .hero-logo {
    justify-self: start;
    width: min(84vw, 520px);
    padding: 28px;
  }

  .hero-strip {
    right: 20px; bottom: 20px; left: 20px;
    width: auto;
  }

  .grid-3, .project-grid { grid-template-columns: repeat(2, 1fr); }

  .about-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: repeat(3, 1fr); grid-template-rows: auto; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }

  .split,
  .contact-layout,
  .offerte-layout,
  .cta-inner {
    grid-template-columns: 1fr;
  }

  .footer-inner { grid-template-columns: 1fr 1fr; }

  .cta-inner .button { justify-self: start; }
}

@media (max-width: 680px) {
  .nav-wrap { height: 64px; width: min(100% - 24px, var(--max)); }
  .brand img { height: 32px; }
  .main-nav { top: 64px; }

  .hero { min-height: 600px; }
  .hero-inner { width: min(100% - 24px, var(--max)); padding-top: 48px; }
  .hero h1, .page-hero h1 { font-size: 38px; }
  .hero-logo { width: min(94vw, 340px); padding: 20px; }

  .hero-strip { grid-template-columns: 1fr; }
  .hero-stat { border-right: 0; border-bottom: 1px solid var(--border); }
  .hero-stat:last-child { border-bottom: 0; }

  .section { padding: 56px 0; }

  .grid-3, .grid-2, .project-grid, .form-grid { grid-template-columns: 1fr; }

  .trust-strip { grid-template-columns: 1fr; }
  .trust-badge { border-right: none; border-bottom: 1px solid var(--border); }
  .trust-badge:last-child { border-bottom: none; }
  .btw-options { grid-template-columns: 1fr; }
  .form-footer-row { flex-direction: column; align-items: flex-start; }

  .about-values, .about-stats, .steps-grid { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .form-panel { padding: 20px; }
  .visual-panel { min-height: 260px; }
}

/* ── REALISATIES ────────────────── */
.real-unavailable {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding: 16px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
}

.real-unavailable svg {
  color: var(--text-dim);
  flex-shrink: 0;
}

/* ── ANIMATIONS ─────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-inner { animation: fadeInUp .6s ease-out; }
.hero-strip { animation: fadeInUp .6s ease-out .15s both; }
