:root {
  --forest: #1f3333;
  --forest-80: #2d4a4a;
  --forest-40: rgba(31,51,51,0.4);
  --forest-10: rgba(31,51,51,0.07);
  --sand: #dac09e;
  --sand-light: #f0e8d8;
  --sand-pale: #faf7f2;
  --white: #ffffff;
  --text-primary: #1a2a2a;
  --text-secondary: #5a7272;
  --text-muted: #8fa5a5;
  --border: rgba(31,51,51,0.12);
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 4px 24px rgba(31,51,51,0.08);
  --shadow-lg: 0 12px 48px rgba(31,51,51,0.14);
}

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

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--sand-pale);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── SLIDES ── */
.slide { display: none; min-height: 100vh; }
.slide.active { display: flex; }

/* ── SLIDE 1: LANDING ── */
#s1 {
  flex-direction: column;
  background: var(--forest);
  position: relative;
  overflow: hidden;
}

#s1::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 480px; height: 480px;
  border-radius: 50%;
  border: 1px solid rgba(218,192,158,0.12);
}
#s1::after {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 320px; height: 320px;
  border-radius: 50%;
  border: 1px solid rgba(218,192,158,0.08);
}

.s1-nav {
  position: relative; z-index: 2;
  display: flex; justify-content: space-between; align-items: center;
  padding: 28px 48px;
}

.logo-mark {
  display: flex; flex-direction: column; gap: 2px;
}
.logo-name {
  font-family: 'DM Serif Display', serif;
  font-size: 22px; color: var(--sand);
  letter-spacing: 0.04em;
}
.logo-sub {
  font-size: 10px; font-weight: 500; letter-spacing: 0.16em;
  color: rgba(218,192,158,0.5); text-transform: uppercase;
}

.s1-badge {
  font-size: 11px; font-weight: 500;
  color: rgba(218,192,158,0.6);
  letter-spacing: 0.1em; text-transform: uppercase;
  border: 1px solid rgba(218,192,158,0.2);
  padding: 6px 14px; border-radius: 20px;
}

.s1-hero {
  position: relative; z-index: 2;
  flex: 1; display: flex; flex-direction: column;
  justify-content: center; align-items: flex-start;
  padding: 0 48px 0;
  max-width: 680px;
}

.s1-eyebrow {
  font-size: 11px; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--sand);
  opacity: 0.6; margin-bottom: 20px;
  display: flex; align-items: center; gap: 10px;
}
.s1-eyebrow::before {
  content: '';
  display: block; width: 24px; height: 1px;
  background: var(--sand); opacity: 0.4;
}

.s1-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 24px;
}
.s1-title em {
  font-style: italic;
  color: var(--sand);
}

.s1-desc {
  font-size: 17px; line-height: 1.65;
  color: rgba(255,255,255,0.55);
  max-width: 520px;
  margin-bottom: 44px;
  font-weight: 300;
}

.s1-features {
  list-style: none;
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 36px;
}
.s1-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 400;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.01em;
}
.s1-feat-icon {
  width: 22px; height: 22px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--sand);
  opacity: 0.85;
}

.s1-cta {
  display: flex; align-items: center; gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--sand);
  color: var(--forest);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px; font-weight: 600;
  padding: 16px 32px; border-radius: 50px;
  border: none; cursor: pointer;
  display: flex; align-items: center; gap: 10px;
  transition: transform 0.2s, box-shadow 0.2s;
  letter-spacing: 0.01em;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(218,192,158,0.3);
}
.btn-primary svg { width: 16px; height: 16px; }

.s1-note {
  font-size: 13px; color: rgba(255,255,255,0.3);
  display: flex; align-items: center; gap: 6px;
}

.s1-stats {
  position: relative; z-index: 2;
  display: flex; gap: 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: auto;
}
.s1-stat {
  flex: 1; padding: 24px 48px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.s1-stat:last-child { border-right: none; }
.s1-stat-num {
  font-family: 'DM Serif Display', serif;
  font-size: 28px; color: var(--sand);
  margin-bottom: 4px;
}
.s1-stat-label {
  font-size: 12px; color: rgba(255,255,255,0.35);
  font-weight: 400; letter-spacing: 0.02em;
}

/* ── SLIDE 2: FORM ── */
#s2 {
  background: var(--sand-pale);
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 0 16px 48px;
}

