:root {
  color-scheme: light;
  --ink: #1a1a1a;
  --ink-soft: #385653;
  --muted: #687874;
  --line: #dce2de;
  --surface: #ffffff;
  --surface-soft: #f6f7f5;
  --surface-green: #e8f3e2;
  --brand: #3bafa4;
  --brand-dark: #2d8a82;
  --brand-deep: #0d4a4d;
  --brand-bright: #46ceba;
  --leaf: #4fa84f;
  --leaf-dark: #2d7a47;
  --accent: #e87b2c;
  --accent-dark: #c25e18;
  --accent-soft: #fbeadd;
  --danger: #c5392f;
  --warning: #c25e18;
  --success: #2d7a47;
  --shadow: 0 16px 42px rgba(13, 74, 77, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  background: transparent;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface-soft);
  font-family: "Heebo", "Rubik", "Arial", sans-serif;
  line-height: 1.55;
}

button,
input {
  font: inherit;
}

button,
label,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

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

.calculator-shell {
  width: 100%;
  padding: clamp(12px, 3vw, 38px);
}

.calculator-card {
  width: min(100%, 1160px);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(59, 175, 164, 0.22);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

html.is-embedded {
  scroll-behavior: auto;
}

html.is-embedded body {
  background: transparent;
}

html.is-embedded .calculator-shell {
  padding: 0;
}

html.is-embedded .calculator-card {
  width: 100%;
  max-width: none;
  margin: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.calculator-header {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 5vw, 58px) clamp(22px, 7vw, 80px) 42px;
  color: #fff;
  text-align: center;
  background: var(--brand-deep);
}

.calculator-header::after {
  display: none;
}

.brand-lockup {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 4vw, 38px);
  min-height: 104px;
  padding: 20px clamp(22px, 7vw, 80px);
  direction: rtl;
}

