.suggestion-button {
  display: block;
  width: 100%;
  border: 0;
  padding: 12px 14px;
  color: inherit;
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.suggestion-button:hover,
.suggestion-button:focus-visible {
  background: #f1f4f8;
  outline: none;
}
.step-one-continue {
  margin-top: 12px;
}

.fee-slider {
  width: 100%;
  accent-color: var(--gold, #b08a45);
}

.fee-input-row output {
  min-width: 4.5rem;
  text-align: right;
  font-weight: 700;
}
/* =========================================================
   Eastside Home Value - Main Stylesheet
   Mobile-first. System fonts. No web font loading.
   ========================================================= */

:root {
  --navy:      #1c2f4e;
  --navy-light:#2c4268;
  --gold:      #c8a45e;
  --gold-dark: #a88440;
  --bg:        #ffffff;
  --surface:   #f7f5f1;
  --border:    #dde2ec;
  --text:      #1c2f4e;
  --text-2:    #4e6178;
  --error:     #c0392b;
  --focus:     #2563eb;
  --radius:    6px;
}

/* ─── Reset & Base ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html {
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration-skip-ink: auto;
}

:focus { outline: none; }
:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
  border-radius: var(--radius);
}

/* ─── Layout ────────────────────────────────────────────── */
.wrap {
  max-width: 520px;
  margin: 0 auto;
  padding: 24px 20px 64px;
}

/* ─── Site Header ───────────────────────────────────────── */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  min-height: 36px;
}

.credential-bar {
  border-top: 1px solid var(--border);
  padding-top: 8px;
  margin: -16px 0 0;
  font-size: 11px;
  letter-spacing: .04em;
  color: var(--text-2);
  white-space: nowrap;
}

.credential-name {
  font-size: 11px;
  color: var(--text-2);
  margin: 2px 0 24px;
}

.brand {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--text-2);
  text-transform: uppercase;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  color: var(--text-2);
  text-decoration: none;
  padding: 6px 0;
  transition: color 0.15s;
}
.back-link:hover { color: var(--navy); }
.back-link svg { flex-shrink: 0; }

/* ─── Progress ──────────────────────────────────────────── */
.progress {
  height: 3px;
  background: var(--border);
  border-radius: 2px;
  margin-bottom: 6px;
  margin-top: 0;
}
.progress-fill {
  height: 100%;
  background: var(--gold);
  border-radius: 2px;
  transition: width 0.35s ease;
}
.progress-label {
  font-size: 13px;
  color: var(--text-2);
  margin: 0 0 28px;
}

/* ─── Typography ────────────────────────────────────────── */
.page-title {
  font-size: clamp(22px, 6vw, 28px);
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 10px;
  color: var(--navy);
}

.page-sub {
  font-size: 16px;
  color: var(--text-2);
  margin: 0 0 28px;
  line-height: 1.5;
}

.helper-text {
  font-size: 15px;
  color: var(--text-2);
  font-style: italic;
}

/* ─── Forms ─────────────────────────────────────────────── */
.field {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}

.input {
  height: 56px;
  padding: 0 16px;
  font-size: 17px;
  font-family: inherit;
  color: var(--navy);
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  width: 100%;
  transition: border-color 0.15s, box-shadow 0.15s;
  -webkit-appearance: none;
  appearance: none;
}

.input:hover { border-color: #b0b8cc; }

.input:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(28, 47, 78, 0.1);
  outline: none;
}

.input::placeholder { color: #9ca8bc; }

.input-error {
  border-color: var(--error) !important;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.08);
}

.field-error {
  font-size: 14px;
  color: var(--error);
  margin: 4px 0 0;
}

.form-error {
  background: #fef2f2;
  border: 1px solid #fca5a5;
  color: var(--error);
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 15px;
  margin-bottom: 20px;
}

/* ─── Address autocomplete ──────────────────────────────── */
.autocomplete-wrap {
  position: relative;
}

.input-address {
  padding-right: 44px;
}

.suggestions {
  list-style: none;
  margin: 4px 0 0;
  padding: 6px 0;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(28, 47, 78, 0.12);
  position: absolute;
  left: 0; right: 0;
  z-index: 100;
  max-height: 280px;
  overflow-y: auto;
}

