/* ═══════════════════════════════════════════════════════════════
   Components — service cards, configurator, toggles, price bar, CTAs
   ═══════════════════════════════════════════════════════════════ */

/* ── Outcome grid (Step 1) ────────────────────────────────── */

.bundle-quickpick {
  display: flex;
  align-items: center;
  gap: var(--sp-lg);
  width: 100%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: white;
  border: 2px solid var(--gold);
  border-radius: var(--r-md);
  padding: var(--sp-lg) var(--sp-xl);
  font-family: var(--font-body);
  text-align: left;
  cursor: pointer;
  transition: transform var(--t-short) var(--ease-out), box-shadow var(--t-short);
  margin-bottom: var(--sp-md);
  box-shadow: var(--shadow-md);
  position: relative;
}

.bundle-quickpick:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.bundle-quickpick-icon {
  font-size: 36px;
  line-height: 1;
  flex-shrink: 0;
}

.bundle-quickpick-body {
  display: flex;
  flex-direction: column;
  gap: var(--sp-xs);
  flex: 1;
}

.bundle-quickpick-label {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.bundle-quickpick-cue {
  font-size: var(--fs-sm);
  opacity: 0.85;
}

.bundle-quickpick-arrow {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  color: var(--gold);
  flex-shrink: 0;
  transition: transform var(--t-short);
}

.bundle-quickpick:hover .bundle-quickpick-arrow {
  transform: translateX(4px);
}

.outcomes-or {
  text-align: center;
  font-size: var(--fs-xs);
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: var(--sp-md) 0;
  font-weight: 500;
}

.outcomes-hint {
  display: inline-block;
  padding: var(--sp-xs) var(--sp-md);
  margin-bottom: var(--sp-md);
  background: var(--gold-subtle);
  color: var(--gold);
  border-radius: var(--r-full);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.outcomes-grid {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}

.outcome {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--sp-md) var(--sp-lg);
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  transition: all var(--t-short) var(--ease-out);
  width: 100%;
}

.outcome:hover {
  border-color: var(--border-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.outcome:hover .outcome-checkbox {
  border-color: var(--gold-light);
}

.outcome.selected {
  border-color: var(--gold);
  background: var(--gold-subtle);
  box-shadow: var(--shadow-md);
}

/* ── Checkbox indicator (makes multi-select visually obvious) ── */

.outcome-checkbox {
  width: 22px;
  height: 22px;
  border-radius: var(--r-sm);
  border: 2px solid var(--border-hover);
  background: var(--surface);
  flex-shrink: 0;
  position: relative;
  transition: all var(--t-short) var(--ease-out);
}

.outcome.selected .outcome-checkbox {
  background: var(--gold);
  border-color: var(--gold);
}

.outcome.selected .outcome-checkbox::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 6px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.outcome-icon {
  font-size: 28px;
  line-height: 1;
  flex-shrink: 0;
}

.outcome-body { flex: 1; }

.outcome-label {
  font-family: var(--font-display);
  font-size: var(--fs-md);
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.01em;
  margin-bottom: 2px;
}

.outcome-cue {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  font-style: italic;
}

/* ── Configurator title (right panel) ─────────────────────── */

.config-head { margin-bottom: var(--sp-xl); }

.config-title {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 var(--sp-sm);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.config-subtitle {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  margin: 0;
  max-width: 540px;
}

/* ── Service grid (legacy v1) ─────────────────────────────── */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-md);
}

@media (max-width: 540px) {
  .cards-grid { grid-template-columns: 1fr; }
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--sp-lg);
  cursor: pointer;
  transition: transform var(--t-short) var(--ease-out),
              border-color var(--t-short) var(--ease-out),
              box-shadow var(--t-short) var(--ease-out),
              background-color var(--t-short) var(--ease-out);
  display: flex;
  flex-direction: column;
  gap: var(--sp-xs);
  text-align: left;
  position: relative;
  user-select: none;
}

.card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.card.selected {
  border-color: var(--gold);
  background: var(--gold-subtle);
}

.card.selected::after {
  content: "✓";
  position: absolute;
  top: var(--sp-md);
  right: var(--sp-md);
  width: 24px;
  height: 24px;
  background: var(--gold);
  color: white;
  border-radius: var(--r-full);
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 700;
}

.card-icon {
  font-size: 28px;
  line-height: 1;
  margin-bottom: var(--sp-xs);
}

.card-label {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.card-cue {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.4;
}

/* ── Configurator (Step 2) ─────────────────────────────────── */

.configurator-section {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  margin-bottom: var(--sp-md);
  overflow: hidden;
  transition: border-color var(--t-short) var(--ease-out);
}

.configurator-section.expanded {
  border-color: var(--gold-light);
}

.configurator-header {
  padding: var(--sp-md) var(--sp-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  background: var(--surface);
  transition: background var(--t-short);
}

.configurator-header:hover { background: var(--gold-subtle); }

.configurator-title {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--navy);
}

.configurator-subtotal {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
  font-size: var(--fs-md);
}

.configurator-chevron {
  transition: transform var(--t-short) var(--ease-out);
  color: var(--text-muted);
}

.configurator-section.expanded .configurator-chevron {
  transform: rotate(180deg);
}

.configurator-body {
  display: none;
  padding: var(--sp-lg);
  border-top: 1px solid var(--border);
}

.configurator-section.expanded .configurator-body {
  display: block;
}

/* ── Form fields ───────────────────────────────────────────── */

.field {
  margin-bottom: var(--sp-lg);
}

.field-label {
  display: block;
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--text);
  margin-bottom: var(--sp-xs);
}

.field-hint {
  font-size: var(--fs-xs);
  color: var(--text-muted);
  font-style: italic;
  margin: 0 0 var(--sp-sm);
  line-height: 1.5;
}

.field-required {
  color: var(--gold);
  font-weight: 700;
  margin-left: 2px;
}

/* ── Sharper-price divider ─────────────────────────────────── */

.sharper-section {
  margin-top: var(--sp-lg);
  padding-top: var(--sp-md);
  border-top: 1px dashed var(--border);
}

.sharper-divider {
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: var(--sp-md);
  display: flex;
  align-items: baseline;
  gap: var(--sp-sm);
  flex-wrap: wrap;
}

.sharper-divider-label {
  font-weight: 600;
  color: var(--gold);
}

.sharper-divider-hint {
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  font-size: var(--fs-xs);
}

.option-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-sm);
}

