:root {
  --bg: #f2f4ef;
  --surface: #fffdf8;
  --surface-2: #fbfaf5;
  --ink: #11251b;
  --muted: #65756b;
  --line: #d8e4d4;
  --primary: #39ad5b;
  --primary-dark: #18743a;
  --primary-soft: #def8e8;
  --mint: #c8f8e5;
  --amber: #ffe4b8;
  --shadow: 0 26px 80px rgba(34, 48, 37, 0.1);
  --soft-shadow: 0 14px 34px rgba(34, 48, 37, 0.06);
  --radius-lg: 32px;
  --radius-md: 24px;
  --radius-sm: 16px;

  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body,
#app,
#survey-app {
  min-height: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 0% 0%, rgba(57, 173, 91, 0.12), transparent 30%),
    radial-gradient(circle at 100% 10%, rgba(255, 228, 184, 0.35), transparent 28%),
    radial-gradient(circle at 85% 95%, rgba(200, 248, 229, 0.35), transparent 28%),
    var(--bg);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
  background: none;
  color: inherit;
  cursor: pointer;
}

button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.app-shell,
.survey-stage,
.page {
  min-height: 100vh;
  width: 100%;
  padding: 24px;
  display: grid;
  place-items: center;
}

/* Main wizard shell */

.wizard,
.survey-shell {
  width: min(1160px, 100%);
  min-height: min(720px, calc(100vh - 48px));
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 248, 0.95);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 22px;
}

/* Header */

.wizard-header,
.survey-header,
.header {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
}

.back-btn,
.survey-back,
.back,
.reset-btn,
.survey-home,
.landing-link,
.survey-landing,
.reset,
.icon-btn {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 850;
  box-shadow: 0 8px 18px rgba(34, 48, 37, 0.04);
}

.back-btn,
.survey-back,
.back,
.icon-btn {
  width: 44px;
  padding: 0;
  font-size: 22px;
}

.reset-btn,
.survey-home,
.landing-link,
.survey-landing,
.reset {
  height: 44px;
  padding: 0 16px;
  color: var(--muted);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.view-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
}

.view-btn {
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.view-btn.is-active {
  background: var(--primary-soft);
  color: var(--primary-dark);
}

/* Progress */

.progress-shell,
.progress-wrap {
  min-width: 0;
}

.progress-meta,
.step-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 9px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.progress-meta strong,
.step-meta strong {
  color: var(--ink);
}

.progress {
  height: 8px;
  background: #e4eee4;
  border-radius: 999px;
  overflow: hidden;
}

.progress-fill,
.progress span {
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary), #93b842);
  transition: width 0.22s ease;
}

/* Main layout */

.wizard-body,
.survey-grid,
.main-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 22px;
  align-items: start;
}

.main-col,
.work-area,
.survey-main {
  min-width: 0;
  display: grid;
  gap: 18px;
}

.side-stack,
.side-panel,
.survey-side {
  position: sticky;
  top: 24px;
  display: grid;
  gap: 12px;
}

/* Page title */

.page-head,
.survey-head,
.title-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 16px;
  align-items: start;
}

.page-copy h1,
.survey-copy h1,
.welcome-wrap h1,
.result-head h1,
.title-row h1,
h1 {
  margin: 0;
  font-size: clamp(27px, 3.4vw, 38px);
  line-height: 1.04;
  letter-spacing: -0.055em;
}

.page-copy p,
.survey-copy p,
.welcome-wrap p,
.subtitle {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
  max-width: 650px;
}

.wizard-welcome {
  min-height: calc(100vh - 48px);
}

.app-shell.is-mobile-preview .wizard {
  width: min(390px, 100%);
  min-height: calc(100vh - 36px);
  padding: 16px;
  border-radius: 24px;
}

.app-shell.is-mobile-preview .wizard-body {
  grid-template-columns: 1fr;
  gap: 14px;
}

.app-shell.is-mobile-preview .side-stack {
  display: none;
}

.app-shell.is-mobile-preview .main-col {
  gap: 14px;
}

.app-shell.is-mobile-preview .inline-actions {
  grid-template-columns: 1fr;
}

.app-shell.is-mobile-preview .header-actions {
  gap: 8px;
}

.app-shell.is-mobile-preview .page-head,
.app-shell.is-mobile-preview .survey-head {
  grid-template-columns: 1fr;
  gap: 10px;
}

.app-shell.is-mobile-preview .page-copy h1,
.app-shell.is-mobile-preview .survey-copy h1,
.app-shell.is-mobile-preview .welcome-wrap h1,
.app-shell.is-mobile-preview .result-head h1 {
  font-size: clamp(24px, 8vw, 32px);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.app-shell.is-mobile-preview .page-copy p,
.app-shell.is-mobile-preview .survey-copy p,
.app-shell.is-mobile-preview .welcome-tagline {
  font-size: 14px;
  line-height: 1.45;
}

.app-shell.is-mobile-preview .welcome-wrap {
  gap: 12px;
  padding: 8px 0 0;
}

.app-shell.is-mobile-preview .welcome-copy {
  font-size: 13px;
  line-height: 1.5;
}

.app-shell.is-mobile-preview .choice-grid,
.app-shell.is-mobile-preview .compact-grid,
.app-shell.is-mobile-preview .feature-grid,
.app-shell.is-mobile-preview .survey-option-grid,
.app-shell.is-mobile-preview .estimate-grid {
  grid-template-columns: 1fr;
  gap: 10px;
}

.app-shell.is-mobile-preview .choice,
.app-shell.is-mobile-preview .compact-choice,
.app-shell.is-mobile-preview .feature-choice,
.app-shell.is-mobile-preview .survey-option {
  min-height: 76px;
  padding: 12px;
  border-radius: 18px;
}

.app-shell.is-mobile-preview .choice-icon,
.app-shell.is-mobile-preview .feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
}

.app-shell.is-mobile-preview .choice-copy strong,
.app-shell.is-mobile-preview .feature-copy strong {
  font-size: 14px;
}

.app-shell.is-mobile-preview .choice-copy small,
.app-shell.is-mobile-preview .feature-copy small {
  font-size: 11px;
}

.app-shell.is-mobile-preview .summary-card,
.app-shell.is-mobile-preview .actions-card,
.app-shell.is-mobile-preview .content-card,
.app-shell.is-mobile-preview .survey-card,
.app-shell.is-mobile-preview .hint-card {
  border-radius: 20px;
}

.app-shell.is-mobile-preview .welcome-wrap {
  gap: 12px;
  padding: 10px 0 0;
}

.app-shell.is-mobile-preview .splash-logo {
  width: min(280px, 86vw);
}

.app-shell.is-mobile-preview .welcome-actions .btn {
  min-width: 100%;
}

.app-shell.is-mobile-preview .welcome-tagline {
  font-size: 15px;
}

.app-shell.is-mobile-preview .welcome-copy {
  font-size: 12px;
}

.app-shell.is-mobile-preview .welcome-visual {
  width: 100%;
}

.app-shell.is-mobile-preview .welcome-visual-card {
  padding: 16px;
}

.app-shell.is-mobile-preview .welcome-benefits {
  grid-template-columns: 1fr;
}

