/* Ventra — modern utility/financial aesthetic */

:root {
  --ink: #061629;
  --navy: #0a2540;
  --navy-2: #0e2d4f;
  --blue: #0f6cf5;
  --blue-deep: #0a4fc4;
  --blue-tint: #e8f1ff;
  --paper: #ffffff;
  --paper-2: #f5f5f3;
  --line: #ececea;
  --line-strong: #2a3a52;
  --text: #0a2540;
  --muted: #5b6b80;
  --muted-2: #8a98ac;
  --amber: #f59e0b;
  --amber-deep: #b45309;
  --green: #047857;
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-card: 0 1px 0 rgba(10,37,64,0.04), 0 8px 24px -12px rgba(10,37,64,0.18);
  --shadow-pop: 0 12px 40px -16px rgba(10,37,64,0.35);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--text);
  font-family: 'Geist', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-feature-settings: 'ss01', 'cv11';
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.5;
}

body { overflow-x: hidden; }

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

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

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

.mono {
  font-family: 'Geist Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}

.eyebrow {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  font-weight: 500;
  margin: 0;
}

/* Layout shell */

.shell {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}

@media (max-width: 720px) {
  .shell { padding: 0 20px; }
}

.rule {
  height: 1px;
  background: var(--line);
  width: 100%;
}

/* Header */

.v-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 250, 247, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}

.v-header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}

.v-header__brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.v-header__brand img {
  height: 38px;
  width: auto;
  display: block;
}

.v-header__nav {
  display: flex;
  gap: 4px;
  align-items: center;
}

.v-header__nav a {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  border-radius: 8px;
  transition: background 120ms ease;
}
.v-header__nav a:hover { background: var(--paper-2); }

.v-header__cta {
  display: flex;
  gap: 10px;
  align-items: center;
}

@media (max-width: 920px) {
  .v-header__nav { display: none; }
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 80ms ease, background 120ms ease, border 120ms ease, color 120ms ease;
  white-space: nowrap;
  text-decoration: none;
  letter-spacing: -0.005em;
}
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.btn--primary:hover { background: var(--navy); }

.btn--accent {
  background: var(--blue);
  color: white;
  border-color: var(--blue);
}
.btn--accent:hover { background: var(--blue-deep); }

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}
.btn--ghost:hover { background: var(--paper-2); }

.btn--lg { padding: 14px 24px; font-size: 15px; }

.btn--xl {
  padding: 16px 26px;
  font-size: 16px;
  border-radius: 12px;
}

.btn .arrow {
  display: inline-block;
  transition: transform 160ms ease;
}
.btn:hover .arrow { transform: translateX(3px); }

/* Hero */

.hero {
  padding: 56px 0 80px;
  position: relative;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: start;
}

@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
}

.hero__eyebrow-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
}

.hero__eyebrow-row .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(4,120,87,0.14);
}

.hero h1 {
  font-size: clamp(44px, 6.4vw, 88px);
  line-height: 0.96;
  letter-spacing: -0.035em;
  font-weight: 600;
  margin: 0 0 24px;
  color: var(--ink);
}

.hero h1 em {
  font-style: normal;
  color: var(--blue);
}

.hero__lede {
  font-size: 19px;
  line-height: 1.45;
  color: var(--muted);
  max-width: 540px;
  margin: 0 0 32px;
  letter-spacing: -0.005em;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 48px;
}

.hero__actions .helper {
  font-size: 13px;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-top: 56px;
}

@media (max-width: 980px) {
  .hero__stats { grid-template-columns: repeat(3, 1fr); }
  .hero__stats > div:nth-child(3n) { border-right: none !important; }
  .hero__stats > div:nth-child(-n+3) { border-bottom: 1px solid var(--line); }
}
@media (max-width: 620px) {
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
  .hero__stats > div:nth-child(n) { border-right: 1px solid var(--line); }
  .hero__stats > div:nth-child(2n) { border-right: none !important; }
  .hero__stats > div { border-bottom: 1px solid var(--line); }
  .hero__stats > div:nth-last-child(-n+2) { border-bottom: none; }
}

.hero__stats > div {
  padding: 22px 20px;
  border-right: 1px solid var(--line);
}
.hero__stats > div:last-child { border-right: none; }
.hero__stats > div:first-child { padding-left: 0; }
.hero__stats > div:last-child { padding-right: 0; }

.hero__stats .label {
  font-family: 'Geist Mono', monospace;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted-2);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.hero__stats .label svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  color: var(--blue);
  opacity: 0.75;
}