.option {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  padding: var(--sp-sm) var(--sp-md);
  font-size: var(--fs-sm);
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  transition: all var(--t-micro);
}

.option:hover {
  border-color: var(--border-hover);
}

.option.selected {
  background: var(--gold-subtle);
  border-color: var(--gold);
  color: var(--gold);
  font-weight: 600;
}

.input {
  width: 100%;
  padding: var(--sp-sm) var(--sp-md);
  font-size: var(--fs-md);
  font-family: var(--font-body);
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  transition: border-color var(--t-micro);
}

.input:focus {
  outline: none;
  border-color: var(--gold);
}

textarea.input {
  resize: vertical;
  min-height: 96px;
}

/* ── Step indicator (top of page) ──────────────────────────── */

.step-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-sm);
  padding: var(--sp-md) var(--sp-lg);
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}

.step-pill {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  padding: var(--sp-xs) var(--sp-md);
  border-radius: var(--r-full);
  background: transparent;
  font-size: var(--fs-sm);
  color: var(--text-muted);
  transition: all var(--t-short);
}

.step-pill.active {
  background: var(--gold-subtle);
  color: var(--gold);
}

.step-pill.completed {
  color: var(--success);
}

.step-pill-num {
  width: 22px;
  height: 22px;
  border-radius: var(--r-full);
  display: grid;
  place-items: center;
  background: var(--border);
  color: var(--text-muted);
  font-size: var(--fs-xs);
  font-weight: 700;
  transition: all var(--t-short);
}

.step-pill.active .step-pill-num {
  background: var(--gold);
  color: white;
}

.step-pill.completed .step-pill-num {
  background: var(--success);
  color: white;
}

.step-pill-label {
  font-weight: 500;
}

.step-pill-sep {
  color: var(--text-faint);
  font-size: var(--fs-xs);
}

@media (max-width: 540px) {
  .step-pill-label { display: none; }
  .step-indicator { padding: var(--sp-sm); }
}

/* ── Route-flip toast ──────────────────────────────────────── */