.app-shell.is-mobile-preview .welcome-benefits span + span {
  border-left: 0;
  border-top: 1px solid rgba(217, 228, 213, 0.85);
}

.welcome-body {
  grid-template-columns: 1fr;
  min-height: calc(100vh - 108px);
}

.welcome-main {
  display: grid;
  place-items: center;
  min-height: calc(100vh - 108px);
}

.welcome-wrap {
  width: min(100%, 980px);
  display: grid;
  justify-items: center;
  gap: 14px;
  text-align: center;
  padding: 10px 0 18px;
}

.welcome-eyebrow {
  min-height: 30px;
  padding: 0 14px;
  border-radius: 999px;
  background: #d9f1de;
  color: #165334;
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.splash-logo {
  width: min(500px, 88vw);
  height: auto;
  object-fit: contain;
  background: transparent;
  filter: drop-shadow(0 12px 20px rgba(24, 47, 30, 0.08));
  animation: splashFloat 5.8s ease-in-out infinite;
  transform-origin: center;
}

.welcome-tagline {
  margin: 0;
  width: auto;
  max-width: 26ch;
  color: var(--ink);
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.08;
  letter-spacing: -0.05em;
  font-weight: 900;
  white-space: normal;
}

.welcome-copy {
  margin: 0;
  max-width: 44ch;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  font-weight: 500;
}

.welcome-visual {
  width: min(100%, 820px);
  margin-top: 4px;
  display: grid;
  place-items: center;
}

.welcome-visual-card {
  position: relative;
  overflow: hidden;
  padding: 0;
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  width: min(100%, 760px);
}

.welcome-visual-card::before,
.welcome-visual-card::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.welcome-visual-card::before {
  right: 8%;
  top: 10%;
  width: 64px;
  height: 122px;
  background:
    radial-gradient(circle, rgba(47, 177, 93, 0.18), rgba(47, 177, 93, 0.06) 45%, transparent 46%) 0 0 / 18px 18px;
  opacity: 0.7;
}

.welcome-visual-card::after {
  left: 6%;
  bottom: 10%;
  width: 92px;
  height: 92px;
  background: radial-gradient(circle, rgba(133, 120, 247, 0.08), transparent 58%);
}

.welcome-visual-card img {
  width: min(100%, 760px);
  margin: 0 auto;
  border-radius: 0;
  box-shadow: none;
  display: block;
}

.welcome-benefits {
  width: min(100%, 820px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  margin-top: 2px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(217, 228, 213, 0.92);
  box-shadow: var(--soft-shadow);
  overflow: hidden;
}

.welcome-benefits span {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #50655a;
  font-size: 12px;
  font-weight: 700;
}

.welcome-benefits span + span {
  border-left: 1px solid rgba(217, 228, 213, 0.85);
}

.welcome-actions {
  display: flex;
  justify-content: center;
  margin-top: 2px;
}

.welcome-actions .btn {
  min-width: 190px;
}

.welcome-footnote {
  margin: 0;
  color: #7c8d83;
  font-size: 12px;
  line-height: 1.4;
}

  .problem-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .problem-visual {
    justify-content: stretch;
  }

  .pain-rail {
    width: 100%;
    min-height: 360px;
  }

@keyframes splashFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.hint-card,
.survey-guide,
.quick-hint {
  padding: 14px;
  border: 1px solid #cfe9d5;
  border-radius: 20px;
  background: #f6fff8;
  color: #41544a;
  font-size: 13px;
  line-height: 1.35;
}

.hint-card strong,
.quick-hint strong,
.guide-label {
  display: block;
  margin-bottom: 4px;
  color: var(--primary-dark);
  font-weight: 850;
}

/* Cards */

.content-card,
.survey-card,
.summary-card,
.summary,
.actions-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--soft-shadow);
}

.content-card,
.survey-card {
  padding: 18px;
  border-radius: 28px;
}

.summary-card,
.summary {
  padding: 18px;
  border-radius: 28px;
  background: #fff;
}

.actions-card {
  padding: 12px;
  border-radius: 24px;
  background: var(--surface-2);
  display: grid;
  gap: 10px;
}

.card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.card-head h3,
.section h3,
.survey-card h3 {
  margin: 0;
  font-size: 16px;
  letter-spacing: -0.03em;
}

/* Choice grids */

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

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

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

/* Large choice card */

.choice {
  min-height: 118px;
  width: 100%;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
  color: var(--ink);
  text-align: left;
  position: relative;
  overflow: hidden;
  display: block;
  transition:
    transform 0.16s ease,
    box-shadow 0.16s ease,
    border-color 0.16s ease,
    background 0.16s ease;
}

.choice:hover,
.compact-choice:hover,
.feature-choice:hover,
.feature:hover,
.pill:hover,
.survey-option:hover {
  transform: translateY(-2px);
  border-color: rgba(57, 173, 91, 0.45);
  box-shadow: 0 18px 42px rgba(34, 48, 37, 0.09);
}

.choice-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}

.choice h3 {
  margin: 13px 0 5px;
  font-size: 17px;
  letter-spacing: -0.03em;
}

.choice p {
  margin: 0;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.35;
}

/* Shared icon/check */

.icon,
.choice-icon,
.feature-icon,
.survey-choice-icon {
  width: 42px;
  height: 42px;
  border-radius: 15px;
  background: #f6f3ec;
  color: var(--primary);
  display: grid;
  place-items: center;
  font-size: 21px;
  flex: 0 0 auto;
}

.choice-icon svg,
.feature-icon svg,
.survey-choice-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.check,
.choice-check {
  width: 27px;
  height: 27px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--primary);
  color: #fff;
  font-weight: 900;
  opacity: 0;
  transform: scale(0.8);
  transition: 0.16s ease;
}

/* Compact choices */

.compact-choice {
  min-height: 84px;
  width: 100%;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
  color: var(--ink);
  text-align: left;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  transition:
    transform 0.16s ease,
    box-shadow 0.16s ease,
    border-color 0.16s ease,
    background 0.16s ease;
}

.choice-copy strong,
.feature-copy strong,
.compact-choice strong {
  display: block;
  font-size: 15px;
  line-height: 1.2;
}

.choice-copy small,
.feature-copy small,
.compact-choice span span,
.compact-choice small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

/* Sections / pills */

.section {
  margin-top: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
}

.section:first-child {
  margin-top: 0;
}

.pill-row,
.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.pill {
  min-height: 42px;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: #46574d;
  font-size: 13px;
  font-weight: 750;
  transition:
    transform 0.14s ease,
    border-color 0.14s ease,
    background 0.14s ease,
    box-shadow 0.14s ease;
}

/* Feature cards */

.feature,
.feature-choice {
  min-height: 64px;
  width: 100%;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  color: var(--ink);
  text-align: left;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 760;
  font-size: 13px;
  transition:
    transform 0.14s ease,
    box-shadow 0.14s ease,
    border-color 0.14s ease,
    background 0.14s ease;
}

.box {
  width: 28px;
  height: 28px;
  border: 2px solid #b7c9c0;
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #fff;
  font-weight: 900;
}

/* Selected states - supports both selected and is-selected */

