:root {
  color-scheme: light;
  --serif: "Instrument Serif", Georgia, serif;
  --sans: "Geist", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;

  --bg: oklch(98.5% 0.006 90);
  --soft: oklch(96.5% 0.008 90);
  --soft-2: oklch(94% 0.01 90);
  --surface: oklch(99.5% 0.002 90);
  --white: oklch(100% 0 0);
  --line: oklch(89% 0.012 90);
  --line-2: oklch(84% 0.015 90);

  --ink: oklch(18% 0.04 165);
  --ink-2: oklch(38% 0.03 165);
  --muted: oklch(55% 0.025 165);

  --nav: oklch(17% 0.05 165);
  --nav-2: oklch(24% 0.06 165);

  --accent: oklch(56% 0.13 180);
  --accent-dark: oklch(42% 0.11 180);
  --accent-pale: oklch(94% 0.04 180);
  --accent-mid: oklch(78% 0.07 180);

  --gold: oklch(72% 0.12 85);
  --gold-dark: oklch(52% 0.1 80);
  --gold-pale: oklch(95% 0.05 90);
  --blue: oklch(41% 0.08 245);

  --shadow-sm: 0 1px 3px oklch(0% 0 0 / 0.06), 0 1px 2px oklch(0% 0 0 / 0.04);
  --shadow: 0 4px 14px oklch(0% 0 0 / 0.08), 0 2px 4px oklch(0% 0 0 / 0.04);
  --shadow-lg: 0 12px 40px oklch(0% 0 0 / 0.1), 0 4px 8px oklch(0% 0 0 / 0.05);

  font-family: var(--sans);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::selection,
::selection {
  background: var(--accent-pale);
}

a {
  color: inherit;
}

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

button {
  cursor: pointer;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 58px;
  background: var(--nav);
  color: #fff;
  box-shadow: 0 2px 24px oklch(0% 0 0 / 0.25);
}

.site-header-inner,
.site-footer > * {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
}

.site-header-inner {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-inline: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: inherit;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-mark {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
}

.brand-mark svg {
  display: block;
  width: 30px;
  height: 30px;
}

.brand-mark rect {
  fill: var(--accent);
}

.brand-mark path {
  fill: #fff;
  opacity: 0.95;
}

.brand-mark circle {
  fill: #fff;
  opacity: 0.7;
}

.brand-copy {
  display: grid;
  gap: 1px;
  line-height: 1;
}

.brand-copy span {
  font-size: 0.92rem;
  font-weight: 750;
  letter-spacing: 0;
}

.brand-copy small {
  color: oklch(78% 0.04 180);
  font-size: 0.66rem;
  font-weight: 400;
  letter-spacing: 0.01em;
}

nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 2px;
  color: oklch(75% 0.03 165);
  font-size: 0.85rem;
}

nav a {
  border-radius: 8px;
  color: inherit;
  padding: 6px 13px;
  text-decoration: none;
  transition: background 0.16s ease, color 0.16s ease;
}

nav a:hover,
nav a:focus-visible {
  background: oklch(100% 0 0 / 0.1);
  color: #fff;
  outline: none;
}

nav .nav-cta {
  margin-left: 10px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 650;
  padding: 8px 18px;
}

nav .nav-cta:hover,
nav .nav-cta:focus-visible {
  background: var(--accent-mid);
  color: var(--nav);
}

main {
  min-height: 60vh;
}

.hero,
.section,
.calculator,
.lead-box {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 28px;
}

/* When a facts-card overlaps into the next section, give room */
.quick-facts + .section,
.quick-facts + * + .section {
  padding-top: 88px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
  gap: 64px;
  align-items: center;
}

main > .hero:first-child {
  max-width: none;
  min-height: 660px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--nav), oklch(14% 0.04 165));
  color: #fff;
  padding-block: 72px 80px;
  padding-inline: max(28px, calc((100vw - 1200px) / 2));
  grid-template-columns: minmax(0, 1fr) 480px;
  gap: 64px;
}

main > .hero:first-child::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.04;
  pointer-events: none;
  background-image: radial-gradient(circle, #fff 1px, transparent 1px);
  background-size: 32px 32px;
}

main > .hero:first-child > * {
  position: relative;
  z-index: 1;
}

main > .hero:first-child .hero-content {
  max-width: 600px;
}

.hero-single {
  grid-template-columns: 1fr;
}

main > .hero-single:first-child {
  min-height: auto;
  padding-block: 76px;
}

main > .hero-single:first-child .hero-content {
  justify-self: center;
  max-width: 920px;
  text-align: center;
}