.suggestion-item {
  padding: 12px 16px;
  font-size: 15px;
  cursor: pointer;
  line-height: 1.4;
  color: var(--navy);
  transition: background 0.1s;
}
.suggestion-item:hover,
.suggestion-item.active {
  background: var(--surface);
}

/* ─── Buttons ───────────────────────────────────────────── */
.btn-primary {
  display: block;
  width: 100%;
  height: 56px;
  padding: 0 24px;
  font-size: 16px;
  font-weight: 600;
  font-family: inherit;
  color: #fff;
  background: var(--navy);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  line-height: 56px;
  margin-top: 8px;
  transition: background 0.15s, transform 0.1s;
  -webkit-appearance: none;
}

.btn-primary:hover { background: var(--navy-light); }
.btn-primary:active { transform: scale(0.99); }

.btn-secondary {
  display: inline-block;
  padding: 12px 20px;
  font-size: 15px;
  font-weight: 500;
  font-family: inherit;
  color: var(--navy);
  background: transparent;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.15s, background 0.15s;
  -webkit-appearance: none;
}
.btn-secondary:hover {
  border-color: var(--navy);
  background: var(--surface);
}

.btn-ghost {
  display: inline-block;
  padding: 12px 16px;
  font-size: 15px;
  font-family: inherit;
  color: var(--text-2);
  background: transparent;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  -webkit-appearance: none;
}
.btn-ghost:hover { color: var(--navy); }

.btn-block {
  display: block;
  width: 100%;
  line-height: 56px;
  height: 56px;
  text-align: center;
  margin-top: 24px;
}

/* ─── Option tiles (single-choice steps) ───────────────── */
.option-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.option-tile {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 60px;
  padding: 16px 20px;
  font-size: 17px;
  font-family: inherit;
  color: var(--navy);
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  text-align: left;
  line-height: 1.35;
  transition: border-color 0.15s, background 0.15s, transform 0.1s;
  -webkit-appearance: none;
}

.option-tile:hover {
  border-color: var(--navy-light);
  background: var(--surface);
}

.option-tile.selected,
.option-tile[aria-pressed="true"] {
  border-color: var(--navy);
  background: var(--navy);
  color: #fff;
}

.option-tile:active { transform: scale(0.99); }

/* ─── Teaser page ───────────────────────────────────────── */
.teaser-card {
  background: var(--surface);
  border-radius: 8px;
  padding: 28px 24px;
  margin-bottom: 28px;
}

.teaser-address {
  font-size: 14px;
  color: var(--text-2);
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}

.teaser-range {
  font-size: clamp(18px, 5vw, 22px);
  font-weight: 400;
  line-height: 1.45;
  margin: 0 0 12px;
  color: var(--navy);
}

.teaser-range strong { font-weight: 700; }

.teaser-spread-line {
  font-size: clamp(16px, 4.5vw, 20px);
  margin: 0 0 20px;
  color: var(--navy);
}

.spread-amount {
  color: var(--gold-dark);
  font-weight: 700;
}

