:root {
  --tangerine: #FF9000;
  --tangerine-hover: #e68200;
  --tangerine-soft: #FFF3E0;
  --font-brand: 'Coolvetica', 'Outfit', 'Segoe UI', system-ui, sans-serif;
  --nixon-slate: #333F48;
  --slate-2: #4a5560;
  --text-body: #3d4752;
  --deep: #1a2330;
  --white: #FFFFFF;
  --off-white: #eef2f6;
  --page-fill: #fff;
  --surface-warm: #FFF8F2;
  --green: #00a87a;
  --brighte: #00C48C;
  --danger: #d93025;
  --font-head: 'Archivo', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Outfit', 'Segoe UI', system-ui, sans-serif;
  --max-w: 1280px;
  --radius: 10px;
  --transition: 0.22s ease;
  --border-page: rgba(51,63,72,0.14);
  --border-soft: rgba(51,63,72,0.1);
  --snow-white: #FFFFFF;
  --black-mist: #4a5560;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--page-fill);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
img { max-width: 100%; display: block; }
a { color: var(--tangerine); text-decoration: none; }
a:hover { text-decoration: underline; }
button { font-family: var(--font-body); cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--nixon-slate);
}
h1 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); }
h2 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); }
h3 { font-size: 1.1rem; }
h4 { font-size: 0.95rem; }

.label {
  font-family: var(--font-head);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--tangerine);
}

/* === Top header === */
.qb-top {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid var(--border-soft);
  box-shadow: 0 1px 0 rgba(255,145,0,0.25);
}
.qb-top-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 64px;
}
.qb-logo img { height: 38px; width: auto; }
.qb-top-meta {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.84rem;
  color: var(--slate-2);
}
.qb-help { display: inline-flex; gap: 6px; align-items: center; color: var(--slate-2); font-weight: 500; }
.qb-help a { color: var(--nixon-slate); font-weight: 700; }
.qb-mobile-total {
  display: none;
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--nixon-slate);
}
.qb-mobile-total .num { color: var(--tangerine); }

/* === Progress === */
.qb-progress {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 12px 24px 8px;
}
.qb-progress-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.qb-progress-track::-webkit-scrollbar { display: none; }
.qp-step {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 16px 8px 8px;
  border-radius: 999px;
  background: var(--white);
  color: var(--slate-2);
  font-family: var(--font-brand);
  font-size: 0.79rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  white-space: nowrap;
  cursor: pointer;
  transition: var(--transition);
  border: 1.5px solid var(--border-soft);
}
.qp-step:hover:not(:disabled) {
  border-color: var(--tangerine);
  color: var(--nixon-slate);
}
.qp-step:disabled {
  opacity: 0.45;
  cursor: default;
}
.qp-step.active {
  background: var(--tangerine);
  color: var(--white);
  border-color: var(--tangerine);
  box-shadow: 0 4px 16px rgba(255, 144, 0, 0.28);
}
.qp-step.done {
  background: var(--white);
  color: var(--nixon-slate);
  border-color: var(--border-soft);
}
.qp-step.done:hover:not(:disabled) {
  border-color: var(--tangerine);
  color: var(--nixon-slate);
}
.qp-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(51, 63, 72, 0.1);
  color: var(--slate-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-brand);
  font-size: 0.68rem;
  font-weight: 400;
  flex-shrink: 0;
  transition: var(--transition);
}
.qp-step.active .qp-dot {
  background: rgba(0, 0, 0, 0.18);
  color: var(--white);
}
.qp-step.done .qp-dot {
  background: var(--tangerine);
  color: var(--white);
}
.qp-step:disabled .qp-dot {
  background: rgba(51, 63, 72, 0.07);
}
.qp-dot .fa-check { font-size: 0.6rem; }
.qp-arrow {
  color: rgba(51, 63, 72, 0.22);
  font-size: 0.68rem;
  flex-shrink: 0;
}

/* Mobile progress — compact step counter + segment bar */
.qb-progress-mobile {
  display: none;
}

.qpm-head {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 12px;
}

.qpm-count {
  font-family: var(--font-brand);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--tangerine);
}

.qpm-label {
  font-family: var(--font-brand);
  font-size: 1rem;
  font-weight: 400;
  color: var(--nixon-slate);
  line-height: 1.25;
}

.qpm-track {
  display: flex;
  gap: 5px;
  align-items: center;
}

.qpm-seg {
  flex: 1;
  height: 6px;
  border-radius: 999px;
  border: none;
  padding: 0;
  background: rgba(51, 63, 72, 0.12);
  cursor: pointer;
  transition: background 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.qpm-seg.active {
  background: var(--tangerine);
  box-shadow: 0 2px 8px rgba(255, 144, 0, 0.32);
}

.qpm-seg.done {
  background: var(--tangerine);
  opacity: 0.5;
}

.qpm-seg.done:hover:not(:disabled) {
  opacity: 0.75;
}

.qpm-seg:disabled {
  cursor: default;
}

/* === Layout === */
.qb-layout {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 24px 24px 60px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 28px;
  align-items: start;
}
.qb-layout.pre-systems {
  grid-template-columns: minmax(0, 860px);
  justify-content: center;
}
.qb-layout.show-summary {
  animation: layoutExpand 0.42s ease both;
}
.qb-stage {
  background: var(--white);
  border: 1px solid var(--border-page);
  border-radius: 16px;
  box-shadow: 0 12px 36px rgba(51,63,72,0.07);
  padding: clamp(20px, 3vw, 36px);
  min-height: 420px;
}
.qb-stage h1 { margin-bottom: 6px; }
.qb-stage > .label { display: block; margin-bottom: 8px; }
.qb-stage .lead {
  color: var(--slate-2);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 60ch;
}

/* Selectable cards */
.opt-grid { display: grid; gap: 14px; }
.opt-grid.cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.opt-grid.cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.opt-grid.cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.opt-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 18px 16px;
  background: var(--white);
  border: 1.5px solid var(--border-page);
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition);
  text-align: left;
  width: 100%;
}
.opt-card:hover { border-color: rgba(255,145,0,0.55); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(51,63,72,0.08); }
.opt-card.selected {
  border-color: var(--tangerine);
  background: rgba(255,145,0,0.06);
  box-shadow: 0 0 0 3px rgba(255,145,0,0.2);
}
.opt-card .opt-tag {
  font-family: var(--font-head);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tangerine);
  margin-bottom: 4px;
}
.opt-card .opt-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 800;
  color: var(--nixon-slate);
  letter-spacing: -0.01em;
}
.opt-card .opt-desc {
  font-size: 0.85rem;
  color: var(--slate-2);
  line-height: 1.5;
}
.opt-card .opt-foot {
  margin-top: auto;
  padding-top: 10px;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--slate-2);
}
.opt-card .opt-pill {
  position: absolute;
  top: -10px;
  right: 14px;
  background: var(--tangerine);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 30px;
}
.opt-card .opt-check {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--border-page);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  background: var(--white);
}
.opt-card.selected .opt-check {
  background: var(--tangerine);
  border-color: var(--tangerine);
  color: var(--white);
}

/* Property type tiles (Step 1) */
.prop-type-grid .prop-type-card {
  padding: 14px 16px 14px 14px;
  min-height: 108px;
}
.prop-type-card .prop-type-ico {
  font-size: 1.35rem;
  color: var(--tangerine);
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}
.prop-type-card.selected .prop-type-ico { color: var(--nixon-slate); }
.prop-type-card .opt-title { font-size: 0.92rem; }
.prop-type-card .prop-type-hint {
  font-size: 0.76rem;
  color: var(--slate-2);
  line-height: 1.45;
}