.hero-content h1 {
  max-width: 820px;
  margin: 0;
  color: inherit;
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.04;
}

.hero-content p {
  max-width: 700px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

main > .hero:first-child .hero-content p {
  color: oklch(76% 0.025 165);
}

main > .hero:first-child .hero-content strong {
  color: #fff;
  font-weight: 550;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  border: 1px solid oklch(56% 0.13 180 / 0.2);
  border-radius: 999px;
  background: oklch(56% 0.13 180 / 0.1);
  color: var(--accent-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  padding: 5px 12px;
  text-transform: uppercase;
}

main > .hero:first-child .eyebrow {
  border-color: oklch(100% 0 0 / 0.12);
  background: oklch(100% 0 0 / 0.07);
  color: var(--accent-mid);
}

main > .hero-single:first-child .eyebrow {
  margin-inline: auto;
}

.hero-actions,
.link-grid,
.state-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

main > .hero-single:first-child .hero-actions {
  justify-content: center;
}

.button,
button,
.link-grid a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--accent);
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  padding: 10px 16px;
  text-decoration: none;
  transition:
    transform 0.16s ease,
    box-shadow 0.16s ease,
    background 0.16s ease,
    border-color 0.16s ease;
}

.button:hover,
button:hover,
.link-grid a:hover {
  box-shadow: var(--shadow);
  transform: translateY(-1px);
}

.button.secondary,
.link-grid a {
  border-color: var(--line);
  background: var(--surface);
  color: var(--accent-dark);
}

main > .hero:first-child .button {
  box-shadow: 0 4px 20px oklch(56% 0.13 180 / 0.35);
}

main > .hero:first-child .button.secondary {
  border-color: oklch(100% 0 0 / 0.18);
  background: oklch(100% 0 0 / 0.08);
  box-shadow: none;
  color: #fff;
}

.selector,
.calculator form,
.lead-form {
  display: grid;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow-lg);
  padding: 24px;
}

.selector {
  border-radius: 28px;
  padding: 28px;
}