.form-header {
  width: 100%; max-width: 560px;
  padding: 32px 0 0;
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 8px; margin-bottom: 32px;
}

.form-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 18px; color: var(--forest);
  margin-bottom: 8px;
  display: flex; align-items: center; gap: 8px;
}
.form-logo span {
  font-size: 10px; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--text-muted);
  font-family: 'DM Sans', sans-serif;
}

/* Progress bar */
.progress-track {
  width: 100%; height: 3px;
  background: var(--border);
  border-radius: 2px; overflow: hidden;
  margin-bottom: 4px;
}
.progress-fill {
  height: 100%; border-radius: 2px;
  background: var(--forest);
  transition: width 0.4s cubic-bezier(0.4,0,0.2,1);
}
.progress-label {
  font-size: 12px; color: var(--text-muted);
  font-weight: 400;
}

/* Steps */
.step { display: none; width: 100%; max-width: 560px; }
.step.active { display: block; animation: fadeUp 0.35s ease; }

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

.step-q {
  font-family: 'DM Serif Display', serif;
  font-size: 26px; line-height: 1.25;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.step-hint {
  font-size: 14px; color: var(--text-muted);
  margin-bottom: 28px; font-weight: 300;
}

/* Option cards */
.options-grid {
  display: grid; gap: 10px;
  margin-bottom: 32px;
}
.options-grid.cols2 { grid-template-columns: 1fr 1fr; }
.options-grid.cols1 { grid-template-columns: 1fr; }

.opt-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  cursor: pointer;
  transition: all 0.18s;
  display: flex; align-items: center; gap: 14px;
}
.opt-card:hover {
  border-color: var(--forest-40);
  background: var(--sand-pale);
}
.opt-card.selected {
  border-color: var(--forest);
  background: var(--forest-10);
}
.opt-card.disabled {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}
.opt-icon {
  width: 36px; height: 36px;
  background: var(--sand-light);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
  transition: background 0.18s;
}
.opt-card.selected .opt-icon { background: var(--sand); }
.opt-label {
  font-size: 15px; font-weight: 500;
  color: var(--text-primary);
}
.opt-sub {
  font-size: 12px; color: var(--text-muted);
  font-weight: 300; margin-top: 2px;
}
.opt-badge {
  font-size: 10px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(232,164,90,0.15); color: #c47d2a;
  padding: 2px 8px; border-radius: 10px;
  margin-left: auto; flex-shrink: 0;
}

