:root {
  --bg: #f0f4f8;
  --bg-strong: #dde5ee;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-strong: #ffffff;
  --text: #0b1726;
  --muted: #5e6d7e;
  --line: rgba(11, 23, 38, 0.1);
  --line-strong: rgba(11, 23, 38, 0.18);
  --brand: #0f4f9b;
  --brand-strong: #092d59;
  --brand-soft: rgba(15, 79, 155, 0.1);
  --accent: #10b981;
  --accent-strong: #047857;
  --accent-soft: rgba(16, 185, 129, 0.12);
  --success: #16a34a;
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --shadow-lg: 0 30px 70px rgba(10, 26, 48, 0.12);
  --shadow-md: 0 16px 36px rgba(10, 26, 48, 0.09);
  --content: min(1160px, calc(100% - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: linear-gradient(160deg, #f8fafd 0%, #eef2f7 55%, #f6f8fb 100%);
}

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

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

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

.site-shell {
  width: var(--content);
  margin: 0 auto;
  padding-bottom: 36px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 20px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 28px rgba(10, 26, 48, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: auto;
  height: 54px;
  max-height: 54px;
  display: block;
}

.site-footer img {
  width: auto;
  height: 60px;
  max-height: 60px;
  display: block;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.site-nav a {
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0.01em;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--brand);
}

.nav-toggle {
  display: none;
  width: 50px;
  height: 50px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: var(--brand-soft);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--brand-strong);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle.is-open span:first-child {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.is-open span:last-child {
  transform: translateY(-6px) rotate(-45deg);
}

.hero,
.section,
.site-footer {
  animation: rise 0.7s ease both;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.85fr);
  gap: 28px;
  align-items: stretch;
  padding: 42px 0 26px;
}

.hero__copy {
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.68)),
    linear-gradient(140deg, rgba(15, 79, 155, 0.04), rgba(255, 255, 255, 0));
  box-shadow: var(--shadow-lg);
}

.hero__copy h1,
.section__intro h2,
.difference-card__header h2,
.timeline__item h3,
.system-panel h3,
.service-card h3,
.hero__panel-card h2,
.quote-stage__header h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
}

.hero__copy h1 {
  max-width: 11ch;
  font-size: clamp(3.1rem, 6vw, 6rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.eyebrow {
  margin: 0 0 10px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand);
}

.hero__lede,
.section__intro p,
.system-panel p,
.difference-grid p,
.timeline__item p,
.hero__panel-card p,
.service-card p,
.site-footer p,
.quote-status,
.field span {
  color: var(--muted);
}

.hero__lede {
  max-width: 56ch;
  margin: 22px 0 0;
  font-size: 1.06rem;
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease;
}

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

.button--primary {
  background: var(--brand-strong);
  color: white;
  box-shadow: 0 12px 24px rgba(9, 45, 89, 0.18);
}

.button--secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.64);
  color: var(--text);
}

.hero__strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 32px;
}

.hero__strip div,
.hero__panel-card,
.service-card,
.difference-card,
.timeline__item,
.system-panel,
.quote-card {
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow-md);
}

.hero__strip div {
  min-height: 130px;
  padding: 18px;
  border-radius: var(--radius-md);
}

.hero__strip span,
.mini-metric span,
.system-panel__label,
.service-card__index,
.timeline__item span,
.field span {
  display: block;
  margin-bottom: 10px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero__strip strong,
.mini-metric strong {
  display: block;
  line-height: 1.5;
}

.hero__panel {
  display: grid;
  gap: 18px;
}

.hero__panel-card {
  padding: 26px;
  border-radius: var(--radius-lg);
}

.hero__panel-card--dark {
  background: linear-gradient(180deg, rgba(9, 45, 89, 0.98), rgba(11, 23, 38, 0.98));
  color: white;
}

.hero__panel-card--dark p {
  color: rgba(255, 255, 255, 0.7);
}

.hero__panel-card--dark .eyebrow {
  color: rgba(155, 203, 255, 0.9);
}

.hero__panel-card--light {
  display: grid;
  gap: 16px;
}

.mini-metric {
  padding-top: 2px;
}

.section {
  margin-top: 18px;
  padding: 36px;
  border-radius: var(--radius-xl);
}

.section__intro {
  max-width: 780px;
  margin-bottom: 24px;
}

.section__intro h2,
.difference-card__header h2,
.quote-stage__header h3 {
  font-size: clamp(2rem, 3.4vw, 3.35rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.section__intro p {
  max-width: 64ch;
  line-height: 1.7;
}

.section--services,
.section--quote,
.section--systems,
.section--process {
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow-md);
}

.quote-layout {
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.quote-rail {
  display: grid;
  gap: 14px;
}

.quote-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.quote-step,
.quote-rail__note,
.quote-card,
.estimate-option,
.estimate-metric,
.estimate-meta__block {
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow-md);
}

.quote-step {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 16px;
  border-radius: var(--radius-md);
  opacity: 0.64;
  transition: opacity 0.18s ease, transform 0.18s ease, border-color 0.18s ease;
}

.quote-step.is-active,
.quote-step.is-complete {
  opacity: 1;
}

.quote-step.is-active {
  border-color: rgba(15, 79, 155, 0.22);
  transform: translateY(-1px);
}

.quote-step strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand-strong);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
}