.selector-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.selector-head span,
.selector-head small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.selector-head small {
  color: var(--ink-2);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.selector-head small span {
  margin-inline: 5px;
  opacity: 0.45;
}

.country-hidden {
  display: none;
}

.country-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.country-toggle button {
  min-height: 42px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  box-shadow: none;
  color: var(--ink-2);
  font-size: 0.86rem;
  font-weight: 600;
}

.country-toggle button.active {
  border-color: var(--accent);
  background: var(--accent-pale);
  color: var(--accent-dark);
}

.country-toggle button:hover {
  box-shadow: none;
}

.selector-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.selector em {
  color: oklch(70% 0.015 165);
  font-style: normal;
  font-weight: 500;
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

label span {
  color: inherit;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  padding: 10px 12px;
  outline: none;
  transition: border-color 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.selector > button[type="submit"] {
  border-color: transparent;
  background: var(--soft-2);
  box-shadow: none;
  color: var(--muted);
}

.selector-note {
  margin: 0;
  border: 1px solid oklch(88% 0.07 85 / 0.6);
  border-radius: 10px;
  background: var(--gold-pale);
  color: var(--gold-dark);
  font-size: 0.78rem;
  line-height: 1.55;
  padding: 11px 14px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent-mid);
  box-shadow: 0 0 0 4px oklch(56% 0.13 180 / 0.1);
}

textarea {
  resize: vertical;
}

.calculator {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: 32px;
  align-items: start;
  border-block: 1px solid var(--line);
  background: var(--soft);
}

.calculator-polished {
  display: flex;
  justify-content: center;
  border-block: 0;
  background: var(--bg);
  padding-block: 56px;
}

.calculator-polished .calc-card {
  display: grid;
  width: min(100%, 558px);
  max-width: none;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  padding: 30px;
}

.calc-kicker {
  margin: 0;
  color: var(--accent-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  line-height: 1;
  text-transform: uppercase;
}

.calculator-polished h2 {
  margin: -6px 0 14px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.15;
}

.calc-field {
  display: grid;
  gap: 8px;
}

.calc-field span,
.calc-field legend {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.25;
  text-transform: uppercase;
}

.calc-field select {
  width: 100%;
  min-height: 40px;
  appearance: none;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background:
    linear-gradient(45deg, transparent 50%, var(--muted) 50%) calc(100% - 18px) 50% / 6px 6px no-repeat,
    linear-gradient(135deg, var(--muted) 50%, transparent 50%) calc(100% - 13px) 50% / 6px 6px no-repeat,
    var(--white);
  color: var(--ink);
  cursor: pointer;
  font-size: 0.9rem;
  outline: none;
  padding: 10px 38px 10px 12px;
}

.calc-term {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: 0;
  border: 0;
  padding: 0;
}

.calc-term legend {
  grid-column: 1 / -1;
  margin-bottom: 2px;
}

.calc-term label {
  min-width: 0;
}

.calc-term input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.calc-term label span {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--line);
  border-radius: 9px;
  background: var(--white);
  color: var(--ink-2);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.calc-term input:checked + span {
  border-color: var(--accent);
  background: var(--accent-pale);
  color: var(--accent-dark);
}

.calc-quick-card {
  gap: 16px;
}

.calc-option-stack {
  display: grid;
  gap: 8px;
  margin: 0;
  border: 0;
  padding: 0;
}

.calc-option-stack legend {
  margin-bottom: 2px;
}

.calc-option-stack input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.calc-option-stack label span {
  display: flex;
  min-height: 38px;
  align-items: center;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  color: var(--ink-2);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 650;
  letter-spacing: 0;
  padding: 8px 14px;
  text-transform: none;
  transition: border-color 0.16s ease, background 0.16s ease, color 0.16s ease;
}

.calc-option-stack input:checked + span {
  border-color: var(--accent);
  background: var(--accent-pale);
  color: var(--accent-dark);
}

.calc-term-two {
  grid-template-columns: repeat(2, 1fr);
}

.calc-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.calc-range input {
  width: 100%;
  margin: 5px 0 0;
  accent-color: var(--accent-dark);
}

.calc-range b {
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 800;
}

.calc-result {
  display: grid;
  gap: 6px;
  border: 1px solid oklch(56% 0.13 180 / 0.25);
  border-radius: 14px;
  background: oklch(56% 0.13 180 / 0.08);
  color: var(--accent-dark);
  margin-top: -2px;
  padding: 20px;
}

.calc-result span {
  color: var(--accent-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.calc-result strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.05;
}

.calc-result p {
  margin: 4px 0 0;
  color: var(--accent-dark);
  font-size: 0.9rem;
}

.calc-result small {
  color: oklch(56% 0.08 165);
  font-size: 0.72rem;
}

.inline-tools-grid {
  display: grid;
  grid-template-columns: minmax(320px, 420px);
  gap: 18px;
  align-items: start;
  justify-content: center;
  padding-top: 42px;
  padding-bottom: 42px;
}

.inline-tools-grid > .calculator,
.inline-tools-grid > .local-pricing-card {
  margin: 0;
}

.inline-tools-grid > .calculator {
  display: block;
  max-width: none;
  border: 0;
  background: transparent;
  padding: 0;
}

.inline-tools-grid .calc-card {
  width: 100%;
  max-width: none;
}

.inline-tools-grid > .local-pricing-card {
  max-width: none;
}

.finance-info-grid {
  margin-bottom: 0;
}

.finance-info-grid h2 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 400;
}

.calculator > * {
  max-width: 560px;
}

.calculator > :first-child {
  justify-self: end;
  padding-left: 24px;
}

.calculator h2,
.section h2,
.lead-box h2 {
  margin: 0 0 14px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.08;
}

.section > p,
.calculator > div > p,
.lead-box p {
  color: var(--muted);
}

.result {
  display: block;
  border-radius: 8px;
  background: var(--nav);
  color: #fff;
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 400;
  padding: 20px;
}

.calculator-polished > .calc-card,
.calculator-polished > .calc-card:first-child {
  max-width: 558px;
  justify-self: auto;
  padding: 30px;
}

.calculator-polished .calc-card h2 {
  margin: -6px 0 14px;
  font-size: 1.5rem;
  line-height: 1.15;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
}

th,
td {
  border-bottom: 1px solid var(--line);
  padding: 16px;
  text-align: left;
  vertical-align: top;
}

th {
  background: var(--soft);
  color: var(--accent-dark);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

td {
  color: var(--ink-2);
}

td strong {
  color: var(--ink);
}

.two-column,
.lead-box {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.lead-box {
  align-items: start;
}

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

.card {
  display: block;
  min-height: 180px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: inherit;
  padding: 22px;
  text-decoration: none;
  transition:
    border-color 0.16s ease,
    box-shadow 0.16s ease,
    transform 0.16s ease,
    background 0.16s ease;
}

.card:hover,
.card:focus-visible {
  border-color: var(--accent-mid);
  background: #fff;
  box-shadow: var(--shadow);
  outline: none;
  transform: translateY(-2px);
}

.card h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1.12;
}

.card p,
.section p,
.lead-box p,
.site-footer p {
  color: var(--muted);
}

.footer-mini-links {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

.check-list {
  display: grid;
  max-width: 760px;
  gap: 10px;
  color: var(--muted);
}

.footer-links,
.inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-links {
  margin-bottom: 12px;
}

.footer-links a,
.inline-links a {
  color: var(--accent-dark);
  font-weight: 750;
  text-decoration: none;
}

.site-footer {
  margin-top: 40px;
  background: var(--nav);
  color: #fff;
  padding: 52px 28px 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 2fr) repeat(3, minmax(140px, 1fr));
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand {
  width: fit-content;
}

.site-footer p {
  max-width: 300px;
  margin: 16px 0 0;
  color: oklch(58% 0.02 165);
  font-size: 0.86rem;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: oklch(48% 0.02 165);
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.site-footer a:not(.brand) {
  display: block;
  width: fit-content;
  color: oklch(64% 0.02 165);
  font-size: 0.86rem;
  line-height: 1.4;
  margin-top: 10px;
  text-decoration: none;
  transition: color 0.16s ease;
}

.site-footer a:not(.brand):hover,
.site-footer a:not(.brand):focus-visible {
  color: #fff;
  outline: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid oklch(100% 0 0 / 0.07);
  color: oklch(44% 0.02 165);
  flex-wrap: wrap;
  font-size: 0.78rem;
  padding-top: 22px;
}

dl {
  display: grid;
  gap: 14px;
}

dt {
  color: var(--ink);
  font-weight: 750;
}

dd {
  margin: 0;
  color: var(--muted);
}

ul,
ol {
  color: var(--ink-2);
}

li + li {
  margin-top: 6px;
}

.home-hero {
  min-height: 660px;
  background: var(--nav);
  color: #fff;
  overflow: hidden;
  position: relative;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.035;
  pointer-events: none;
  background-image: radial-gradient(circle, #fff 1px, transparent 1px);
  background-size: 32px 32px;
}

.home-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 480px;
  gap: 64px;
  align-items: center;
  max-width: 1200px;
  margin-inline: auto;
  padding: 72px 28px 80px;
}

.home-hero-copy {
  max-width: 610px;
}

.home-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 28px;
  border: 1px solid oklch(100% 0 0 / 0.14);
  border-radius: 999px;
  background: oklch(100% 0 0 / 0.07);
  color: oklch(75% 0.04 180);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 6px 13px;
}

.home-pill span {
  width: 1px;
  height: 12px;
  background: oklch(100% 0 0 / 0.22);
}

.home-hero h1 {
  margin: 0;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(3rem, 4vw, 4rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.05;
}

.home-hero h1 em {
  display: block;
  color: var(--accent-mid);
  font-style: italic;
}

.home-hero-copy > p:not(.home-pill) {
  max-width: 520px;
  margin: 26px 0 0;
  color: oklch(72% 0.025 165);
  font-size: 1.05rem;
  line-height: 1.7;
}

.home-hero-copy strong {
  color: #fff;
  font-weight: 550;
}

.home-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 40px;
}

.home-actions .button {
  min-width: 162px;
  border-radius: 12px;
  padding: 13px 26px;
}

.home-actions .button.secondary {
  border-color: oklch(100% 0 0 / 0.18);
  background: oklch(100% 0 0 / 0.08);
  color: #fff;
}

.home-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 600px;
  margin-top: 44px;
  overflow: hidden;
  border: 1px solid oklch(100% 0 0 / 0.08);
  border-radius: 14px;
  background: oklch(100% 0 0 / 0.05);
}

.home-stats div {
  padding: 16px 20px;
  border-right: 1px solid oklch(100% 0 0 / 0.08);
}

.home-stats div:last-child {
  border-right: 0;
}

.home-stats strong {
  display: block;
  color: #fff;
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
}

.home-stats span {
  display: block;
  margin-top: 5px;
  color: oklch(58% 0.02 165);
  font-size: 0.72rem;
}

.home-section,
.how-section,
.tools-inner {
  max-width: 1200px;
  margin-inline: auto;
  padding: 72px 28px;
}

.treatment-section {
  padding-bottom: 80px;
}

.section-heading {
  margin-bottom: 36px;
}

.section-heading.split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}

.section-heading.center {
  text-align: center;
}

.section-heading h2,
.tools-inner h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 2.7rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.08;
}

.section-heading > p,
.section-heading.split > a {
  max-width: 320px;
  color: var(--muted);
  text-align: right;
  text-decoration: none;
}

.section-heading.split > a,
.text-link {
  color: var(--accent-dark);
  font-weight: 750;
}

.section-kicker {
  margin: 0 0 9px;
  color: var(--accent-dark);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.treatment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.treatment-card {
  display: block;
  min-height: 335px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  color: inherit;
  padding: 28px 26px;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
}

.treatment-card p {
  min-height: 34px;
  margin: 0 0 10px;
  color: var(--accent-dark);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1.45;
  text-transform: uppercase;
}

.treatment-card.blue p,
.treatment-card.blue span {
  color: oklch(48% 0.16 250);
}

.treatment-card.gold p,
.treatment-card.gold span {
  color: var(--gold-dark);
}

.treatment-card h3 {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.05;
}

.treatment-card > strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.85rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.1;
}

.treatment-card > small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.76rem;
}

.treatment-card dl {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px 16px;
  margin: 24px 0 24px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.treatment-card dt,
.treatment-card dd {
  margin: 0;
  font-size: 0.78rem;
}

.treatment-card dt {
  color: var(--muted);
  font-weight: 500;
}

.treatment-card dd {
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 700;
  white-space: nowrap;
}

.treatment-card span {
  color: var(--accent-dark);
  font-size: 0.82rem;
  font-weight: 750;
}

.how-section {
  max-width: none;
  border-block: 1px solid var(--line);
  background: var(--soft);
}

.how-section > * {
  max-width: 1200px;
  margin-inline: auto;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 72px;
  max-width: 1200px;
  padding: 20px 28px 0;
}

.steps-grid div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 20px;
}

.steps-grid span {
  grid-row: span 2;
  color: var(--line-2);
  font-family: var(--serif);
  font-size: 3rem;
  line-height: 1;
}

.steps-grid h3 {
  margin: 5px 0 0;
  color: var(--ink);
  font-size: 1rem;
}

.steps-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.tools-band {
  background: var(--nav);
  color: #fff;
}

.tools-inner h2 {
  color: #fff;
}

.tool-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 36px;
}