.teaser-hint {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.55;
  margin: 0;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

/* ─── Contact gate ──────────────────────────────────────── */
.consent-wrap {
  margin: 20px 0 24px;
  padding: 16px;
  background: var(--surface);
  border-radius: var(--radius);
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.5;
  cursor: pointer;
}

.checkbox {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  accent-color: var(--navy);
  cursor: pointer;
}

.consent-fine {
  font-size: 13px;
  color: #7a8a9e;
  margin: 10px 0 0;
  line-height: 1.5;
}

.optional-label {
  font-weight: 400;
  color: #7a8a9e;
}

.optional-contact {
  margin: 28px 0 20px;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.optional-contact h2 {
  margin: 0 0 16px;
  color: var(--navy);
  font-size: 16px;
}

.optional-contact .consent-wrap {
  margin: 4px 0 0;
  padding: 0;
}

.property-preview {
  margin: 28px 0 20px;
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.property-image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: #e9edf4;
  min-height: 180px;
}

.property-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.google-attribution {
  position: absolute;
  right: 8px;
  bottom: 6px;
  margin: 0;
  padding: 2px 5px;
  font-size: 10px;
  color: #fff;
  background: rgba(0, 0, 0, .55);
}

.property-map-link {
  margin-top: 10px;
}

.property-facts {
  margin: 18px 0 0;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.property-facts legend {
  padding: 0 6px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
}

.property-continue {
  margin-top: 16px;
}

.sticky-range {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin: -24px -20px 24px;
  padding: 14px 20px 13px;
  color: #fff;
  background: var(--navy);
  box-shadow: 0 3px 12px rgba(28, 47, 78, .16);
}

.sticky-range-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  opacity: .8;
}

.sticky-range strong {
  display: block;
  font-size: clamp(20px, 5vw, 28px);
  line-height: 1.2;
  color: var(--gold);
}

.sticky-range .sticky-range-adjustment {
  margin-top: 3px;
  font-size: 12px;
  opacity: .72;
}

.estimate-override-label {
  margin-top: 9px;
  font-size: 12px;
  font-weight: 700;
}

.estimate-override {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 3px;
  padding: 7px 10px;
  color: var(--navy);
  background: #fff;
  border-radius: 7px;
}

.estimate-override span {
  font-weight: 700;
}

.estimate-override input {
  width: 100%;
  min-width: 0;
  padding: 0;
  color: var(--navy);
  background: transparent;
  border: 0;
  font: inherit;
  font-size: 18px;
  font-weight: 700;
  outline: 0;
}

.estimate-override:focus-within {
  outline: 3px solid rgba(192, 157, 91, .55);
}

.estimate-override-help {
  margin-top: 3px;
  font-size: 11px;
  opacity: .78;
}

.property-controls {
  display: grid;
  gap: 12px;
}

.property-control {
  padding: 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(28, 47, 78, .04);
}

.slider-fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}
.slider-fieldset legend {
  margin-bottom: 6px;
  color: var(--navy);
  font-weight: 600;
}
.slider-header {
  margin-bottom: 12px;
}
.slider-current-label {
  font-size: 15px;
  color: var(--navy);
  font-weight: 500;
}
.slider-wrap {
  padding: 12px 0;
}
.property-slider {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  cursor: pointer;
  touch-action: pan-y;
}
.property-slider::-webkit-slider-runnable-track {
  width: 100%;
  height: 8px;
  background: var(--border);
  border-radius: 4px;
}
.property-slider::-moz-range-track {
  width: 100%;
  height: 8px;
  background: var(--border);
  border-radius: 4px;
}
.property-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 44px;
  width: 44px;
  border-radius: 22px;
  background: var(--navy);
  margin-top: -18px;
  box-shadow: 0 2px 6px rgba(28, 47, 78, 0.2);
}
.property-slider::-moz-range-thumb {
  height: 44px;
  width: 44px;
  border-radius: 22px;
  background: var(--navy);
  border: none;
  box-shadow: 0 2px 6px rgba(28, 47, 78, 0.2);
}
.property-slider:focus-visible::-webkit-slider-thumb {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}
.property-slider:focus-visible::-moz-range-thumb {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}