/* Input fields */
.field-group { margin-bottom: 20px; }
.field-label {
  font-size: 13px; font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 8px; display: block;
  letter-spacing: 0.02em;
}
.field-input {
  width: 100%; padding: 14px 16px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px; color: var(--text-primary);
  outline: none; transition: border-color 0.18s;
  appearance: none;
}
.field-input:focus { border-color: var(--forest); }
.field-input.error { border-color: #e06060; }
.field-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235a7272' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.fields-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* Nav buttons */
.step-nav {
  display: flex; gap: 10px; align-items: center;
  margin-top: 8px;
}
.btn-back {
  background: transparent; border: 1.5px solid var(--border);
  color: var(--text-secondary);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; font-weight: 500;
  padding: 13px 22px; border-radius: 50px;
  cursor: pointer; transition: all 0.18s;
}
.btn-back:hover { border-color: var(--forest-40); color: var(--text-primary); }
.btn-next {
  flex: 1; background: var(--forest);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px; font-weight: 600;
  padding: 14px 28px; border-radius: 50px;
  border: none; cursor: pointer;
  transition: all 0.2s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-next:hover { background: var(--forest-80); transform: translateY(-1px); }
.btn-next.sand { background: var(--sand); color: var(--forest); }
.btn-next.sand:hover { background: #c9aa88; }

/* ── Address search ── */
.addr-status {
  margin-top: 7px;
  font-size: 13px;
  min-height: 20px;
  color: var(--text-secondary);
  line-height: 1.45;
}
.addr-status.addr-ok   { color: #2a7a4e; }
.addr-status.addr-miss { color: #9a4a4a; }
.addr-btn-cambiar {
  background: none; border: none; padding: 0; margin-left: 4px;
  color: var(--forest); font-size: 13px; font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  text-decoration: underline; cursor: pointer;
}

/* ── Mapa SVG en resultado ── */
.result-mapa-card {
  width: 100%; max-width: 600px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  margin-top: 16px;
}
.mapa-card-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px;
  border-bottom: 1px solid var(--border);
}
.mapa-card-title {
  font-size: 11px; font-weight: 500;
  color: var(--text-secondary);
  text-transform: uppercase; letter-spacing: 0.07em;
}
.mapa-card-zona {
  font-size: 12px; font-weight: 600;
  color: var(--forest);
  background: var(--forest-10);
  padding: 3px 12px; border-radius: 20px;
  max-width: 220px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
#mapaContainer { background: #1a2e2e; display: block; }
#mapaContainer svg { display: block; }

/* Contact step */
.contact-note {
  background: var(--forest-10);
  border: 1px solid rgba(31,51,51,0.1);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 13px; color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 24px;
  display: flex; align-items: flex-start; gap: 10px;
}
.contact-note-icon { font-size: 16px; flex-shrink: 0; margin-top: 1px; }

/* Toast */
.toast {
  position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%);
  background: var(--forest);
  color: var(--white);
  font-size: 13px; font-weight: 500;
  padding: 12px 20px; border-radius: 50px;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 8px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s;
  z-index: 100; white-space: nowrap;
}
.toast.visible { opacity: 1; }

/* Inline field errors (step 5) */
.field-error {
  font-size: 12px;
  color: #c0392b;
  font-weight: 500;
  margin-top: 5px;
  min-height: 16px;
  letter-spacing: 0.01em;
}
.field-input.input-error {
  border-color: #c0392b !important;
  background: #fff8f7;
}
.field-optional {
  font-size: 11px;
  font-weight: 400;
  color: var(--text-muted);
  margin-left: 4px;
}

/* ── SLIDE 3: RESULT ── */
#s3 {
  background: var(--sand-pale);
  flex-direction: column;
  align-items: center;
  padding: 0 16px 64px;
}

.result-header {
  width: 100%; max-width: 600px;
  padding: 32px 0 0;
  display: flex; justify-content: space-between;
  align-items: center; margin-bottom: 32px;
}
.result-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 18px; color: var(--forest);
}
.result-meta {
  font-size: 13px; color: var(--text-muted);
}

.result-card {
  width: 100%; max-width: 600px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 16px;
}

.result-top {
  background: var(--forest);
  padding: 36px 40px;
  display: flex; align-items: center;
  gap: 32px;
  position: relative; overflow: hidden;
}
.result-top::after {
  content: '';
  position: absolute; right: -40px; top: -40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  border: 1px solid rgba(218,192,158,0.1);
}

.score-circle {
  width: 110px; height: 110px;
  border-radius: 50%;
  border: 2px solid rgba(218,192,158,0.3);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  flex-shrink: 0; position: relative; z-index: 1;
  background: rgba(218,192,158,0.08);
}
.score-num {
  font-family: 'DM Serif Display', serif;
  font-size: 44px; line-height: 1; color: var(--sand);
}
.score-max { font-size: 13px; color: rgba(218,192,158,0.45); }

.result-top-info { flex: 1; position: relative; z-index: 1; }
.result-band-label {
  display: inline-block;
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 4px 12px;
  border-radius: 20px; margin-bottom: 10px;
}
.band-excellent { background: rgba(74,196,130,0.22); color: #3db872; }
.band-good      { background: rgba(74,196,130,0.18); color: #4ac482; }
.band-warn      { background: rgba(232,164,90,0.2);  color: #d4832a; }
.band-bad       { background: rgba(224,96,96,0.18);  color: #c94040; }

.result-title {
  font-family: 'DM Serif Display', serif;
  font-size: 22px; color: var(--white);
  line-height: 1.2; margin-bottom: 6px;
}
.result-sub {
  font-size: 13px; color: rgba(255,255,255,0.45);
  font-weight: 300; line-height: 1.5;
}

/* Score bar breakdown */
.result-breakdown {
  padding: 28px 40px;
  border-bottom: 1px solid var(--border);
}
.breakdown-title {
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-muted);
  margin-bottom: 20px;
}
.b-row {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 14px;
}
.b-row:last-child { margin-bottom: 0; }
.b-label { font-size: 13px; color: var(--text-secondary); min-width: 160px; }
.b-bar { flex: 1; height: 6px; background: var(--border); border-radius: 3px; overflow: hidden; }
.b-fill { height: 100%; border-radius: 3px; background: var(--forest); width: 0; transition: width 1s cubic-bezier(0.4,0,0.2,1); }
.b-fill.warn { background: #e8a45a; }
.b-fill.bad  { background: #e06060; }
.b-score { font-size: 13px; font-weight: 600; color: var(--text-primary); min-width: 40px; text-align: right; }

/* Actions */
.result-actions {
  padding: 24px 40px;
}
.action-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 16px;
  background: var(--sand-pale);
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
  border: 1px solid transparent;
}
.action-item:last-child { margin-bottom: 0; }
.action-item.warn-item { background: rgba(232,164,90,0.08); border-color: rgba(232,164,90,0.2); }
.action-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--forest); flex-shrink: 0; margin-top: 5px;
}
.action-dot.warn { background: #e8a45a; }
.action-text { font-size: 13px; color: var(--text-secondary); line-height: 1.55; }
.action-text strong { color: var(--text-primary); font-weight: 500; }

/* CTA block */
.result-cta {
  width: 100%; max-width: 600px;
  background: var(--forest);
  border-radius: 20px;
  padding: 32px 40px;
  display: flex; align-items: center; gap: 24px;
  box-shadow: var(--shadow);
}
.cta-text { flex: 1; }
.cta-title {
  font-family: 'DM Serif Display', serif;
  font-size: 20px; color: var(--white);
  margin-bottom: 6px;
}
.cta-sub { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.5; }
.btn-wsp {
  background: var(--sand);
  color: var(--forest);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; font-weight: 600;
  padding: 14px 24px; border-radius: 50px;
  border: none; cursor: pointer;
  white-space: nowrap;
  display: flex; align-items: center; gap: 8px;
  transition: all 0.2s; flex-shrink: 0;
}
.btn-wsp:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(218,192,158,0.4); }

/* Footer credit */
.credit {
  margin-top: 32px;
  font-size: 12px; color: var(--text-muted);
  text-align: center;
  display: flex; align-items: center; gap: 6px;
}
.credit a { color: var(--text-muted); text-decoration: underline; text-underline-offset: 3px; }

/* ── BÚSQUEDA POR DIRECCIÓN ── */
.address-search-row {
  display: flex; gap: 8px; align-items: stretch;
}
.address-search-row .field-input {
  flex: 1; margin-bottom: 0;
}
.btn-addr {
  flex-shrink: 0;
  background: var(--forest);
  color: var(--white);
  border: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px; font-weight: 500;
  padding: 0 16px;
  border-radius: var(--radius-sm);
  transition: background 0.15s;
  white-space: nowrap;
}
.btn-addr:hover { background: var(--forest-80); }
.btn-addr:disabled { opacity: 0.6; cursor: not-allowed; }
.address-status {
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.5;
  min-height: 0;
}
.addr-buscando { color: var(--text-muted); font-style: italic; }
.addr-detectada {
  background: var(--forest-10);
  border: 1px solid rgba(31,51,51,0.12);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
}
.addr-zona-nombre {
  font-weight: 600; color: var(--forest); flex: 1;
}
.addr-actions { display: flex; gap: 8px; }
.btn-addr-confirm {
  background: var(--forest); color: var(--white);
  border: none; cursor: pointer; border-radius: 20px;
  font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 500;
  padding: 6px 14px;
}
.btn-addr-change {
  background: transparent; color: var(--text-secondary);
  border: 1px solid var(--border); cursor: pointer; border-radius: 20px;
  font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 400;
  padding: 5px 12px;
}
.addr-error { color: #c0392b; font-size: 13px; }

/* ── MAPA LEAFLET ── */
#resultMapWrapper {
  border-top: 1px solid var(--border);
  padding: 0;
}
#resultMap {
  height: 220px;
  width: 100%;
}
.map-marker {
  width: 18px; height: 18px;
  background: var(--forest);
  border: 3px solid var(--sand);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(31,51,51,0.35);
}
.leaflet-control-attribution {
  font-size: 9px !important;
  background: rgba(255,255,255,0.75) !important;
}

/* ── GRÁFICO CLUSTER ── */
#clusterChartWrapper {
  border-top: 1px solid var(--border);
  padding: 28px 40px 32px;
}
.cc-desc {
  font-size: 12px; color: var(--text-muted); margin-bottom: 6px;
}
.cc-summary {
  font-size: 13px; color: var(--text-secondary);
  margin-bottom: 16px;
  padding: 8px 12px;
  background: var(--forest-10);
  border-radius: var(--radius-sm);
}
.cc-chart {
  position: relative;
  display: flex; flex-direction: column; gap: 9px;
}
.cc-row {
  display: flex; align-items: center; gap: 10px;
}
.cc-label {
  font-size: 11px; color: var(--text-muted);
  width: 140px; flex-shrink: 0;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.cc-row.cc-mia .cc-label { color: var(--forest); font-weight: 600; }
.cc-bar-track {
  flex: 1; height: 8px;
  background: var(--forest-10);
  border-radius: 4px;
  position: relative; overflow: visible;
}
.cc-bar-fill {
  height: 100%; border-radius: 4px;
  transition: width 0.6s ease;
}
.cc-avg-line {
  position: absolute; top: -4px; bottom: -4px;
  width: 2px; background: rgba(31,51,51,0.25);
  border-radius: 1px;
}
.cc-idx {
  font-size: 11px; color: var(--text-muted);
  width: 28px; text-align: right; flex-shrink: 0;
}
.cc-row.cc-mia .cc-idx { color: var(--forest); font-weight: 600; }
.cc-legend {
  margin-top: 14px;
  font-size: 11px; color: var(--text-muted);
  display: flex; align-items: center; gap: 12px;
}
.cc-dot-mia {
  display: inline-block; width: 10px; height: 10px;
  background: var(--sand); border-radius: 2px; vertical-align: middle;
}
.cc-dot-avg {
  display: inline-block; width: 2px; height: 12px;
  background: rgba(31,51,51,0.3); vertical-align: middle;
}

/* ── DISCLAIMER RESULTADO ── */
.result-disclaimer {
  width: 100%; max-width: 600px;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
  font-weight: 300;
  text-align: center;
  padding: 0 8px;
  margin-bottom: 16px;
}

/* ── CHECKBOX CONSENTIMIENTO ── */
.consent-label {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: var(--text-secondary);
  line-height: 1.5; cursor: pointer;
  margin-bottom: 20px;
  padding: 14px 16px;
  background: var(--forest-10);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.consent-label input[type="checkbox"] {
  width: 16px; height: 16px; flex-shrink: 0;
  margin-top: 2px; cursor: pointer;
  accent-color: var(--forest);
}
.consent-label a {
  color: var(--forest); font-weight: 500;
  text-decoration: underline; text-underline-offset: 2px;
}
.btn-next:disabled {
  opacity: 0.4; cursor: not-allowed;
  transform: none !important;
}

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
  .s1-nav { padding: 20px 24px; }
  .s1-hero { padding: 0 24px; }
  .s1-stat { padding: 20px 24px; }
  .result-top { padding: 24px; gap: 20px; flex-direction: column; align-items: flex-start; }
  .score-circle { width: 90px; height: 90px; }
  .score-num { font-size: 36px; }
  .result-breakdown, .result-actions { padding: 20px 24px; }
  .result-cta { padding: 24px; flex-direction: column; }
  .b-label { min-width: 120px; font-size: 12px; }
}