.quote-step.is-complete strong,
.quote-step.is-active strong {
  background: linear-gradient(180deg, var(--brand), var(--brand-strong));
  color: white;
}

.quote-step span {
  display: block;
  margin-bottom: 6px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand);
}

.quote-step p,
.quote-rail__note p,
.quote-stage__header p,
.estimate-meta__block p,
.estimate-option__description,
.quote-caption,
.quote-status {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.quote-rail__note {
  padding: 18px;
  border-radius: var(--radius-lg);
}

.quote-rail__note strong,
.estimate-option__top h4,
.quote-stage__header h3 {
  font-family: "Space Grotesk", sans-serif;
}

.quote-rail__note strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
}

.quote-card {
  padding: 26px;
  border-radius: var(--radius-xl);
}

.quote-stage {
  display: none;
}

.quote-stage.is-active {
  display: block;
}

.quote-stage__header {
  max-width: 760px;
  margin-bottom: 24px;
}

.quote-stage__header h3 {
  margin: 0 0 10px;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

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

.quote-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.quote-caption {
  margin-top: 8px;
}

.quote-status {
  margin: 18px 2px 0;
  font-size: 0.95rem;
}

.quote-status.is-success {
  color: #14643d;
}

.quote-status.is-error {
  color: #c53030;
}

.quote-status.is-empty {
  display: none;
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: rgba(197, 48, 48, 0.5);
  box-shadow: 0 0 0 3px rgba(197, 48, 48, 0.09);
  background: rgba(255, 248, 248, 0.9);
}

.autocomplete-wrap {
  position: relative;
}

.autocomplete-wrap input {
  width: 100%;
}

.autocomplete-list {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 200;
  margin: 0;
  padding: 6px;
  list-style: none;
  background: white;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  max-height: 260px;
  overflow-y: auto;
}

.autocomplete-list li {
  padding: 11px 14px;
  border-radius: 11px;
  cursor: pointer;
  font-size: 0.91rem;
  line-height: 1.45;
  color: var(--text);
  transition: background 0.12s ease, color 0.12s ease;
}

.autocomplete-list li:hover,
.autocomplete-list li.is-focused {
  background: var(--brand-soft);
  color: var(--brand-strong);
}

.autocomplete-list__loading {
  padding: 12px 14px;
  font-size: 0.88rem;
  color: var(--muted);
  text-align: center;
}

.field__hint {
  margin: 6px 2px 0;
  font-size: 0.8rem;
  line-height: 1.45;
  color: var(--muted);
}

.estimate-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.estimate-metric {
  padding: 18px;
  border-radius: var(--radius-md);
}

.estimate-metric span,
.estimate-meta__block span,
.estimate-option__top span {
  display: block;
  margin-bottom: 8px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand);
}

.estimate-metric strong {
  display: block;
  font-size: 1.28rem;
}

.estimate-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.estimate-option {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  border-radius: var(--radius-lg);
}

.estimate-option {
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

.estimate-option:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(10, 26, 48, 0.13);
}

.estimate-option.is-recommended {
  border-color: rgba(15, 79, 155, 0.26);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(228, 239, 250, 0.78));
}

.estimate-option.is-selected {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(15, 79, 155, 0.15), var(--shadow-md);
  transform: translateY(-2px);
}