.tool-card {
  min-height: 170px;
  border: 1px solid oklch(100% 0 0 / 0.12);
  border-radius: 16px;
  background: oklch(100% 0 0 / 0.035);
  color: #fff;
  padding: 22px 20px;
  text-decoration: none;
}

.tool-card span {
  display: block;
  color: var(--accent-mid);
  font-family: var(--serif);
  font-size: 1.55rem;
  margin-bottom: 16px;
}

.tool-card h3 {
  margin: 0 0 8px;
  font-size: 0.95rem;
}

.tool-card p {
  margin: 0;
  color: oklch(58% 0.02 165);
  font-size: 0.82rem;
}

.tool-card strong {
  display: block;
  margin-top: 20px;
  color: var(--accent);
  font-size: 0.82rem;
}

.location-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.location-title {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2px 10px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
}

.location-title span {
  grid-row: span 2;
}

.location-title small {
  color: var(--muted);
}

.mini-location-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 16px;
}

.mini-location-card {
  position: relative;
  display: grid;
  min-height: 135px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--soft);
  color: inherit;
  padding: 20px;
  text-decoration: none;
}

.mini-location-card > strong {
  font-family: var(--serif);
  font-size: 1.45rem;
}

.mini-location-card b {
  margin-top: 10px;
  font-size: 0.86rem;
}

