/* ==========================================================================
   TelefoonPrijs design system
   Geïnspireerd op verkopen.fixje.nl: helder hemelsblauw, veel wit, ronde
   kaarten, groen uitsluitend voor geldbedragen.
   ========================================================================== */

:root {
  color-scheme: light;

  --blue: #049ee2;
  --blue-deep: #0380b8;
  --blue-ink: #063a56;
  --blue-soft: #e6f4fc;
  --blue-border: #b9dcf0;

  --bg: #f4f8fb;
  --surface: #ffffff;
  --ink: #1a2733;
  --muted: #5c6f80;
  --line: #dfe9f1;

  --green: #00902c;
  --green-soft: #e3f6e9;
  --amber-soft: #fff4dc;
  --amber-ink: #8a5b00;
  --amber-border: #f2ddb0;

  --radius: 16px;
  --radius-sm: 12px;
  --shadow: 0 10px 30px rgba(6, 58, 86, 0.08);
  --shadow-lift: 0 16px 40px rgba(6, 58, 86, 0.14);

  --font-head: 'Poppins', 'Avenir Next', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Inter', 'Helvetica Neue', system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--font-head);
  line-height: 1.15;
  margin: 0;
}

a { color: var(--blue-deep); }

button { font-family: inherit; }

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 2px;
  border-radius: 6px;
}

/* --------------------------------------------------------------------------
   Gedeelde bouwstenen
   -------------------------------------------------------------------------- */

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 20px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: var(--blue);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.02em;
  flex: none;
}

.brand-logo {
  height: 62px;
  width: auto;
  display: block;
}

[hidden] { display: none !important; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 13px 26px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s ease, transform 0.1s ease, box-shadow 0.15s ease;
}

.button.primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 6px 18px rgba(4, 158, 226, 0.35);
}

.button.primary:hover { background: var(--blue-deep); }
.button.primary:active { transform: translateY(1px); }
.button.primary:disabled {
  background: #a8c7d9;
  box-shadow: none;
  cursor: not-allowed;
}

.button.ghost {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--line);
}

.button.ghost:hover { border-color: var(--blue); color: var(--blue-deep); }
.button.ghost:disabled { opacity: 0.45; cursor: not-allowed; }

.provider-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--blue-soft);
  color: var(--blue-deep);
  font-weight: 700;
  font-size: 15px;
  flex: none;
  overflow: hidden;
}

/* Het favicon krijgt pas een wit plaatje-vlak als het echt geladen is;
   tot die tijd blijft de letter-avatar zichtbaar (geen witte vierkantjes). */
.provider-icon img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 5px;
  background: #fff;
  opacity: 0;
  transition: opacity 0.15s ease;
}

.provider-icon img.ok { opacity: 1; }

.price { color: var(--green); font-weight: 700; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 11px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  background: var(--blue-soft);
  color: var(--blue-ink);
}

.badge.best {
  background: var(--green-soft);
  color: var(--green);
}

.empty-state {
  padding: 34px 20px;
  border: 2px dashed var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  text-align: center;
}

.empty-state.loading::after {
  content: '';
  display: block;
  width: 26px;
  height: 26px;
  margin: 14px auto 0;
  border-radius: 50%;
  border: 3px solid var(--blue-border);
  border-top-color: var(--blue);
  animation: spin 0.8s linear infinite;
}

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

/* --------------------------------------------------------------------------
   Homepage
   -------------------------------------------------------------------------- */

.usp-bar {
  background: var(--blue-ink);
  color: #dff2fd;
  font-size: 13.5px;
}

.usp-bar ul {
  max-width: 1160px;
  margin: 0 auto;
  padding: 8px 24px;
  display: flex;
  justify-content: center;
  gap: 34px;
  list-style: none;
  flex-wrap: wrap;
}