.brand-logo {
  display: block;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.brand-logo--forward {
  height: clamp(42px, 5vw, 56px);
}

.brand-logo--open {
  height: clamp(48px, 5.8vw, 64px);
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--brand-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.calculator-header .eyebrow {
  position: relative;
  z-index: 1;
  color: var(--brand-bright);
}

h1 {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin-right: auto;
  margin-bottom: 16px;
  margin-left: auto;
  font-size: clamp(2.1rem, 5vw, 4rem);
  line-height: 1.03;
  letter-spacing: -0.045em;
}

.header-copy {
  position: relative;
  z-index: 1;
  max-width: 710px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1rem, 2vw, 1.15rem);
}

.value-pills {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.value-pills li {
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 99px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.75rem;
  font-weight: 700;
}

.progress {
  padding: 26px clamp(22px, 7vw, 80px) 28px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.progress-topline {
  display: flex;
  justify-content: space-between;
  margin-bottom: 9px;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 800;
}

.progress-bar {
  height: 6px;
  overflow: hidden;
  border-radius: 99px;
  background: #e5efec;
}

.progress-bar span {
  display: block;
  width: 25%;
  height: 100%;
  border-radius: inherit;
  background: var(--brand);
  transition: width 260ms ease;
}

.progress-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 13px 0 0;
  padding: 0;
  color: #8b9996;
  font-size: 0.78rem;
  font-weight: 750;
  list-style: none;
}

.progress-steps li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.progress-steps span {
  display: inline-grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: #e9f0ee;
  font-size: 0.7rem;
}

.progress-steps li.is-active,
.progress-steps li.is-complete {
  color: var(--brand-dark);
}

.progress-steps li.is-active span,
.progress-steps li.is-complete span {
  color: #fff;
  background: var(--brand);
}

#estimator-form,
.results {
  padding: clamp(34px, 5vw, 58px) clamp(22px, 7vw, 80px) clamp(38px, 7vw, 72px);
}

.form-step[hidden],
.results[hidden],
.form-error[hidden],
.warnings[hidden],
#rent-input-wrap[hidden] {
  display: none;
}

.form-step.is-active,
.results {
  animation: enter 240ms ease both;
}

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

.step-heading,
.results-header,
.section-heading {
  max-width: 760px;
  margin: 0 auto 30px;
  text-align: center;
}

.step-heading p {
  margin-bottom: 4px;
  color: var(--brand-dark);
  font-size: 0.8rem;
  font-weight: 900;
}

.step-heading h2,
.results-header h2 {
  margin-bottom: 8px;
  font-size: clamp(1.65rem, 3.5vw, 2.4rem);
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.step-heading > span,
.section-heading > span,
.results-header > p:last-child {
  color: var(--muted);
  font-size: 0.94rem;
}

fieldset {
  min-width: 0;
  margin: 0 0 34px;
  padding: 0;
  border: 0;
}

legend,
.range-field label,
.number-field > label {
  margin-bottom: 11px;
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 850;
}

legend small {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 500;
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.option-grid--concepts {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.option-grid--five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.option-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.option-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.option-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.option-grid--channels {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.choice-card,
.choice-chip {
  position: relative;
  cursor: pointer;
  border: 1.5px solid var(--line);
  background: #fff;
  transition: border-color 150ms ease, box-shadow 150ms ease, transform 150ms ease, background 150ms ease;
}

.choice-card {
  display: flex;
  min-height: 116px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 17px 13px;
  border-radius: 8px;
  text-align: center;
}

.choice-card--concept {
  min-height: 130px;
}

.choice-card:hover,
.choice-chip:hover {
  border-color: var(--brand);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(13, 74, 77, 0.1);
}

.choice-card:has(input:checked),
.choice-chip:has(input:checked) {
  border-color: var(--brand);
  background: var(--surface-green);
  box-shadow: 0 0 0 3px rgba(59, 175, 164, 0.12);
}

.choice-card:has(input:focus-visible),
.choice-chip:has(input:focus-visible) {
  outline: 3px solid rgba(245, 156, 74, 0.45);
  outline-offset: 2px;
}

.choice-card input,
.choice-chip input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.choice-card > span:not(.choice-icon),
.choice-chip span {
  font-weight: 800;
}

.choice-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  background: var(--surface-soft);
  font-size: 1.45rem;
  line-height: 1;
}

.choice-card:has(input:checked) .choice-icon {
  background: #fff;
}

.choice-card--compact {
  min-height: 76px;
}

.choice-card--detail {
  min-height: 142px;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: right;
}

.choice-card--detail small {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.choice-chip {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 12px 15px;
  border-radius: 99px;
  text-align: center;
}

.range-field,
.number-field {
  min-width: 0;
  margin-bottom: 28px;
}

.range-field--featured {
  margin: 4px 0 36px;
  padding: 20px 22px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
}

.field-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.field-label-row output {
  min-width: 78px;
  padding: 6px 10px;
  border-radius: 8px;
  color: var(--brand-dark);
  background: var(--surface-green);
  font-weight: 900;
  text-align: center;
}

input[type="range"] {
  width: 100%;
  height: 7px;
  margin: 17px 0 5px;
  cursor: pointer;
  border-radius: 99px;
  accent-color: var(--brand);
}

.range-control {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) 36px;
  align-items: center;
  gap: 9px;
  direction: ltr;
}

.range-control input[type="range"] {
  min-width: 0;
}

.range-stepper {
  display: grid;
  width: 36px;
  height: 36px;
  cursor: pointer;
  place-items: center;
  padding: 0;
  border: 1px solid #cdd7d2;
  border-radius: 8px;
  color: var(--brand-deep);
  background: #fff;
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1;
  transition: border-color 150ms ease, box-shadow 150ms ease, transform 150ms ease;
}

.range-stepper:hover:not(:disabled) {
  border-color: var(--brand);
  box-shadow: 0 5px 14px rgba(13, 74, 77, 0.1);
  transform: translateY(-1px);
}

.range-stepper:disabled {
  cursor: not-allowed;
  opacity: 0.38;
}

.range-scale {
  display: flex;
  justify-content: space-between;
  color: #899894;
  font-size: 0.72rem;
}

.slider-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.slider-grid .range-field {
  padding: 18px 20px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
}

.number-field > label {
  display: block;
}

.input-with-suffix {
  position: relative;
  max-width: 380px;
}

.input-with-suffix input {
  width: 100%;
  height: 52px;
  padding: 0 18px 0 46px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
}

.input-with-suffix input:focus {
  border-color: var(--brand);
  outline: 3px solid rgba(59, 175, 164, 0.14);
}

.input-with-suffix > span {
  position: absolute;
  top: 50%;
  left: 16px;
  color: var(--muted);
  transform: translateY(-50%);
}

.live-preview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.live-preview > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 20px;
  background: #fff;
}

.live-preview span,
.metric-card span,
.lab-score span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.live-preview strong {
  color: var(--brand-dark);
  font-size: 1.35rem;
}

.live-preview small {
  color: var(--muted);
  font-size: 0.72rem;
}

.form-error {
  margin: 10px 0 18px;
  padding: 12px 14px;
  border: 1px solid #efc1bd;
  border-radius: 8px;
  color: var(--danger);
  background: #fff3f2;
  font-size: 0.88rem;
  font-weight: 800;
}

.form-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 10px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.button {
  display: inline-flex;
  min-height: 50px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: 0;
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
  transition: background 150ms ease, transform 150ms ease, box-shadow 150ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button:focus-visible,
.range-stepper:focus-visible,
.text-button:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(232, 123, 44, 0.5);
  outline-offset: 3px;
}

.button--primary {
  color: #fff;
  background: var(--accent);
  box-shadow: 0 10px 22px rgba(232, 123, 44, 0.22);
}

.button--primary:hover {
  background: var(--accent-dark);
}

.button--ghost {
  border: 1px solid var(--line);
  color: var(--ink);
  background: #fff;
}

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

.button--whatsapp {
  color: #fff;
  background: #1f9d55;
}

.results-header {
  margin-bottom: 24px;
}

.decision-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
  padding: 20px 22px;
  border: 1px solid #e8cf9f;
  border-radius: 8px;
  background: var(--accent-soft);
}

.decision-card[data-level="promising"] {
  border-color: #a9dccd;
  background: #eef9f5;
}

.decision-card[data-level="risk"] {
  border-color: #ebbbb6;
  background: #fff3f2;
}

.decision-dot {
  width: 13px;
  height: 13px;
  flex: 0 0 auto;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--warning);
  box-shadow: 0 0 0 6px rgba(200, 128, 27, 0.12);
}

.decision-card[data-level="promising"] .decision-dot {
  background: var(--success);
  box-shadow: 0 0 0 6px rgba(22, 132, 95, 0.12);
}

.decision-card[data-level="risk"] .decision-dot {
  background: var(--danger);
  box-shadow: 0 0 0 6px rgba(197, 57, 47, 0.1);
}

.decision-card small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
}