.route-toast {
  position: fixed;
  top: 64px;
  left: 50%;
  transform: translateX(-50%) translateY(-20px);
  z-index: 50;
  background: var(--navy);
  color: white;
  padding: var(--sp-sm) var(--sp-md);
  border-radius: var(--r-md);
  font-size: var(--fs-sm);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-med) var(--ease-out), transform var(--t-med) var(--ease-out);
  max-width: 90%;
  text-align: center;
}

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

.route-toast strong {
  color: var(--gold-light);
}

/* ── Reset button (testing) ───────────────────────────────── */

#reset-btn {
  position: fixed;
  top: var(--sp-md);
  right: var(--sp-md);
  z-index: 100;
  background: var(--surface);
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: var(--sp-xs) var(--sp-md);
  border-radius: var(--r-full);
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 500;
  cursor: pointer;
  transition: all var(--t-micro);
  box-shadow: var(--shadow-sm);
}

#reset-btn:hover {
  border-color: var(--border-hover);
  color: var(--text);
  box-shadow: var(--shadow-md);
}

@media (max-width: 540px) {
  #reset-btn {
    top: 8px;
    right: 8px;
    padding: 4px 10px;
    font-size: 11px;
  }
  .outcome { padding: var(--sp-sm) var(--sp-md); }
  .outcome-icon { font-size: 22px; }
  .outcome-label { font-size: var(--fs-sm); }
  .outcome-cue { font-size: var(--fs-xs); }
  .bundle-quickpick { padding: var(--sp-sm) var(--sp-md); }
  .bundle-quickpick-label { font-size: var(--fs-sm); }
  .outcome-section { padding: var(--sp-md); }
  .config-title { font-size: var(--fs-xl); }
  .best-fit-banner { padding: var(--sp-sm) var(--sp-md); }
  .best-fit-name { font-size: var(--fs-md); }
}

/* ── Best-fit indicator (sticky in right panel) ───────────── */

.best-fit-banner {
  position: sticky;
  top: 0;
  z-index: 5;
  background: linear-gradient(180deg, rgba(248, 246, 243, 0.95) 0%, rgba(248, 246, 243, 0.6) 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: var(--sp-md) var(--sp-md);
  border-bottom: 1px solid var(--border);
  margin: 0 0 var(--sp-md);
  font-size: var(--fs-sm);
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  flex-wrap: wrap;
}

.best-fit-label {
  font-size: var(--fs-xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.best-fit-name {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
  font-size: var(--fs-lg);
}

.best-fit-explainer {
  font-size: var(--fs-xs);
  color: var(--text-muted);
  font-style: italic;
}

.best-fit-others {
  font-size: var(--fs-xs);
  color: var(--gold);
  font-weight: 600;
  margin-left: var(--sp-sm);
}

.outcome-section {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--sp-xl);
  margin-bottom: var(--sp-md);
}

.outcome-section + .outcome-section {
  margin-top: 0;
}

/* ── Advisory price breakdown ────────────────────────────── */

.advisory-breakdown {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--sp-md) var(--sp-lg);
  margin-top: var(--sp-md);
  font-size: var(--fs-sm);
}

.advisory-breakdown-title {
  font-size: var(--fs-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: var(--sp-sm);
}

.advisory-breakdown-lines {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--sp-sm);
}

.advisory-breakdown-lines li {
  padding: 4px 0;
  color: var(--text);
  border-bottom: 1px dashed var(--border);
}

.advisory-breakdown-lines li:last-child { border-bottom: none; }

.advisory-breakdown-total {
  font-family: var(--font-display);
  text-align: right;
  padding-top: var(--sp-sm);
  color: var(--gold);
  font-size: var(--fs-md);
  font-variant-numeric: tabular-nums;
}

/* ── Toggle groups (categorized) ──────────────────────────── */

.toggle-group {
  margin-bottom: var(--sp-md);
  padding: var(--sp-md);
  background: var(--bg);
  border-radius: var(--r-md);
}

.toggle-group-title {
  font-family: var(--font-display);
  font-size: var(--fs-md);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: var(--sp-sm);
  letter-spacing: -0.01em;
}

.toggle-group .toggle {
  background: var(--surface);
}

/* ── Configurator note + tier description ─────────────────── */

.config-note {
  background: var(--gold-subtle);
  border-left: 3px solid var(--gold);
  padding: var(--sp-sm) var(--sp-md);
  border-radius: var(--r-sm);
  font-size: var(--fs-sm);
  color: var(--text);
  margin-bottom: var(--sp-md);
  line-height: 1.5;
}

.config-gate {
  background: var(--bg);
  border: 1px dashed var(--border-hover);
  border-radius: var(--r-md);
  padding: var(--sp-md) var(--sp-lg);
  font-size: var(--fs-sm);
  color: var(--text-muted);
  text-align: center;
  line-height: 1.6;
}

.config-gate-icon {
  font-size: var(--fs-lg);
  margin-right: var(--sp-xs);
}

.visor-advisory-included {
  background: linear-gradient(180deg, rgba(42, 157, 143, 0.06) 0%, var(--surface) 100%);
  border: 1px solid var(--visor);
  border-radius: var(--r-md);
  padding: var(--sp-lg);
  margin-bottom: var(--sp-md);
}

.visor-advisory-headline {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--visor);
  margin-bottom: var(--sp-sm);
}

