:root {
  /* ── Brand palette (raw) ── */
  --cream: #FFF8F0;
  --cream-2: #FBEFE0;
  --blue: #2563EB;
  --amber: #F59E0B;
  --ink: #1E293B;
  --ink-soft: #475569;
  --sage: #7BA886;
  --red: #DC2626;
  --green: #15803D;
  --slate: #5B6677;
  --white: #ffffff;

  /* ── RGB channels (single source for translucent layers) ── */
  --ink-rgb: 30, 41, 59;
  --red-rgb: 220, 38, 38;
  --sage-rgb: 123, 168, 134;
  --cream-rgb: 255, 248, 240;
  --white-rgb: 255, 255, 255;

  /* ── Semantic aliases ── */
  --color-bg: var(--cream);
  --color-surface: var(--white);
  --color-surface-alt: var(--cream-2);
  --color-text: var(--ink);
  --color-text-soft: var(--ink-soft);
  --color-primary: var(--amber);
  --color-danger: var(--red);
  --color-success: var(--green);

  /* ── Border tokens (color only; pair with `1px solid`) ── */
  --border-subtle: rgba(var(--ink-rgb), 0.06);
  --border: rgba(var(--ink-rgb), 0.1);
  --border-strong: rgba(var(--ink-rgb), 0.15);

  /* ── Focus ring (keyboard a11y — WCAG 2.4.7) ── */
  --focus-outline: 3px solid var(--blue);
  --focus-offset: 3px;

  /* ── Elevation ── */
  --shadow: 0 18px 40px -18px rgba(var(--ink-rgb), 0.28);
  --shadow-sm: 0 8px 20px -12px rgba(var(--ink-rgb), 0.25);

  /* ── Radius ── */
  --radius: 22px;
  --radius-lg: 32px;
  --radius-sm: 14px;

  /* ── Layout ── */
  --maxw: 1140px;
  --gap: clamp(24px, 5vw, 72px);
}

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

html { scroll-behavior: smooth; }

/* ── Keyboard focus indicator (WCAG 2.4.7) ── */
:focus-visible {
  outline: var(--focus-outline);
  outline-offset: var(--focus-offset);
  border-radius: 4px;
}
:focus:not(:focus-visible) { outline: none; }
main:focus, main:focus-visible { outline: none; }

/* ── Skip to content (keyboard / screen-reader users) ── */
.skip-link {
  position: absolute;
  left: 50%;
  top: -120%;
  transform: translateX(-50%);
  z-index: 999;
  background: var(--color-primary);
  color: var(--color-text);
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  padding: 0.7rem 1.2rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: top 0.2s ease;
}
.skip-link:focus-visible { top: 0.6rem; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  text-wrap: pretty;
}

h1, h2, h3 { font-family: 'Lora', Georgia, serif; line-height: 1.1; font-weight: 600; letter-spacing: -0.01em; text-wrap: balance; }
.accent { color: var(--color-primary); }
.eyebrow {
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.6rem;
}

img { max-width: 100%; height: auto; display: block; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--color-primary); color: var(--color-text); box-shadow: var(--shadow-sm); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-secondary { background: var(--color-bg); color: var(--color-text); border: 1px solid var(--border-strong); }
.btn-secondary:hover { background: var(--color-surface-alt); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn-sm { padding: 0.55rem 1.05rem; font-size: 0.85rem; }
.btn-lg { padding: 0.95rem 1.8rem; font-size: 1.05rem; white-space: normal; text-align: center; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem clamp(16px, 4vw, 40px);
  background: rgba(var(--cream-rgb), 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-subtle);
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}
.site-header.is-visible { transform: translateY(0); }
.header-cta {
  opacity: 0; visibility: hidden; transform: translateY(-4px); pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}
.header-cta.is-visible { opacity: 1; visibility: visible; transform: none; pointer-events: auto; }
.brand { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; color: var(--color-text); }
.brand-logo {
  width: 48px; height: 48px; border-radius: 50%;
  object-fit: cover; background: var(--color-surface);
  border: 2px solid rgba(var(--ink-rgb), 0.08);
}
.brand-name { font-family: 'Lora', serif; font-weight: 600; font-size: 1.3rem; }
@media (max-width: 480px) { .brand-name { display: none; } .btn-sm { font-size: 0.78rem; padding: 0.5rem 0.85rem; } }

.hero {
  background: radial-gradient(120% 120% at 80% 0%, var(--color-surface-alt) 0%, var(--color-bg) 60%);
  padding: clamp(40px, 7vw, 90px) clamp(16px, 4vw, 40px) clamp(50px, 8vw, 110px);
}
.hero-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "label ."
    "art   copy";
  align-items: start;
  column-gap: var(--gap);
  row-gap: 0.6rem;
}
.hero-art-label { grid-area: label; font-family: 'Lora', serif; font-weight: 700; font-size: clamp(2.4rem, 6vw, 4.2rem); line-height: 1.12; color: var(--color-text); margin: 0; }
.hero-art { grid-area: art; margin-top: clamp(1.5rem, 5vw, 4rem); }
.hero-copy { grid-area: copy; margin-top: clamp(1.5rem, 5vw, 4rem); }
.hero-title { font-size: clamp(1.75rem, 4vw, 2.85rem); font-weight: 700; line-height: 1.15; }
.hero-title .accent { display: inline-block; margin-top: 0.4em; }
.hero-sub { font-size: clamp(1.05rem, 2.2vw, 1.3rem); color: var(--color-text-soft); margin: 1.4rem 0 2rem; max-width: 32ch; }
.hero-art img { border-radius: var(--radius-lg); }