.field-intro {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--slate-2);
  margin: 0 0 14px;
  max-width: 62ch;
}
.field-intro strong { color: var(--nixon-slate); font-weight: 700; }

/* Step 1 — grouped sections */
.step-sections { display: grid; gap: 22px; margin-bottom: 28px; }
.step-section {
  border: 1px solid var(--border-page);
  border-radius: 14px;
  padding: 22px 22px 20px;
  background: var(--white);
  transition: var(--transition);
}
.step-section + .step-section { margin-top: 0; }
.step-section--accent {
  border-color: rgba(255,145,0,0.32);
  background: linear-gradient(180deg, rgba(255,145,0,0.05) 0%, rgba(255,145,0,0.015) 100%);
  box-shadow: 0 6px 22px rgba(255,145,0,0.08);
}
.step-section--quiet {
  background: var(--off-white);
  border-style: dashed;
}
.section-head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}
.section-num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--nixon-slate);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0;
}
.step-section--accent .section-num {
  background: var(--tangerine);
}
.step-section--quiet .section-num {
  background: transparent;
  color: var(--slate-2);
  border: 1.5px dashed var(--border-page);
  font-weight: 700;
}
.section-title-wrap { flex: 1; min-width: 0; }
.section-title {
  display: block;
  font-family: var(--font-head);
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--nixon-slate);
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.section-sub {
  display: block;
  margin-top: 4px;
  font-size: 0.84rem;
  color: var(--slate-2);
  line-height: 1.5;
}
.step-section .field:last-child { margin-bottom: 0; }
.step-section .field-row { gap: 18px; }
.pill-toggle--lg button { padding: 13px 18px; font-size: 0.88rem; }
.area-pick-grid { margin-bottom: 4px; }
.area-pick-grid.has-error .area-pick-card { border-color: rgba(217, 48, 37, 0.45); }
.area-pick-card {
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding: 16px 14px;
  min-height: 88px;
}
.area-pick-card .opt-check { top: 10px; right: 10px; }
.area-pick-range {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--nixon-slate);
  letter-spacing: -0.02em;
  line-height: 1.25;
  padding-right: 28px;
}
.area-pick-card.selected .area-pick-range { color: var(--nixon-slate); }
.area-pick-hint {
  margin-top: 6px;
  font-size: 0.76rem;
  color: var(--slate-2);
  line-height: 1.4;
}

/* Generic field */
.field { margin-bottom: 18px; }
.field label.fl {
  display: block;
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--nixon-slate);
  margin-bottom: 6px;
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.control {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border-page);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--nixon-slate);
  background: var(--white);
  outline: none;
  transition: var(--transition);
}
.control:focus { border-color: var(--tangerine); box-shadow: 0 0 0 3px rgba(255,145,0,0.12); }
.control.error { border-color: var(--danger); box-shadow: 0 0 0 3px rgba(217,48,37,0.12); }
select.control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23333F48' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: pointer;
}
.err-msg {
  display: block;
  font-size: 0.78rem;
  color: var(--danger);
  margin-top: 6px;
  font-weight: 600;
}

.field--error .fl {
  color: var(--danger);
}

.field--error .pill-toggle button {
  border-color: rgba(217, 48, 37, 0.35);
}

.consent--error {
  border-color: rgba(217, 48, 37, 0.45);
  background: #fff8f7;
}

.sys-grid.has-error .sys-card {
  border-color: rgba(217, 48, 37, 0.35);
}

.slot-grid.has-error .slot-btn:not(.active) {
  border-color: rgba(217, 48, 37, 0.35);
}

.step-error-banner {
  display: none;
  margin-bottom: 12px;
  padding: 12px 14px;
  background: #fff5f4;
  border: 1px solid #f5c4bf;
  border-left: 4px solid var(--danger);
  border-radius: 10px;
  color: var(--danger);
}

.step-error-banner-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.35;
}

.step-error-banner-title .fa-solid {
  flex-shrink: 0;
  font-size: 0.95rem;
}

.step-error-banner-list {
  margin: 8px 0 0;
  padding: 0 0 0 18px;
  font-size: 0.82rem;
  line-height: 1.45;
  font-weight: 600;
}

.step-error-banner-list li + li {
  margin-top: 4px;
}

.stage-nav-wrap {
  margin-top: 26px;
  padding-top: 26px;
  border-top: 1px solid var(--border-soft);
}

/* Storey style toggle */
.pill-toggle { display: inline-flex; gap: 8px; flex-wrap: wrap; }
.pill-toggle button {
  padding: 11px 16px;
  border-radius: 8px;
  background: var(--off-white);
  color: var(--slate-2);
  font-family: var(--font-head);
  font-size: 0.84rem;
  font-weight: 700;
  border: 1.5px solid transparent;
  transition: var(--transition);
}
.pill-toggle button:hover { color: var(--nixon-slate); border-color: rgba(255,145,0,0.4); }
.pill-toggle button.active {
  background: rgba(255,145,0,0.1);
  color: var(--nixon-slate);
  border-color: var(--tangerine);
}

/* Add-on row */
.addon-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  border: 1.5px solid var(--border-page);
  border-radius: 12px;
  background: var(--white);
  transition: var(--transition);
  position: relative;
  cursor: pointer;
}
.addon-card.selected {
  border-color: var(--tangerine);
  background: rgba(255,145,0,0.05);
  box-shadow: 0 0 0 2px rgba(255,145,0,0.15);
}
.addon-card.disabled {
  opacity: 0.55;
  pointer-events: none;
}
.addon-card.recommended {
  border-color: rgba(0,196,140,0.4);
  box-shadow: 0 0 0 2px rgba(0,196,140,0.1);
}
.addon-card .ac-toggle {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border: 1.5px solid var(--border-page);
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  transition: var(--transition);
  margin-top: 2px;
  cursor: pointer;
}
.addon-card.selected .ac-toggle { background: var(--tangerine); border-color: var(--tangerine); color: var(--white); }
.addon-card .ac-body { flex: 1; min-width: 0; }
.addon-card .ac-head { display: flex; align-items: baseline; flex-wrap: wrap; gap: 8px; }
.addon-card .ac-title { font-family: var(--font-head); font-size: 1rem; font-weight: 800; color: var(--nixon-slate); }
.addon-card .ac-price {
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--nixon-slate);
  margin-left: auto;
  white-space: nowrap;
}
.addon-card .ac-desc { color: var(--slate-2); font-size: 0.86rem; line-height: 1.55; margin-top: 4px; }
.addon-card .ac-bullets {
  list-style: none;
  margin-top: 10px;
  display: grid;
  gap: 6px;
}
.addon-card .ac-bullets li {
  font-size: 0.82rem;
  color: var(--slate-2);
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.addon-card .ac-bullets li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--tangerine);
  flex-shrink: 0;
  font-size: 0.7rem;
  margin-top: 4px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  border-radius: 20px;
  font-family: var(--font-head);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.badge.rec { background: rgba(0,168,122,0.12); color: var(--green); }