.mini-location-card span {
  color: var(--muted);
  font-size: 0.78rem;
}

.mini-location-card i {
  position: absolute;
  top: 18px;
  right: 18px;
  border-radius: 999px;
  background: var(--gold-pale);
  color: var(--gold-dark);
  font-size: 0.62rem;
  font-style: normal;
  font-weight: 850;
  padding: 2px 8px;
}

.text-link {
  display: inline-block;
  margin-top: 14px;
  text-decoration: none;
}

.text-link.gold {
  color: var(--gold-dark);
}

.canada-note {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  margin-top: 40px;
  border: 1px solid oklch(88% 0.07 85 / 0.6);
  border-radius: 16px;
  background: var(--gold-pale);
  padding: 20px 24px;
}

.canada-note > span {
  border-radius: 6px;
  background: oklch(65% 0.08 230);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 750;
  padding: 2px 6px;
}

.canada-note p {
  max-width: 650px;
  margin: 4px 0 0;
  color: var(--ink-2);
  font-size: 0.86rem;
}

.canada-note a {
  border-radius: 10px;
  background: var(--gold);
  color: #fff;
  font-weight: 750;
  padding: 10px 20px;
  text-decoration: none;
}

.method-strip {
  display: flex;
  max-width: none;
  justify-content: center;
  gap: 40px;
  border-top: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink-2);
  flex-wrap: wrap;
  padding: 30px 28px;
  text-align: center;
}