@media (max-width: 820px) {
  .hero-inner { grid-template-columns: 1fr; grid-template-areas: "label" "art" "copy"; text-align: center; }
  .hero-sub { margin-inline: auto; }
  .hero-art { max-width: 440px; margin: 0 auto; }
  .hero-copy { margin-top: 0; }
}

.scene {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(40px, 7vw, 90px) clamp(16px, 4vw, 40px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--gap);
}
.scene--text-first .scene-art { order: 2; }
.scene-art img { border-radius: var(--radius); box-shadow: var(--shadow); background: var(--color-surface-alt); }
.scene-copy h2 { font-size: clamp(1.7rem, 4vw, 2.6rem); margin-bottom: 1rem; }
.scene-copy h3 { font-size: clamp(1.4rem, 3vw, 1.9rem); margin-bottom: 0.9rem; }
.scene-copy p { font-size: clamp(1rem, 1.5vw, 1.18rem); color: var(--color-text-soft); }

.scene--legend { align-items: start; }
.scene--legend .legend-head { grid-column: 1 / -1; }
.scene--legend .icon-legend { margin-top: 0; }

.scene--worries, .scene--sequence { padding-top: clamp(16px, 3vw, 44px); }
.scene--worries .scene-copy h2, .scene-copy--center h2, .faq-intro h2 { text-wrap: balance; }

.scene--worries { grid-template-columns: 1fr; text-align: center; }
.scene--worries .scene-copy h2 { margin-bottom: 2.5rem; }
.worry-stage {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; gap: clamp(1rem, 2.5vw, 2.2rem);
}
.worry-col { display: flex; flex-direction: column; gap: 0.9rem; }
.worry-col--left { align-items: flex-end; }
.worry-col--left .worry-bubble { text-align: right; }
.worry-col--right { align-items: flex-start; text-align: left; }
.worry-img {
  width: clamp(280px, 34vw, 440px);
  border-radius: var(--radius); box-shadow: var(--shadow); background: var(--color-surface-alt);
}
.worry-bubble {
  width: max-content; max-width: 100%; text-align: left;
  background: var(--color-surface); border: 1px solid rgba(var(--ink-rgb), 0.07);
  border-radius: var(--radius-sm); padding: 0.6rem 0.95rem;
  font-style: italic; font-size: 0.92rem; line-height: 1.3; color: var(--color-text);
  box-shadow: var(--shadow-sm);
}
@media (max-width: 860px) {
  .worry-stage { grid-template-columns: 1fr; justify-items: center; max-width: 460px; gap: 0.6rem; }
  .worry-img { order: -1; margin-bottom: 0.6rem; }
  .worry-col { align-items: stretch; text-align: left; width: 100%; gap: 0.6rem; }
  .worry-bubble { max-width: 100%; width: 100%; }
  .worry-col--left .worry-bubble { text-align: left; }
}

.scene--sequence { grid-template-columns: 1fr; text-align: center; }
.scene-copy--center { margin: 0 auto 2.5rem; }
.scene-copy--center p { max-width: 60ch; margin-left: auto; margin-right: auto; }
.sequence-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 2.5vw, 28px); }
.sequence-row img { border-radius: var(--radius); box-shadow: var(--shadow); }