.sticky-range-results {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.nearby-listings {
  margin: 18px 0 22px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.nearby-listings summary {
  padding: 17px 2px;
  color: var(--navy);
  font-weight: 700;
  cursor: pointer;
}

.nearby-listings-body {
  padding: 0 0 16px;
}

.nearby-listings-body > p {
  margin: 0 0 14px;
  color: var(--text-2);
  font-size: 13px;
  line-height: 1.5;
}

.static-map-wrap {
  position: relative;
  margin-bottom: 16px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.static-map {
  width: 100%;
  height: auto;
  display: block;
}

.nearby-listing-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nearby-listing-card {
  padding: 15px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 9px;
}

.nearby-card-header {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 4px;
}

.nearby-card-number {
  background: var(--navy);
  color: #fff;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.nearby-card-header h3 {
  margin: 0;
  color: var(--navy);
  font-size: 15px;
  line-height: 1.35;
}

.nearby-listing-price {
  display: block;
  margin-bottom: 12px;
  color: var(--gold-dark);
  font-size: 18px;
}

.nearby-listing-card dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 12px;
  margin: 0;
}

.nearby-listing-card dl div {
  min-width: 0;
}

.nearby-listing-card dt {
  color: var(--text-2);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .03em;
}

.nearby-listing-card dd {
  margin: 2px 0 0;
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
}

.methodology-note,
.field-help {
  font-size: 13px;
  line-height: 1.45;
  color: var(--text-2);
}

.methodology-note {
  margin: -6px 0 22px;
}

@media (min-width: 760px) {
  .property-controls {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.field-help {
  margin: 6px 0 0;
}

.fee-input-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.fee-input-row .input {
  flex: 1;
}

.record-confirmation {
  margin: 0 0 20px;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.record-confirmation p {
  margin: 0 0 8px;
  color: var(--navy);
}

.purchase-fields {
  margin-bottom: 20px;
}

.net-results-hero {
  margin: 24px 0 12px;
  padding: 30px 20px;
  text-align: center;
  background: var(--navy);
  border-radius: var(--radius);
  color: #fff;
}

.net-results-label {
  display: block;
  font-size: 14px;
  letter-spacing: .05em;
  text-transform: uppercase;
  opacity: .8;
}

.net-results-number {
  display: block;
  margin: 10px 0;
  font-size: clamp(30px, 8vw, 48px);
  line-height: 1.1;
  color: var(--gold);
}

.net-results-note {
  margin: 0;
  font-size: 13px;
  opacity: .75;
}

.deductions-summary {
  margin: 0 0 18px;
  color: var(--text-2);
  font-size: 14px;
}

.breakdown-details {
  margin-bottom: 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.breakdown-details summary {
  padding: 16px 0;
  cursor: pointer;
  color: var(--navy);
  font-weight: 600;
}

.breakdown-details .ledger-grid {
  padding-bottom: 8px;
}

.ledger-row.deduction strong {
  color: var(--text-2);
  font-weight: 400;
}

.ledger-row.deduction {
  color: var(--text-2);
}

/* Seller net proceeds calculator */
.live-summary {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 8px 0 24px;
  padding: 16px;
  background: var(--surface);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  color: var(--text-2);
  font-size: 14px;
}

.live-summary strong {
  color: var(--navy);
  font-size: 20px;
  line-height: 1.3;
}

.live-summary-strong strong {
  font-size: 23px;
}

.proceeds-live strong {
  font-size: clamp(28px, 7vw, 40px);
}

.ledger-grid {
  display: grid;
  gap: 18px;
  margin: 0 0 24px;
}

.ledger-card {
  padding: 20px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
}

.ledger-card h2 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 17px;
}

.ledger-row,
.ledger-subtotal,
.ledger-total {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 0;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
}

.ledger-row span,
.ledger-subtotal span,
.ledger-total span {
  min-width: 0;
}

.ledger-row strong,
.ledger-subtotal strong,
.ledger-total strong {
  flex-shrink: 0;
  text-align: right;
}

.ledger-row.deduction strong {
  color: var(--error);
}

.ledger-subtotal {
  margin: 4px 0;
  font-weight: 700;
  color: var(--navy);
  border-bottom: 2px solid var(--navy);
}

.ledger-total {
  align-items: center;
  margin-top: 8px;
  padding-top: 16px;
  color: var(--navy);
  border-bottom: 0;
  font-size: 16px;
  font-weight: 800;
}

.ledger-total strong {
  color: var(--gold-dark);
  font-size: 22px;
}

.choice-fieldset {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 0 20px;
  padding: 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
}

.choice-fieldset legend {
  padding: 0 6px;
  color: var(--text-2);
  font-size: 14px;
  font-weight: 500;
}

.choice-fieldset label {
  color: var(--navy);
  font-size: 15px;
}

.tax-note,
.legal-disclaimer {
  padding: 16px;
  border-radius: var(--radius);
  font-size: 14px;
  line-height: 1.55;
}

.tax-note {
  background: #fff8e7;
  border: 1px solid #ead39c;
  color: var(--navy);
}

.legal-disclaimer {
  background: var(--navy);
  color: #fff;
  font-weight: 600;
}

.results-actions {
  display: grid;
  gap: 12px;
}

.tax-skip {
  width: 100%;
  margin-top: 10px;
}

.options-section {
  margin: 32px 0;
  padding: 24px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
}

.options-section h2 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 18px;
}

.options-section p {
  margin: 0;
  color: var(--text-2);
  font-size: 14px;
  line-height: 1.5;
}

@media (min-width: 760px) {
  .ledger-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ─── Results stub ──────────────────────────────────────── */
.results-stub {
  text-align: center;
  padding: 24px 0;
}

/* Act 1 Results */
.act1-headline {
  font-size: clamp(28px, 6vw, 36px);
  line-height: 1.2;
  margin-bottom: 24px;
}
.act1-headline .act1-high {
  color: var(--gold-dark);
  font-size: clamp(34px, 8vw, 44px);
  font-weight: 800;
}
.act1-percents {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 28px;
}
.act1-percents p {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
}
.act1-percents p:last-child { margin: 0; }

.act1-profile {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.act1-headshot {
  width: 72px;
  height: 72px;
  border-radius: 36px;
  object-fit: cover;
  border: 2px solid var(--border);
}
.act1-profile-text {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.5;
}
.act1-profile-text strong {
  font-size: 15px;
  color: var(--navy);
}

.act1-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.act1-contact-actions {
  display: grid;
  gap: 12px;
  margin-bottom: 32px;
}

.results-booking {
  margin: 28px 0 20px;
}

.results-booking .btn-hero {
  display: block;
}

.btn-act1-primary {
  display: block;
  text-align: center;
  padding: 18px 24px;
  line-height: 1.2;
  font-size: 18px;
}

.act1-success {
  background: #e6f4ea;
  color: #1e7039;
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 15px;
  text-align: center;
}

.strategy-heading {
  margin: 32px 0 6px;
  font-size: 20px;
  color: var(--navy);
}
.strategy-sub {
  margin: 0 0 20px;
  font-size: 15px;
  color: var(--text-2);
}

.control-helper {
  margin: 10px 0 0;
  color: var(--text-2);
  font-size: 13px;
  line-height: 1.45;
}

.act1-profile-text a,
.site-footer a {
  color: inherit;
  text-underline-offset: 2px;
}

/* Footer */
.site-footer {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 11px;
  color: #7a8a9e;
  text-align: center;
  line-height: 1.5;
}

.check-icon {
  margin: 0 auto 20px;
  width: 64px;
  height: 64px;
}

.results-stub .page-title {
  margin-bottom: 12px;
}

.results-stub .page-sub {
  margin-bottom: 32px;
}

/* ─── Admin ─────────────────────────────────────────────── */
.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.admin-header .page-title { margin: 0; }

.admin-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lead-count {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-2);
  margin-left: 6px;
}

.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.leads-table {
  width: 100%;
  min-width: 700px;
  border-collapse: collapse;
  font-size: 14px;
}

.leads-table th {
  text-align: left;
  padding: 12px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-2);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 1.5px solid var(--border);
  background: var(--surface);
  white-space: nowrap;
}

.leads-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  color: var(--navy);
  vertical-align: top;
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.leads-table tr:last-child td { border-bottom: none; }
.leads-table tr:hover td { background: var(--surface); }

.empty-row {
  text-align: center;
  color: var(--text-2);
  padding: 32px 14px !important;
  font-style: italic;
}

/* ─── Results page ──────────────────────────────────────── */
.results-estimate-card {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius);
  padding: 28px 24px 24px;
  margin-bottom: 32px;
  text-align: center;
}

.results-range { margin: 12px 0 8px; }
.results-range-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  opacity: .7;
  margin-bottom: 6px;
}
.results-range-values {
  display: block;
  font-size: clamp(26px, 6vw, 38px);
  font-weight: 800;
  color: var(--gold);
  line-height: 1.1;
}
.range-dash { color: rgba(255,255,255,.4); }

.results-cta-sub {
  font-size: 13px;
  opacity: .75;
  margin-top: 12px;
  line-height: 1.5;
}

/* What you control panel */
.what-you-control {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  margin-bottom: 28px;
}

.wyu-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 4px;
}

.wyu-sub {
  font-size: 14px;
  color: var(--text-2);
  margin: 0 0 20px;
}

/* Individual tier groups inside the panel */
.tier-group {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  margin-top: 4px;
}

.tier-header {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 12px;
}

.tier-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold-dark);
  white-space: nowrap;
}

