:root {
  --blue: #1B5C97;
  --blue-deep: #14486f;
  --ink: #16222e;
  --ink-2: #1e2a36;
  --paper: #fff;
  --mist: #f4f7fa;
  --line: #e3e9ee;
  --text: #24313d;
  --muted: #5c6b78;
  --radius: 12px;
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

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

html { scroll-behavior: smooth; scrollbar-color: #b9c6d1 transparent; }

body {
  font-family: 'Poppins', system-ui, sans-serif;
  color: var(--text);
  background: var(--paper);
  font-size: 17px;
  line-height: 1.65;
}

::selection { background: var(--blue); color: #fff; }
:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; border-radius: 4px; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

h2 {
  font-size: clamp(30px, 3.6vw, 42px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--ink);
  text-wrap: balance;
}
.section-lead {
  margin: 14px auto 0;
  max-width: 560px;
  color: var(--muted);
}

/* ---------- Top navigation ---------- */

.topnav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 32px;
  color: #fff;
  transition: background .35s var(--ease-out), box-shadow .35s var(--ease-out);
}
.topnav.scrolled {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  color: var(--ink);
  box-shadow: 0 1px 0 var(--line), 0 8px 24px rgba(22,34,46,.06);
}
.topnav .logo { font-size: 24px; line-height: 40px; margin: 0; }
.topnav .logo .on { font-size: 22px; border-radius: 7px; padding: 0 7px; }
.topnav.scrolled .logo { color: var(--ink); }
.topnav.scrolled .logo .on { background: var(--ink); color: #fff; }
.topnav-links { display: flex; gap: 28px; }
.topnav-links a {
  color: inherit;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  opacity: .85;
  transition: opacity .2s;
}
.topnav-links a:hover { opacity: 1; }
.topnav-actions { display: flex; align-items: center; gap: 20px; }
.btn-nav { padding: 10px 18px; font-size: 14px; border-radius: 10px; }
.topnav .lang-switch { font-size: 14px; color: inherit; }
.topnav .lang-switch a { color: inherit; text-decoration: none; opacity: .8; }
.topnav .lang-switch .active { font-weight: 700; }
@media (max-width: 900px) {
  .topnav-links { display: none; }
  .topnav .btn-nav { display: none; }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  overflow: hidden;
}
.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* frosted layer fades out while the headline says "Daglicht", same 7.2s clock as the word slot */
.hero-frost { animation: hero-frost 7.2s ease-in-out infinite; }
@keyframes hero-frost {
  0%, 41.6% { opacity: 1; }
  50%, 91.6% { opacity: 0; }
  100% { opacity: 1; }
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(10,18,26,.62) 0%, rgba(10,18,26,.38) 55%, rgba(10,18,26,.22) 100%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 56px;
  align-items: center;
  width: 100%;
  max-width: 1160px;
  padding: 120px 32px 80px;
}
.hero-copy { text-align: left; max-width: 640px; }

.hero-demo { margin: 0; }
.hero-demo video {
  width: min(280px, 66vw);
  height: auto;
  display: block;
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0,0,0,.45);
  background: #0d151d;
}
.hero-demo figcaption {
  margin-top: 12px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .03em;
  color: rgba(255,255,255,.75);
}

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 44px; justify-items: center; padding-top: 108px; }
  .hero-copy { text-align: center; }
}