.badge.coast { background: rgba(0,118,255,0.12); color: #0064d9; }
.badge.warn { background: rgba(217,48,37,0.12); color: var(--danger); }
.badge.tan { background: rgba(255,145,0,0.14); color: var(--tangerine); }

/* Finance */
.fin-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-items: stretch; }
.fin-option-wrap { position: relative; }
.fin-option {
  padding: 22px;
  border: 1.5px solid var(--border-page);
  border-radius: 14px;
  background: var(--white);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: left;
}
.fin-option .fin-sub { flex: 1 1 auto; }
.fin-option .fin-stat { margin-top: auto; padding-top: 4px; }
.fin-option:hover { border-color: rgba(255,145,0,0.5); }
.fin-option.selected { border-color: var(--tangerine); background: rgba(255,145,0,0.05); box-shadow: 0 0 0 3px rgba(255,145,0,0.18); }
.fin-option .fin-head { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.fin-option .fin-title { font-family: var(--font-head); font-weight: 800; color: var(--nixon-slate); font-size: 1.05rem; }
.fin-option .fin-sub { font-size: 0.85rem; color: var(--slate-2); margin-bottom: 10px; }
.brighte-logo {
  background: var(--brighte);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 0.78rem;
  letter-spacing: -0.02em;
  padding: 4px 10px;
  border-radius: 4px;
}
.brighte-logo.brighte-logo--modal {
  font-size: 0.95rem;
  padding: 10px 16px;
  border-radius: 8px;
  align-self: flex-start;
}
.fin-option[role="button"] { cursor: pointer; }
.fin-option[role="button"]:focus-visible {
  outline: 2px solid var(--brighte);
  outline-offset: 2px;
}
.btn-fin-more {
  padding: 7px 10px;
  min-height: 32px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: none;
  border-radius: 999px;
  border: 1.5px solid var(--border-page);
  background: var(--white);
  color: var(--brighte);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-fin-more:hover {
  border-color: var(--brighte);
  background: rgba(0, 196, 140, 0.08);
  color: var(--nixon-slate);
}
a.btn-fin-more {
  text-decoration: none;
}
.btn-fin-more.floating {
  position: absolute;
  top: -10px;
  right: 8px;
  transform: translateY(-100%);
  z-index: 2;
  box-shadow: 0 6px 16px rgba(51,63,72,0.14);
}
.fin-detail {
  margin-top: 16px;
  padding: 18px;
  background: var(--surface-warm);
  border-radius: 12px;
  border: 1px solid rgba(255,145,0,0.25);
}
.fin-detail.green { background: rgba(0,196,140,0.06); border-color: rgba(0,196,140,0.3); }
.fin-detail-head {
  display: flex;
  align-items: center;
  gap: 12px;
  row-gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.fin-detail-title { font-family: var(--font-head); font-weight: 800; color: var(--nixon-slate); }
.fin-detail-more { margin-left: auto; }
.fin-est-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}
.fin-est-grid > * { min-width: 0; }
.fin-est-card {
  background: var(--white);
  border-radius: 12px;
  padding: 18px 20px;
  border: 1px solid rgba(0,196,140,0.25);
}
.fin-est-label {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--slate-2);
  font-weight: 700;
  margin-bottom: 6px;
}
.fin-est-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 14px;
  font-size: 0.85rem;
}
.fin-est-stats .fes-k { color: var(--slate-2); }
.fin-est-stats .fes-v { font-family: var(--font-head); font-weight: 800; color: var(--nixon-slate); }
.fin-est-fine {
  font-size: 0.74rem;
  color: var(--slate-2);
  margin-top: 12px;
  line-height: 1.5;
}
.fin-monthly {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--nixon-slate);
  letter-spacing: -0.03em;
  line-height: 1;
}
.fin-monthly .unit { font-size: 0.9rem; font-weight: 700; color: var(--slate-2); margin-left: 6px; }
.term-buttons { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.term-buttons button {
  padding: 9px 14px;
  border-radius: 30px;
  background: var(--white);
  color: var(--slate-2);
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  border: 1.5px solid var(--border-page);
  transition: var(--transition);
}
.term-buttons button:hover { border-color: rgba(255,145,0,0.5); color: var(--nixon-slate); }
.term-buttons button.active { background: var(--nixon-slate); border-color: var(--nixon-slate); color: var(--white); }

.slider-row { display: flex; align-items: center; gap: 14px; margin-top: 10px; }
.slider-row input[type="range"] { flex: 1; accent-color: var(--tangerine); }
.slider-row .sv {
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--nixon-slate);
  min-width: 5.5rem;
  text-align: right;
}

/* Calendar */
.cal-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-bottom: 22px;
}
.cal-day {
  padding: 12px 8px;
  border: 1.5px solid var(--border-page);
  border-radius: 10px;
  background: var(--white);
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}
.cal-day:hover { border-color: rgba(255,145,0,0.55); }
.cal-day.active { background: var(--nixon-slate); border-color: var(--nixon-slate); color: var(--white); }
.cal-day .cd-w { font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.12em; opacity: 0.7; font-weight: 700; }
.cal-day .cd-d { font-family: var(--font-head); font-size: 1.4rem; font-weight: 900; line-height: 1; margin: 4px 0; }
.cal-day .cd-m { font-size: 0.7rem; opacity: 0.7; font-weight: 600; }

.slot-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.slot-btn {
  padding: 14px 12px;
  border: 1.5px solid var(--border-page);
  border-radius: 10px;
  background: var(--white);
  color: var(--nixon-slate);
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  transition: var(--transition);
  line-height: 1.35;
}
.slot-btn:hover:not(:disabled) { border-color: rgba(255,145,0,0.55); }
.slot-btn.active { background: var(--tangerine); border-color: var(--tangerine); color: var(--white); }
.slot-btn.full { opacity: 0.35; cursor: not-allowed; text-decoration: line-through; }
.slot-btn:disabled,
.slot-btn.await-date {
  background: var(--off-white);
  border-color: var(--border-soft);
  color: var(--slate-2);
  opacity: 0.55;
  cursor: not-allowed;
  box-shadow: none;
}
.slot-btn:disabled:hover,
.slot-btn.await-date:hover { border-color: var(--border-soft); }
.slot-grid--locked { opacity: 0.92; }
.slot-pick-hint {
  font-size: 0.8rem;
  color: var(--slate-2);
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.slot-pick-hint .fa-regular { color: var(--tangerine); opacity: 0.85; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 8px;
  transition: var(--transition);
  border: 1.5px solid transparent;
  min-height: 50px;
  cursor: pointer;
}
.btn-primary { background: var(--tangerine); color: var(--white); }
.btn-primary:hover:not(:disabled) { background: var(--tangerine-hover); transform: translateY(-1px); box-shadow: 0 8px 22px rgba(255,145,0,0.32); }
.btn-primary:disabled { opacity: 0.55; cursor: not-allowed; }
.btn-ghost { background: var(--white); color: var(--nixon-slate); border-color: var(--border-page); }
.btn-ghost:hover { border-color: var(--nixon-slate); }
.btn-link { padding: 0; min-height: auto; background: none; color: var(--tangerine); text-transform: none; letter-spacing: 0; font-weight: 700; }
.btn-link:hover { text-decoration: underline; }

/* Stage nav */
.stage-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  row-gap: 10px;
}
.stage-nav .nav-spacer { flex: 1; min-width: 8px; }

/* Sidebar summary */
.qb-summary {
  position: sticky;
  top: 96px;
  align-self: start;
  background: var(--white);
  border: 1px solid var(--border-page);
  border-radius: 16px;
  box-shadow: 0 12px 36px rgba(51,63,72,0.07);
  overflow: hidden;
}
.qb-summary.hidden { display: none; }
.qb-layout.show-summary .qb-summary {
  animation: summarySlideIn 0.42s ease both;
  transform-origin: left center;
}
.qs-head {
  padding: 18px 20px 14px;
  background: var(--nixon-slate);
  color: var(--white);
}
.qs-head .label { color: var(--tangerine); }
.qs-head h3 { color: var(--white); margin-top: 4px; font-size: 1.05rem; }
.qs-body { padding: 18px 20px 8px; }
.qs-gst-note {
  margin: 0 0 12px;
  font-size: 0.78rem;
  color: var(--slate-2);
  line-height: 1.45;
}
.qs-gst-note strong { color: var(--nixon-slate); font-weight: 700; }
.qs-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--border-soft);
  font-size: 0.88rem;
}
.qs-row:last-child { border-bottom: none; }
.qs-row .qs-k { color: var(--slate-2); font-weight: 500; }
.qs-row .qs-v { color: var(--nixon-slate); font-weight: 700; text-align: right; }
.qs-row .qs-v small { display: block; font-weight: 500; color: var(--slate-2); font-size: 0.74rem; margin-top: 2px; }
.qs-row .muted { color: var(--slate-2); font-style: italic; font-weight: 500; }
.qs-total {
  padding: 18px 20px;
  background: var(--surface-warm);
  border-top: 2px solid rgba(255,145,0,0.4);
}
.qs-total .qs-tot-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.qs-total .qt-label {
  font-family: var(--font-head);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate-2);
  font-weight: 700;
}
.qs-total .qt-amt {
  font-family: var(--font-head);
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--nixon-slate);
  letter-spacing: -0.03em;
}
.qs-total .qt-fin {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px dashed rgba(255,145,0,0.4);
  font-size: 0.82rem;
  color: var(--slate-2);
}
.qs-total .qt-fin strong { color: var(--brighte); font-weight: 800; }

