/* ---------- financing page shell ---------- */
.financing-hero {
  padding-block: clamp(40px, 6vw, 64px) clamp(24px, 4vw, 32px);
  border-bottom: 1px solid var(--hairline);
}
.financing-hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  letter-spacing: -0.01em;
  margin: 10px 0 12px;
  text-wrap: balance;
}
.financing-hero p { font-size: 1rem; line-height: 1.6; color: var(--stone); max-width: 62ch; margin: 0; }

/* ---------- comparison table ---------- */
.compare-wrap { padding-block: clamp(28px, 4vw, 44px) clamp(16px, 3vw, 24px); }
.compare-label { display: block; margin-bottom: 14px; }
.compare-table-holder { overflow-x: auto; }
.compare-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  border: 1px solid var(--hairline-strong);
}
.compare-table caption { caption-side: top; text-align: left; padding-bottom: 12px; }

.compare-table th, .compare-table td {
  padding: 16px 18px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--hairline);
  font-size: 0.9rem;
  line-height: 1.5;
}

.compare-table thead th {
  background: var(--ink);
  color: var(--surface);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  border-bottom: none;
  padding-block: 18px;
}
.compare-table thead th:first-child { color: color-mix(in srgb, var(--surface) 70%, transparent); }
.compare-table thead th.plan-name { text-align: center; }

.compare-table tbody th {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--ink);
  width: 190px;
  white-space: nowrap;
}
.compare-table tbody tr:nth-child(odd) { background: var(--surface-raised); }
.compare-table tbody td { text-align: center; color: var(--ink); }
.compare-table tbody td.states-cell { text-align: left; font-size: 0.78rem; color: var(--stone); line-height: 1.6; }

.compare-table .row-icon {
  display: inline-flex;
  vertical-align: middle;
  margin-right: 8px;
  width: 16px; height: 16px;
  stroke: var(--oak-deep);
  fill: none;
}
.compare-table tbody th .row-icon { margin-right: 10px; }

.compare-note {
  font-size: 0.82rem;
  color: var(--stone);
  line-height: 1.6;
  max-width: 70ch;
  margin: 18px 0 0;
}

.financing-cta {
  margin-top: clamp(32px, 5vw, 48px);
  padding: clamp(28px, 4vw, 40px);
  background: var(--ink);
  color: var(--surface);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.financing-cta h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  margin: 0;
  letter-spacing: -0.005em;
}
.financing-cta p { margin: 6px 0 0; color: color-mix(in srgb, var(--surface) 65%, transparent); font-size: 0.92rem; max-width: 42ch; }

@media (max-width: 640px) {
  .compare-table tbody th { width: 140px; }
}