.method-strip span {
  font-size: 0.86rem;
}

@media (max-width: 980px) {
  .site-header {
    position: static;
  }

  .site-header-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 20px;
  }

  nav {
    justify-content: flex-start;
  }

  nav .nav-cta {
    margin-left: 0;
  }

  .hero,
  main > .hero:first-child,
  .home-hero-inner,
  .calculator,
  .two-column,
  .lead-box,
  .card-grid,
  .footer-grid,
  .treatment-grid,
  .tool-grid,
  .location-columns,
  .mini-location-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  main > .hero:first-child .hero-content {
    justify-self: stretch;
  }

  .calculator > *,
  .calculator > :first-child {
    max-width: none;
    justify-self: stretch;
    padding-left: 0;
  }
}

@media (max-width: 640px) {
  .site-header,
  .hero,
  .section,
  .calculator,
  .lead-box,
  .site-footer {
    padding-inline: 18px;
  }

  .site-header {
    padding-inline: 0;
  }

  .hero,
  main > .hero:first-child,
  .section,
  .calculator,
  .lead-box {
    padding-block: 46px;
  }

  .hero-content h1 {
    font-size: 3rem;
  }

  .selector,
  .calculator form,
  .lead-form,
  .card {
    padding: 18px;
  }

  .selector-fields,
  .country-toggle {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    display: grid;
  }
}

.proto-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 28px 80px;
}

.proto-breadcrumb {
  display: flex;
  justify-content: flex-start;
  gap: 8px;
  margin: 0 0 34px;
  color: var(--muted);
  font-size: 0.78rem;
}

.proto-breadcrumb a {
  color: var(--accent-dark);
  text-decoration: none;
}

.proto-hub-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 48px;
  align-items: start;
}

.proto-hub-layout > aside {
  position: sticky;
  top: 76px;
}

.proto-pill {
  display: inline-flex;
  margin: 0 0 14px;
  border-radius: 999px;
  background: var(--accent-pale);
  color: var(--accent-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  line-height: 1;
  padding: 7px 12px;
  text-transform: uppercase;
}

.proto-pill.braces {
  background: oklch(58% 0.13 155 / 0.12);
  color: oklch(40% 0.1 155);
}

.proto-hub-layout h1 {
  margin: 0 0 16px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(2.7rem, 4vw, 3rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.08;
}

.proto-hub-layout h1 em {
  color: var(--accent);
  font-style: italic;
}

.proto-hub-layout h1 em.braces {
  color: oklch(58% 0.13 155);
}

.proto-intro {
  max-width: 600px;
  margin: 0 0 48px;
  color: var(--ink-2);
  font-size: 1.04rem;
  line-height: 1.7;
}

.proto-intro strong {
  color: var(--ink);
}

.proto-section-head {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.proto-cost-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  margin: 0 0 48px;
}

.proto-cost-row {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(180px, 0.95fr);
  gap: 24px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 18px 22px;
}

.proto-cost-row:last-child {
  border-bottom: 0;
}

.proto-cost-row strong {
  display: block;
  color: var(--ink);
  font-size: 0.92rem;
}

.proto-cost-row span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.proto-cost-row b {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 400;
  text-align: right;
}

.proto-cost-row i {
  display: block;
  height: 6px;
  margin-left: auto;
  border-radius: 999px;
  background: var(--proto-color);
  opacity: 0.72;
}

.proto-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 0 0 48px;
}

.proto-info-grid div {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  padding: 20px 22px;
}

.proto-info-grid h2 {
  margin: 0 0 8px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 800;
}

.proto-info-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.65;
}

.proto-canada-note {
  border: 1px solid oklch(88% 0.07 85);
  border-radius: 14px;
  background: var(--gold-pale);
  margin: 0 0 48px;
  padding: 20px 24px;
}