.usp-bar li { display: flex; align-items: center; gap: 7px; white-space: nowrap; }
.usp-bar li::before { content: '✓'; color: #6fe08f; font-weight: 700; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.site-header .inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-nav { display: flex; align-items: center; gap: 26px; }

.site-nav a:not(.button) {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 15px;
}

.site-nav a:not(.button):hover { color: var(--blue-deep); }
.site-nav .button { padding: 10px 20px; font-size: 15px; white-space: nowrap; }

.hero {
  background: linear-gradient(135deg, #05a6ec 0%, #0380c4 100%);
  color: #fff;
  border-radius: 0 0 32px 32px;
  position: relative;
}

/* De sierrandjes zitten in een eigen laag met overflow hidden, zodat de
   hero zelf géén overflow hidden nodig heeft en de zoeksuggesties niet
   worden afgekapt aan de onderkant van de hero. */
.hero-deco {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: inherit;
  pointer-events: none;
}

.hero-deco::before,
.hero-deco::after {
  content: '';
  position: absolute;
  border: 2px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
}

.hero-deco::before { width: 220px; height: 220px; top: -70px; right: 12%; }
.hero-deco::after { width: 120px; height: 120px; bottom: 40px; left: 6%; }

.hero .inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 64px 24px 72px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(34px, 4.6vw, 52px);
  font-weight: 800;
  margin-bottom: 14px;
}

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

.hero p.lead {
  margin: 0 0 26px;
  font-size: 18px;
  color: #e3f4fd;
  max-width: 46ch;
}

.hero-search { position: relative; max-width: 520px; }

.hero-search .field {
  display: flex;
  background: #fff;
  border-radius: 999px;
  padding: 6px;
  box-shadow: var(--shadow-lift);
}

.hero-search input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  padding: 10px 12px 10px 20px;
  font-size: 16px;
  font-family: inherit;
  color: var(--ink);
}

.hero-search input:focus { outline: none; }
.hero-search input::placeholder { color: #8ba0af; }

.hero-search .button { flex: none; }

.hero-suggest {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lift);
  overflow: hidden auto;
  z-index: 30;
  max-height: 320px;
}

.hero-suggest button {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 13px 20px;
  border: 0;
  background: none;
  cursor: pointer;
  font-size: 15.5px;
  color: var(--ink);
  text-align: left;
}

.hero-suggest button:hover,
.hero-suggest button.active { background: var(--blue-soft); }
.hero-suggest button strong { font-weight: 600; }
.hero-suggest button span { color: var(--muted); font-size: 13px; white-space: nowrap; }
.hero-suggest .none { padding: 14px 20px; color: var(--muted); font-size: 14.5px; }

.hero-trust {
  margin-top: 18px;
  font-size: 14px;
  color: #cdeafb;
}

.hero-card {
  justify-self: end;
  width: min(380px, 100%);
  background: #fff;
  color: var(--ink);
  border-radius: 20px;
  box-shadow: var(--shadow-lift);
  padding: 22px;
  transform: rotate(1.5deg);
}

.hero-card header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 14px;
}

.hero-card header strong { font-family: var(--font-head); font-size: 16px; }
.hero-card header span { font-size: 12.5px; color: var(--muted); white-space: nowrap; }

.hero-card .offer-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
}

.hero-card .offer-row:first-of-type { border-top: 0; }
.hero-card .offer-row .name { flex: 1; font-weight: 600; font-size: 15px; }
.hero-card .offer-row .amount { font-size: 17px; }

.hero-card footer {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed var(--line);
  font-size: 13px;
  color: var(--muted);
  text-align: center;
}

.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 24px 0;
}

.section h2 {
  font-size: clamp(26px, 3.2vw, 36px);
  font-weight: 800;
  margin-bottom: 18px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  color: var(--muted);
  font-size: 16.5px;
}

.two-col p { margin: 0; }

.steps-band {
  background: var(--blue-soft);
  border-radius: 28px;
  padding: 54px 44px;
  margin-top: 72px;
}

.steps-band h2 { text-align: center; margin-bottom: 40px; }

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

.step-item { display: flex; gap: 16px; align-items: flex-start; }

.step-item .num {
  flex: none;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
}