.estimate-option__top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: start;
  flex-wrap: wrap;
}

.estimate-option__top h4 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.05;
}

.estimate-option__badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--brand-strong);
  color: white;
  font-size: 0.8rem;
}

.estimate-option__price {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.5rem;
}

.estimate-option__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.estimate-option__list li {
  padding: 10px 0;
  border-top: 1px solid var(--line);
  line-height: 1.5;
}

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

.estimate-meta__block {
  padding: 18px;
  border-radius: var(--radius-md);
}

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

.service-card {
  min-height: 280px;
  padding: 22px;
  border-radius: var(--radius-lg);
}

.service-card__index {
  color: var(--brand);
}

.service-card h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
}

.service-card p {
  min-height: 78px;
  line-height: 1.65;
}

.service-card ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  padding: 10px 0;
  border-top: 1px solid var(--line);
  font-weight: 700;
}

.systems-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.systems-selector {
  display: grid;
  gap: 10px;
}

.system-tab {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.65);
  text-align: left;
  font-weight: 800;
  color: var(--muted);
  transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.system-tab.is-active {
  border-color: transparent;
  background: linear-gradient(180deg, var(--brand), var(--brand-strong));
  color: white;
}

.system-panels {
  position: relative;
  min-height: 330px;
}

.system-panel {
  position: absolute;
  inset: 0;
  padding: 26px;
  border-radius: var(--radius-lg);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.system-panel.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.system-panel__label {
  color: var(--brand);
}

.system-panel h3 {
  max-width: 16ch;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.system-panel p {
  max-width: 62ch;
  line-height: 1.8;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.tag-row span {
  padding: 11px 14px;
  border: 1px solid rgba(15, 79, 155, 0.12);
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand-strong);
  font-size: 0.92rem;
  font-weight: 800;
}

.tag-row--dense span {
  padding: 9px 12px;
}

.difference-card {
  padding: 34px;
  border-radius: var(--radius-xl);
}

.difference-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.difference-grid article {
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.difference-grid h3 {
  margin: 0 0 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.25rem;
}

.difference-grid p,
.timeline__item p {
  line-height: 1.75;
}

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

.timeline__item {
  padding: 22px;
  border-radius: var(--radius-lg);
}

.timeline__item span {
  color: var(--brand);
}

.timeline__item h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field--full {
  grid-column: 1 / -1;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--text);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.field textarea {
  resize: vertical;
  min-height: 150px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(15, 79, 155, 0.5);
  box-shadow: 0 0 0 4px rgba(15, 79, 155, 0.1);
  background: white;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 28px 6px 0;
}

.site-footer p {
  max-width: 40ch;
  text-align: right;
  line-height: 1.6;
}

.footer-leads-link {
  display: inline-block;
  margin-top: 6px;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-leads-link:hover,
.footer-leads-link:focus-visible {
  color: var(--brand-strong);
}

/* ─── VEU rebate + trust + contact additions ─────────────────────────────── */

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(15, 79, 155, 0.12), rgba(15, 79, 155, 0.04));
  border: 1px solid rgba(15, 79, 155, 0.22);
  color: var(--brand-strong);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.hero__badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
}

.hero__lede strong {
  color: var(--brand-strong);
  font-weight: 800;
}

.service-card {
  position: relative;
}

.rebate-pill {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  margin-top: 16px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(15, 79, 155, 0.1);
  border: 1px solid rgba(15, 79, 155, 0.2);
  color: var(--brand-strong);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.rebate-pill--muted {
  background: rgba(11, 23, 38, 0.04);
  border-color: rgba(11, 23, 38, 0.1);
  color: var(--muted);
}

.section--rebates {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.68)),
    linear-gradient(140deg, rgba(15, 79, 155, 0.09), rgba(255, 255, 255, 0));
}

.rebates-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 22px;
}

.rebate-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.82);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.rebate-card--hero {
  background: linear-gradient(180deg, rgba(9, 45, 89, 0.98), rgba(11, 23, 38, 0.98));
  color: white;
  border-color: transparent;
}

.rebate-card--hero p,
.rebate-card--hero .rebate-card__tag {
  color: rgba(255, 255, 255, 0.78);
}

.rebate-card__tag {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
}

.rebate-card strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.rebate-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

.rebates-process {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 18px;
}