.proto-canada-note strong {
  display: block;
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.proto-canada-note p {
  margin: 8px 0;
  color: var(--ink-2);
  font-size: 0.86rem;
  line-height: 1.6;
}

.proto-canada-note a {
  color: var(--gold-dark);
  font-size: 0.84rem;
  font-weight: 800;
  text-decoration: none;
}

.proto-chip-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.proto-chip-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.proto-chip-grid a {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  color: var(--ink-2);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 10px 12px;
  text-decoration: none;
}

.hub-tools {
  display: grid;
  gap: 16px;
}

.hub-tools .calculator {
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.hub-tools .calculator-polished .calc-card,
.hub-tools .calculator-polished .calc-card:first-child {
  width: 100%;
  max-width: none;
  padding: 24px;
}

.hub-tools .lead-box {
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.hub-tools .lead-box > div {
  border: 1px solid var(--line);
  border-bottom: 0;
  border-radius: 20px 20px 0 0;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  padding: 24px 24px 10px;
}

.hub-tools .lead-box h2 {
  font-size: 1.5rem;
}

.hub-tools .lead-box .lead-form {
  border-radius: 0 0 20px 20px;
  box-shadow: var(--shadow-sm);
}

.hub-tools .local-pricing-card {
  margin: 0;
  max-width: none;
}

.local-pricing-card {
  display: grid;
  gap: 14px;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  border-radius: 20px;
  background: var(--nav);
  color: #fff;
  padding: 26px 24px;
}

.local-pricing-kicker {
  margin: 0;
  color: oklch(70% 0.025 165);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
}

.local-pricing-card h2 {
  margin: 0;
  color: #fff;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 400;
  line-height: 1.1;
}

.local-pricing-card p {
  margin: 0;
  color: oklch(66% 0.025 165);
  font-size: 0.88rem;
  line-height: 1.55;
}

.local-pricing-form {
  display: grid;
  gap: 10px;
  margin-top: 2px;
}

.local-pricing-form label {
  gap: 5px;
}

.local-pricing-form label span {
  color: oklch(72% 0.025 165);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.local-pricing-form input {
  min-height: 40px;
  border-color: oklch(100% 0 0 / 0.14);
  background: oklch(100% 0 0 / 0.06);
  color: #fff;
}

.local-pricing-form input::placeholder {
  color: oklch(75% 0.02 165);
}

.local-pricing-form button,
.local-pricing-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--accent);
  border-radius: 9px;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.local-pricing-link {
  margin-top: 2px;
}

@media (max-width: 960px) {
  .proto-hub-layout,
  .proto-info-grid,
  .proto-chip-grid,
  .proto-chip-grid.two {
    grid-template-columns: 1fr;
  }

  .proto-hub-layout > aside {
    position: static;
  }
}

.proto-tools,
.proto-locations {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 28px 80px;
}

.proto-tools-head,
.proto-locations-head {
  margin-bottom: 44px;
}

.proto-locations-head p {
  max-width: 540px;
  margin: 10px 0 0;
  color: var(--ink-2);
  font-size: 0.98rem;
  line-height: 1.65;
}

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

.proto-tools-grid .calculator {
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.proto-tools-grid .calc-card {
  width: 100%;
  max-width: none;
}

.proto-method-note {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  border: 1px solid oklch(88% 0.07 85);
  border-radius: 14px;
  background: var(--gold-pale);
  padding: 18px 22px;
}

.proto-method-note > span {
  flex-shrink: 0;
  font-size: 1.25rem;
}

.proto-method-note strong {
  color: var(--ink);
}

.proto-method-note p {
  margin: 4px 0 6px;
  color: var(--ink-2);
  font-size: 0.86rem;
  line-height: 1.65;
}

.proto-method-note a {
  color: var(--gold-dark);
  font-size: 0.84rem;
  font-weight: 800;
  text-decoration: none;
}

.proto-tool-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.proto-tool-links a {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  color: var(--accent-dark);
  font-size: 0.84rem;
  font-weight: 800;
  padding: 14px;
  text-decoration: none;
}

.proto-tabs {
  display: flex;
  width: fit-content;
  gap: 4px;
  margin-bottom: 40px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--soft);
  padding: 4px;
}

.proto-tabs a {
  border-radius: 9px;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 800;
  padding: 8px 20px;
  text-decoration: none;
}

.proto-tabs a:first-child {
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.proto-location-section {
  margin-bottom: 56px;
}

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

.proto-region-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  padding: 18px 20px;
}

.proto-region-card header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.proto-region-card header strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1;
}

.proto-region-card header span {
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  opacity: 0.58;
  text-align: right;
}

.proto-region-card dl {
  display: grid;
  gap: 3px;
  margin: 0 0 14px;
}

.proto-region-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.proto-region-card dt {
  color: var(--muted);
  font-size: 0.72rem;
}

.proto-region-card dd {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 0.76rem;
  text-align: right;
}

.proto-region-card nav {
  justify-content: flex-start;
  gap: 6px;
}

.proto-region-card nav a {
  border-radius: 6px;
  background: var(--accent-pale);
  color: var(--accent-dark);
  font-size: 0.68rem;
  font-weight: 800;
  padding: 3px 8px;
}

.proto-region-card.cad nav a {
  background: var(--gold-pale);
  color: var(--gold-dark);
}

.proto-city-lookup {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  border-top: 1px solid var(--line);
  margin-bottom: 56px;
  padding-top: 48px;
}

.proto-city-list {
  display: grid;
  gap: 2px;
  max-height: 380px;
  overflow-y: auto;
}

.proto-city-list a {
  border: 1.5px solid transparent;
  border-radius: 9px;
  color: var(--ink-2);
  font-size: 0.86rem;
  padding: 9px 14px;
  text-decoration: none;
}

.proto-city-list a:first-child {
  border-color: var(--accent-mid);
  background: var(--accent-pale);
  color: var(--accent-dark);
  font-weight: 800;
}

.proto-city-list span {
  color: var(--muted);
  font-size: 0.78rem;
}

.proto-city-detail {
  display: flex;
  min-height: 320px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1.5px dashed var(--line-2);
  border-radius: 20px;
  background: var(--white);
  text-align: center;
}

.proto-city-detail span {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.proto-city-detail h2 {
  margin: 0 0 6px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 800;
}

.proto-city-detail p {
  max-width: 260px;
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.55;
}

@media (max-width: 960px) {
  .proto-tools-grid,
  .proto-tool-links,
  .proto-region-grid,
  .proto-city-lookup {
    grid-template-columns: 1fr;
  }
}

.page-hero {
  min-height: 420px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 20% 0%, oklch(56% 0.13 180 / 0.1), transparent 36%),
    var(--bg);
}

main > .page-hero.hero-single:first-child {
  background:
    radial-gradient(circle at 20% 0%, oklch(56% 0.13 180 / 0.1), transparent 36%),
    var(--bg);
  color: var(--ink);
}

main > .page-hero.hero-single:first-child::before {
  display: none;
}

main > .page-hero.hero-single:first-child .hero-content p {
  color: var(--muted);
}

.page-hero .hero-content {
  display: grid;
  justify-items: center;
}

.page-grid-section {
  padding-top: 56px;
}

.section-kicker {
  margin: 0 0 12px;
  color: var(--accent-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  line-height: 1;
  text-transform: uppercase;
}

.page-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}

.page-card-grid .card {
  min-height: 160px;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}

.page-card-grid .card span {
  display: inline-flex;
  margin-top: 12px;
  color: var(--accent-dark);
  font-size: 0.82rem;
  font-weight: 800;
}

.cost-range-list {
  display: grid;
  gap: 12px;
}

.proto-hub-layout .cost-range-list {
  margin-bottom: 48px;
}

.cost-range-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  padding: 18px 20px;
}

.cost-range-row h3 {
  margin: 0 0 5px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1.1;
}

.cost-range-row p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.55;
}