.choice.selected,
.choice.is-selected,
.compact-choice.selected,
.compact-choice.is-selected,
.feature.selected,
.feature.is-selected,
.feature-choice.selected,
.feature-choice.is-selected,
.survey-option.selected,
.survey-option.is-selected {
  border-color: var(--primary);
  background: linear-gradient(180deg, var(--primary-soft), #fff);
  box-shadow: 0 18px 44px rgba(57, 173, 91, 0.15);
}

.pill.selected,
.pill.is-selected {
  background: var(--mint);
  border-color: #8de4c6;
  color: #006146;
}

.choice.selected .check,
.choice.is-selected .check,
.choice.selected .choice-check,
.choice.is-selected .choice-check,
.compact-choice.selected .choice-check,
.compact-choice.is-selected .choice-check {
  opacity: 1;
  transform: scale(1);
}

.feature.selected .box,
.feature.is-selected .box,
.feature-choice.selected .box,
.feature-choice.is-selected .box {
  background: var(--primary);
  border-color: var(--primary);
}

/* Summary */

.summary-label,
.summary-head,
.summary-card h3 {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.summary-list {
  display: grid;
  gap: 8px;
}

.summary-item,
.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid #edf1ea;
  font-size: 13px;
}

.summary-item:last-child,
.summary-row:last-child {
  border-bottom: 0;
}

.summary-item span,
.summary-row span {
  color: var(--muted);
}

.summary-item strong,
.summary-row strong {
  text-align: right;
  font-weight: 850;
}

/* Buttons */

.btn {
  min-height: 54px;
  padding: 0 18px;
  border-radius: 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 900;
  transition:
    transform 0.16s ease,
    filter 0.16s ease,
    box-shadow 0.16s ease;
}

.btn:hover {
  transform: translateY(-1px);
  filter: brightness(0.99);
}

.btn.primary {
  color: #fff;
  background: linear-gradient(90deg, var(--primary), #93b842);
  box-shadow: 0 16px 32px rgba(57, 173, 91, 0.2);
}

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

.btn.amber {
  background: var(--amber);
  color: #684400;
}

/* Inline mobile/tablet actions */

.inline-actions {
  display: none;
  margin-top: 14px;
}

/* Result / estimate */

.result-card,
.estimate-wrap {
  display: grid;
  gap: 14px;
}

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

.estimate-lead {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(180px, 0.85fr);
  gap: 12px;
  align-items: stretch;
}

.estimate-side-stack {
  display: grid;
  gap: 12px;
}

.estimate-card-primary {
  min-height: 100%;
  display: grid;
  align-content: start;
}

.estimate-card-primary strong {
  font-size: clamp(30px, 4vw, 40px);
  line-height: 1;
}

.estimate-card-compact strong {
  font-size: 20px;
}

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

.estimate-card.mini {
  padding: 14px;
  border-radius: 18px;
  box-shadow: none;
}

.estimate-card.mini strong {
  font-size: 18px;
}

.result-banner,
.estimate-banner {
  padding: 18px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--primary-soft), #fff4df);
  border: 1px solid var(--line);
}

.result-banner h2,
.estimate-banner h2 {
  margin: 0;
  font-size: 28px;
  letter-spacing: -0.05em;
}

.result-banner p,
.estimate-banner p {
  margin: 7px 0 0;
  color: var(--muted);
  line-height: 1.4;
}

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

.estimate-card {
  padding: 18px;
  border: 1px solid #bbeccb;
  border-radius: 26px;
  background: #f7fffa;
  box-shadow: var(--soft-shadow);
}

.estimate-card.agency {
  border-color: #f2cc92;
  background: #fffaf0;
}

.estimate-card small,
.estimate-card span {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 12px;
  font-weight: 900;
}

.estimate-card h3 {
  margin: 5px 0 14px;
  font-size: 22px;
  letter-spacing: -0.04em;
}

.metric {
  margin-bottom: 10px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
}

.metric span {
  display: block;
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.metric strong,
.estimate-card strong {
  display: block;
  margin-top: 6px;
  font-size: 26px;
  letter-spacing: -0.04em;
}

.note,
.result-disclaimer {
  margin: 0;
  padding: 12px;
  border-radius: 16px;
  background: #fff0d2;
  color: #704700;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.35;
}

/* Survey-specific compatibility */

.survey-card h2 {
  margin: 0;
  font-size: 28px;
}

.survey-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.survey-card {
  display: grid;
  gap: 20px;
}

.survey-question {
  display: grid;
  gap: 14px;
}

.survey-question h3 {
  margin: 0;
  font-size: 18px;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

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

.survey-option {
  min-height: 58px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  color: var(--ink);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  text-align: left;
}

.survey-comment {
  width: 100%;
  min-height: 140px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  color: var(--ink);
  resize: vertical;
}

.survey-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.result-loading-screen {
  min-height: min(700px, calc(100vh - 160px));
  display: grid;
  place-items: center;
  padding: 12px 0 24px;
  position: relative;
  overflow: hidden;
}

.loading-page {
  display: grid;
}

.loading-stage {
  position: relative;
  min-height: min(700px, calc(100vh - 160px));
  display: grid;
  place-items: center;
  overflow: hidden;
}

.loading-scene {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.75;
  z-index: 0;
  background:
    radial-gradient(circle at 50% 40%, rgba(57, 173, 91, 0.04), transparent 22%),
    radial-gradient(circle at 14% 18%, rgba(255, 228, 184, 0.16), transparent 9%),
    radial-gradient(circle at 86% 20%, rgba(200, 248, 229, 0.18), transparent 10%),
    radial-gradient(circle at 20% 76%, rgba(200, 248, 229, 0.12), transparent 9%),
    radial-gradient(circle at 82% 78%, rgba(255, 228, 184, 0.12), transparent 9%);
}

.scene-dot,
.scene-orb,
.scene-ring {
  position: absolute;
  border-radius: 999px;
}

.scene-orb {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(57, 173, 91, 0.08);
  box-shadow: 0 16px 40px rgba(34, 48, 37, 0.05);
  animation: floaty 4.6s ease-in-out infinite;
}

.scene-orb.orb-a { width: 70px; height: 70px; left: 8%; top: 28%; }
.scene-orb.orb-b { width: 56px; height: 56px; right: 12%; top: 32%; animation-delay: 0.7s; }
.scene-orb.orb-c { width: 84px; height: 84px; left: 12%; bottom: 20%; animation-delay: 1.4s; }

.scene-dot {
  width: 10px;
  height: 10px;
  background: var(--primary);
  box-shadow: 0 0 0 8px rgba(57, 173, 91, 0.08);
  animation: floaty 3.6s ease-in-out infinite;
}

.scene-dot.dot-a { top: 20%; left: 38%; }
.scene-dot.dot-b { top: 22%; right: 36%; animation-delay: 0.4s; }
.scene-dot.dot-c { bottom: 26%; left: 40%; animation-delay: 1s; }
.scene-dot.dot-d { bottom: 24%; right: 34%; animation-delay: 1.4s; }

.scene-ring {
  width: 170px;
  height: 170px;
  border: 1px solid rgba(57, 173, 91, 0.12);
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.58), transparent 57%),
    conic-gradient(from 180deg, rgba(57, 173, 91, 0.06), rgba(57, 173, 91, 0.22), rgba(57, 173, 91, 0.06));
  mask: radial-gradient(circle, transparent 46%, #000 47%);
  animation: spin 8s linear infinite;
}

.scene-ring.ring-a { right: 8%; top: 16%; }
.scene-ring.ring-b { left: 14%; bottom: 14%; width: 130px; height: 130px; animation-duration: 10s; }

.loading-content {
  position: relative;
  z-index: 1;
  width: min(680px, 100%);
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 16px;
  padding: 26px 18px 20px;
}

.loading-content .tiny-label {
  color: var(--primary);
}

.loading-content h1 {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.05em;
}

.loading-content p {
  margin: 0;
  max-width: 42ch;
  color: var(--muted);
  line-height: 1.55;
}

.loading-mark {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 5px solid rgba(57, 173, 91, 0.16);
  border-top-color: var(--primary);
  animation: spin 0.9s linear infinite;
}

.loading-divider {
  width: min(360px, 70vw);
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(57, 173, 91, 0.7), transparent);
  margin-top: 2px;
}

.loading-visual {
  display: grid;
  place-items: center;
  margin-top: 6px;
  min-height: 240px;
}

.loading-device {
  position: relative;
  width: 126px;
  height: 176px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(57, 173, 91, 0.95), rgba(57, 173, 91, 0.72));
  box-shadow: 0 24px 60px rgba(57, 173, 91, 0.18);
  display: grid;
  place-items: center;
  transform: translateY(4px);
}