.visor-advisory-included p {
  margin: 0 0 var(--sp-sm);
  font-size: var(--fs-sm);
  line-height: 1.6;
  color: var(--text);
}

.tier-pitch-hint {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  font-style: italic;
  margin-top: var(--sp-md);
}

.tier-pitch {
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--sp-lg);
  margin-top: var(--sp-md);
  background: linear-gradient(180deg, var(--bg) 0%, var(--surface) 100%);
}

.tier-pitch-bronze { border-top: 4px solid #B87333; }
.tier-pitch-silver { border-top: 4px solid #94A3B8; }
.tier-pitch-gold   { border-top: 4px solid var(--gold); }

.tier-pitch-header {
  display: flex;
  align-items: baseline;
  gap: var(--sp-md);
  flex-wrap: wrap;
  margin-bottom: var(--sp-sm);
}

.tier-pitch-name {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--navy);
}

.tier-pitch-who {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  font-style: italic;
}

.tier-pitch-price {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--gold);
  margin-bottom: var(--sp-sm);
  font-variant-numeric: tabular-nums;
}

.tier-pitch-headline {
  font-family: var(--font-display);
  font-size: var(--fs-md);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: var(--sp-md);
  line-height: 1.4;
}

.tier-pitch-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--sp-md);
}

.tier-pitch-bullets li {
  padding-left: 24px;
  position: relative;
  margin-bottom: 6px;
  color: var(--text);
  font-size: var(--fs-sm);
  line-height: 1.5;
}

.tier-pitch-bullets li::before {
  content: "✓";
  color: var(--success);
  font-weight: 700;
  position: absolute;
  left: 0;
  top: 0;
}

.tier-pitch-best {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  padding: var(--sp-sm) var(--sp-md);
  background: var(--surface);
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  margin-bottom: var(--sp-sm);
}

.tier-pitch-best strong {
  color: var(--navy);
  font-weight: 600;
}

.tier-pitch-upgrade {
  font-size: var(--fs-sm);
  color: var(--gold);
  font-style: italic;
  font-weight: 500;
  padding-top: var(--sp-sm);
  border-top: 1px dashed var(--border);
  margin-top: var(--sp-sm);
}

/* ── Toggles ───────────────────────────────────────────────── */

.toggle {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-md);
  padding: var(--sp-md);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: var(--surface);
  margin-bottom: var(--sp-sm);
  cursor: pointer;
  transition: border-color var(--t-micro), background var(--t-micro);
}

.toggle:hover { border-color: var(--border-hover); }

.toggle.checked {
  border-color: var(--gold);
  background: var(--gold-subtle);
}

.toggle-switch {
  width: 36px;
  height: 20px;
  background: var(--border);
  border-radius: var(--r-full);
  position: relative;
  flex-shrink: 0;
  transition: background var(--t-short);
  margin-top: 2px;
}

.toggle-switch::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  background: white;
  border-radius: var(--r-full);
  transition: transform var(--t-short);
}

.toggle.checked .toggle-switch {
  background: var(--gold);
}

.toggle.checked .toggle-switch::after {
  transform: translateX(16px);
}

.toggle-content { flex: 1; }

.toggle-label {
  font-weight: 600;
  color: var(--navy);
  font-size: var(--fs-md);
}

.toggle-explainer {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  margin-top: var(--sp-2xs);
  line-height: 1.4;
}

/* ── Price bar (fixed bottom) ──────────────────────────────── */