.qs-hint {
  margin: 0 18px 16px;
  padding: 10px 12px;
  background: rgba(0,196,140,0.08);
  border: 1px solid rgba(0,196,140,0.2);
  border-radius: 8px;
  font-size: 0.78rem;
  color: var(--green);
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

/* Review */
.review-card {
  background: var(--white);
  border: 1.5px solid var(--border-page);
  border-radius: 12px;
  padding: 18px 20px;
  margin-bottom: 14px;
}
.review-card .rev-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.review-card .rev-head h3 { flex: 1; font-size: 1rem; }
.review-card .rev-edit {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--tangerine);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.review-card .rev-list { display: grid; gap: 8px; }
.review-card .rev-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.92rem;
}
.review-card .rev-item .rl-v { font-weight: 700; color: var(--nixon-slate); white-space: nowrap; }

/* Confirmation */
.confirm-wrap { text-align: center; padding: 30px 16px; }
.confirm-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  background: var(--tangerine);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(255,145,0,0.35);
}
.confirm-wrap h2 { color: var(--nixon-slate); margin-bottom: 10px; }
.confirm-wrap p { max-width: 50ch; margin: 0 auto 20px; color: var(--slate-2); }

/* Misc */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 14px;
  font-size: 0.86rem;
}
.compare-table th, .compare-table td {
  padding: 10px 12px;
  text-align: left;
  border-bottom: 1px solid var(--border-soft);
}
.compare-table th { font-family: var(--font-head); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--slate-2); font-weight: 700; }
.compare-table td.center, .compare-table th.center { text-align: center; }
.compare-table .check { color: var(--tangerine); font-weight: 900; }
.compare-table .dash { color: var(--slate-2); opacity: 0.5; }

.info-band {
  display: flex;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(255,145,0,0.06);
  border: 1px solid rgba(255,145,0,0.22);
  border-radius: 10px;
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--text-body);
  line-height: 1.55;
}
.info-band strong { color: var(--nixon-slate); }
.info-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--tangerine);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

.savings-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,168,122,0.12);
  color: var(--green);
  padding: 5px 12px;
  border-radius: 20px;
  font-family: var(--font-head);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.compare-scroll { width: 100%; }

/* Mobile — desktop styles above are unchanged */
@media (max-width: 980px) {
  .modal-root {
    padding-bottom: max(16px, env(safe-area-inset-bottom, 0px));
  }
  .modal-panel {
    max-height: min(calc(100dvh - 104px), calc(100vh - 104px), 720px);
  }
  .modal-panel--media {
    max-height: calc(100dvh - 100px);
    max-height: calc(100vh - 100px);
  }
  .modal-root--media {
    padding-bottom: max(10px, env(safe-area-inset-bottom, 0px));
  }
  .modal-panel { margin: 0 4px; }
  a.modal-pdf-btn { min-height: 48px; }

  .qb-top-inner { padding: 10px 14px; gap: 10px; min-height: 56px; }
  .qb-logo img { height: 32px; }
  .qb-progress { padding: 10px 14px 6px; }
  .qb-progress-mobile { display: block; }
  .qb-progress-desktop { display: none; }

  .qb-layout {
    grid-template-columns: 1fr;
    padding: 14px 14px 40px;
    gap: 20px;
  }
  .qb-layout.pre-systems { grid-template-columns: 1fr; }
  .qb-stage { padding: 20px 16px; min-height: 0; border-radius: 14px; }
  .qb-stage .lead { font-size: 0.94rem; margin-bottom: 20px; }

  .pill-toggle { display: flex; flex-wrap: wrap; width: 100%; }
  .pill-toggle button { flex: 1 1 calc(50% - 4px); min-height: 44px; text-align: center; }
  .pill-toggle--lg button { padding: 12px 14px; font-size: 0.84rem; }
  .control { font-size: 16px; }
  .control-suffix-wrap { max-width: none; }

  .capacity-result-body { padding: 18px 16px 16px; }
  .match-banner { flex-wrap: wrap; font-size: 0.86rem; }

  .compare-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 8px -4px 0;
    padding-bottom: 6px;
  }
  .compare-table { min-width: 520px; }

  .addon-card { padding: 16px 48px 16px 16px; }
  .addon-card .ac-toggle {
    position: absolute; top: 14px; right: 14px;
    width: 32px; height: 32px; margin-top: 0;
  }
  .addon-card .ac-head { flex-direction: column; align-items: flex-start; }
  .addon-card .ac-price { margin-left: 0; white-space: normal; }
  .addon-card .ac-body-wrap { flex-direction: column; gap: 10px; }
  .btn-addon-more { max-width: none; min-height: 44px; }

  /* height:100% + the in-flow More info button makes the card overflow its wrap */
  .fin-option { padding: 18px 16px; height: auto; }
  .fin-option .fin-head { flex-wrap: wrap; }
  .btn-fin-more.floating {
    position: static; transform: none; margin: 0 0 10px; align-self: flex-start;
  }
  .term-buttons { width: 100%; }
  .term-buttons button { min-height: 44px; flex: 1 1 calc(50% - 4px); }

  .fin-detail { padding: 16px 14px; }
  .fin-detail-head { gap: 10px; }
  .fin-detail-more { margin-left: 0; }
  .fin-est-grid { grid-template-columns: 1fr; gap: 14px; }
  .fin-est-card { padding: 16px; }
  .fin-monthly { font-size: 1.9rem; }
  .slider-row { flex-wrap: nowrap; }
  .slider-row input[type="range"] { min-width: 0; }

  .review-card .rev-item { flex-direction: column; align-items: flex-start; gap: 2px; }
  .review-card .rev-item .rl-v { white-space: normal; }

  .slot-grid { grid-template-columns: 1fr; }
  .slot-btn { min-height: 48px; }
  .cal-day { min-height: 64px; }

  .stage-nav-wrap {
    margin-top: 20px;
    padding-top: 20px;
  }

  .step-error-banner {
    display: block;
    padding: 14px 16px;
    margin-bottom: 14px;
  }

  .step-error-banner-title {
    font-size: 0.92rem;
  }

  .step-error-banner-list {
    font-size: 0.86rem;
    margin-top: 10px;
  }

  .err-msg {
    font-size: 0.86rem;
    margin-top: 8px;
    padding: 8px 10px;
    background: #fff5f4;
    border-radius: 8px;
    border: 1px solid #f5c4bf;
  }

  .stage-nav { flex-direction: column; align-items: stretch; gap: 10px; }
  .stage-nav .nav-spacer { display: none; }
  .stage-nav .btn { width: 100%; justify-content: center; min-height: 48px; }

  .confirm-card {
    display: block; width: 100%; max-width: 100%; min-width: 0; box-sizing: border-box;
  }
  .confirm-actions {
    display: flex; flex-direction: column; align-items: stretch;
    width: 100%; max-width: 320px; margin-left: auto; margin-right: auto;
  }
  .confirm-actions .btn { width: 100%; min-height: 48px; justify-content: center; }

  .step-section { padding: 18px 16px 16px; }
  .step-sections { gap: 16px; }
  .section-head { gap: 10px; margin-bottom: 14px; }
  .section-num { width: 26px; height: 26px; font-size: 0.74rem; }
  .section-title { font-size: 0.98rem; }
  .qb-summary {
    position: static;
    top: auto;
    transform: none;
    max-height: none;
    overflow: visible;
    border-radius: 16px;
    box-shadow: 0 12px 36px rgba(51, 63, 72, 0.07);
  }
  .qb-summary .qs-head {
    cursor: default;
    min-height: 0;
    padding-right: 20px;
  }
  .qb-summary .qs-head::after {
    display: none;
  }
  .qb-mobile-total {
    display: none;
  }
  .qb-top-meta { display: none; }
  .opt-grid.cols-3 { grid-template-columns: 1fr; }
  .opt-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .sys-card { min-height: 0; }
  .fin-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .cal-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 540px) {
  .opt-grid.cols-2 { grid-template-columns: 1fr; }
  .opt-grid.cols-4,
  .area-pick-grid.cols-4 { grid-template-columns: 1fr; }
  .area-pick-card { min-height: 72px; }
  .cal-grid { grid-template-columns: repeat(2, 1fr); }
  .qb-layout { padding-left: 12px; padding-right: 12px; }
  .qb-stage { padding: 18px 14px; }
}