.cost-range-row strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1;
  text-align: right;
  white-space: nowrap;
}

.quote-card {
  align-items: stretch;
  border-top: 1px solid var(--line);
}

.quote-card .quote-copy,
.quote-card .lead-form {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 30px;
}

.quote-card .quote-copy {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: center;
}

.quote-card h2 {
  margin: 12px 0 14px;
  font-size: clamp(2rem, 3vw, 3.1rem);
}

.quote-card .lead-form {
  box-shadow: var(--shadow-lg);
}

.quote-card .lead-form label span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.quote-card .lead-form button {
  margin-top: 4px;
}

@media (max-width: 960px) {
  .page-card-grid,
  .inline-tools-grid,
  .quote-card,
  .cost-range-row {
    grid-template-columns: 1fr;
  }

  .cost-range-row strong {
    text-align: left;
    white-space: normal;
  }

  .local-pricing-card {
    max-width: none;
  }
}

/* ── Quick-facts card ──────────────────────────────────────────────────────── */
.key-takeaways {
  max-width: 860px;
  margin: 40px auto;
  padding: 24px 32px;
  background: oklch(97% 0.015 165);
  border-radius: 12px;
  border-left: 4px solid var(--accent);
}

.key-takeaways h2 {
  margin: 0 0 14px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

.key-takeaways ul {
  margin: 0;
  padding: 0 0 0 1.2em;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.key-takeaways li {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text);
}

.quick-facts {
  max-width: none;
  padding: 0 28px 0;
  background: var(--soft);
  border-bottom: 1px solid var(--line);
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  max-width: 1200px;
  margin-inline: auto;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  padding: 20px;
  transform: translateY(32px);
}

.facts-grid > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 18px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--soft);
  text-align: center;
}

.facts-grid > div strong {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--facts-color, var(--accent));
  letter-spacing: -0.01em;
  line-height: 1;
}

.facts-grid > div span {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.3;
}