.price-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--navy);
  color: white;
  z-index: 10;
  transform: translateY(0);
  transition: transform var(--t-med) var(--ease-out);
  box-shadow: 0 -4px 12px rgba(15, 43, 76, 0.15);
}

.price-bar.hidden { transform: translateY(100%); }

.price-bar-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: var(--sp-md) var(--sp-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-md);
  flex-wrap: wrap;
}

.price-bar-left {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.price-bar-label {
  font-size: var(--fs-xs);
  opacity: 0.7;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
}

.price-bar-value {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  font-weight: 700;
  color: white;
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
}

.price-bar-cta {
  background: var(--gold);
  color: white;
  border: none;
  padding: var(--sp-md) var(--sp-xl);
  border-radius: var(--r-full);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--fs-md);
  cursor: pointer;
  transition: background var(--t-micro), transform var(--t-micro);
}

.price-bar-cta:hover { background: var(--gold-light); transform: translateY(-1px); }
.price-bar-cta:disabled { background: var(--text-faint); cursor: not-allowed; opacity: 0.5; transform: none; }

@media (max-width: 540px) {
  .price-bar-content { padding: var(--sp-sm) var(--sp-md); }
  .price-bar-value { font-size: var(--fs-xl); }
  .price-bar-cta { padding: var(--sp-sm) var(--sp-md); font-size: var(--fs-sm); }
}

/* ── Buttons / nav ─────────────────────────────────────────── */

.btn {
  font-family: var(--font-body);
  font-size: var(--fs-md);
  font-weight: 600;
  padding: var(--sp-sm) var(--sp-lg);
  border-radius: var(--r-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--t-micro);
}

.btn-primary {
  background: var(--gold);
  color: white;
  border-color: var(--gold);
}

.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); }

.btn-primary:disabled {
  background: var(--border);
  border-color: var(--border);
  cursor: not-allowed;
}

.btn-secondary {
  background: var(--surface);
  color: var(--text);
  border-color: var(--border);
}

.btn-secondary:hover { border-color: var(--border-hover); }

/* ── Recommendation card ───────────────────────────────────── */

.rec {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-xl);
  margin-bottom: var(--sp-md);
}

.rec-brand {
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: var(--sp-sm);
}

.rec-price {
  font-family: var(--font-display);
  font-size: var(--fs-3xl);
  font-weight: 700;
  color: var(--navy);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: var(--sp-sm);
}

.rec-price-unit {
  font-family: var(--font-body);
  font-size: var(--fs-md);
  font-weight: 400;
  color: var(--text-muted);
  margin-left: var(--sp-xs);
}

.rec-includes {
  list-style: none;
  padding: 0;
  margin: var(--sp-md) 0 0;
}

.rec-includes li {
  padding-left: 24px;
  position: relative;
  margin-bottom: var(--sp-xs);
  color: var(--text);
  font-size: var(--fs-sm);
}

.rec-includes li::before {
  content: "✓";
  color: var(--success);
  font-weight: 700;
  position: absolute;
  left: 0;
}

/* Per-brand accents on result cards */
.rec[data-route="visor"]              { border-top: 4px solid var(--visor); }
.rec[data-route="visor"] .rec-brand   { color: var(--visor); }
.rec[data-route="ledbetter-bo"]       { border-top: 4px solid var(--ledbetter); }
.rec[data-route="ledbetter-bo"] .rec-brand { color: var(--ledbetter); }
.rec[data-route="ledbetter-individual"] { border-top: 4px solid var(--ledbetter); }
.rec[data-route="ledbetter-individual"] .rec-brand { color: var(--ledbetter); }
.rec[data-route="costseg"]            { border-top: 4px solid var(--recs); }
.rec[data-route="costseg"] .rec-brand { color: var(--recs); }
.rec[data-route="bedrock"]            { border-top: 4px solid var(--bedrock); }
.rec[data-route="bedrock"] .rec-brand { color: var(--bedrock); }

/* ── Route badge (live in step 2) ──────────────────────────── */

.route-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-sm);
  padding: var(--sp-xs) var(--sp-md);
  border-radius: var(--r-full);
  font-size: var(--fs-sm);
  font-weight: 500;
  background: var(--gold-subtle);
  color: var(--gold);
  border: 1px solid var(--gold);
  margin-bottom: var(--sp-md);
}