.rebates-process article {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.74);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.rebates-process span {
  display: block;
  margin-bottom: 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.2rem;
  color: var(--brand);
}

.rebates-process h3 {
  margin: 0 0 8px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.rebates-process p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.rebate-footnote {
  margin: 0;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  background: rgba(11, 23, 38, 0.04);
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.6;
}

/* Trust band */
.section--trust {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow-md);
}

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

.trust-grid article {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.74);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.trust-grid span {
  display: block;
  margin-bottom: 10px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand);
}

.trust-grid h3 {
  margin: 0 0 8px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.trust-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

/* Contact band */
.section--contact {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow-md);
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  gap: 28px;
  align-items: start;
}

.contact-card__copy h2 {
  margin: 0 0 14px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.contact-card__copy p {
  margin: 0 0 22px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 56ch;
}

.contact-list {
  margin: 0;
  padding: 22px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-md);
  display: grid;
  gap: 14px;
}

.contact-list div {
  display: grid;
  gap: 4px;
}

.contact-list dt {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand);
}

.contact-list dd {
  margin: 0;
  font-weight: 700;
  color: var(--text);
  line-height: 1.5;
}

.contact-list dd a {
  color: var(--brand-strong);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-list dd a:hover {
  color: var(--brand);
}

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

@media (max-width: 1100px) {
  .hero,
  .quote-layout,
  .systems-layout {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .timeline,
  .difference-grid,
  .estimate-options,
  .estimate-meta,
  .estimate-band,
  .rebates-grid,
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rebates-process {
    grid-template-columns: 1fr;
  }

  .contact-card {
    grid-template-columns: 1fr;
  }

  .system-panels {
    min-height: 360px;
  }
}

@media (max-width: 820px) {
  .site-header {
    border-radius: 26px;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-md);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px 10px;
  }

  .hero__strip,
  .service-grid,
  .timeline,
  .difference-grid,
  .estimate-options,
  .estimate-meta,
  .estimate-band,
  .quote-form-grid,
  .rebates-grid,
  .trust-grid,
  .rebates-process {
    grid-template-columns: 1fr;
  }

  .system-panels {
    min-height: 420px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer p {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .site-shell {
    width: min(100% - 18px, 1160px);
  }

  .hero__copy,
  .section,
  .difference-card,
  .hero__panel-card,
  .quote-card {
    padding: 20px;
  }

  .hero__copy h1 {
    max-width: 12ch;
    font-size: 2.7rem;
  }

  .section__intro h2,
  .difference-card__header h2,
  .quote-stage__header h3 {
    font-size: 2rem;
  }

  .hero__actions,
  .quote-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .brand img {
    height: 44px;
    max-height: 44px;
  }

  .site-footer img {
    height: 52px;
    max-height: 52px;
  }

  .system-panels {
    min-height: 460px;
  }
}

/* ─── Step 1 finance teaser ────────────────────────────────────────────── */
.quote-finance-teaser {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin: 18px 0 0;
  padding: 14px 18px;
  border: 1px dashed rgba(15, 79, 155, 0.35);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(15, 79, 155, 0.06), rgba(15, 79, 155, 0.02));
  color: var(--text);
  line-height: 1.5;
  font-size: 0.95rem;
}

.quote-finance-teaser.is-hidden {
  display: none;
}

.quote-finance-teaser__badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* ─── Finance panel (estimate step) ────────────────────────────────────── */
.estimate-finance:empty {
  display: none;
}

.estimate-finance {
  margin: 18px 0;
}

.finance-panel {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(232, 240, 250, 0.92));
  border: 1px solid rgba(15, 79, 155, 0.18);
  box-shadow: var(--shadow-md);
}

.finance-panel__head {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  justify-content: space-between;
  align-items: flex-start;
}

.finance-panel__head h4 {
  margin: 4px 0 6px;
  font-size: 1.35rem;
  line-height: 1.1;
}

.finance-panel__subtitle {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.finance-mode-toggle {
  display: inline-flex;
  padding: 4px;
  gap: 4px;
  background: rgba(11, 23, 38, 0.05);
  border-radius: 999px;
}

.finance-mode-tab {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  color: var(--muted);
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}

.finance-mode-tab.is-active {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 6px 14px rgba(15, 79, 155, 0.28);
}

.finance-panel__controls {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.finance-provider-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.finance-provider-tab {
  appearance: none;
  border: 1px solid var(--line-strong);
  background: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
}

.finance-provider-tab.is-active {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

.finance-panel__toggle-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  justify-content: space-between;
}

.finance-term-group,
.finance-frequency-group {
  display: inline-flex;
  gap: 6px;
  background: rgba(11, 23, 38, 0.05);
  padding: 4px;
  border-radius: 999px;
}

.finance-term-btn,
.finance-frequency-btn {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 7px 14px;
  border-radius: 999px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}

.finance-term-btn.is-active,
.finance-frequency-btn.is-active {
  background: #fff;
  color: var(--text);
  box-shadow: 0 4px 10px rgba(10, 26, 48, 0.1);
}

.finance-panel__headline {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 18px;
  border-radius: var(--radius-md);
  background: #fff;
  border: 1px solid var(--line);
}

.finance-panel__from,
.finance-panel__meta,
.finance-panel__savings {
  margin: 0;
}

.finance-panel__from {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}

.finance-panel__price {
  margin: 6px 0 6px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.2rem;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 6px;
  color: var(--brand-strong);
}

.finance-panel__price strong {
  font-size: 2.6rem;
  font-weight: 700;
}

.finance-panel__price span {
  font-size: 1.1rem;
  color: var(--muted);
  font-weight: 500;
}

.finance-panel__meta {
  color: var(--muted);
  font-size: 0.92rem;
}

.finance-panel__savings {
  margin-top: 8px;
  color: var(--text);
}

.finance-panel__notice {
  margin: 10px 0 0;
  padding: 10px 12px;
  background: rgba(202, 138, 4, 0.1);
  border-radius: 12px;
  color: #7c5a00;
  font-size: 0.9rem;
}

.finance-panel__breakdown dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 18px;
  margin: 0;
}

.finance-panel__breakdown div {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 8px 0;
  border-top: 1px solid var(--line);
}

.finance-panel__breakdown div:first-child,
.finance-panel__breakdown div:nth-child(2) {
  border-top: 0;
}

.finance-panel__breakdown dt {
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
}

.finance-panel__breakdown dd {
  margin: 0;
  font-weight: 700;
  font-family: "Space Grotesk", sans-serif;
}

.finance-panel__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  font-size: 0.9rem;
  color: var(--text);
}

.finance-panel__trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.finance-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
  justify-content: space-between;
}