.tier-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
}

.tier-saved {
  font-size: 14px;
  font-weight: 600;
  color: #2a7a4b;
  margin: 0 0 12px;
}

.results-actions {
  display: grid;
  gap: 12px;
  padding-bottom: 40px;
}

/* ─── Textarea ──────────────────────────────────────────── */
.input-textarea {
  height: auto;
  padding: 14px 16px;
  resize: vertical;
  line-height: 1.5;
  font-size: 16px;
}

/* ─── Tier 4 slider block ───────────────────────────────── */
.adjustment-block {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 20px 16px;
  margin-bottom: 4px;
  transition: opacity 0.2s;
}

.adjustment-block.slider-locked {
  opacity: 0.5;
}

.adjustment-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 14px;
}

.adjustment-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
}

.adjustment-value {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-2);
  min-width: 3ch;
  text-align: right;
  transition: color 0.15s;
}
.adjustment-value.adj-positive { color: var(--gold-dark); }
.adjustment-value.adj-negative { color: var(--error); }

.slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  /* 44px tap area; track rendered via pseudo-element */
  height: 44px;
  background: transparent;
  outline: none;
  cursor: pointer;
  margin: 0 0 4px;
  padding: 0;
}
.slider:disabled { cursor: not-allowed; opacity: 0.5; }