.step-item h3 { font-size: 17px; margin-bottom: 6px; }
.step-item p { margin: 0; color: var(--muted); font-size: 15px; }

.model-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.model-chips a {
  text-decoration: none;
  background: var(--surface);
  border: 2px solid var(--line);
  color: var(--ink);
  border-radius: 999px;
  padding: 10px 20px;
  font-weight: 600;
  font-size: 15px;
  transition: border-color 0.15s ease, color 0.15s ease;
}

.model-chips a:hover { border-color: var(--blue); color: var(--blue-deep); }

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 28px;
  align-items: start;
}

.faq-grid details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0 20px;
}

.faq-grid summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  font-weight: 600;
  font-size: 15.5px;
}

.faq-grid summary::-webkit-details-marker { display: none; }

.faq-grid summary::after {
  content: '⌄';
  color: var(--blue);
  font-size: 18px;
  transition: transform 0.15s ease;
  flex: none;
}

.faq-grid details[open] summary::after { transform: rotate(180deg); }
.faq-grid details p { margin: 0 0 16px; color: var(--muted); font-size: 15px; }

.site-footer {
  background: var(--blue-ink);
  color: #bcd9ea;
  margin-top: 72px;
}

.site-footer .cols {
  max-width: 1160px;
  margin: 0 auto;
  padding: 52px 24px 40px;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  font-size: 14.5px;
}

.site-footer .brand { color: #fff; margin-bottom: 12px; }
.site-footer .brand-logo { height: 50px; }
.site-footer p { margin: 0; max-width: 36ch; }
.site-footer h3 { color: #fff; font-size: 15px; margin-bottom: 14px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.site-footer ul.two-cols { grid-template-columns: 1fr 1fr; column-gap: 22px; }
.site-footer a { color: #bcd9ea; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }

.site-footer .legal { border-top: 1px solid rgba(255, 255, 255, 0.15); }

.site-footer .legal-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 18px 24px;
  font-size: 13px;
  color: #8fb4ca;
}

/* --------------------------------------------------------------------------
   Vergelijker (wizard)
   -------------------------------------------------------------------------- */

.wizard-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.wizard-header .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 26px;
}

.stepper {
  display: flex;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
  justify-content: center;
  flex-wrap: wrap;
}

.stepper button {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 0;
  background: none;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
}

.stepper button:disabled { cursor: not-allowed; opacity: 0.55; }

.stepper .step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--line);
  font-size: 12.5px;
  flex: none;
}

.stepper li.active button { background: var(--blue-soft); color: var(--blue-ink); }
.stepper li.active .step-num { background: var(--blue); border-color: var(--blue); color: #fff; }

.stepper li.complete .step-num {
  background: var(--green-soft);
  border-color: var(--green-soft);
  color: var(--green);
}

.wizard-progress {
  display: none;
  flex: 1;
  align-items: center;
  gap: 12px;
}

.wizard-progress .track {
  flex: 1;
  height: 8px;
  border-radius: 999px;
  background: var(--blue-soft);
  overflow: hidden;
}

.wizard-progress .fill {
  height: 100%;
  background: var(--blue);
  border-radius: 999px;
  transition: width 0.25s ease;
}

.wizard-progress span { font-size: 13px; color: var(--muted); white-space: nowrap; flex: none; }

.wizard-shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px 24px 60px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  gap: 26px;
  align-items: start;
}

.form-panel {
  background: var(--surface);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 30px;
}

.panel-head { margin-bottom: 22px; }