.finance-panel__cta {
  flex: 0 0 auto;
}

.finance-panel__disclaimer {
  flex: 1 1 320px;
  margin: 0;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.5;
}

.finance-panel__upfront {
  padding: 18px;
  border-radius: var(--radius-md);
  background: #fff;
  border: 1px solid var(--line);
}

@media (max-width: 780px) {
  .finance-panel__headline {
    grid-template-columns: minmax(0, 1fr);
  }

  .finance-panel__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .finance-panel__cta {
    width: 100%;
    text-align: center;
  }

  .finance-panel__breakdown dl {
    grid-template-columns: 1fr;
  }
}

/* ─── Header CTAs + nav punch ──────────────────────────────────────────── */
.site-header__actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.button--compact {
  min-height: 44px;
  padding: 0 18px;
  font-size: 0.95rem;
}

.button--accent {
  background: linear-gradient(180deg, var(--accent), var(--accent-strong));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 12px 26px rgba(16, 185, 129, 0.32);
}

.button--accent:hover,
.button--accent:focus-visible {
  box-shadow: 0 14px 30px rgba(16, 185, 129, 0.42);
}

/* Header nav: more visible, active-chip pill */
.site-nav {
  gap: 6px;
  padding: 4px;
  background: rgba(11, 23, 38, 0.04);
  border-radius: 999px;
}

.site-nav a {
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--text);
  font-weight: 700;
  transition: background 0.18s ease, color 0.18s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: var(--brand-soft);
  color: var(--brand-strong);
}

/* Rebate dollar amounts — hero card already overrides to white */
.rebate-card strong {
  color: var(--accent-strong);
}

.rebate-card--hero strong {
  color: #fff;
}

.rebate-card__tag {
  color: var(--accent);
}

.rebate-card--hero .rebate-card__tag {
  color: rgba(255, 255, 255, 0.85);
}