@media (max-width: 980px) and (hover: none) {
  .opt-card:hover { transform: none; box-shadow: none; }
  .btn-primary:hover:not(:disabled) { transform: none; }
}

/* Tiny anim */
@keyframes fadeUp { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.fade-up { animation: fadeUp 0.3s ease both; }
@keyframes pulseDot {
  0%, 100% { transform: scale(0.86); opacity: 0.45; }
  50% { transform: scale(1); opacity: 1; }
}
@keyframes cardIn {
  from { opacity: 0; transform: translateY(10px) scale(0.985); }
  to { opacity: 1; transform: none; }
}
@keyframes layoutExpand {
  from { transform: scale(0.995); opacity: 0.9; }
  to { transform: none; opacity: 1; }
}
@keyframes summarySlideIn {
  from { opacity: 0; transform: translateX(22px) scale(0.98); }
  to { opacity: 1; transform: translateX(0) scale(1); }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
.systems-loading {
  border: 1px solid var(--border-page);
  border-radius: 14px;
  padding: 24px;
  background: linear-gradient(160deg, #fffdf9 0%, #ffffff 100%);
  box-shadow: 0 10px 30px rgba(51,63,72,0.08);
  animation: cardIn 0.25s ease both;
}
.systems-loading-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
}
.systems-loading-spinner {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 3px solid rgba(255,145,0,0.22);
  border-top-color: var(--tangerine);
  animation: spin 0.8s linear infinite;
  flex-shrink: 0;
}
.systems-loading h2 { margin-bottom: 8px; font-size: clamp(1.3rem, 2.4vw, 1.7rem); }
.systems-loading p { margin-bottom: 14px; color: var(--slate-2); }
.systems-loading-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
}
.systems-loading-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  padding: 10px 12px;
  color: var(--slate-2);
  background: var(--white);
  transition: var(--transition);
}
.systems-loading-list li.active {
  border-color: rgba(255,145,0,0.45);
  background: rgba(255,145,0,0.08);
  color: var(--nixon-slate);
  font-weight: 700;
}
.systems-loading-list li.done {
  border-color: rgba(0,196,140,0.35);
  background: rgba(0,196,140,0.08);
  color: var(--green);
}
.systems-loading-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--border-page);
  flex-shrink: 0;
}
.systems-loading-list li.active .systems-loading-dot {
  background: var(--tangerine);
  animation: pulseDot 0.85s ease-in-out infinite;
}
.systems-loading-list li.done .systems-loading-dot { background: var(--green); }

/* ───────────────── Bespoke refinements ───────────────── */
.label .fa-solid, .label .fa-regular {
  font-size: 0.78rem;
  color: var(--tangerine);
  margin-right: 6px;
}
.req { color: var(--tangerine); margin-left: 2px; }

/* Header polish */
.qb-help { gap: 8px; }
.qb-help .fa-headset { font-size: 0.95rem; }
.qb-stepcount {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-head); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--slate-2); padding: 6px 12px;
  border: 1px solid var(--border-soft); border-radius: 30px;
}
.qb-stepcount .fa-regular { color: var(--tangerine); font-size: 0.7rem; }
.qb-mobile-total .mt-label {
  font-family: var(--font-head); font-size: 0.62rem;
  text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--slate-2); font-weight: 700;
}

/* Errors */
.err-msg { display: inline-flex; align-items: center; gap: 6px; }
.err-msg .fa-solid { font-size: 0.78rem; }

/* Field hint */
.control-suffix-wrap {
  display: flex;
  align-items: stretch;
  max-width: 280px;
}
.control-suffix-wrap .control {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  flex: 1;
  min-width: 0;
}
.control-suffix {
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--slate-2);
  background: var(--surface-warm);
  border: 1px solid var(--border-page);
  border-left: none;
  border-radius: 0 10px 10px 0;
}
.field-hint {
  display: inline-flex; gap: 6px; align-items: flex-start;
  font-size: 0.76rem; color: var(--slate-2); margin-top: 8px; line-height: 1.5;
}
.field-hint .fa-circle-info { color: var(--tangerine); margin-top: 2px; }
.field label.fl .fa-solid, .field label.fl .fa-regular {
  color: var(--tangerine); margin-right: 6px; font-size: 0.72rem;
}

/* Pill toggle icons */
.pill-toggle button .fa-solid { margin-right: 6px; font-size: 0.78rem; opacity: 0.85; }

/* Upload zone */
.upload-zone {
  position: relative;
  border: 2px dashed var(--border-page);
  border-radius: 12px;
  padding: 26px 20px;
  text-align: center;
  cursor: pointer;
  background: var(--off-white);
  transition: var(--transition);
}
.upload-zone:hover { border-color: var(--tangerine); background: rgba(255,145,0,0.04); }
.upload-zone.has-file { background: rgba(0,168,122,0.06); border-color: rgba(0,168,122,0.4); border-style: solid; }
.upload-zone .uz-icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--white); border: 1px solid var(--border-soft);
  margin: 0 auto 10px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--tangerine); font-size: 1.3rem;
}
.upload-zone .uz-title { font-family: var(--font-head); font-weight: 700; color: var(--nixon-slate); margin-bottom: 4px; }
.upload-zone .uz-hint { font-size: 0.78rem; color: var(--slate-2); }
.upload-zone .uz-loaded {
  display: inline-flex; align-items: center; gap: 14px; text-align: left;
}
.upload-zone .uz-loaded .fa-file-circle-check {
  font-size: 1.8rem; color: var(--green);
}
.upload-zone .uz-name { font-family: var(--font-head); font-weight: 700; color: var(--nixon-slate); }

/* Match banner step 2 */
.match-banner {
  display: flex; gap: 10px; align-items: center;
  background: linear-gradient(90deg, rgba(255,145,0,0.12) 0%, rgba(255,145,0,0.02) 100%);
  border: 1px solid rgba(255,145,0,0.3);
  border-left: 4px solid var(--tangerine);
  padding: 12px 16px;
  border-radius: 10px;
  margin-bottom: 18px;
  color: var(--nixon-slate);
  font-size: 0.9rem;
}
.match-banner .fa-check-double { color: var(--tangerine); }