.loading-device::before {
  content: '';
  position: absolute;
  inset: 11px;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff, #f5fbf4);
}

.device-screen {
  position: relative;
  width: 60px;
  height: 94px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(200, 248, 229, 0.92), rgba(255, 255, 255, 0.92));
  box-shadow: inset 0 0 0 1px rgba(57, 173, 91, 0.08);
  display: grid;
  place-items: center;
}

.device-grid {
  width: 28px;
  height: 48px;
  border-radius: 10px;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.95) 0 4px, transparent 5px) 0 0 / 14px 16px,
    linear-gradient(180deg, rgba(57, 173, 91, 0.18), rgba(57, 173, 91, 0.36));
  animation: pulse 1.8s ease-in-out infinite;
}

.loading-status {
  display: grid;
  place-items: center;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(57, 173, 91, 0.18);
  color: #71817a;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(34, 48, 37, 0.06);
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 6px rgba(57, 173, 91, 0.08);
}

.loading-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.note-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: rgba(200, 248, 229, 0.85);
  color: var(--primary-dark);
}

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

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes sweep {
  0%,
  100% {
    opacity: 0.35;
    transform: scaleX(0.88);
  }
  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(0.98);
    opacity: 0.86;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Toast */

.toast {
  position: fixed;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%) translateY(20px);
  opacity: 0;
  pointer-events: none;
  background: var(--ink);
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  box-shadow: var(--soft-shadow);
  transition: 0.18s ease;
  z-index: 40;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Responsive */

@media (max-width: 1080px) {
  .wizard-body,
  .survey-grid,
  .main-grid,
  .page-head,
  .survey-head,
  .title-row {
    grid-template-columns: 1fr;
  }

  .side-stack,
  .side-panel,
  .survey-side {
    display: none;
  }

  .inline-actions {
    display: grid;
  }

  .hint-card,
  .quick-hint,
  .survey-guide {
    width: auto;
  }

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

  .estimate-grid,
  .survey-option-grid {
    grid-template-columns: 1fr;
  }

  .result-compare {
    grid-template-columns: 1fr;
  }

  .estimate-lead,
  .estimate-mini-grid {
    grid-template-columns: 1fr;
  }

  .loading-stage {
    min-height: min(540px, calc(100vh - 160px));
  }

  .loading-visual {
    min-height: 220px;
  }

  .scene-ring.ring-a {
    top: 12%;
    right: 4%;
  }

  .scene-ring.ring-b {
    left: 4%;
    bottom: 10%;
  }
}

@media (max-width: 760px) {
  .app-shell,
  .survey-stage,
  .page {
    padding: 10px;
  }

  .wizard,
  .survey-shell {
    min-height: calc(100vh - 20px);
    padding: 18px;
    border-radius: 22px;
  }

  .wizard-header,
  .survey-header,
  .header {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 10px;
  }

  .reset-btn,
  .reset-btn.is-hidden-mobile,
  .survey-home,
  .reset {
    display: none;
  }

  .choice-grid,
  .options-grid,
  .compact-grid,
  .feature-grid,
  .inline-actions,
  .survey-actions {
    grid-template-columns: 1fr;
  }

  .result-compare {
    grid-template-columns: 1fr;
  }

  .estimate-lead,
  .estimate-mini-grid {
    grid-template-columns: 1fr;
  }

  .content-card,
  .survey-card,
  .summary-card,
  .summary,
  .actions-card {
    border-radius: 22px;
  }

  .choice,
  .compact-choice,
  .feature,
  .feature-choice,
  .pill,
  .survey-option,
  .btn {
    border-radius: 16px;
  }

  .btn {
    width: 100%;
  }

  .page-copy h1,
  .survey-copy h1,
  .welcome-wrap h1,
  .result-head h1,
  .title-row h1,
  h1 {
    font-size: clamp(24px, 6vw, 40px);
  }

  .welcome-body,
  .welcome-main {
    min-height: calc(100vh - 40px);
  }

  .welcome-wrap {
    gap: 12px;
    padding: 8px 0 0;
  }

  .splash-logo {
    width: min(320px, 88vw);
  }

  .welcome-tagline {
    max-width: 18ch;
    font-size: clamp(22px, 6vw, 30px);
  }

  .welcome-copy {
    font-size: 13px;
  }

  .welcome-actions .btn {
    min-width: 100%;
  }

  .welcome-visual-card {
    width: min(100%, 680px);
  }

  .welcome-benefits {
    grid-template-columns: 1fr;
    border-radius: 16px;
  }

  .welcome-benefits span + span {
    border-left: 0;
    border-top: 1px solid rgba(217, 228, 213, 0.85);
  }
}

/* Print */

@media print {
  @page {
    size: A4 portrait;
    margin: 10mm;
  }

  html,
  body {
    margin: 0 !important;
    background: #fff !important;
    color: var(--ink) !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  * {
    animation: none !important;
    transition: none !important;
    box-shadow: none !important;
    filter: none !important;
  }

  .app-shell,
  .wizard,
  .survey-shell,
  .page {
    width: 100%;
    min-height: auto;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: #fff !important;
  }

  .app-shell,
  .survey-stage,
  .page {
    display: block !important;
  }

  .wizard-header,
  .wizard,
  .survey-header,
  .header,
  .side-stack,
  .side-panel,
  .survey-side,
  .actions-card,
  .inline-actions,
  .toast,
  .loading-page,
  .result-layout.screen-only {
    display: none !important;
  }

  .print-report {
    display: block !important;
    width: 100%;
  }

  .screen-only {
    display: none !important;
  }

  .print-report {
    font-size: 10px;
    line-height: 1.25;
  }

  .print-divider,
  .print-project-summary,
  .print-summary-grid,
  .print-compare-grid,
  .print-factors,
  .print-footer {
    break-inside: avoid;
    page-break-inside: avoid;
  }

  .print-summary-grid {
    margin-top: 8px;
    gap: 6px;
  }

  .print-project-summary {
    padding: 10px 12px;
  }

  .print-compare-grid {
    margin-top: 8px;
    gap: 8px;
  }

  .print-estimate-card {
    padding: 10px;
  }

  .print-price-box strong {
    font-size: 26px;
  }

  .print-footer {
    margin-top: 8px;
  }
}
/* FINAL CENTERED LOADING SCREEN FIX */

.loading-page {
  grid-template-rows: auto 1fr;
}

.loading-stage {
  position: relative;
  min-height: min(640px, calc(100vh - 150px));
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}

.loading-scene {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 54%, rgba(57, 173, 91, 0.12), transparent 24%),
    radial-gradient(circle at 50% 64%, rgba(200, 248, 229, 0.28), transparent 32%),
    radial-gradient(circle at 50% 36%, rgba(255, 228, 184, 0.12), transparent 22%);
}

.loading-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  padding: 10px 18px 24px;
}