/* System tabs — kept blue-gradient active state, bumped hover + shadow */
.system-tab {
  box-shadow: 0 1px 0 rgba(11, 23, 38, 0.04);
}

.system-tab:hover,
.system-tab:focus-visible {
  border-color: var(--accent);
  color: var(--text);
  background: #fff;
}

.system-tab.is-active {
  box-shadow: 0 14px 28px rgba(9, 45, 89, 0.25);
}

/* Hero VEU badge in emerald instead of brand-soft blue for attention */
.hero__badge {
  background: var(--accent-soft);
  color: var(--accent-strong);
}

/* Rebate pill on service cards — emerald to match rebate numbers */
.rebate-pill {
  background: var(--accent-soft);
  color: var(--accent-strong);
  border-color: rgba(16, 185, 129, 0.35);
}

/* Collapse nav earlier (980px) — we now have brand + nav + 2 CTAs + toggle, so */
/* the bar gets crowded before the existing 820px breakpoint. Uses the same    */
/* display: none/flex pattern as the 820px rule for consistency.               */
@media (max-width: 980px) {
  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow-md);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px 10px;
    text-align: left;
    border-radius: var(--radius-md);
  }

  .site-header__actions {
    gap: 8px;
  }

  .button--compact {
    padding: 0 14px;
    font-size: 0.88rem;
    min-height: 40px;
  }
}

@media (max-width: 520px) {
  /* Phones: keep the bright accent Call CTA, drop the secondary Quote button. */
  .site-header__actions .button--primary.button--compact {
    display: none;
  }
}

/* ─── Hero panel photo ─────────────────────────────────────────────────── */
.hero__panel-photo {
  position: relative;
  margin: 0 0 14px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-md);
  background: linear-gradient(135deg, #0f4f9b 0%, #092d59 100%);
  aspect-ratio: 16 / 10;
}

.hero__panel-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero__panel-photo figcaption {
  position: absolute;
  left: 14px;
  bottom: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(9, 28, 53, 0.72);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

/* ─── Brand strip (logo wall) ──────────────────────────────────────────── */
.brand-strip {
  margin: 18px 0 32px;
  padding: 20px 26px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.7));
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: minmax(200px, auto) minmax(0, 1fr);
  gap: 22px;
  align-items: center;
}

.brand-strip__eyebrow {
  margin: 0;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.brand-strip__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  justify-content: flex-end;
  align-items: center;
}

.brand-chip {
  padding: 10px 16px;
  border-radius: 12px;
  border: 1px solid rgba(11, 23, 38, 0.08);
  background: rgba(255, 255, 255, 0.9);
  color: var(--brand-strong);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  box-shadow: 0 1px 0 rgba(11, 23, 38, 0.04);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.brand-chip:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(11, 23, 38, 0.08);
}