.hero__stats .value {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.hero__stats .sub {
  font-size: 12px;
  color: var(--muted);
  margin-top: 8px;
  line-height: 1.4;
}

/* Hero photo + price card */

.hero__visual {
  position: relative;
}

.hero__photo {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--paper-2);
  box-shadow: var(--shadow-card);
}

.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,22,41,0) 40%, rgba(6,22,41,0.4) 100%);
  pointer-events: none;
}

.hero__photo-tag {
  position: absolute;
  bottom: 18px;
  left: 18px;
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero__photo-tag::before {
  content: '';
  width: 18px;
  height: 1px;
  background: rgba(255,255,255,0.7);
}

/* Floating price card on hero */

.hero__quote-card {
  position: absolute;
  bottom: -36px;
  right: -28px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 20px;
  width: 320px;
  box-shadow: var(--shadow-pop);
}

@media (max-width: 980px) {
  .hero__quote-card { right: 12px; bottom: -24px; width: 280px; }
}

.hero__quote-card .eyebrow {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero__quote-card .price {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  margin: 6px 0 4px;
  color: var(--ink);
}

.hero__quote-card .meta {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px dashed var(--line);
  margin-top: 10px;
}

.hero__quote-card .rebate {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-family: 'Geist Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--blue);
  background: rgba(15,108,245,0.1);
  padding: 4px 8px;
  border-radius: 999px;
  margin-top: 8px;
}

/* Brand strip */

.brand-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
  margin-top: 40px;
}

.brand-strip__row {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.brand-strip__label {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  flex-shrink: 0;
}

.brand-strip__brands {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
  flex: 1;
}

.brand-strip__brands .blogo {
  font-family: 'Geist', sans-serif;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.025em;
  color: var(--ink);
  opacity: 0.5;
  transition: opacity 160ms ease, color 160ms ease;
  white-space: nowrap;
}
.brand-strip__brands .blogo:hover {
  opacity: 1;
  color: var(--blue);
}

/* Section */

.section {
  padding: 96px 0;
  position: relative;
}

@media (max-width: 720px) {
  .section { padding: 64px 0; }
}

.section--dark {
  background: var(--ink);
  color: var(--paper);
}
.section--dark .eyebrow { color: rgba(250,250,247,0.5); }

.section__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
  align-items: end;
}

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

.section__title {
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 600;
  margin: 12px 0 0;
  color: inherit;
  max-width: 14ch;
}

.section--dark .section__title { color: var(--paper); }

.section__sub {
  font-size: 17px;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
  max-width: 44ch;
}

.section--dark .section__sub { color: rgba(250,250,247,0.66); }

/* Quote flow */

.quote {
  background: white;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.quote__grid {
  display: grid;
  grid-template-columns: 320px 1fr;
}

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

.quote__rail {
  background: linear-gradient(180deg, #f7f8fb 0%, #eef3fb 100%);
  padding: 36px 28px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

@media (max-width: 960px) {
  .quote__rail { border-right: none; border-bottom: 1px solid var(--line); }
}

.quote__rail-eyebrow {
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.quote__rail-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 3px rgba(15,108,245,0.18);
}

.qstep {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 12px;
  cursor: default;
  transition: background 160ms ease;
  position: relative;
}

.qstep__num {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  color: var(--muted);
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  transition: all 160ms ease;
  box-shadow: 0 0 0 1px var(--line);
}

.qstep__title {
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
  letter-spacing: -0.005em;
}

.qstep__desc {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
  line-height: 1.4;
}

.qstep__pill {
  font-family: 'Geist Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 3px 7px;
  border-radius: 999px;
  color: var(--muted-2);
  background: rgba(0,0,0,0.04);
  white-space: nowrap;
}

.qstep.is-active {
  background: var(--blue);
  box-shadow: 0 8px 24px -10px rgba(15,108,245,0.45);
}
.qstep.is-active .qstep__num {
  background: white;
  color: var(--blue);
  box-shadow: none;
}
.qstep.is-active .qstep__title { color: white; }
.qstep.is-active .qstep__desc { color: rgba(255,255,255,0.78); }
.qstep.is-active .qstep__pill {
  background: rgba(255,255,255,0.18);
  color: white;
}

.qstep.is-done .qstep__num {
  background: var(--green);
  color: white;
  box-shadow: none;
}

.qstep.is-clickable { cursor: pointer; }
.qstep.is-clickable:not(.is-active):hover { background: rgba(15,108,245,0.06); }

.quote__rail-summary {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(10,37,64,0.08);
}
.quote__rail-summary h4 {
  font-family: 'Geist Mono', monospace;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  font-weight: 500;
  margin: 0 0 12px;
}
.quote__rail-summary ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.quote__rail-summary li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ink);
}
.quote__rail-summary li .k {
  color: var(--muted);
  font-size: 12px;
}
.quote__rail-summary li .v {
  font-weight: 500;
  color: var(--ink);
  text-align: right;
}
.quote__rail-summary li .v.empty {
  color: var(--muted-2);
  font-weight: 400;
  font-style: italic;
}

/* Quote body */

.section--quote {
  padding: 48px 0 80px;
}

@media (max-width: 720px) {
  .section--quote { padding: 32px 0 56px; }
}

.quote__body {
  padding: 36px 40px 28px;
}

@media (max-width: 720px) {
  .quote__body { padding: 28px 22px; }
}

.quote__heading {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 16px 0 26px;
  color: var(--ink);
}

.quote__sub {
  color: var(--muted);
  margin: 0 0 22px;
  font-size: 14px;
}

.quote__progress {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
}
.quote__progress span {
  height: 4px;
  flex: 1;
  border-radius: 999px;
  background: var(--line);
  transition: background 220ms ease;
}
.quote__progress span.active {
  background: var(--blue);
}

.quote__fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

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

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

.field > label {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--muted);
  font-family: 'Geist Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.field input,
.field select,
.field textarea {
  background: white;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 15px;
  color: var(--ink);
  outline: none;
  transition: border 120ms ease, box-shadow 120ms ease;
  width: 100%;
  font-family: inherit;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(10,37,64,0.08);
}

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

.field__hint {
  font-size: 12px;
  color: var(--muted);
  margin: 2px 0 0;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-height: 46px;
  align-items: center;
}
.chip {
  border: 1px solid var(--line);
  background: white;
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 13.5px;
  font-weight: 500;
  cursor: pointer;
  transition: all 120ms ease;
  color: var(--ink);
  line-height: 1;
}
.chip:hover { border-color: var(--ink); }
.chip.is-on {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

/* Quote nav */

.quote__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.quote__nav .step-count {
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* Estimate result */

.estimate {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.estimate__hero {
  background: var(--ink);
  color: var(--paper);
  border-radius: 18px;
  padding: 32px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

@media (max-width: 720px) {
  .estimate__hero { grid-template-columns: 1fr; padding: 24px; }
}

.estimate__hero::before {
  content: '';
  position: absolute;
  width: 380px;
  height: 380px;
  right: -120px;
  top: -120px;
  background: radial-gradient(circle, rgba(15,108,245,0.35), transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}

.estimate__price {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  margin: 8px 0;
}

.estimate__price .sep {
  color: rgba(250,250,247,0.4);
  margin: 0 8px;
  font-weight: 400;
}

.estimate__rebate {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  color: #cfe4ff;
  padding: 7px 14px;
  border-radius: 999px;
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 12px;
  border: 1px solid rgba(207,228,255,0.2);
}

.estimate__hero-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
  font-size: 13px;
}

.estimate__hero-meta > div span {
  font-family: 'Geist Mono', monospace;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(250,250,247,0.5);
  display: block;
  margin-bottom: 4px;
}

.estimate__hero-meta > div strong {
  font-size: 16px;
  font-weight: 600;
  color: white;
  letter-spacing: -0.01em;
}

.estimate__options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

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

.estimate__card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 160ms ease;
  position: relative;
}
.estimate__card:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.estimate__card--featured {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}
.estimate__card--featured .estimate__card-name { color: white; }
.estimate__card--featured .estimate__card-price { color: white; }
.estimate__card--featured .estimate__card-points li {
  color: rgba(250,250,247,0.8);
}

.estimate__card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.estimate__card-name {
  font-size: 13px;
  font-family: 'Geist Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  font-weight: 500;
}

.estimate__card-tag {
  font-size: 10.5px;
  font-family: 'Geist Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(15,108,245,0.16);
  color: var(--blue);
}

.estimate__card--featured .estimate__card-tag {
  background: rgba(207,228,255,0.18);
  color: #cfe4ff;
}

.estimate__card-price {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
  line-height: 1;
}

.estimate__card-finance {
  font-size: 13px;
  color: var(--muted);
}
.estimate__card--featured .estimate__card-finance {
  color: rgba(250,250,247,0.7);
}

.estimate__card-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13.5px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: 14px;
}
.estimate__card--featured .estimate__card-points { border-top-color: rgba(255,255,255,0.12); }
.estimate__card-points li::before {
  content: '— ';
  color: var(--muted-2);
}

/* Services grid */

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: white;
}

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

.service {
  padding: 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: start;
}
.service:nth-child(2n) { border-right: none; }
.service:nth-last-child(-n+2) { border-bottom: none; }
@media (max-width: 720px) {
  .service { border-right: none; }
  .service:last-child { border-bottom: none; }
}

.service__num {
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  color: var(--muted);
  padding-top: 4px;
}

.service h3 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 0 0 8px;
  color: var(--ink);
}

.service p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.5;
}

.service__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Geist Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(15,108,245,0.1);
  padding: 4px 8px;
  border-radius: 999px;
}
.service__tag--muted {
  color: var(--muted);
  background: var(--paper-2);
}