.headline {
  font-size: clamp(34px, 4.4vw, 58px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  text-shadow: 0 2px 12px rgba(0,0,0,.35);
}

.word-slot {
  display: inline-grid;
  text-align: left;
  vertical-align: bottom;
}
@media (max-width: 980px) { .word-slot { text-align: center; } }
.word-slot span {
  grid-area: 1 / 1;
  animation: word-b 7.2s ease-in-out infinite;
}
.word-slot span:first-child { animation-name: word-a; }

@keyframes word-a {
  0%, 41.6% { opacity: 1; transform: translateY(0); }
  50%, 91.6% { opacity: 0; transform: translateY(-8px); }
  91.7% { opacity: 0; transform: translateY(8px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes word-b {
  0% { opacity: 0; transform: translateY(8px); }
  41.6% { opacity: 0; transform: translateY(8px); }
  50%, 91.6% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(-8px); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .word-slot span { animation: none; }
  .word-slot span:last-child { opacity: 0; }
  .hero-frost { animation: none; }
}

.subheadline {
  margin-top: 28px;
  font-size: clamp(17px, 1.8vw, 22px);
  line-height: 1.55;
  text-shadow: 0 1px 8px rgba(0,0,0,.35);
}

.hero-buttons {
  margin-top: 40px;
  display: flex;
  gap: 20px;
}
@media (max-width: 980px) { .hero-buttons { justify-content: center; } }
@media (max-width: 640px) { .hero-buttons { flex-direction: column; width: 100%; } }

.btn {
  display: inline-block;
  padding: 18px 32px;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: transform .2s var(--ease-out), box-shadow .2s var(--ease-out), background .2s;
}
.btn-primary {
  background: var(--blue);
  color: #fff;
  border: 2px solid var(--blue);
  box-shadow: 0 6px 18px rgba(27,92,151,.28);
}
.btn-primary:hover { background: var(--blue-deep); border-color: var(--blue-deep); transform: translateY(-1px); }
.btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.btn-secondary:hover { background: rgba(255,255,255,.12); }

.microcopy {
  margin-top: 22px;
  font-size: 14px;
  color: rgba(255,255,255,.72);
}

.scroll-cue {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.75);
  animation: cue 2.4s var(--ease-out) infinite;
}
.scroll-cue:hover { color: #fff; }
@keyframes cue {
  0%, 100% { transform: translate(-50%, 0); opacity: .75; }
  50% { transform: translate(-50%, 7px); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) { .scroll-cue { animation: none; } }


/* ---------- Sections ---------- */

section { padding: 104px 24px; }
.section-inner { max-width: 1040px; margin: 0 auto; text-align: center; }

.reveal { opacity: 0; transform: translateY(22px); }
.reveal.in {
  opacity: 1;
  transform: none;
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
@media (prefers-reduced-motion: reduce), print {
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Before / after ---------- */

.ba-section { background: var(--mist); }
.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  margin-top: 48px;
}
.ba-item { margin: 0; }
.ba-item-wide { grid-column: 1 / -1; }
@media (max-width: 767px) { .ba-grid { grid-template-columns: 1fr; } }
.ba-item figcaption {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  text-align: left;
}
.ba-stage {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(22,34,46,.16);
  line-height: 0;
  touch-action: pan-y;
}
.ba-stage img {
  width: 100%;
  height: auto;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}
.ba-frost {
  position: absolute;
  inset: 0;
  clip-path: inset(0 calc(100% - var(--pos)) 0 0);
}
.ba-divider {
  position: absolute;
  top: 0; bottom: 0;
  left: var(--pos);
  width: 2px;
  margin-left: -1px;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(22,34,46,.12);
}
.ba-knob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 42px; height: 42px;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(22,34,46,.28);
}
.ba-tag {
  position: absolute;
  top: 16px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(22,34,46,.55);
  backdrop-filter: blur(6px);
  padding: 7px 13px;
  border-radius: 999px;
}
.ba-tag-l { left: 16px; }
.ba-tag-r { right: 16px; }
.ba-range {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  opacity: 0;
  cursor: ew-resize;
  margin: 0;
}


/* ---------- Steps ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: left;
  margin-top: 56px;
  position: relative;
}
@media (max-width: 767px) { .steps { grid-template-columns: 1fr; } }

.step .num {
  display: inline-flex;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 18px;
  box-shadow: 0 6px 14px rgba(27,92,151,.25);
}
.step h3 { font-size: 20px; margin-bottom: 8px; color: var(--ink); }
.step p { color: var(--muted); }

.section-cta { margin-top: 64px; }

/* ---------- What / PDLC ---------- */

.what { background: var(--mist); }
.what-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 72px;
  align-items: center;
  text-align: left;
}
@media (max-width: 860px) { .what-grid { grid-template-columns: 1fr; gap: 48px; } }
.what-text p { margin-top: 22px; color: var(--text); }
.pdlc-caption { color: var(--muted); font-size: 15px; }

.pdlc {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.pdlc-pane {
  position: relative;
  width: min(300px, 80vw);
  aspect-ratio: 3 / 4;
  border-radius: 14px;
  border: 6px solid var(--ink);
  background: #fff;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(22,34,46,.16);
}
.pdlc-behind {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.35;
  color: var(--ink);
}
.pdlc-crystals { position: absolute; inset: 0; width: 100%; height: 100%; }
.pdlc-crystals rect {
  fill: var(--blue);
  opacity: .5;
  transform-box: fill-box;
  transform-origin: center;
  transform: rotate(var(--r));
  transition: transform .8s var(--ease-out), opacity .8s;
}
.pdlc-glass {
  position: absolute;
  inset: 0;
  backdrop-filter: blur(9px);
  background: rgba(255,255,255,.58);
  transition: backdrop-filter .8s var(--ease-out), background .8s var(--ease-out);
}
.pdlc[data-state="on"] .pdlc-glass {
  backdrop-filter: blur(0px);
  background: rgba(255,255,255,0);
}
.pdlc[data-state="on"] .pdlc-crystals rect { transform: rotate(0deg); opacity: .18; }

.pdlc-toggle {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 10px;
}
.toggle-track {
  width: 56px; height: 32px;
  border-radius: 999px;
  background: #c3ced8;
  position: relative;
  flex-shrink: 0;
  transition: background .3s;
}
.toggle-thumb {
  position: absolute;
  top: 3px; left: 3px;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 6px rgba(22,34,46,.3);
  transition: transform .3s var(--ease-out);
}
.pdlc[data-state="on"] .toggle-track { background: var(--blue); }
.pdlc[data-state="on"] .toggle-thumb { transform: translateX(24px); }
.toggle-text { display: inline-grid; text-align: left; }
.toggle-text span { grid-area: 1 / 1; transition: opacity .3s; }
.toggle-on { opacity: 0; }
.pdlc[data-state="on"] .toggle-on { opacity: 1; }
.pdlc[data-state="on"] .toggle-off { opacity: 0; }

.pdlc-diagram {
  margin: 36px 0 0;
  max-width: 380px;
}
.pdlc-diagram svg { width: 100%; height: auto; display: block; }
.pdlc-diagram figcaption {
  margin-top: 10px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
}

/* ---------- Demos ---------- */

.demos { background: var(--ink); color: #fff; }
.demos h2 { color: #fff; }
.demos .section-lead { color: #93a5b4; }
.demo-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 28px;
  margin-top: 56px;
  align-items: start;
}
@media (max-width: 860px) { .demo-grid { grid-template-columns: 1fr; justify-items: center; } }
.demo { margin: 0; }
.demo video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  background: #0d151d;
}
.demo-tall { width: min(300px, 100%); }
.demo figcaption {
  margin-top: 14px;
  font-size: 14px;
  font-weight: 500;
  color: #93a5b4;
  text-align: left;
}

/* ---------- Benefits ---------- */

.benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 56px 72px;
  text-align: left;
}
@media (max-width: 767px) { .benefits { grid-template-columns: 1fr; gap: 44px; } }
.benefit svg {
  width: 30px; height: 30px;
  color: var(--blue);
  margin-bottom: 16px;
}
.benefit h3 { font-size: 21px; letter-spacing: -0.01em; margin-bottom: 8px; color: var(--ink); }
.benefit p { color: var(--muted); }

/* ---------- Products ---------- */

.products { background: var(--mist); }
.product-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 56px;
}
@media (max-width: 767px) { .product-split { grid-template-columns: 1fr; } }
.product-panel {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
  padding: 40px;
  border-radius: 16px;
  text-decoration: none;
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out);
}
.product-panel:hover { transform: translateY(-3px); }
.product-existing {
  background: #fff;
  color: var(--text);
  box-shadow: 0 10px 30px rgba(22,34,46,.08);
}
.product-existing:hover { box-shadow: 0 18px 44px rgba(22,34,46,.12); }
.product-new {
  background: var(--ink);
  color: #b9c6d1;
  box-shadow: 0 10px 30px rgba(22,34,46,.25);
}
.product-new:hover { box-shadow: 0 18px 44px rgba(22,34,46,.35); }
.product-panel h3 { font-size: 22px; letter-spacing: -0.01em; }
.product-existing h3 { color: var(--ink); }
.product-new h3 { color: #fff; }
.product-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  font-weight: 600;
  font-size: 15px;
  color: var(--blue);
}
.product-new .product-link { color: #7db4e0; }
.product-link svg { transition: transform .25s var(--ease-out); }
.product-panel:hover .product-link svg { transform: translateX(4px); }

/* ---------- Callback band ---------- */

.callback { background: var(--ink-2); color: #fff; }
.callback h2 { color: #fff; }
.callback p { margin: 16px auto 0; max-width: 520px; color: #93a5b4; }
.callback form {
  max-width: 420px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-align: left;
}
.callback label { font-size: 14px; font-weight: 600; display: block; margin-bottom: 6px; }
.callback input {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius);
  border: none;
  font-family: inherit;
  font-size: 16px;
}
.callback .btn-primary { margin-top: 8px; border: none; }
.form-confirmation { font-size: 18px; font-weight: 600; margin-top: 40px; }

/* ---------- Footer ---------- */

footer {
  background: #101820;
  color: rgba(255,255,255,.72);
  padding: 56px 24px;
  text-align: center;
  font-size: 14px;
}
footer .logo { margin: 0 0 16px; font-size: 24px; line-height: 40px; }
footer .logo .on { font-size: 22px; border-radius: 7px; padding: 0 7px; }
footer p { margin-bottom: 8px; }
footer a { color: #fff; }
footer .lang-switch { position: static; display: block; margin-top: 16px; }
footer .lang-switch a { text-decoration: none; }
footer .lang-switch .active { font-weight: 700; }

/* ---------- Logo ---------- */

.logo {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  letter-spacing: -0.5px;
}
.logo .on {
  background: #fff;
  color: #1f2937;
  border-radius: 10px;
  padding: 0 10px;
  line-height: 1.3;
}

/* ---------- Subpages ---------- */

.lang-switch { font-size: 14px; color: #fff; }
.lang-switch a { color: inherit; }
.lang-switch .active { font-weight: 700; }

.subpage-header {
  background: var(--ink-2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 28px;
}
.subpage-header .logo { margin: 0; font-size: 28px; line-height: 48px; }
.subpage-header .logo .on { font-size: 26px; border-radius: 8px; padding: 0 8px; }
.subpage-header .lang-switch { position: static; color: #fff; }
.subpage-header .lang-switch a { text-decoration: none; }

.subpage main { min-height: calc(100vh - 72px - 260px); }
.subpage h1 { font-size: clamp(28px, 3.5vw, 40px); font-weight: 600; letter-spacing: -0.02em; margin-bottom: 24px; }
.subpage section { padding: 88px 24px; }
.page-intro { max-width: 640px; margin: 0 auto 8px; line-height: 1.7; color: var(--muted); }
.btn-dark { color: var(--blue); border-color: var(--blue); }
.subpage .callback h1 { margin-bottom: 24px; color: #fff; }
.subpage .callback form { margin-top: 40px; }

/* ---------- Team ---------- */

.team-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.team-card { width: min(280px, 100%); }
.team-card img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  display: block;
  box-shadow: 0 14px 34px rgba(22,34,46,.14);
}
.team-card figcaption {
  margin-top: 14px;
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
}

/* ---------- Quote wizard ---------- */

.wizard-page {
  height: 100vh;
  height: 100svh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.wizard {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  gap: 32px;
  overflow-y: auto; /* only scrolls if the viewport is shorter than one step */
}
.wizard > * { flex-shrink: 0; }
.wizard-progress {
  display: flex;
  gap: 16px;
  list-style: none;
}
.wizard-progress li {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  border: 2px solid #cfd8e0;
  color: #9aa7b2;
  background: #fff;
}
.wizard-progress li.current { border-color: var(--blue); color: #fff; background: var(--blue); }
.wizard-progress li.done { border-color: var(--blue); color: var(--blue); }

.wstep[hidden] { display: none; }
.wstep {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: 100%;
  max-width: 460px;
  text-align: center;
}
.wstep h1 { font-size: clamp(24px, 3vw, 32px); font-weight: 600; letter-spacing: -0.02em; outline: none; }

.photo-frame {
  width: min(360px, 100%);
  aspect-ratio: 4 / 3;
  border: 2px dashed #b6c2cc;
  border-radius: var(--radius);
  background: var(--mist);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: border-color .25s;
}
.photo-frame:hover, .photo-frame:focus-within { border-color: var(--blue); }
.photo-thumbs {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(50%, 1fr));
  gap: 2px;
}
.photo-thumbs.single { grid-template-columns: 1fr; }
.photo-thumbs img { width: 100%; height: 100%; object-fit: cover; min-height: 0; }
.photo-frame-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: #6b7a87;
  font-weight: 600;
  line-height: 1.5;
}

.wizard-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 8px;
}
.btn-ghost {
  background: transparent;
  border: none;
  color: #6b7a87;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  padding: 12px 16px;
  text-decoration: none;
}
.btn-ghost:hover { color: var(--blue); }
.btn[disabled] { opacity: .4; cursor: default; box-shadow: none; transform: none; }

.product-choice {
  border: none;
  display: flex;
  gap: 16px;
  width: 100%;
}
.product-card {
  flex: 1;
  border: 2px solid #cfd8e0;
  border-radius: var(--radius);
  padding: 16px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
  transition: border-color .2s, background .2s;
}
.product-card:has(input:checked) { border-color: var(--blue); background: #f0f5fa; }
.product-card input { position: absolute; opacity: 0; }
.product-card strong { font-size: 16px; }
.product-card span { font-size: 13px; color: #6b7a87; }
.product-note {
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
  text-align: left;
  background: var(--mist);
  border-radius: var(--radius);
  padding: 14px 16px;
}

.wizard .estimator { text-align: left; }
.estimator { width: 100%; max-width: 420px; }
.estimator label { font-weight: 600; display: block; margin-bottom: 12px; }
.estimator input[type=range] { width: 100%; accent-color: var(--blue); }
.quote-price { margin-top: 16px; font-size: 22px; }
.quote-price strong { color: var(--blue); font-variant-numeric: tabular-nums; }
.quote-price .rate { font-size: 15px; color: #666; }
.quote-note { margin-top: 8px; font-size: 13px; color: #888; line-height: 1.5; }

.wizard form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-align: left;
}
.wizard form label { font-size: 14px; font-weight: 600; display: block; margin-bottom: 6px; }
.wizard form input:not([type=radio]) {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius);
  border: 1.5px solid #cfd8e0;
  font-family: inherit;
  font-size: 16px;
}
.wizard form input:focus { border-color: var(--blue); outline: none; }
.channel-choice { border: none; }
.channel-choice legend { font-size: 14px; font-weight: 600; margin-bottom: 10px; }
.channel-choice label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 20px 0 0;
  font-weight: 400;
  font-size: 16px;
}
.channel-choice input { accent-color: var(--blue); }
.form-error { color: #b3261e; font-size: 14px; }

.wstep-done .done-msg { font-size: 18px; line-height: 1.6; color: var(--text); }

.quote-widget {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.photo-btn { cursor: pointer; }
.photo-preview {
  max-width: 320px;
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
}

/* ---------- m² field ---------- */
.m2-field {
  display: flex;
  align-items: center;
  gap: 10px;
}
.m2-field input {
  width: 130px;
  padding: 14px 16px;
  border-radius: var(--radius);
  border: 1.5px solid #cfd8e0;
  font-family: inherit;
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.m2-field input:focus { border-color: var(--blue); outline: none; }
.m2-unit { font-size: 17px; font-weight: 600; color: var(--muted); }

/* ---------- legal pages ---------- */
.legal { text-align: left; max-width: 680px; }
.legal h1 { font-size: clamp(30px, 3.6vw, 40px); font-weight: 600; letter-spacing: -0.02em; color: var(--ink); }
.legal-date { margin-top: 8px; font-size: 14px; color: var(--muted); }
.legal h2 { font-size: 20px; margin: 36px 0 10px; }
.legal p { color: var(--text); line-height: 1.7; }
.legal a { color: var(--blue); }
.form-privacy { font-size: 13px; color: var(--muted); line-height: 1.5; }
.form-privacy a { color: var(--blue); }

/* Inline form-field validation (contact gate) */
.field-error { margin: 6px 0 0; font-size: 13px; color: #c0392b; line-height: 1.4; min-height: 0; }
.field-error:empty { display: none; }
input.invalid { border-color: #c0392b; outline-color: #c0392b; }