/* Brand-specific tinting — subtle identifying tint per chip */
.brand-chip--mitsubishi { border-color: #e60012; color: #8a000a; }
.brand-chip--daikin     { border-color: #0055a5; color: #003974; }
.brand-chip--midea      { border-color: #007f4e; color: #005a38; }
.brand-chip--fujitsu    { border-color: #ce1126; color: #8d0a18; }
.brand-chip--rinnai     { border-color: #ee7a00; color: #a14a00; }
.brand-chip--samsung    { border-color: #1428a0; color: #0c186a; }

@media (max-width: 820px) {
  .brand-strip {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .brand-strip__list {
    justify-content: flex-start;
  }
}

/* ─── System panel photos ──────────────────────────────────────────────── */
.system-panel__photo {
  margin: 0 0 18px;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, rgba(15, 79, 155, 0.1), rgba(16, 185, 129, 0.1));
  border: 1px solid rgba(11, 23, 38, 0.06);
}

.system-panel__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ─── Finance marketing section ────────────────────────────────────────── */
.section--finance-marketing {
  background: linear-gradient(140deg, rgba(16, 185, 129, 0.06) 0%, rgba(255, 255, 255, 0.6) 65%);
  border: 1px solid rgba(16, 185, 129, 0.18);
  box-shadow: var(--shadow-md);
}

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

.finance-partner {
  position: relative;
  padding: 28px 26px 26px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.finance-partner h3 {
  margin: 4px 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.22rem;
  letter-spacing: -0.02em;
}

.finance-partner p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.finance-partner__points {
  margin: 4px 0 8px;
  padding: 0 0 0 18px;
  color: var(--text);
  font-size: 0.94rem;
}

.finance-partner__points li {
  margin-bottom: 4px;
}

.finance-partner__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  padding: 10px 18px;
  border-radius: 12px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
  color: #fff;
  min-width: 88px;
}

.finance-partner__badge--humm {
  background: linear-gradient(135deg, #f7a600 0%, #ee4e94 55%, #a135c8 100%);
  box-shadow: 0 10px 22px rgba(167, 46, 189, 0.28);
}

.finance-partner__badge--zip {
  background: linear-gradient(135deg, #16193e 0%, #5d48f5 100%);
  box-shadow: 0 10px 22px rgba(93, 72, 245, 0.28);
}

.finance-partner__tag {
  display: inline-block;
  align-self: flex-start;
  margin-top: auto;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.finance-disclosure {
  margin: 18px 0 0;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  background: rgba(11, 23, 38, 0.03);
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.6;
}

@media (max-width: 820px) {
  .finance-partners {
    grid-template-columns: 1fr;
  }
}

/* ─── Gallery band ─────────────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.gallery-item {
  position: relative;
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, rgba(15, 79, 155, 0.12), rgba(16, 185, 129, 0.1));
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-md);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.03);
}

.gallery-item figcaption {
  position: absolute;
  left: 12px;
  bottom: 10px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(9, 28, 53, 0.72);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

@media (max-width: 980px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

/* ─── Trust card accreditation photo ───────────────────────────────────── */
.trust-cert {
  margin: 14px 0 0;
  padding: 10px;
  border-radius: var(--radius-md);
  border: 1px dashed rgba(16, 185, 129, 0.4);
  background: rgba(16, 185, 129, 0.06);
}

.trust-cert img {
  width: 100%;
  max-height: 160px;
  object-fit: contain;
  border-radius: 10px;
  background: #fff;
  display: block;
}

.trust-cert figcaption {
  margin-top: 8px;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--accent-strong);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
}

/* When the ARC image fails to load (still waiting on upload), the onerror
   handler hides the broken <img> and we show a placeholder caption. */
.trust-cert.is-missing img {
  display: none;
}

.trust-cert.is-missing {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 110px;
}

.trust-cert.is-missing figcaption {
  margin-top: 0;
  color: var(--muted);
  font-weight: 700;
}

.trust-cert.is-missing figcaption::before {
  content: "Certificate image pending upload · ";
  color: var(--accent-strong);
}

/* ─── Option card finance hint ──────────────────────────────────────────── */
.estimate-option__finance-hint {
  margin: -4px 0 0;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.estimate-option.is-selected .estimate-option__finance-hint {
  color: var(--accent-strong);
}

/* ─── CAPTCHA widget wrapper ────────────────────────────────────────────── */
.quote-captcha {
  margin-top: 4px;
}

.quote-captcha .cf-turnstile {
  display: flex;
}

/* ─── Estimate step: overflow + responsive fixes ────────────────────────── */

/* Prevent card content overflowing on narrow screens */
.estimate-option {
  overflow: hidden;
  min-width: 0;
  word-break: break-word;
}

.estimate-option__price {
  overflow-wrap: break-word;
}

/* Finance panel: prevent internal overflow on medium screens */
.finance-panel {
  min-width: 0;
  overflow: hidden;
}

.finance-panel__price strong {
  word-break: break-all;
}

/* Tighten estimate-band to 2 cols earlier */
@media (max-width: 900px) {
  .estimate-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Finance toggle row: stack vertically on small screens */
@media (max-width: 560px) {
  .finance-panel__toggle-row {
    flex-direction: column;
    gap: 10px;
  }

  .finance-term-group,
  .finance-frequency-group {
    flex-wrap: wrap;
    border-radius: 14px;
    justify-content: flex-start;
  }

  .finance-panel__head {
    flex-direction: column;
    gap: 14px;
  }

  .finance-mode-toggle {
    width: 100%;
  }

  .finance-mode-tab {
    flex: 1;
    text-align: center;
  }

  /* Option cards: always single column on phones */
  .estimate-options {
    grid-template-columns: 1fr;
  }
}

/* Estimate meta blocks: always 1 col on small screens */
@media (max-width: 640px) {
  .estimate-meta {
    grid-template-columns: 1fr;
  }
}