/* Rebates */

.rebates-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 16px;
}
@media (max-width: 820px) {
  .rebates-grid { grid-template-columns: 1fr; }
}

.rebate {
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  min-height: 200px;
}

.rebate--hero {
  background: linear-gradient(140deg, var(--blue), var(--blue-deep));
  color: white;
  border-color: var(--blue-deep);
}
.rebate--hero .rebate__price { color: white; }
.rebate--hero .eyebrow { color: rgba(255,255,255,0.7); }

.rebate__price {
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.rebate p {
  margin: 0;
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.5;
}
.rebate--hero p { color: rgba(255,255,255,0.86); }

/* Process row */

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 32px;
}

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

.process > div {
  padding: 0 18px;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.process > div:first-child { padding-left: 0; }
.process > div:last-child { border-right: none; padding-right: 0; }

.process span {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250,250,247,0.5);
}

.process h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 8px 0 4px;
  color: white;
  letter-spacing: -0.01em;
}

.process p {
  margin: 0;
  font-size: 13.5px;
  color: rgba(250,250,247,0.6);
  line-height: 1.5;
}

/* Finance */

.finance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

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

.finance-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.finance-card__brand {
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 0 14px;
  border-radius: 8px;
  background: var(--paper-2);
  font-family: 'Geist Mono', monospace;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.02em;
  align-self: flex-start;
}