/* Track */
.slider::-webkit-slider-runnable-track {
  height: 6px;
  border-radius: 3px;
  background: var(--border);
}
.slider::-moz-range-track {
  height: 6px;
  border-radius: 3px;
  background: var(--border);
  border: none;
}

/* Thumb - 28 px for comfortable dragging at 390 px width */
.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--navy);
  cursor: pointer;
  border: 2.5px solid #fff;
  box-shadow: 0 1px 5px rgba(0,0,0,0.22);
  margin-top: -11px; /* center 28px thumb on 6px track */
  transition: background 0.15s;
}
.slider:disabled::-webkit-slider-thumb { background: #b0b8cc; }
.slider::-moz-range-thumb {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--navy);
  cursor: pointer;
  border: 2.5px solid #fff;
  box-shadow: 0 1px 5px rgba(0,0,0,0.22);
}

.slider-ends {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-2);
  margin-bottom: 4px;
}

.slider-hint {
  font-size: 13px;
  color: var(--text-2);
  font-style: italic;
  margin: 8px 0 0;
  text-align: center;
}

/* ─── Panel 2: "What the estimate could not see" ────────── */
.panel2 {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px 16px;
  margin-bottom: 20px;
}

.panel-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 4px;
}

.panel-sub {
  font-size: 14px;
  color: var(--text-2);
  margin: 0 0 20px;
  line-height: 1.5;
}

/* Trait rows */
.trait-item {
  padding: 14px 0 10px;
}

.trait-item + .trait-item {
  border-top: 1px solid var(--border);
}

.trait-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}

.trait-helper {
  font-size: 13px;
  color: var(--text-2);
  margin: 0 0 8px;
  line-height: 1.45;
}

/* Select input */
.trait-select {
  width: 100%;
  height: auto;
  padding: 12px 14px;
  font-size: 15px;
  cursor: pointer;
  appearance: auto; /* keep native arrow */
}

/* Adjustment line below each input */
.trait-adj-display {
  font-size: 13px;
  color: var(--text-2);
  margin: 6px 0 0;
}

.trait-adj-value {
  font-weight: 700;
}

/* Checkbox row */
.trait-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}

.trait-checkbox {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 1px;
  accent-color: var(--navy);
  cursor: pointer;
}

/* ─── Panel 3: "What you control" ───────────────────────── */
.panel3 {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px 20px;
  margin-bottom: 20px;
}

/* Preset selector bar */
.preset-bar {
  margin-bottom: 20px;
}

.preset-bar-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-2);
  margin: 0 0 8px;
}