.decision-card h3 {
  margin-bottom: 3px;
  font-size: 1.25rem;
}

.decision-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.metric-card {
  display: flex;
  min-width: 0;
  min-height: 150px;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.metric-card--primary {
  grid-column: span 2;
  color: #fff;
  background: var(--brand-deep);
}

.metric-card--primary span,
.metric-card--primary small {
  color: rgba(255, 255, 255, 0.72);
}

.metric-card strong {
  display: block;
  overflow-wrap: anywhere;
  margin: 5px 0;
  color: var(--brand-dark);
  font-size: clamp(1.22rem, 2.5vw, 1.75rem);
  line-height: 1.16;
  letter-spacing: -0.03em;
}

.metric-card--primary strong {
  color: #fff;
  font-size: clamp(1.7rem, 3.3vw, 2.5rem);
}

.metric-card small {
  color: var(--muted);
  font-size: 0.72rem;
}

#profit-card.is-negative strong,
.scenario-card.is-negative strong,
.lab-score.is-negative > strong:first-of-type {
  color: var(--danger);
}

#profit-card.is-positive strong,
.scenario-card.is-positive strong,
.lab-score.is-positive > strong:first-of-type {
  color: var(--success);
}

.result-section {
  margin-top: 42px;
}

.section-heading {
  margin-bottom: 22px;
}

.section-heading h3 {
  margin-bottom: 6px;
  font-size: clamp(1.35rem, 2.8vw, 1.9rem);
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.scenario-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.scenario-card {
  min-width: 0;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
}

.scenario-card[data-scenario="plan"] {
  border-color: var(--leaf);
  background: var(--surface-green);
}

.scenario-card h4 {
  margin: 0 0 14px;
  font-size: 0.98rem;
}

.scenario-card span {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
}

.scenario-card strong {
  display: block;
  margin: 3px 0 12px;
  color: var(--brand-dark);
  font-size: 1.45rem;
}

.scenario-meta {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding-top: 10px;
  border-top: 1px solid rgba(16, 39, 36, 0.08);
  color: var(--ink-soft);
  font-size: 0.76rem;
}

.sensitivity-lab {
  padding: clamp(24px, 5vw, 42px);
  border-radius: 8px;
  color: #fff;
  background: var(--brand-deep);
}

.sensitivity-lab .eyebrow {
  color: var(--brand-bright);
}

.sensitivity-lab .section-heading > span {
  color: rgba(255, 255, 255, 0.66);
}

.lab-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.7fr);
  gap: 24px;
}

.lab-controls {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
}

.lab-controls .range-field {
  margin: 0;
  padding: 15px 16px 9px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.lab-controls label {
  color: #fff;
  font-size: 0.82rem;
}

.lab-controls output {
  color: var(--brand-bright);
  background: rgba(70, 206, 186, 0.13);
}

.lab-controls .range-stepper {
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--brand-bright);
  background: rgba(255, 255, 255, 0.08);
}

.lab-controls .text-button {
  align-self: center;
  color: var(--brand-bright);
}

.lab-score {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.lab-score span,
.lab-score small {
  color: rgba(255, 255, 255, 0.62);
}

.lab-score strong {
  overflow-wrap: anywhere;
  margin: 3px 0;
  color: #fff;
  font-size: 1.85rem;
  line-height: 1.15;
}

.lab-divider {
  height: 1px;
  margin: 18px 0;
  background: rgba(255, 255, 255, 0.13);
}

.risk-drivers {
  display: grid;
  gap: 10px;
}

.risk-row {
  display: grid;
  grid-template-columns: minmax(150px, 0.8fr) minmax(160px, 1.4fr) minmax(120px, 0.6fr);
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.risk-copy strong,
.risk-copy small {
  display: block;
}

.risk-copy small {
  color: var(--muted);
  font-size: 0.72rem;
}

.risk-bar {
  height: 9px;
  overflow: hidden;
  border-radius: 99px;
  background: #e9f0ee;
}

.risk-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--accent);
}