.faq-intro { text-align: center; padding: clamp(30px, 5vw, 60px) 16px 0; }
.faq-intro h2 { font-size: clamp(1.7rem, 4vw, 2.6rem); }
.badges { display: flex; gap: 0.6rem; margin-top: 1.2rem; }
.badge {
  background: var(--color-surface); border: 1px solid var(--border);
  padding: 0.4rem 0.9rem; border-radius: 999px; font-weight: 600;
  font-size: 0.85rem; color: var(--color-text); box-shadow: var(--shadow-sm);
}
.steps { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; }
.steps li { display: flex; align-items: center; gap: 0.8rem; font-weight: 500; color: var(--color-text); }
.steps span {
  flex: 0 0 auto; width: 32px; height: 32px; border-radius: 50%;
  background: var(--color-primary); color: var(--color-text); display: grid; place-items: center;
  font-weight: 700; font-family: 'Lora', serif;
}

@media (max-width: 720px) {
  .scene { grid-template-columns: 1fr; }
  .scene--text-first .scene-art { order: 0; }
  .scene-copy { text-align: center; }
  .steps li { text-align: left; }
  .badges, .steps { justify-content: center; }
  .crop-mobile {
    aspect-ratio: 4 / 3;
    object-fit: cover;
    width: 100%;
  }
  .sequence-row { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
  .scene--legend .scene-art { order: 1; }
  .scene--legend .icon-legend { order: 2; width: fit-content; margin-inline: auto; }
}

.calc {
  max-width: 760px; margin: 0 auto;
  padding: clamp(50px, 8vw, 100px) clamp(16px, 4vw, 40px);
  text-align: center;
}
.calc-head { margin-bottom: 2rem; }
.calc-head h2 { font-size: clamp(1.7rem, 4vw, 2.6rem); display: flex; align-items: center; justify-content: center; gap: 0.6rem; }
.calc-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: clamp(22px, 4vw, 40px);
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.calc-step { display: flex; gap: 1.1rem; }
.step-num {
  flex: 0 0 auto; width: 38px; height: 38px; border-radius: 50%;
  background: var(--color-text); color: var(--color-surface); display: grid; place-items: center;
  font-family: 'Lora', serif; font-weight: 700;
}
.step-body { flex: 1; }
.field-label { display: block; font-weight: 600; margin: 1rem 0 0.5rem; font-size: 0.98rem; }
.field-label:first-child { margin-top: 0; }
.field-input, .field-range { width: 100%; }
.field-input {
  padding: 0.75rem 1rem; border-radius: var(--radius-sm); border: 1px solid var(--border-strong);
  font: inherit; background: var(--color-bg); color: var(--color-text);
}
.slider-row { display: flex; align-items: center; gap: 1rem; }
.field-range { accent-color: var(--color-primary); }
.slider-val { flex: 0 0 auto; font-weight: 700; color: var(--color-text); min-width: 84px; text-align: right; }

.calc-result {
  margin-top: 1.4rem; padding: 1.1rem; border-radius: var(--radius-sm);
  display: flex; flex-direction: column; gap: 0.1rem;
}
.calc-result--time { background: rgba(var(--red-rgb), 0.10); }
.calc-result--time .result-big { color: var(--color-danger); }
.calc-result--money { background: rgba(var(--sage-rgb), 0.18); }
.calc-result--money .result-big { color: var(--sage); }
.result-label { font-size: 0.99rem; line-height: 1.15; color: var(--color-text-soft); font-weight: 600; }
.result-big { font-family: 'Lora', serif; font-size: clamp(2rem, 6vw, 2.8rem); font-weight: 700; line-height: 1; color: var(--color-text); }
.result-big small { font-size: 1.1rem; font-weight: 600; }
.result-unit { font-size: 0.95rem; color: var(--color-text-soft); }
.result-note { font-size: 0.92rem; color: var(--color-text-soft); margin-top: 0.6rem; font-style: italic; }
.ast-note { font-style: normal; font-size: 0.82rem; }
.ast { color: var(--color-primary); }

.albert-cost { display: flex; flex-direction: column; gap: 0.45rem; margin-top: 1rem; font-size: 0.92rem; }
.albert-cost div { display: flex; justify-content: space-between; padding: 0.55rem; border-radius: var(--radius-sm); background: var(--color-bg); }
.albert-cost span { color: var(--color-text-soft); }
.albert-cost strong { color: var(--color-text-soft); font-weight: 400; }

.calc-capture { border-top: 1px solid var(--border); padding-top: 1.6rem; text-align: center; }
.capture-text { font-weight: 600; margin-bottom: 1rem; }
.capture-form { display: flex; gap: 0.6rem; max-width: 460px; margin: 0 auto; }
.capture-form .field-input { flex: 1; }
.capture-secondary { display: inline-block; margin-top: 1rem; color: var(--color-text-soft); font-size: 0.9rem; }
@media (max-width: 520px) { .capture-form { flex-direction: column; } }

.founder {
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(40px, 7vw, 90px) clamp(16px, 4vw, 40px);
}
.founder-card {
  display: grid; grid-template-columns: auto 1fr; gap: clamp(24px, 4vw, 56px); align-items: center;
  background: var(--color-surface-alt);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 48px);
}
.founder-photo img { border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 4/5; object-fit: cover; width: clamp(120px, 16vw, 180px); }
.founder-copy h2 { font-size: clamp(1.7rem, 4vw, 2.6rem); margin-bottom: 0.6rem; }
.founder-copy .founder-name { font-family: 'Lora', serif; font-size: 1.4rem; font-weight: 600; color: var(--color-text); margin-bottom: 0.15rem; }
.founder-role { color: var(--color-text-soft); margin-bottom: 1.1rem; }
.founder-copy p { color: var(--color-text-soft); font-size: clamp(1rem, 1.5vw, 1.18rem); margin-bottom: 0.9rem; }
.founder-spine { font-family: 'Lora', serif; font-size: 1.2rem; color: var(--color-text) !important; font-style: italic; }
@media (max-width: 720px) {
  .founder-card { grid-template-columns: 1fr; text-align: center; }
  .founder-photo { max-width: 260px; margin: 0 auto; }
}