.kicker {
  margin: 0 0 4px;
  color: var(--blue-deep);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.panel-head h1 { font-size: clamp(22px, 3vw, 30px); font-weight: 700; }

.form-actions {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.form-actions .button.hidden { visibility: hidden; }

.search-input {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-family: inherit;
  margin-bottom: 18px;
  background: var(--surface);
  color: var(--ink);
}

.search-input:focus { border-color: var(--blue); outline: none; }

.model-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
  max-height: 430px;
  overflow-y: auto;
  padding: 2px;
}

.model-button,
.choice-button {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
  text-align: left;
  background: var(--surface);
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  cursor: pointer;
  font-size: 15px;
  color: var(--ink);
  transition: border-color 0.12s ease, background 0.12s ease;
  position: relative;
}

.model-button:hover,
.choice-button:hover { border-color: var(--blue); }

.model-button.selected,
.choice-button.selected {
  border-color: var(--blue);
  background: var(--blue-soft);
}

.model-button.selected::after,
.choice-button.selected::after {
  content: '✓';
  position: absolute;
  top: 10px;
  right: 12px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.model-button strong,
.choice-button strong { font-weight: 600; padding-right: 24px; }

.model-button span,
.choice-button span { color: var(--muted); font-size: 13px; }

.question-group { margin-bottom: 26px; }
.question-group:last-child { margin-bottom: 0; }
.question-group h2 { font-size: 17px; font-weight: 600; margin-bottom: 12px; }

.choice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
}

.variant-grid { display: grid; gap: 26px; }

/* Bod-zijpaneel (desktop) */

.results-panel {
  position: sticky;
  top: 86px;
  background: var(--surface);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 22px;
}

.results-head { margin-bottom: 14px; }
.results-head .label { font-size: 13.5px; color: var(--muted); display: block; }

.results-head strong {
  font-family: var(--font-head);
  font-size: 32px;
  color: var(--green);
  line-height: 1.2;
}

.results-head .provider-count { font-size: 13px; color: var(--muted); }

.mini-results { display: grid; gap: 4px; }

.result-row {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 9px 10px;
  border-radius: var(--radius-sm);
}

.result-row:nth-child(odd) { background: var(--bg); }
.result-row .info { flex: 1; min-width: 0; }
.result-row .info strong { display: block; font-size: 14px; font-weight: 600; }

.result-row .info span {
  display: block;
  font-size: 12px;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.result-row .price { font-size: 15px; white-space: nowrap; }
.result-row .price.missing { color: var(--muted); font-weight: 500; }

/* Resultaatkaarten */

.full-results { display: grid; gap: 16px; }

.result-card {
  border: 2px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  background: var(--surface);
}

.result-card.best-card { border-color: var(--green); box-shadow: var(--shadow); }
.result-card.muted-card { background: var(--bg); }

.result-top {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.result-top .provider-icon { width: 44px; height: 44px; }
.result-top .titles { flex: 1; min-width: 0; }

.result-top h3 {
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.result-meta { color: var(--muted); font-size: 14px; margin-top: 2px; }

.result-price { text-align: right; flex: none; }

.result-price strong {
  display: block;
  font-family: var(--font-head);
  font-size: 26px;
  color: var(--green);
}

.result-price.no-offer strong { color: var(--muted); font-size: 20px; }

.badge-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.warning-list {
  margin: 14px 0 0;
  padding: 12px 16px 12px 34px;
  background: var(--amber-soft);
  border: 1px solid var(--amber-border);
  border-radius: var(--radius-sm);
  color: var(--amber-ink);
  font-size: 14px;
  display: grid;
  gap: 5px;
}

.result-card.clickable { cursor: pointer; transition: border-color 0.12s ease, transform 0.12s ease; }
.result-card.clickable:hover { border-color: var(--blue); transform: translateY(-1px); }
.result-card.best-card.clickable:hover { border-color: var(--green); }

.card-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.card-hint {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--blue-deep);
  font-size: 14px;
  font-weight: 600;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  font-weight: 700;
  color: var(--blue-deep);
  text-decoration: none;
  border: 2px solid var(--blue-border);
  border-radius: 999px;
  padding: 7px 16px;
  transition: background 0.12s ease, border-color 0.12s ease;
}

.card-link:hover {
  background: var(--blue-soft);
  border-color: var(--blue);
}

.modal-cta {
  width: 100%;
  margin-top: 18px;
}

/* Prijsopbouw-modal */

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(6, 58, 86, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.modal {
  background: var(--surface);
  border-radius: 20px;
  box-shadow: var(--shadow-lift);
  width: min(460px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  padding: 24px;
}

.modal-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}

.modal-head .provider-icon { width: 44px; height: 44px; }
.modal-head h2 { font-size: 20px; flex: 1; }

.modal-close {
  border: 0;
  background: var(--bg);
  border-radius: 50%;
  width: 34px;
  height: 34px;
  font-size: 17px;
  cursor: pointer;
  color: var(--muted);
  flex: none;
}

.modal-close:hover { background: var(--blue-soft); color: var(--blue-deep); }
.modal .modal-product { color: var(--muted); font-size: 14px; margin: 0 0 18px; }

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
  padding: 11px 0;
  border-top: 1px solid var(--line);
  font-size: 15px;
}

.price-row .amount { font-weight: 700; white-space: nowrap; }
.price-row .amount.minus { color: var(--amber-ink); }

.price-row.total {
  border-top: 2px solid var(--ink);
  font-size: 17px;
  font-weight: 700;
}

.price-row.total .amount { color: var(--green); font-size: 24px; font-family: var(--font-head); }

.deviation-list {
  margin: 0 0 4px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.deviation-list li {
  background: var(--amber-soft);
  border: 1px solid var(--amber-border);
  color: var(--amber-ink);
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 13px;
  font-weight: 600;
}

.deviation-list li.good {
  background: var(--green-soft);
  border-color: var(--green-soft);
  color: var(--green);
}

.modal .note { color: var(--muted); font-size: 13px; margin: 14px 0 0; }

/* Sticky bod-balk op mobiel */

.mobile-summary {
  display: none;
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 50;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lift);
  padding: 12px 16px;
  align-items: center;
  gap: 14px;
}

.mobile-summary .label { font-size: 12px; color: var(--muted); display: block; }
.mobile-summary strong { font-family: var(--font-head); font-size: 21px; color: var(--green); }
.mobile-summary .button { margin-left: auto; padding: 11px 18px; font-size: 15px; }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 1080px) {
  .stepper button .step-label { display: none; }
  .stepper li.active button .step-label { display: inline; }
}

@media (max-width: 960px) {
  .hero .inner { grid-template-columns: 1fr; padding: 46px 24px 56px; }
  .hero-card { justify-self: center; transform: none; }

  .wizard-shell { grid-template-columns: 1fr; padding-bottom: 130px; }
  .results-panel { display: none; }
  .mobile-summary { display: flex; }
  .mobile-summary.hidden { display: none; }
}

@media (max-width: 720px) {
  .usp-bar ul { gap: 14px; padding: 7px 14px; font-size: 12.5px; }
  .site-nav a:not(.button) { display: none; }

  .two-col { grid-template-columns: 1fr; gap: 18px; }
  .steps-band { padding: 38px 24px; margin-top: 56px; }
  .steps-grid { grid-template-columns: 1fr; gap: 26px; }
  .faq-grid { grid-template-columns: 1fr; }
  .site-footer .cols { grid-template-columns: 1fr; gap: 30px; }
  .section { padding-top: 52px; }

  .hero-search .field { flex-direction: column; border-radius: 20px; gap: 6px; }
  .hero-search input { padding: 12px 16px; }
  .hero-search .button { width: 100%; }

  .stepper { display: none; }
  .wizard-progress { display: flex; }
  .wizard-shell { padding: 18px 14px 130px; }
  .form-panel { padding: 20px 16px; border-radius: var(--radius); }
  .choice-grid { grid-template-columns: 1fr 1fr; }
  .model-list { grid-template-columns: 1fr 1fr; }

  .result-top { flex-wrap: wrap; }
  .result-price { text-align: left; width: 100%; order: 3; }
  .result-price strong { display: inline; margin-right: 8px; }
}

@media (max-width: 460px) {
  .choice-grid { grid-template-columns: 1fr; }
  .model-list { grid-template-columns: 1fr; }
}