/* Step 2 — prominent capacity from Step 1 profile */
.capacity-result {
  margin-bottom: 22px;
  border-radius: 14px;
  border: 1.5px solid rgba(255,145,0,0.38);
  background: linear-gradient(145deg, rgba(255,145,0,0.16) 0%, rgba(255,255,255,0.98) 42%, rgba(51,63,72,0.035) 100%);
  box-shadow: 0 12px 32px rgba(51,63,72,0.09);
  overflow: hidden;
}
.capacity-result-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding: 11px 18px;
  background: rgba(51,63,72,0.07);
  border-bottom: 1px solid rgba(255,145,0,0.22);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--nixon-slate);
}
.capacity-result-head-main {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.capacity-result-head .fa-solid {
  color: var(--tangerine);
  font-size: 1rem;
  flex-shrink: 0;
}
.capacity-result-head-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  flex-shrink: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.btn-capacity-override {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1;
  color: var(--slate-2);
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  padding: 7px 11px;
  cursor: pointer;
  text-transform: none;
  letter-spacing: 0;
  transition: border-color var(--transition), color var(--transition);
  white-space: nowrap;
}
.btn-capacity-override .fa-solid {
  color: var(--tangerine);
  font-size: 0.7rem;
  opacity: 0.85;
  line-height: 1;
  flex-shrink: 0;
}
.btn-capacity-override:hover {
  border-color: rgba(255,145,0,0.45);
  color: var(--nixon-slate);
}
.capacity-result-switch {
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 600;
  font-size: 0.72rem;
  color: var(--slate-2);
}
.capacity-result-switch-label {
  white-space: nowrap;
  opacity: 0.85;
}
.capacity-result-switch select {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--nixon-slate);
  padding: 6px 30px 6px 10px;
  border: 1px solid var(--border-page);
  border-radius: 8px;
  background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%234a5560' d='M1 1l4 4 4-4'/%3E%3C/svg%3E") no-repeat right 10px center;
  background-size: 10px 6px;
  appearance: none;
  cursor: pointer;
  max-width: 200px;
  transition: border-color var(--transition);
}
.capacity-result-switch select:hover,
.capacity-result-switch select:focus {
  border-color: rgba(255,145,0,0.55);
  outline: none;
}
.capacity-result-selected {
  margin: 0 0 10px;
  font-size: 0.82rem;
  color: var(--slate-2);
}
.capacity-result-selected strong {
  color: var(--nixon-slate);
}
.capacity-result-body {
  padding: 22px 22px 20px;
}
.capacity-result-kw {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--nixon-slate);
  margin-bottom: 8px;
}
.capacity-result-range {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--slate-2);
  margin-bottom: 12px;
}
.capacity-result-note {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--slate-2);
  max-width: 54ch;
}
.capacity-result-foot {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed rgba(255,145,0,0.35);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--nixon-slate);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.capacity-result-foot .fa-solid {
  color: var(--tangerine);
  margin-top: 2px;
  flex-shrink: 0;
}

/* System cards — footer block pinned so prices & CTAs align across columns */
.sys-grid { gap: 16px; align-items: stretch; }
.sys-grid > .sys-card { height: 100%; }
.sys-card {
  padding: 22px 20px 20px;
  min-height: 400px;
  box-sizing: border-box;
}
.sys-card .opt-tag { color: var(--tangerine); }
.sys-card .sys-brand { font-size: 1.18rem; }
.sys-spec {
  font-family: var(--font-head); font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--slate-2); margin-top: 2px;
}
.sys-tag {
  font-size: 0.86rem; line-height: 1.55; color: var(--slate-2);
  margin: 10px 0 12px;
}
.sys-card-main {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
}
.sys-bullets { list-style: none; display: grid; gap: 7px; margin: 0; flex: 1 1 auto; min-height: 0; align-content: start; }
.sys-bullets li {
  display: flex; gap: 8px; align-items: flex-start;
  font-size: 0.82rem; color: var(--slate-2); line-height: 1.45;
}
.sys-bullets li .fa-check { color: var(--tangerine); font-size: 0.72rem; margin-top: 3px; }
.sys-bestfor {
  display: flex; gap: 8px; align-items: flex-start;
  padding: 8px 10px; background: var(--off-white);
  border-radius: 8px; font-size: 0.76rem; color: var(--slate-2);
  line-height: 1.45;
  min-height: 3.75rem;
}
.sys-bestfor .fa-bullseye { color: var(--tangerine); margin-top: 2px; flex-shrink: 0; }
.sys-card-footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--border-soft);
  flex-shrink: 0;
}
.sys-price { padding: 0; margin: 0; border: none; }
.sys-price .sp-amt {
  font-family: var(--font-head); font-size: 1.15rem; font-weight: 900;
  color: var(--nixon-slate); letter-spacing: -0.02em; display: block;
}
.sys-price .sp-sub { font-size: 0.7rem; color: var(--slate-2); font-weight: 600; letter-spacing: 0.04em; }
.sys-tick { top: 14px !important; right: 14px !important; }
.opt-card .opt-pill .fa-star { font-size: 0.6rem; }

.sys-logo-wrap {
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 4px;
}
.sys-logo-wrap img {
  max-height: 40px;
  max-width: 156px;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: left center;
}
.btn-sys-more {
  margin-top: 0;
  width: 100%;
  padding: 10px 14px;
  min-height: 42px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
  border-radius: 10px;
  border: 1.5px solid var(--border-page);
  background: var(--white);
  color: var(--tangerine);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: var(--transition);
}
.btn-sys-more:hover {
  border-color: var(--tangerine);
  background: rgba(255,145,0,0.06);
  color: var(--nixon-slate);
}
.btn-addon-more {
  margin-top: 12px;
  width: 100%;
  max-width: 220px;
  padding: 9px 14px;
  min-height: 40px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: 10px;
  border: 1.5px solid var(--border-page);
  background: var(--white);
  color: var(--tangerine);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: var(--transition);
}
.btn-addon-more:hover {
  border-color: var(--tangerine);
  background: rgba(255,145,0,0.06);
  color: var(--nixon-slate);
}
.modal-pdf-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
  padding-bottom: 2px;
}
.opt-card.sys-card:focus-visible {
  outline: 2px solid var(--tangerine);
  outline-offset: 2px;
}