.testimonial {
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(40px, 7vw, 90px) clamp(16px, 4vw, 40px);
}
.testimonial-heading {
  text-align: center;
  margin-bottom: clamp(24px, 4vw, 48px);
}
.testimonial-heading h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
.testimonial-slider-wrap {
  position: relative;
}
.testimonial-grid {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  gap: clamp(12px, 2vw, 24px);
  padding-bottom: 4px;
}
.testimonial-grid::-webkit-scrollbar { display: none; }
.testimonial-nav {
  display: flex; justify-content: center; gap: 0.5rem;
  margin-top: clamp(16px, 2.5vw, 28px);
}
.testimonial-btn {
  background: var(--color-surface-alt);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 40px; height: 40px;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.testimonial-btn:hover { background: var(--color-primary); }
.testimonial-card {
  flex: 0 0 clamp(260px, 28vw, 340px);
  background: var(--color-surface-alt);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 3vw, 36px);
  text-align: center;
  display: flex; flex-direction: column;
  scroll-snap-align: start;
}
@media (max-width: 600px) {
  .testimonial-card { flex: 0 0 82vw; }
}
.testimonial-quote {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(0.8rem, 1.1vw, 0.88rem);
  font-style: italic;
  color: var(--color-text);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  flex: 1;
}
.testimonial-author {
  display: flex; align-items: center; justify-content: center; gap: 0.75rem;
}
.testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 15%;
  flex-shrink: 0;
  border: 2px solid var(--color-primary);
}
.testimonial-author > div { display: flex; flex-direction: column; align-items: flex-start; gap: 0.1rem; text-align: left; }
.testimonial-name {
  font-family: 'Lora', serif; font-weight: 600; font-size: 1rem; color: var(--color-text);
}
.testimonial-role { font-size: 0.82rem; color: var(--color-text-soft); }
.testimonial-company { font-size: 0.78rem; color: var(--color-text-soft); opacity: 0.7; }
.testimonial-link { color: var(--color-text-soft); text-decoration: underline; text-underline-offset: 2px; }
.testimonial-link:hover { color: var(--blue); }

.final-cta {
  background: radial-gradient(120% 120% at 50% 100%, var(--color-surface-alt) 0%, var(--color-bg) 65%);
  padding: clamp(50px, 8vw, 110px) clamp(16px, 4vw, 40px);
}
.final-inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap); align-items: center;
}
.final-art { margin: 0; }
.final-art img { border-radius: var(--radius-lg); width: 100%; }
.final-copy h2 { font-size: clamp(1.7rem, 4vw, 2.6rem); margin: 0 0 1.2rem; }
.final-copy p { color: var(--color-text-soft); font-size: clamp(1rem, 1.5vw, 1.18rem); margin-bottom: 2rem; }
@media (max-width: 760px) {
  .final-inner { grid-template-columns: 1fr; text-align: center; }
  .final-art { max-width: 440px; margin: 0 auto; }
}