.risk-impact {
  color: var(--danger);
  font-size: 0.9rem;
  font-weight: 900;
  text-align: left;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 38px;
}

.breakdown {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.breakdown summary {
  cursor: pointer;
  padding: 17px 19px;
  background: var(--surface-soft);
  font-weight: 900;
}

.breakdown-table {
  padding: 4px 18px 10px;
}

.breakdown-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid #edf2f1;
}

.breakdown-row:last-child {
  border-bottom: 0;
}

.breakdown-row span {
  color: var(--muted);
  font-size: 0.82rem;
}

.breakdown-row strong {
  white-space: nowrap;
  font-size: 0.86rem;
}

.breakdown-row.is-total strong,
.breakdown-row.is-total span {
  color: var(--ink);
  font-weight: 900;
}

.warnings {
  margin: 26px 0;
  padding: 20px 22px;
  border-right: 4px solid var(--accent);
  border-radius: 8px;
  background: #fbeadd;
}

.warnings h3 {
  margin-bottom: 8px;
  font-size: 1rem;
}

.warnings ul {
  margin: 0;
  padding-right: 20px;
  color: #72573a;
  font-size: 0.84rem;
}

.warnings li + li {
  margin-top: 5px;
}

.conversion-card {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: 28px;
  margin-top: 34px;
  padding: clamp(25px, 5vw, 40px);
  border-radius: 8px;
  color: #fff;
  background: var(--brand-deep);
}

.conversion-card .eyebrow {
  color: var(--brand-bright);
}

.conversion-card h3 {
  margin-bottom: 9px;
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  line-height: 1.24;
}

.conversion-card p:not(.eyebrow) {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.conversion-actions {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.disclaimer {
  margin: 20px auto 12px;
  max-width: 860px;
  color: #73837f;
  font-size: 0.74rem;
  text-align: center;
}

.text-button {
  display: block;
  cursor: pointer;
  margin: 0 auto;
  padding: 8px;
  border: 0;
  color: var(--brand-dark);
  background: transparent;
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 980px) {
  .option-grid--concepts,
  .option-grid--four,
  .option-grid--five {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .metric-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .calculator-shell {
    padding: 0;
  }

  .calculator-card {
    border-radius: 0;
    box-shadow: none;
  }

  .option-grid,
  .option-grid--concepts,
  .option-grid--four,
  .option-grid--five,
  .option-grid--channels {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .choice-card--detail {
    min-height: 128px;
  }

  .slider-grid,
  .scenario-grid,
  .details-grid,
  .conversion-card,
  .lab-layout {
    grid-template-columns: 1fr;
  }

  .lab-score {
    min-height: 230px;
  }

  .risk-row {
    grid-template-columns: minmax(120px, 0.8fr) minmax(120px, 1.2fr);
  }

  .risk-impact {
    grid-column: 1 / -1;
    text-align: right;
  }
}

@media (max-width: 470px) {
  .calculator-header {
    padding-top: 30px;
  }

  .brand-lockup {
    gap: 16px;
    min-height: 82px;
    padding: 15px 18px;
  }

  .brand-logo--forward {
    height: 38px;
  }

  .brand-logo--open {
    height: 42px;
  }

  .progress-steps li {
    flex-direction: column;
    gap: 3px;
    font-size: 0.66rem;
  }

  .progress-topline {
    font-size: 0.72rem;
  }

  .option-grid,
  .option-grid--concepts,
  .option-grid--four,
  .option-grid--five,
  .option-grid--channels,
  .option-grid--three,
  .option-grid--two,
  .slider-grid,
  .metric-grid,
  .lab-controls,
  .live-preview {
    grid-template-columns: 1fr;
  }

  .choice-card,
  .choice-card--concept {
    min-height: 88px;
  }

  .choice-card--concept {
    flex-direction: row;
    justify-content: flex-start;
    text-align: right;
  }

  .choice-card--detail {
    min-height: 108px;
  }

  .metric-card--primary {
    grid-column: auto;
  }

  .metric-card {
    min-height: 132px;
  }

  .form-navigation .button {
    flex: 1;
    padding-inline: 13px;
  }

  .risk-row {
    grid-template-columns: 1fr;
  }

  .range-control {
    grid-template-columns: 34px minmax(0, 1fr) 34px;
    gap: 7px;
  }

  .range-stepper {
    width: 34px;
    height: 34px;
  }

  .breakdown-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