.loading-content .tiny-label {
  color: var(--primary);
  font-size: 15px;
  font-weight: 900;
}

.loading-mark {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 5px solid rgba(57, 173, 91, 0.16);
  border-top-color: var(--primary);
  border-right-color: #93b842;
  animation: spin 0.9s linear infinite;
}

.loading-content h1 {
  margin: 8px 0 0;
  color: var(--ink);
  font-size: clamp(38px, 4.7vw, 58px);
  line-height: 0.98;
  letter-spacing: -0.065em;
  font-weight: 950;
}

.loading-content p {
  margin: 0;
  max-width: 44ch;
  color: #60736a;
  font-size: 17px;
  line-height: 1.55;
  font-weight: 650;
}

.loading-divider {
  width: min(440px, 72vw);
  height: 2px;
  margin: 8px 0 0;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(57, 173, 91, 0.15),
    rgba(57, 173, 91, 0.85),
    rgba(57, 173, 91, 0.15),
    transparent
  );
}

.loading-visual {
  position: relative;
  width: 340px;
  height: 270px;
  min-height: 270px;
  margin: 0 auto;
  display: block;
}

.scene-orb,
.scene-ring.ring-b {
  display: none !important;
}

.scene-ring,
.scene-ring.ring-a {
  display: block !important;
  position: absolute !important;
  left: 50% !important;
  top: 50% !important;
  right: auto !important;
  bottom: auto !important;
  width: 260px !important;
  height: 260px !important;
  transform: translate(-50%, -50%) !important;
  border-radius: 999px;
  border: 1px solid rgba(57, 173, 91, 0.12);
  background:
    repeating-radial-gradient(
      circle,
      rgba(255, 255, 255, 0.68) 0 1px,
      transparent 1px 52px
    ),
    radial-gradient(circle, rgba(200, 248, 229, 0.42), transparent 68%);
  mask: none !important;
  animation: pulseGlow 2.8s ease-in-out infinite;
}

.scene-dot {
  position: absolute !important;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 9px rgba(57, 173, 91, 0.08);
  animation: floaty 3.8s ease-in-out infinite;
}

.scene-dot.dot-a {
  left: 54px !important;
  top: 54px !important;
  right: auto !important;
  bottom: auto !important;
}

.scene-dot.dot-b {
  right: 48px !important;
  top: 108px !important;
  left: auto !important;
  bottom: auto !important;
}

.scene-dot.dot-c {
  left: 62px !important;
  bottom: 62px !important;
  top: auto !important;
  right: auto !important;
}

.scene-dot.dot-d {
  right: 70px !important;
  bottom: 126px !important;
  top: auto !important;
  left: auto !important;
}

.loading-device {
  position: absolute;
  left: 50%;
  top: 48%;
  width: 116px;
  height: 116px;
  border-radius: 28px;
  background: linear-gradient(180deg, #40cf70, #12a94f);
  box-shadow:
    0 24px 60px rgba(57, 173, 91, 0.22),
    0 0 0 18px rgba(57, 173, 91, 0.05);
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  animation: floatCenter 4.2s ease-in-out infinite;
}

.loading-device::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), transparent),
    linear-gradient(180deg, #38ca68, #13a84f);
}

.device-screen {
  position: relative;
  width: 64px;
  height: 74px;
  border-radius: 15px;
  background: transparent;
  box-shadow: none;
  display: grid;
  place-items: center;
  z-index: 1;
}

.device-grid {
  width: 54px;
  height: 70px;
  border-radius: 14px;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.76) 0 6px, transparent 7px) 0 0 / 24px 24px;
  animation: pulse 1.8s ease-in-out infinite;
}

.loading-status {
  position: absolute;
  left: 50%;
  bottom: 8px;
  transform: translateX(-50%);
  display: block;
  margin: 0;
  z-index: 3;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  white-space: nowrap;
  padding: 10px 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(57, 173, 91, 0.2);
  color: #75857d;
  font-size: 15px;
  font-weight: 850;
  box-shadow: 0 14px 28px rgba(34, 48, 37, 0.08);
  backdrop-filter: blur(10px);
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 7px rgba(57, 173, 91, 0.09);
}

.loading-note {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: -4px;
  color: #60736a;
  font-size: 15px;
  font-weight: 800;
}

@keyframes floatCenter {
  0%,
  100% {
    transform: translate(-50%, -50%);
  }

  50% {
    transform: translate(-50%, calc(-50% - 10px));
  }
}

@keyframes pulseGlow {
  0%,
  100% {
    opacity: 0.72;
    transform: translate(-50%, -50%) scale(0.98);
  }

  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.03);
  }
}
/* CLEAN RESULT SCREEN */

.result-layout {
  display: grid;
  gap: 22px;
}

.result-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 330px);
  gap: 18px;
  align-items: start;
}

.result-title .eyebrow {
  color: var(--primary);
  font-weight: 900;
}

.result-title h1 {
  font-size: clamp(34px, 4.4vw, 54px);
  line-height: 0.98;
  letter-spacing: -0.065em;
  color: var(--ink);
}

.result-title p {
  margin-top: 10px;
  max-width: 620px;
  color: #60736a;
  font-size: 16px;
  font-weight: 600;
}

.result-insight {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid #cdebd5;
  background: linear-gradient(180deg, rgba(246, 255, 248, 0.96), rgba(255, 255, 255, 0.88));
  box-shadow: 0 14px 30px rgba(34, 48, 37, 0.05);
}

.result-insight p {
  margin: 0;
  color: #405249;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 700;
}

.result-info-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--primary);
  font-weight: 950;
  box-shadow: 0 8px 18px rgba(57, 173, 91, 0.18);
}

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

.estimate-panel {
  min-width: 0;
  padding: 18px;
  border-radius: 28px;
  border: 1px solid #beeac8;
  background:
    radial-gradient(circle at 12% 0%, rgba(57, 173, 91, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 255, 250, 0.92));
  box-shadow: 0 22px 50px rgba(34, 48, 37, 0.07);
}

.agency-panel {
  border-color: rgba(123, 108, 245, 0.28);
  background:
    radial-gradient(circle at 12% 0%, rgba(123, 108, 245, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(251, 249, 255, 0.92));
}

.estimate-panel-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  margin-bottom: 18px;
}