.finance-card--humm .finance-card__brand { background: #fff4e6; color: #e85d00; }
.finance-card--zip .finance-card__brand { background: #f0f9ff; color: #1d4ed8; }

.finance-card h3 {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--ink);
}

.finance-card p { margin: 0; color: var(--muted); font-size: 14.5px; line-height: 1.5; }

.finance-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
  font-size: 14px;
}

.finance-card li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.finance-card li::before {
  content: '';
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1.5px solid var(--ink);
  flex-shrink: 0;
  position: relative;
}
.finance-card li::after {
  content: '';
  position: absolute;
  margin-left: 4px;
  margin-top: 2px;
  width: 6px;
  height: 3px;
  border-left: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
  transform: rotate(-45deg);
}

/* FAQ */

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item__head {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  color: var(--ink);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: color 120ms ease;
}
.faq-item__head:hover { color: var(--blue); }

.faq-item__icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
  transition: all 160ms ease;
}
.faq-item__icon::before,
.faq-item__icon::after {
  content: '';
  position: absolute;
  background: var(--ink);
}
.faq-item__icon::before { width: 10px; height: 1.5px; }
.faq-item__icon::after { width: 1.5px; height: 10px; transition: transform 160ms ease; }

.faq-item.is-open .faq-item__icon { background: var(--ink); border-color: var(--ink); }
.faq-item.is-open .faq-item__icon::before { background: white; }
.faq-item.is-open .faq-item__icon::after { transform: scaleY(0); }

.faq-item__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 240ms ease, padding 240ms ease;
}
.faq-item__body p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.55;
  max-width: 70ch;
}

.faq-item.is-open .faq-item__body { max-height: 240px; }

/* Footer */

.v-footer {
  background: var(--ink);
  color: rgba(250,250,247,0.7);
  padding: 64px 0 32px;
}

.v-footer__row {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 32px;
  align-items: start;
}
@media (max-width: 820px) {
  .v-footer__row { grid-template-columns: 1fr 1fr; gap: 24px; }
}

.v-footer h4 {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(250,250,247,0.5);
  margin: 0 0 14px;
  font-weight: 500;
}