.preset-btns {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.preset-btn {
  flex: 1;
  min-width: 0;
  padding: 10px 10px;
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  color: var(--navy);
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  transition: background 0.12s, border-color 0.12s, color 0.12s;
  /* 44px minimum touch height */
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preset-btn:hover {
  border-color: var(--navy-light);
  background: #eef1f7;
}

.preset-btn--active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

/* Tier groups inside Panel 3 */
.panel3 .tier-group {
  border-top: 1.5px solid var(--border);
  padding-top: 18px;
  margin-top: 0;
  margin-bottom: 4px;
}

.tier-heading {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 2px;
  line-height: 1.3;
}

/* Small marginal-impact note under Tier 3 heading */
.tier-note {
  font-size: 13px;
  color: var(--text-2);
  margin: 0 0 12px;
  font-style: italic;
  line-height: 1.4;
}

/* Factor rows inside Panel 3: border only between adjacent rows, never above the first */
.panel3 .factor-item {
  padding: 14px 0 8px;
}

.panel3 .factor-item + .factor-item {
  border-top: 1px solid var(--border);
}

/* ─── Teaser: live slider panel ─────────────────────────── */
.teaser-live-panel {
  background: #f7f4ef;
  border: 1.5px solid var(--gold-dark);
  border-radius: var(--radius);
  padding: 20px 20px 16px;
  margin: 24px 0 16px;
}

.teaser-live-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 16px;
}

.teaser-adj-display {
  text-align: center;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.teaser-adj-display .adj-range-label {
  opacity: 1;
  color: var(--text-2);
}

.teaser-adj-values {
  font-size: clamp(22px, 5.5vw, 32px);
  font-weight: 800;
  color: var(--navy);
  display: block;
  margin: 4px 0 3px;
  line-height: 1.1;
}

/* Teaser: dimmed locked factor list */
.teaser-locked-panel {
  border: 1.5px dashed var(--border);
  border-radius: var(--radius);
  padding: 16px;
  margin: 12px 0 20px;
}

.teaser-locked-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--text-2);
  margin: 0 0 10px;
}

.locked-factors-list {
  list-style: none;
  margin: 0;
  padding: 0;
  pointer-events: none;
  user-select: none;
}

.locked-factor-item {
  padding: 8px 0 7px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  opacity: 0.35;
}

.locked-factor-item:last-child { border-bottom: none; }

/* ─── Home page additions ───────────────────────────────── */
.home-adjust-line {
  font-size: 15px;
  color: var(--text-2);
  margin-top: 4px;
  margin-bottom: 24px;
}
.home-adjust-line strong { color: var(--navy); }

/* ─── Teaser: 3-estimate grid ───────────────────────────── */
.teaser-address-line { margin-bottom: 8px; }

.teaser-headline {
  font-size: clamp(20px, 5vw, 26px);
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 20px;
  line-height: 1.3;
}

.estimate-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 28px;
}

.estimate-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 10px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
}

.estimate-card-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--text-2);
}

.estimate-card-value {
  font-size: clamp(15px, 4vw, 20px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
}

.estimate-card-note {
  font-size: 11px;
  color: var(--text-2);
  font-style: italic;
}

/* Spread reveal */
.spread-display {
  text-align: center;
  margin: 0 0 20px;
}

.spread-intro {
  font-size: 16px;
  color: var(--text-2);
  margin: 0;
}

.spread-number {
  font-size: clamp(36px, 10vw, 52px);
  font-weight: 900;
  color: var(--gold-dark);
  margin: 4px 0;
  line-height: 1;
}

/* ─── Results page: estimate card ───────────────────────── */
.results-base-range {
  font-size: clamp(22px, 5vw, 30px);
  font-weight: 800;
  color: var(--gold);
  margin: 4px 0 2px;
  line-height: 1.1;
}

.results-spread-line {
  font-size: 14px;
  opacity: .8;
  margin: 0 0 16px;
}

/* Adjusted range (live updated by JS) */
.adj-range-display {
  background: rgba(255,255,255,.1);
  border-radius: 8px;
  padding: 14px 16px 12px;
  margin-top: 8px;
}

.adj-range-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  opacity: .7;
  margin-bottom: 4px;
}