.estimate-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: #f0fff4;
  border: 1px solid #c9f1d2;
  box-shadow: 0 12px 28px rgba(57, 173, 91, 0.12);
  font-size: 26px;
}

.estimate-icon.purple {
  background: #f5f1ff;
  border-color: rgba(123, 108, 245, 0.26);
  box-shadow: 0 12px 28px rgba(123, 108, 245, 0.12);
}

.estimate-panel-head .tiny-label {
  display: block;
  margin-bottom: 6px;
  color: #46574d;
  font-size: 13px;
  font-weight: 750;
  text-transform: none;
  letter-spacing: 0;
}

.estimate-panel-head h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1;
  letter-spacing: -0.055em;
}

.estimate-pill {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  margin-top: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #dcf8e4;
  color: #149648;
  font-size: 12px;
  font-weight: 900;
}

.estimate-pill.outsource {
  background: #eeeaff;
  color: #6250e8;
}

.hero-estimate-box {
  padding: 24px 18px 20px;
  border-radius: 22px;
  border: 1px solid rgba(57, 173, 91, 0.36);
  background:
    radial-gradient(circle at 50% 100%, rgba(57, 173, 91, 0.12), transparent 42%),
    rgba(255, 255, 255, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    0 16px 34px rgba(57, 173, 91, 0.08);
  text-align: center;
}

.hero-estimate-box span {
  color: #60736a;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-estimate-box strong {
  display: block;
  margin-top: 10px;
  color: #0b8f3d;
  font-size: clamp(34px, 4.6vw, 52px);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.purple-box {
  border-color: rgba(123, 108, 245, 0.36);
  background:
    radial-gradient(circle at 50% 100%, rgba(123, 108, 245, 0.12), transparent 42%),
    rgba(255, 255, 255, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    0 16px 34px rgba(123, 108, 245, 0.08);
}

.purple-box strong {
  color: #5d46dd;
}

.hero-line {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 14px;
  align-items: center;
  width: min(280px, 90%);
  margin: 18px auto 0;
}

.hero-line span {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(57, 173, 91, 0.55));
}

.hero-line span:last-child {
  background: linear-gradient(90deg, rgba(57, 173, 91, 0.55), transparent);
}

.hero-line b {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--primary);
  border: 1px solid #bae9c6;
  background: #f6fff8;
  font-size: 15px;
}

.purple-line span {
  background: linear-gradient(90deg, transparent, rgba(123, 108, 245, 0.45));
}

.purple-line span:last-child {
  background: linear-gradient(90deg, rgba(123, 108, 245, 0.45), transparent);
}

.purple-line b {
  color: #5d46dd;
  border-color: rgba(123, 108, 245, 0.24);
  background: #fbf9ff;
}

.estimate-detail-list {
  margin-top: 16px;
  display: grid;
}

.estimate-detail-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid rgba(216, 228, 212, 0.78);
  color: #405249;
  font-size: 14px;
  font-weight: 650;
}

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

.estimate-detail-row strong {
  color: #119047;
  font-weight: 950;
  text-align: right;
}

.purple-list .estimate-detail-row strong {
  color: #5d46dd;
}

.row-icon {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: #effaf2;
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
}

.purple-list .row-icon,
.agency-panel .row-icon {
  background: #f3f0ff;
  color: #5d46dd;
}

.included-block {
  margin-top: 16px;
}

.included-block h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 14px;
  letter-spacing: -0.02em;
}

.clean-checklist {
  margin: 0;
  padding-left: 20px;
  color: #2b3e34;
  font-size: 13px;
  line-height: 1.55;
}

.clean-checklist li::marker {
  color: var(--primary);
}

.purple-dots li::marker {
  color: #5d46dd;
}

.result-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  margin: 18px 0 0;
  padding: 13px 14px;
  border-radius: 14px;
  border: 1px solid #f4d396;
  background: #fff0d2;
  color: #704700;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 750;
}

.result-note span {
  line-height: 1;
}

.clean-disclaimer {
  margin: 0;
  padding: 14px 16px;
  border-radius: 16px;
  background: #fff0d2;
  color: #704700;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.4;
}

/* Fix side nesting on result */
.result-side > .side-stack {
  display: contents;
}

/* Result responsive */
@media (max-width: 1080px) {
  .result-top {
    grid-template-columns: 1fr;
  }

  .result-compare-clean {
    grid-template-columns: 1fr;
  }

  .result-side {
    display: none;
  }
}

@media (max-width: 760px) {
  .result-title h1 {
    font-size: clamp(34px, 10vw, 44px);
  }

  .estimate-panel {
    padding: 14px;
    border-radius: 22px;
  }

  .estimate-panel-head {
    grid-template-columns: 1fr;
  }

  .hero-estimate-box strong {
    font-size: clamp(32px, 10vw, 42px);
  }

  .estimate-detail-row {
    grid-template-columns: auto 1fr;
  }

  .estimate-detail-row strong {
    grid-column: 2;
    text-align: left;
  }
}
/* =========================
   RESULT SCREEN - FINAL
   ========================= */

.wizard:has(.result-layout) {
  width: min(1320px, 100%);
  min-height: min(820px, calc(100vh - 48px));
}

.wizard:has(.result-layout) .wizard-body {
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 30px;
  align-items: start;
}

.result-layout {
  min-width: 0;
  display: grid;
  gap: 22px;
}

.result-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 280px);
  gap: 24px;
  align-items: start;
}

.result-title .eyebrow {
  color: var(--primary);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.result-headline {
  margin: 10px 0 0;
  color: var(--ink);
  font-size: clamp(38px, 4.4vw, 56px);
  line-height: 0.96;
  letter-spacing: -0.065em;
  font-weight: 950;
}

.result-title p {
  margin: 14px 0 0;
  max-width: 690px;
  color: #64746b;
  font-size: 17px;
  line-height: 1.45;
  font-weight: 600;
}

.result-insight {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid #ccebd5;
  background: #f8fff9;
  box-shadow: 0 18px 42px rgba(34, 48, 37, 0.055);
}

.result-insight p {
  margin: 0;
  color: #30453b;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 700;
}

.result-info-icon {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--primary);
  color: #fff;
  font-size: 14px;
  font-weight: 950;
}

/* Estimate comparison */

.result-compare-clean {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.estimate-panel {
  min-width: 0;
  padding: 24px;
  border-radius: 28px;
  border: 1px solid #dde8df;
  background: #fff;
  box-shadow: 0 20px 46px rgba(34, 48, 37, 0.055);
  display: grid;
  align-content: start;
  gap: 18px;
}

.diy-panel,
.agency-panel {
  border-color: #dbe7de;
}

.estimate-panel-head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}

.estimate-icon {
  width: 64px;
  height: 64px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  background: #e9f9ee;
  color: var(--primary-dark);
  font-size: 28px;
  box-shadow: 0 14px 28px rgba(57, 173, 91, 0.1);
}

.estimate-panel-head .tiny-label {
  display: block;
  margin-bottom: 7px;
  color: #2f4439;
  font-size: 15px;
  font-weight: 650;
  text-transform: none;
  letter-spacing: 0;
}