.modal-root {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: max(16px, env(safe-area-inset-top, 0px)) 16px max(16px, env(safe-area-inset-bottom, 0px));
  box-sizing: border-box;
  overflow: hidden;
  overscroll-behavior: contain;
}
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(51, 63, 72, 0.55);
  backdrop-filter: blur(3px);
}
.modal-panel {
  position: relative;
  width: 100%;
  max-width: 520px;
  max-height: min(calc(100dvh - 32px), calc(100vh - 32px), 720px);
  min-height: 0;
  flex-shrink: 1;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  background: var(--white);
  border-radius: 16px;
  padding: 26px 22px 24px;
  box-shadow: 0 24px 60px rgba(51,63,72,0.28);
  border: 1px solid var(--border-soft);
  z-index: 1;
}
.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border: none;
  background: var(--off-white);
  border-radius: 10px;
  cursor: pointer;
  color: var(--nixon-slate);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-size: 1.1rem;
}
.modal-close:hover { background: var(--border-soft); }
.modal-brand {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 14px;
  padding-right: 44px;
}
.modal-logo-img {
  max-height: 48px;
  max-width: 200px;
  object-fit: contain;
  object-position: left center;
}
.modal-brand h2 {
  font-family: var(--font-head);
  font-size: 1.28rem;
  font-weight: 800;
  color: var(--nixon-slate);
  margin: 0;
  letter-spacing: -0.02em;
}
.modal-text {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--slate-2);
  margin: 0 0 12px;
}
.modal-highlights {
  list-style: none;
  margin: 4px 0 18px;
  padding: 0;
  display: grid;
  gap: 8px;
}
.modal-highlights li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.84rem;
  color: var(--slate-2);
  line-height: 1.45;
}
.modal-highlights .fa-check {
  color: var(--tangerine);
  margin-top: 3px;
  flex-shrink: 0;
  font-size: 0.72rem;
}
a.modal-pdf-btn {
  width: 100%;
  text-decoration: none;
  box-sizing: border-box;
  margin-top: 6px;
  padding: 12px 16px;
  min-height: 44px;
  font-size: 0.78rem;
  line-height: 1.3;
  white-space: normal;
  text-align: center;
}
a.modal-pdf-btn.brighte-cta {
  background: var(--brighte);
  color: var(--white);
}
a.modal-pdf-btn.brighte-cta:hover {
  background: #00b37a;
  box-shadow: 0 8px 22px rgba(0, 196, 140, 0.35);
  transform: translateY(-1px);
}
.modal-root--media {
  padding: max(10px, env(safe-area-inset-top, 0px)) 14px max(10px, env(safe-area-inset-bottom, 0px));
}
.modal-panel--media {
  max-width: 580px;
  max-height: calc(100dvh - 20px);
  max-height: calc(100vh - 20px);
}
.modal-panel--media .modal-brand {
  margin-bottom: 10px;
  padding-right: 40px;
}
.modal-panel--media .modal-brand h2 {
  font-size: 1.2rem;
}
.modal-panel--media .modal-text {
  font-size: 0.86rem;
  line-height: 1.55;
  margin-bottom: 8px;
}
.modal-panel--media .modal-highlights {
  margin: 0 0 12px;
  gap: 6px;
}
.modal-panel--media .modal-highlights li {
  font-size: 0.82rem;
  line-height: 1.4;
}
.modal-panel--media a.modal-pdf-btn {
  margin-top: 4px;
  padding: 10px 14px;
  min-height: 40px;
}
.modal-panel--media .modal-pdf-stack {
  gap: 8px;
}
.modal-video-block {
  margin: 0 0 12px;
}
.modal-video-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--slate-2);
  margin-bottom: 8px;
}
.modal-video-label .fa-solid {
  color: var(--tangerine);
  font-size: 0.85rem;
}
.modal-video-wrap {
  border-radius: 12px;
  overflow: hidden;
  background: #1a2329;
  border: 1px solid var(--border-soft);
  box-shadow: 0 10px 28px rgba(51,63,72,0.14);
}
.modal-video-wrap video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #0d1216;
}
.modal-video-caption {
  font-size: 0.78rem;
  color: var(--slate-2);
  margin: 8px 0 0;
  line-height: 1.45;
}

/* Compare toggle */
.compare-toggle {
  margin-top: 18px;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.86rem;
}
.compare-table th { font-size: 0.7rem; }
.compare-table .check { color: var(--tangerine); font-weight: 800; font-size: 0.78rem; }
.compare-table i.check { font-size: 0.85rem; }
.compare-table .dash { color: var(--slate-2); opacity: 0.45; }

/* Addon cards refresh */
.addon-list { display: grid; gap: 14px; }
.addon-card { padding: 18px 20px; gap: 16px; }
.addon-card .ac-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(255,145,0,0.1); color: var(--tangerine);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.addon-card.selected .ac-icon { background: var(--tangerine); color: var(--white); }
.addon-card .ac-stack {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.addon-card .ac-brand-strip {
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-soft);
}
.addon-card--partner.recommended .ac-brand-strip {
  border-bottom-color: rgba(0, 196, 140, 0.28);
}
.addon-card--partner.selected .ac-brand-strip {
  border-bottom-color: rgba(255, 145, 0, 0.35);
}
.addon-card .ac-brand-strip img {
  display: block;
  height: 52px;
  width: auto;
  max-width: min(260px, 75vw);
  object-fit: contain;
  object-position: left center;
}
.addon-card .ac-body-wrap {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.addon-card .ac-body-wrap .ac-body {
  flex: 1;
  min-width: 0;
}
.addon-card .ac-titles { display: flex; flex-direction: column; gap: 2px; }
.addon-card .ac-sub {
  font-size: 0.74rem; color: var(--slate-2); font-weight: 500;
}
.addon-card .ac-head { gap: 12px; align-items: flex-start; }
.addon-card .ac-price { font-size: 0.95rem; }
.addon-card .ac-price small { font-size: 0.7rem; color: var(--slate-2); margin-left: 3px; font-weight: 600; }
.addon-card .ac-badges { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 6px; }
.badge .fa-solid { font-size: 0.6rem; }
.info-band.success {
  background: rgba(0,168,122,0.08);
  border-color: rgba(0,168,122,0.25);
}
.info-band .info-icon .fa-solid { font-size: 0.85rem; }

/* Finance polish */
.fin-icon {
  width: 32px; height: 32px; border-radius: 8px;
  background: rgba(51,63,72,0.08); color: var(--nixon-slate);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.95rem;
}
.fin-option.selected .fin-icon { background: var(--tangerine); color: var(--white); }
.fin-stat {
  font-family: var(--font-head); font-weight: 700; color: var(--slate-2);
  font-size: 0.85rem;
  margin-top: 6px;
}
.fin-stat strong { color: var(--nixon-slate); font-weight: 900; }
.fin-stat.brighte strong { color: var(--brighte); }

/* Review */
.review-card .rev-head { gap: 12px; align-items: center; }
.review-card .rev-ico {
  width: 30px; height: 30px; border-radius: 8px;
  background: rgba(255,145,0,0.1); color: var(--tangerine);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
}
.review-card .rev-edit { display: inline-flex; align-items: center; gap: 5px; background: none; border: none; }
.review-card .rev-edit .fa-pen { font-size: 0.7rem; }
.review-card .rev-foot {
  font-size: 0.82rem; color: var(--slate-2); margin-top: 2px; line-height: 1.5;
}

/* Slot button sub */
.slot-btn .slot-sub {
  font-size: 0.66rem; font-weight: 600; margin-top: 2px;
  text-transform: uppercase; letter-spacing: 0.1em;
}

/* Consent */
.consent {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 14px 16px; background: var(--off-white);
  border: 1px solid var(--border-soft); border-radius: 10px;
  font-size: 0.86rem; color: var(--slate-2); cursor: pointer;
  line-height: 1.55;
}
.consent input[type="checkbox"] {
  margin-top: 2px; width: 18px; height: 18px;
  accent-color: var(--tangerine); flex-shrink: 0;
}

.captcha-band {
  margin-top: 14px;
  padding: 14px 16px;
  background: var(--off-white);
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  font-size: 0.86rem;
  color: var(--slate-2);
  line-height: 1.55;
}
.captcha-band .captcha-head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--nixon-slate);
  margin-bottom: 8px;
}
.captcha-band .captcha-head .req { color: var(--tangerine); }
.captcha-band .captcha-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--green);
}
.captcha-band .captcha-status.pending { color: var(--slate-2); }
.captcha-legal {
  margin-top: 10px;
  font-size: 0.72rem;
  color: var(--slate-2);
  line-height: 1.45;
}
.captcha-legal a { color: var(--nixon-slate); font-weight: 600; }