.site-footer { border-top: 1px solid rgba(var(--ink-rgb), 0.08); background: var(--color-bg); }
.footer-inner { max-width: var(--maxw); margin: 0 auto; padding: 2.5rem 16px 2rem; }
.legal { font-size: 0.8rem; color: var(--color-text-soft); line-height: 1.75; margin-bottom: 2rem; }
.legal h3 { color: var(--color-text); font-size: 0.85rem; margin: 1.25rem 0 0.35rem; font-weight: 700; }
.legal h3:first-child { margin-top: 0; }
.legal a { color: var(--color-primary); text-decoration: none; }
.legal a:hover { text-decoration: underline; }
.company { font-size: 0.74rem; color: var(--slate); text-align: center; line-height: 1.9; }
.company .fl { display: block; }
.company a { color: inherit; text-decoration: none; }
.company a:hover { text-decoration: underline; }

.footer-lang { text-align: center; margin-bottom: 2.25rem; }
.lang-switch {
  display: inline-flex; align-items: center; gap: 0.2rem;
  padding: 0.28rem 0.28rem 0.28rem 0.7rem;
  background: var(--color-surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.lang-switch-globe { width: 15px; height: 15px; color: var(--color-text-soft); flex: 0 0 auto; }
.lang-switch-item {
  display: inline-flex; align-items: center;
  padding: 0.32rem 0.85rem;
  border-radius: 999px;
  font-family: 'Inter', sans-serif; font-size: 0.8rem; font-weight: 600; line-height: 1;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}
.lang-switch-item--active { background: var(--color-primary); color: var(--color-text); }
.lang-switch-item--link { color: var(--color-text-soft); }
.lang-switch-item--link:hover { background: var(--color-surface-alt); color: var(--color-text); }

.company .do { display: inline; }
.company .mo { display: none; }
@media (max-width: 560px) {
  .company .do { display: none; }
  .company .mo { display: inline; }
}

.cb {
  position: fixed; bottom: 0; left: 0; right: 0; background: rgba(var(--white-rgb), 0.98);
  border-top: 1px solid rgba(var(--ink-rgb), 0.12); padding: 0.9rem 1.25rem; display: none;
  align-items: center; justify-content: center; gap: 1rem; font-size: 0.85rem;
  z-index: 200; flex-wrap: wrap; box-shadow: 0 -8px 28px rgba(var(--ink-rgb), 0.1);
}
.cb p { color: var(--color-text-soft); margin: 0; }
.cb-actions { display: flex; gap: 0.6rem; }
.cb button { padding: 0.5rem 1.1rem; border-radius: 999px; font-size: 0.85rem; font-weight: 700; cursor: pointer; border: none; font-family: inherit; }
.cb-y { background: var(--color-primary); color: var(--color-text); }
.cb-n { background: transparent; color: var(--color-text-soft); border: 1px solid rgba(var(--ink-rgb), 0.2); }

.icon-legend {
  list-style: none; display: flex; flex-direction: column;
  gap: 1rem; margin-top: 1.5rem;
}
.icon-legend li { display: flex; align-items: center; gap: 0.9rem; }
.icon-legend img { width: 56px; height: 56px; flex: 0 0 auto; object-fit: cover; border-radius: 20%; }
.icon-legend strong { display: block; font-size: 1rem; color: var(--color-text); line-height: 1.25; }
.icon-legend span { font-size: 0.88rem; color: var(--color-text-soft); line-height: 1.35; }

.icon-legend--compact li { gap: 0.75rem; }
.icon-legend--compact img { width: 48px; height: 48px; }
.icon-legend--compact strong { font-size: 0.98rem; font-weight: 600; }

.steps--icons { gap: 1rem; }
.steps--icons li { gap: 0.9rem; font-size: 1.05rem; }
.steps--icons img { width: 50px; height: 50px; flex: 0 0 auto; object-fit: cover; border-radius: 20%; }

.scene--solo { grid-template-columns: 1fr; max-width: 760px; }

.head-ico { width: 1.6em; height: 1.6em; flex: 0 0 auto; object-fit: cover; border-radius: 20%; }
.calc-stage { display: flex; flex-direction: column; gap: 1.4rem; }
.calc-stage[hidden] { display: none; }
.calc-progress { display: flex; align-items: center; gap: 0.6rem; font-size: 0.85rem; font-weight: 600; color: var(--color-text-soft); margin-bottom: 0.4rem; }
.calc-progress-dots { display: inline-flex; gap: 0.4rem; }
.calc-progress .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--border-strong); transition: background 0.2s ease; }
.calc-progress .dot.is-active { background: var(--color-primary); }