.estimate-panel-head h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.05;
  letter-spacing: -0.055em;
  font-weight: 950;
}

.estimate-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 26px;
  margin-top: 10px;
  padding: 4px 12px;
  border-radius: 999px;
  background: #dff8e7;
  color: #168147;
  font-size: 13px;
  font-weight: 900;
}

/* Big estimate box */

.hero-estimate-box {
  min-height: 132px;
  padding: 24px 20px;
  border-radius: 18px;
  border: 1px solid #afe6be;
  background:
    radial-gradient(circle at 50% 100%, rgba(57, 173, 91, 0.12), transparent 50%),
    linear-gradient(180deg, #f8fff9 0%, #eefaf1 100%);
  display: grid;
  place-items: center;
  text-align: center;
}

.hero-estimate-box span {
  color: #3e7652;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-estimate-box strong {
  display: block;
  margin-top: 12px;
  color: #0d8f3e;
  font-size: clamp(38px, 4.2vw, 54px);
  line-height: 0.95;
  letter-spacing: -0.055em;
  font-weight: 950;
}

/* Metric cards */

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

.estimate-metric-card {
  min-height: 86px;
  padding: 16px;
  border: 1px solid #e4ece6;
  border-radius: 14px;
  background: #fff;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  box-shadow: 0 10px 24px rgba(34, 48, 37, 0.035);
}

.metric-icon {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--primary-dark);
  background: #eefaf2;
  font-size: 15px;
  font-weight: 950;
}

.estimate-metric-card small {
  display: block;
  margin-bottom: 5px;
  color: #3f7a52;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.055em;
}

.estimate-metric-card strong {
  display: block;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.15;
  font-weight: 900;
}

/* Included lists */

.included-block {
  padding-top: 4px;
  border-top: 1px solid #e5ece7;
}

.clean-checklist {
  margin: 0;
  padding-left: 20px;
  color: #273c32;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 550;
}

.clean-checklist li::marker {
  color: var(--primary);
}

/* Notes */

.result-note {
  margin: 4px 0 0;
  padding: 16px;
  border-radius: 14px;
  border: 1px solid #f1cd86;
  background: #fff4dc;
  color: #714b00;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 700;
}

.clean-disclaimer {
  margin: 0;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #f1cd86;
  background: #fff4dc;
  color: #714b00;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 700;
}

/* Right sidebar */

.result-sidebar {
  position: sticky;
  top: 24px;
  display: grid;
  gap: 18px;
  align-self: start;
}

.result-summary-card {
  padding: 24px;
  border-radius: 28px;
  border: 1px solid #dbe7de;
  background: #fff;
  box-shadow: 0 18px 42px rgba(34, 48, 37, 0.05);
}