/* Hayden intro */
.hayden-intro {
  display: flex; gap: 18px; align-items: center;
  background: var(--surface-warm);
  border: 1px solid rgba(255,145,0,0.25);
  border-left: 4px solid var(--tangerine);
  border-radius: 12px;
  padding: 18px 20px;
  margin-bottom: 22px;
}
.hayden-avatar {
  width: 72px; height: 72px; border-radius: 50%;
  object-fit: cover; object-position: center top;
  border: 3px solid var(--white);
  box-shadow: 0 4px 14px rgba(51,63,72,0.18);
  flex-shrink: 0;
}
.hayden-fallback {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, var(--tangerine), var(--tangerine-hover));
  color: var(--white);
  font-family: var(--font-head); font-weight: 900; font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; border: 3px solid var(--white);
  box-shadow: 0 4px 14px rgba(51,63,72,0.18);
}
.hayden-text { min-width: 0; }
.hayden-name {
  font-family: var(--font-head); font-weight: 800; font-size: 1.02rem;
  color: var(--nixon-slate);
}
.hayden-name span { color: var(--slate-2); font-weight: 600; }
.hayden-role {
  font-family: var(--font-head); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--tangerine); margin-top: 1px;
}
.hayden-quote {
  margin-top: 8px; font-size: 0.88rem; color: var(--slate-2);
  line-height: 1.55; font-style: italic;
}
.hayden-quote .fa-quote-left {
  color: var(--tangerine); font-size: 0.78rem; margin-right: 6px;
  opacity: 0.7;
}
@media (max-width: 540px) {
  .hayden-intro { flex-direction: column; text-align: center; align-items: stretch; }
  .hayden-avatar, .hayden-fallback { margin: 0 auto; }
}

/* Live/demo availability indicator + small spinner used in Step 6 */
.avail-status {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.04em;
  text-transform: none; margin-left: 8px;
  color: var(--slate-2);
}
.avail-status.live { color: var(--green); }
.avail-status.muted { color: var(--slate-2); opacity: 0.85; }
.avail-status .fa-solid, .avail-status .fa-regular { font-size: 0.78rem; }
.systems-loading-spinner.small {
  width: 12px; height: 12px; border-width: 2px;
}
.booking-err {
  margin: 14px 0 6px; padding: 12px 14px;
  background: #fff5f4; border: 1px solid #f5c4bf; border-left: 4px solid var(--danger);
  border-radius: 8px; color: var(--danger); font-size: 0.88rem; font-weight: 600;
}
.booking-err .fa-solid { margin-right: 6px; }

/* Confirm screen */
.confirm-icon { color: var(--white); font-size: 1.7rem; }
.confirm-icon .fa-check { font-size: 1.7rem; }
.confirm-card {
  display: inline-block; text-align: left;
  background: var(--white);
  border: 1.5px solid var(--border-page);
  border-top: 4px solid var(--tangerine);
  border-radius: 14px;
  padding: 20px 24px;
  min-width: 320px;
  box-shadow: 0 12px 30px rgba(51,63,72,0.08);
}
.confirm-card .cc-eyebrow {
  font-family: var(--font-head); font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--slate-2);
}
.confirm-card .cc-amt {
  font-family: var(--font-head); font-size: 2rem; font-weight: 900;
  color: var(--nixon-slate); letter-spacing: -0.03em;
  margin-top: 4px;
}
.confirm-card .cc-fin {
  margin-top: 8px; color: var(--brighte); font-weight: 700;
  display: flex; align-items: center; gap: 8px; font-size: 0.92rem;
}
.confirm-card .cc-meta {
  margin-top: 14px; padding-top: 14px;
  border-top: 1px dashed var(--border-soft);
  display: grid; gap: 6px;
  font-size: 0.78rem; color: var(--slate-2);
}
.confirm-card .cc-meta .fa-solid { color: var(--tangerine); margin-right: 6px; width: 14px; }
.confirm-actions { margin-top: 26px; display: inline-flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.confirm-actions .btn .fa-solid, .confirm-actions .btn .fa-regular { margin-right: 4px; }
.confirm-cal-hint {
  margin-top: 12px; max-width: 42ch; margin-left: auto; margin-right: auto;
  font-size: 0.78rem; color: var(--slate-2); line-height: 1.5; text-align: center;
}

/* NIXON Guarantee — aligned with landing #guarantee (light, editorial) */
.guar-strip {
  margin-top: 28px;
  padding: 26px 20px 24px;
  background: var(--off-white);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(51,63,72,0.06);
}
.guar-strip-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.guar-strip-inner > .label { display: block; margin-bottom: 8px; }
.guar-strip-inner h2 {
  font-size: clamp(1.12rem, 2.1vw, 1.38rem);
  margin-bottom: 8px;
  color: var(--nixon-slate);
}
.guar-strip-lead {
  font-size: 0.86rem;
  color: var(--text-body);
  line-height: 1.55;
  margin: 0 auto 22px;
  max-width: 38ch;
}
.qb-guar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 20px;
  text-align: left;
}
.qb-gi {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--snow-white);
  border: 1px solid rgba(51,63,72,0.08);
  border-radius: 10px;
  padding: 16px 16px 16px 14px;
  border-left: 3px solid var(--tangerine);
}
.qb-gi-num {
  font-family: var(--font-head);
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--tangerine);
  line-height: 1;
  flex-shrink: 0;
  min-width: 34px;
}
.qb-gi h4 {
  font-size: 0.86rem;
  font-weight: 800;
  color: var(--nixon-slate);
  margin-bottom: 5px;
}
.qb-gi p {
  font-size: 0.78rem;
  color: var(--black-mist);
  line-height: 1.5;
}
.qb-guar-seal-wrap { display: flex; justify-content: center; }
.qb-guar-seal {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--surface-warm);
  border: 1px solid rgba(255,145,0,0.35);
  border-radius: 10px;
  padding: 14px 22px;
  text-align: left;
}
.qb-guar-seal-icon { flex-shrink: 0; width: 48px; height: 48px; }
.qb-guar-seal-icon svg { display: block; width: 48px; height: 48px; }
.qb-guar-seal h4 {
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--tangerine);
  margin: 0;
}
.qb-guar-seal p {
  font-size: 0.72rem;
  color: var(--black-mist);
  margin: 3px 0 0;
  line-height: 1.45;
}
@media (max-width: 560px) {
  .qb-guar-grid { grid-template-columns: 1fr; }
  .qb-guar-seal { flex-direction: column; text-align: center; padding: 16px 18px; }
  .qb-guar-seal-icon { margin: 0 auto; }
}

/* Sidebar guarantee — same seal treatment as landing */
.qs-guarantee {
  display: flex; gap: 12px; align-items: center;
  margin: 0 18px 18px;
  padding: 12px 14px;
  background: var(--surface-warm);
  border: 1px solid rgba(255,145,0,0.28);
  border-radius: 10px;
}
.qs-seal {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.qs-seal svg { display: block; width: 38px; height: 38px; }
.qs-g-title { font-family: var(--font-head); font-size: 0.78rem; font-weight: 800; color: var(--tangerine); }
.qs-g-sub { font-size: 0.7rem; color: var(--black-mist); margin-top: 2px; line-height: 1.45; }

/* Stage nav button icon spacing */
.btn .fa-solid, .btn .fa-regular { font-size: 0.78rem; }
.qs-hint .fa-lock { color: var(--green); margin-top: 2px; }

/* Podium webchat — launcher is an iframe with id="podium-bubble" (inline-styled;
   stylesheet !important wins over its inline values). On mobile, tuck it into the
   corner; JS fades it out while the Continue/Back buttons are in view. */
@media (max-width: 980px) {
  #podium-bubble {
    bottom: 6px !important;
    right: 0 !important;
  }
  /* Wide proactive prompt covers too much of a small screen */
  #podium-prompt {
    display: none !important;
  }
}

/* Desktop: indent Continue so it clears the launcher */
@media (min-width: 981px) {
  .stage-nav .btn-primary {
    margin-right: 72px;
  }
}