.stepper-field > label { display: block; font-weight: 600; margin-bottom: 0.7rem; font-size: 1.02rem; }
.stepper { display: flex; align-items: stretch; gap: 0.7rem; }
.stepper-btn {
  width: 56px; flex: 0 0 auto; border: none; border-radius: var(--radius-sm);
  background: var(--color-surface-alt); color: var(--color-text); font-size: 1.7rem; font-weight: 700;
  cursor: pointer; transition: background 0.15s ease, transform 0.1s ease;
}
.stepper-btn:hover { background: var(--color-primary); }
.stepper-btn:active { transform: scale(0.93); }
.stepper-btn:disabled { opacity: 0.4; cursor: not-allowed; }
.stepper-val {
  flex: 1; display: flex; align-items: baseline; justify-content: center; gap: 0.45rem;
  background: var(--color-bg); border-radius: var(--radius-sm); padding: 0.7rem;
}
.stepper-val span { font-family: 'Lora', serif; font-size: 1.85rem; font-weight: 700; }
.stepper-val small { color: var(--color-text-soft); font-weight: 600; }

.calc-result { flex-direction: row; align-items: stretch; gap: 1.1rem; margin-top: 0; }
.result-ico { width: 79px; height: 79px; flex: 0 0 auto; object-fit: cover; border-radius: 20%; }
.calc-result > div { display: flex; flex-direction: column; justify-content: space-between; gap: 0.1rem; }

.albert-cost div { align-items: center; gap: 0.55rem; }
.albert-cost img { width: 34px; height: 34px; flex: 0 0 auto; object-fit: cover; border-radius: 20%; }
.albert-cost span { flex: 1; }

.calc-next { align-self: stretch; justify-content: center; margin-top: 0.3rem; padding-block: 2rem; border-radius: var(--radius-lg); font-size: 1.26rem; }
.calc-back {
  align-self: flex-start; background: none; border: none; color: var(--color-text-soft);
  font: inherit; font-weight: 600; cursor: pointer; padding: 0;
}
.calc-back:hover { color: var(--color-text); }
.calc-payoff h3 { font-size: clamp(1.4rem, 3.4vw, 2rem); line-height: 1.22; margin-bottom: 0.6rem; }
.payoff-lead { font-size: 1.05rem; color: var(--color-text); margin-bottom: 1.2rem; }
.payoff-hl { color: var(--color-primary); }

.capture-form { flex-direction: column; gap: 0.7rem; max-width: none; text-align: left; }
select.field-input {
  -webkit-appearance: none; -moz-appearance: none; appearance: none;
  padding-right: 2.6rem; line-height: 1.4;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%231e293b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center; background-size: 1rem;
}
.capture-ctas { display: flex; gap: 0.7rem; margin-top: 0.3rem; }
.capture-ctas .btn { flex: 1 1 0; min-width: 0; justify-content: center; padding: 0.85rem 1rem; text-align: center; }
.btn-ico { width: 1.05em; height: 1.05em; flex: 0 0 auto; }
.capture-sub { font-size: 0.85rem; color: var(--color-text-soft); margin-top: 0.3rem; text-align: center; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.capture-consent { display: flex; align-items: flex-start; gap: 0.5rem; text-align: left; font-size: 0.82rem; color: var(--color-text-soft); line-height: 1.45; }
.capture-consent input { margin-top: 0.18rem; accent-color: var(--color-primary); flex: 0 0 auto; }
.field-input.field-err { border-color: var(--color-danger); box-shadow: 0 0 0 2px rgba(var(--red-rgb), 0.12); }
.field-error { font-size: 0.8rem; color: var(--color-danger); font-weight: 600; line-height: 1.4; text-align: left; margin-top: -0.35rem; }
.field-error[hidden] { display: none; }
.capture-msg { font-size: 0.95rem; line-height: 1.5; text-align: center; margin-top: 0.2rem; }
.capture-msg.is-ok { color: var(--color-success); font-weight: 600; }
.capture-msg.is-err { color: var(--color-danger); font-weight: 600; }

@media (max-width: 560px) {
  .capture-ctas { flex-direction: column; }
}

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