.result-summary-card h3 {
  margin: 0 0 18px;
  color: #2f7650;
  font-size: 14px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.result-summary-card .summary-list {
  display: grid;
  gap: 0;
}

.result-summary-card .summary-row {
  padding: 15px 0;
  border-bottom: 1px solid #e5ece7;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 15px;
}

.result-summary-card .summary-row:last-child {
  border-bottom: 0;
}

.result-summary-card .summary-row strong {
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
  text-align: right;
}

.result-action-stack .actions-card {
  padding: 20px;
  border-radius: 28px;
  border: 1px solid #dbe7de;
  background: #fff;
  box-shadow: 0 18px 42px rgba(34, 48, 37, 0.05);
  display: grid;
  gap: 14px;
}

.result-action-stack .btn {
  width: 100%;
  min-height: 62px;
  border-radius: 14px;
  justify-content: center;
  font-size: 17px;
}

.result-action-stack .btn.primary {
  background: linear-gradient(90deg, #26aa55, #82b93e);
  color: #fff;
}

/* Responsive */

@media (max-width: 1180px) {
  .wizard:has(.result-layout) .wizard-body {
    grid-template-columns: 1fr;
  }

  .result-sidebar {
    position: static;
    grid-template-columns: 1fr;
  }

  .result-top {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 920px) {
  .result-compare-clean {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .result-headline {
    font-size: clamp(34px, 10vw, 46px);
  }

  .estimate-panel {
    padding: 18px;
    border-radius: 22px;
  }

  .estimate-panel-head {
    grid-template-columns: 1fr;
  }

  .estimate-metric-grid {
    grid-template-columns: 1fr;
  }

  .hero-estimate-box strong {
    font-size: clamp(34px, 11vw, 44px);
  }

  .result-sidebar {
    display: none;
  }
}
.estimate-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.diy-icon {
  background: #e9f9ee;
  color: #137a3f;
  border: 1px solid #c4efcf;
}
/* RESULT CARD ALIGNMENT + ICON/COLOR FIX */

.result-compare-clean {
  align-items: stretch;
}

.estimate-panel {
  display: flex;
  flex-direction: column;
  background: #fff;
}

.estimate-panel .included-block {
  margin-top: 4px;
}

/* Push yellow note cards to the bottom */
.result-note {
  margin-top: auto;
}

/* Icon base */
.estimate-icon {
  width: 64px;
  height: 64px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  box-shadow: 0 14px 28px rgba(34, 48, 37, 0.08);
}

.estimate-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* DIY icon */
.diy-icon {
  background: #e9f9ee;
  color: #137a3f;
  border: 1px solid #c4efcf;
}

/* Agency purple accent */
.agency-panel {
  border-color: #ddd5ff;
}

.agency-icon {
  background: #f2efff;
  color: #5d46dd;
  border: 1px solid #ddd5ff;
}

.agency-panel .estimate-pill {
  background: #eeeaff;
  color: #5d46dd;
}

.agency-panel .hero-estimate-box {
  border-color: #d5ccff;
  background:
    radial-gradient(circle at 50% 100%, rgba(123, 108, 245, 0.12), transparent 50%),
    linear-gradient(180deg, #fbfaff 0%, #f4f1ff 100%);
}

.agency-panel .hero-estimate-box span {
  color: #6658b8;
}

.agency-panel .hero-estimate-box strong {
  color: #5d46dd;
}

.agency-panel .metric-icon {
  background: #f3f0ff;
  color: #5d46dd;
}

.agency-panel .estimate-metric-card small {
  color: #5d46dd;
}

.agency-panel .clean-checklist li::marker {
  color: #5d46dd;
}

/* Keep both cards same visual height */
.estimate-panel {
  min-height: 100%;
}

.result-note {
  min-height: 70px;
  align-items: center;
}
.result-note {
  min-height: 78px;
}

/* PDF / print-only estimate report */

.print-report {
  display: none;
}

.print-report,
.print-report * {
  box-sizing: border-box;
}

.print-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}

.print-header-left,
.print-header-copy {
  min-width: 0;
}

.print-header-copy {
  justify-self: end;
}

.print-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.print-date-icon svg,
.print-notice-icon svg,
.print-project-icon svg,
.print-metric-icon svg,
.print-footer-icon svg {
  width: 16px;
  height: 16px;
  display: block;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.print-logo {
  display: block;
  width: auto;
  height: 22px;
  object-fit: contain;
}

.print-brand-copy strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.05;
}

.print-brand-copy span,
.print-date-label,
.print-card-kicker,
.print-summary-metric .print-metric-label,
.print-factors-title,
.print-footer-head strong,
.print-project-desc {
  display: block;
  color: #6c7a72;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.print-date-head {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: flex-end;
}

.print-date-icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #1a7e43;
  background: #effaf1;
  border: 1px solid #ccead3;
}

.print-date {
  margin-top: 4px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.1;
}

.print-brand-copy strong {
  font-size: 16px;
  color: var(--ink);
}

.print-brand-copy span {
  color: #1a7e43;
  font-size: 10px;
}

.print-divider {
  height: 1px;
  margin: 10px 0 12px;
  background: linear-gradient(90deg, transparent, #cfe3d2 18%, #1aa14d 50%, #cfe3d2 82%, transparent);
}

.print-notice {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
  padding: 9px 12px;
  border-radius: 14px;
  border: 1px solid #ccead3;
  background: #f4fdf6;
}

.print-notice-icon {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #1a7e43;
  background: #e6f8ea;
}

.print-notice p {
  margin: 0;
  color: #3f5846;
  font-size: 10px;
  line-height: 1.35;
  font-weight: 700;
}

.print-project-summary {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 1px minmax(0, 0.95fr);
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid #dde9df;
  border-radius: 18px;
  background: #fff;
  break-inside: avoid;
  page-break-inside: avoid;
}

.print-project-left {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  min-width: 0;
}

.print-project-icon {
  width: 34px;
  height: 34px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: #effaf1;
  color: #1a7e43;
  border: 1px solid #ccead3;
}

.print-project-copy {
  min-width: 0;
}

.print-project-desc {
  margin-top: 4px;
}

.print-project-paragraph {
  margin: 8px 0 0;
  color: var(--ink);
  font-size: 11px;
  line-height: 1.34;
  max-width: none;
  overflow: visible;
}

.print-project-divider {
  width: 1px;
  background: #e4ede7;
}

.print-project-right {
  display: grid;
  gap: 6px;
  align-content: start;
}

.print-answer-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 10px;
  align-items: start;
  font-size: 10px;
  line-height: 1.25;
}

.print-answer-row span {
  color: #6c7a72;
  font-weight: 800;
}

.print-answer-row strong {
  color: var(--ink);
  font-weight: 900;
  text-align: right;
  overflow-wrap: anywhere;
}

.print-feature-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 4px;
}

.print-feature-chip {
  min-height: 22px;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid #d9e6db;
  background: #f8fbf8;
  color: #315f41;
  font-size: 9px;
  font-weight: 700;
}

.print-feature-empty {
  color: #6c7a72;
}

.print-feature-more {
  background: #eef7f0;
  border-color: #ccead3;
  color: #1a7e43;
}

.print-summary-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
}

.print-summary-metric {
  min-width: 0;
  padding: 10px;
  border-radius: 14px;
  border: 1px solid #dbe9dd;
  background: #fff;
  break-inside: avoid;
  page-break-inside: avoid;
}

.print-metric-icon {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #effaf1;
  color: #1a7e43;
  margin-bottom: 8px;
  border: 1px solid #ccead3;
}

.print-summary-metric strong {
  display: block;
  color: #1a7e43;
  font-size: 13px;
  line-height: 1.1;
  margin-top: 4px;
}

.print-summary-metric p {
  margin: 4px 0 0;
  color: #68746f;
  font-size: 9px;
  line-height: 1.3;
}

.print-compare-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.print-estimate-card {
  min-width: 0;
  padding: 12px;
  border-radius: 18px;
  border: 1px solid #dce6de;
  background: #fff;
  break-inside: avoid;
  page-break-inside: avoid;
}

.print-diy-card {
  border-color: #ccead3;
  background: linear-gradient(180deg, #ffffff 0%, #f8fff9 100%);
}

.print-agency-card {
  border-color: #ded7ff;
  background: linear-gradient(180deg, #ffffff 0%, #fbf9ff 100%);
}

.print-card-head {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  align-items: flex-start;
}

.print-card-heading h2 {
  margin: 4px 0 0;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.print-card-badge {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 900;
  white-space: nowrap;
}

.print-badge-green {
  background: #dcf8e4;
  color: #149648;
}

.print-badge-purple {
  background: #eeeaff;
  color: #6250e8;
}

.print-price-box {
  margin-top: 9px;
  padding: 10px 12px;
  border-radius: 14px;
  text-align: center;
  border: 1px solid #cfe7d6;
  background: linear-gradient(180deg, #f8fff9 0%, #ffffff 100%);
}

.print-price-purple {
  border-color: #d8d2ff;
  background: linear-gradient(180deg, #fbf9ff 0%, #ffffff 100%);
}

.print-price-box span {
  color: #6c7a72;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.print-price-box strong {
  display: block;
  margin-top: 4px;
  color: #0e8f3d;
  font-size: 28px;
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.print-price-purple strong {
  color: #5d46dd;
}

.compact-metric-grid {
  gap: 7px;
}

.print-metric {
  min-width: 0;
  padding: 8px 9px;
  border-radius: 12px;
  border: 1px solid #e4eae5;
  background: #fff;
  break-inside: avoid;
  page-break-inside: avoid;
}

.print-metric strong {
  display: block;
  margin-top: 3px;
  color: var(--ink);
  font-size: 11px;
  line-height: 1.12;
}

.print-metric small {
  display: block;
  margin-top: 3px;
  color: #6e7a73;
  font-size: 9px;
  line-height: 1.2;
}

.print-list-block {
  margin-top: 9px;
  padding-top: 9px;
  border-top: 1px solid #e6ece7;
}

.print-list-block h3 {
  margin: 0;
}

.print-list-block ul {
  margin: 5px 0 0;
  padding-left: 16px;
  columns: 2;
  column-gap: 16px;
}

.print-list-block li {
  margin: 0 0 4px;
  color: var(--ink);
  font-size: 9px;
  line-height: 1.3;
}

.print-note {
  margin-top: 9px;
  padding: 9px 10px;
  border-radius: 12px;
  border: 1px solid #f1cd86;
  background: #fff4dc;
  color: #715000;
  font-size: 9px;
  line-height: 1.35;
  break-inside: avoid;
  page-break-inside: avoid;
}

.print-factors {
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid #dce6de;
  background: #fff;
  break-inside: avoid;
  page-break-inside: avoid;
}

.print-factors-title {
  color: #1a7e43;
  margin-bottom: 8px;
}

.print-factor-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  align-items: center;
}

.print-factor-row span {
  display: flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
  padding: 0 10px;
  color: var(--ink);
  font-size: 9px;
  line-height: 1.15;
  font-weight: 700;
}

.print-factor-row span:not(:last-child) {
  border-right: 1px solid #e6ece7;
}

.print-factor-row svg {
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
  color: #1a7e43;
}

.print-footer {
  margin-top: 10px;
  padding-top: 8px;
  border-top: 1px solid #cfe3d2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.print-footer-col {
  min-width: 0;
}

.print-footer-head {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 4px;
}

.print-footer-icon {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #1a7e43;
  background: #effaf1;
  border: 1px solid #ccead3;
}

.print-footer p {
  margin: 0;
  color: #66726b;
  font-size: 9px;
  line-height: 1.35;
}