.v-footer a, .v-footer p {
  display: block;
  font-size: 14px;
  color: rgba(250,250,247,0.78);
  margin: 0 0 8px;
  transition: color 120ms ease;
}
.v-footer a:hover { color: white; }

.v-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.v-footer__brand-wm {
  font-family: 'Geist', sans-serif;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: white;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.v-footer__brand-wm svg {
  width: 28px;
  height: 28px;
}

.v-footer__bottom {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  color: rgba(250,250,247,0.5);
  font-family: 'Geist Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  flex-wrap: wrap;
  gap: 12px;
}

/* Trust band */

.trust-band {
  background: var(--paper-2);
  padding: 32px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-band__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 720px) { .trust-band__row { grid-template-columns: repeat(2, 1fr); } }

.trust-band__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.trust-band__item .label {
  font-family: 'Geist Mono', monospace;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}
.trust-band__item .value {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.005em;
}

/* utilities */

.is-hidden { display: none !important; }

/* Section: contact */

.contact {
  background: linear-gradient(160deg, var(--ink), var(--navy-2));
  color: var(--paper);
  border-radius: 24px;
  padding: 56px 56px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

@media (max-width: 820px) {
  .contact { grid-template-columns: 1fr; padding: 36px 28px; }
}

.contact h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  letter-spacing: -0.025em;
  margin: 12px 0 16px;
  line-height: 1.04;
}
.contact p { color: rgba(250,250,247,0.7); max-width: 38ch; margin: 0 0 24px; font-size: 16px; }

.contact__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 24px;
  background: rgba(255,255,255,0.04);
  padding: 24px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
}

.contact__list dt {
  font-family: 'Geist Mono', monospace;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(250,250,247,0.5);
  margin-bottom: 4px;
}
.contact__list dd {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  color: white;
}
.contact__list dd a:hover { color: #93c5fd; }

/* ===========================================================================
   Quote wizard — address autocomplete, validation states, estimate tweaks
   =========================================================================== */

/* Address autocomplete */
.autocomplete-wrap {
  position: relative;
}
.autocomplete-wrap input {
  width: 100%;
}
.autocomplete-list {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 60;
  margin: 0;
  padding: 6px;
  list-style: none;
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-pop);
  max-height: 268px;
  overflow-y: auto;
}
.autocomplete-list li {
  padding: 10px 13px;
  border-radius: 9px;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.45;
  color: var(--ink);
  transition: background 120ms ease, color 120ms ease;
}
.autocomplete-list li.is-focused,
.autocomplete-list li:hover {
  background: var(--blue-tint);
  color: var(--blue-deep);
}
.autocomplete-list__loading {
  padding: 12px 14px;
  font-size: 13px;
  color: var(--muted);
  text-align: center;
}

/* Validation states */
.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: #d4534a;
  box-shadow: 0 0 0 3px rgba(212, 83, 74, 0.12);
  background: #fffafa;
}
.field__error {
  font-size: 12px;
  font-weight: 500;
  color: #c0392b;
  margin: 2px 0 0;
}
.chip-row.has-error {
  outline: 1px dashed rgba(212, 83, 74, 0.55);
  outline-offset: 4px;
  border-radius: 12px;
}

/* Inline status banner under the wizard body */
.quote__status {
  margin: 16px 0 0;
  padding: 11px 14px;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 500;
}
.quote__status--error {
  background: #fff1f0;
  color: #b0322a;
  border: 1px solid rgba(212, 83, 74, 0.3);
}
.quote__status--ok {
  background: var(--blue-tint);
  color: var(--blue-deep);
  border: 1px solid rgba(15, 108, 245, 0.2);
}

/* Estimate cards now show a from–to range, so the price needs to be smaller */
.estimate__card-price {
  font-size: 22px;
  white-space: nowrap;
}
.estimate__card-price .sep {
  color: var(--muted-2);
  font-weight: 500;
}
.estimate__card--featured .estimate__card-price .sep {
  color: rgba(255, 255, 255, 0.6);
}
.estimate__note {
  grid-column: 1 / -1;
  margin: 4px 0 0;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--muted);
}

/* ===========================================================================
   Anchor scroll offset — the header is sticky (68px row + 1px border = 69px),
   so jump links land their target ~9px below the header instead of clipped
   underneath it.
   =========================================================================== */
#instant-quote,
#services,
#rebates,
#finance,
#faq,
#contact {
  scroll-margin-top: 78px;
}