.adj-range-values {
  font-size: clamp(18px, 5vw, 26px);
  font-weight: 800;
  color: #fff;
  display: block;
  margin-bottom: 4px;
}

.adj-total-row {
  font-size: 13px;
  opacity: .8;
  margin: 0;
}

.adj-total-value {
  font-weight: 700;
}

/* Cap warning banner */
.cap-warning {
  background: #fff8e6;
  border: 1.5px solid var(--gold-dark);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 500;
  color: #6b4a00;
  margin-bottom: 20px;
  text-align: center;
}

/* ─── What-you-control factor rows ──────────────────────── */
.factor-item {
  padding: 14px 0 6px;
  border-top: 1px solid var(--border);
}

.factor-item:first-child { border-top: none; padding-top: 0; }

.factor-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 4px;
  gap: 8px;
}

.factor-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  flex: 1;
}

.factor-value {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-2);
  min-width: 3.5ch;
  text-align: right;
  flex-shrink: 0;
}

.factor-citation {
  font-size: 11px;
  color: var(--text-2);
  font-style: italic;
  margin: 0 0 4px;
}

.factor-helper {
  font-size: 13px;
  color: var(--text-2);
  margin: 0 0 10px;
  line-height: 1.45;
}

.results-followup {
  font-size: 14px;
  color: var(--text-2);
  text-align: center;
  margin: 4px 0 24px;
}

/* ─── Panel 4: cost / ROI table ─────────────────────────── */
.panel4 {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px 24px;
  margin-bottom: 20px;
}

/* Empty state line */
.panel4-empty {
  font-size: 14px;
  color: var(--text-2);
  font-style: italic;
  margin: 12px 0;
  line-height: 1.5;
}

/* Scrollable table wrapper - lets 4-column table breathe on narrow screens */
.panel4-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 12px -20px 0;
  padding: 0 20px;
}

.panel4-table {
  width: 100%;
  min-width: 440px;
  border-collapse: collapse;
  font-size: 14px;
}

/* Column headers */
.p4-th {
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-2);
  padding: 0 8px 8px 0;
  white-space: nowrap;
  border-bottom: 1.5px solid var(--border);
}

.p4-th--label { width: 35%; }
.p4-th--net   { text-align: right; }

/* Data cells */
.p4-row td {
  padding: 12px 8px 12px 0;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

.p4-row:last-child td { border-bottom: none; }

.p4-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
}

.p4-cost {
  font-size: 14px;
  color: var(--text-2);
  white-space: nowrap;
}

.p4-effect {
  font-size: 13px;
  color: var(--text-2);
  white-space: nowrap;
}

/* Net difference - the headline number, shown prominently */
.p4-net {
  font-size: 20px;
  font-weight: 800;
  text-align: right;
  white-space: nowrap;
  letter-spacing: -.01em;
}

.net-positive { color: #2a7a4b; }
.net-negative { color: var(--error); }

/* Exact copy block below the table */
.panel4-copy {
  font-size: 15px;
  color: var(--text);
  line-height: 1.6;
  margin: 20px 0 0;
}

/* Hero CTA - gold, full-width, visually dominant */
.btn-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 18px 20px;
  font-size: 17px;
  font-weight: 700;
  font-family: inherit;
  text-align: center;
  text-decoration: none;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  min-height: 56px;
  transition: background 0.15s, color 0.15s;
}

.btn-hero:hover,
.btn-hero:focus-visible {
  background: var(--gold-dark);
  color: #fff;
}

/* Standalone CTA block that wraps btn-hero between/after panels */
.results-cta-block {
  margin-bottom: 20px;
}

/* Book page */
.book-page {
  padding: 24px 0;
  text-align: center;
}

.book-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 16px;
  line-height: 1.3;
}

.book-sub {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.6;
  margin: 0 0 28px;
}

/* ─── Desktop breakpoint ────────────────────────────────── */
@media (min-width: 600px) {
  .wrap { padding: 40px 24px 80px; }
  .page-title { font-size: 30px; }
  .page-sub { font-size: 17px; }
  .option-tile { font-size: 18px; }
  .teaser-card { padding: 32px 28px; }
}
