

:root {
  --orange: #f35f43;
  --orange-dark: #d94a31;
  --orange-soft: #fff0ea;
  --ink: #102f3d;
  --ink-2: #244655;
  --muted: #637783;
  --line: #dce6ea;
  --surface: #ffffff;
  --surface-soft: #f6f9fa;
  --cream: #fffaf6;
  --green: #128267;
  --green-soft: #e9f7f2;
  --warning: #a86410;
  --warning-soft: #fff5dc;
  --shadow-sm: 0 8px 24px rgba(15, 23, 42, .08);
  --shadow-md: 0 18px 60px rgba(15, 23, 42, .13);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 30px;
  --shell: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.12; letter-spacing: -.035em; }
h1 { margin-bottom: 22px; font-size: clamp(2.6rem, 5.9vw, 5.45rem); max-width: 13ch; }
h2 { margin-bottom: 18px; font-size: clamp(2rem, 4vw, 3.65rem); }
h3 { margin-bottom: 12px; font-size: clamp(1.2rem, 2vw, 1.55rem); }
p { color: var(--muted); }
.shell { width: min(calc(100% - 40px), var(--shell)); margin-inline: auto; }
.narrow { width: min(calc(100% - 40px), 850px); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 9999; left: 12px; top: -60px; padding: 11px 16px; background: var(--ink); color: #fff; border-radius: 8px; }
.skip-link:focus { top: 12px; }
.icon { width: 1.1em; height: 1.1em; flex: 0 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid rgba(220,230,234,.8);
  backdrop-filter: blur(18px);
  transition: box-shadow .2s ease;
}
.site-header.is-scrolled { box-shadow: 0 10px 36px rgba(15,23,42,.09); }
.nav-shell { min-height: 78px; display: flex; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 850; font-size: 1.25rem; letter-spacing: -.035em; white-space: nowrap; }
.brand-mark { width: 36px; height: 36px; border-radius: 11px; display: grid; place-items: center; background: var(--orange); color: #fff; box-shadow: 0 8px 22px rgba(232,138,0,.28); }
.brand-mark span { font-size: 1.05rem; font-weight: 900; }
.brand-accent { color: var(--orange); }
.site-nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav-link, .nav-parent, .text-link { border: 0; background: transparent; color: var(--ink-2); font-weight: 720; padding: 11px 12px; border-radius: 10px; }
.nav-link:hover, .nav-parent:hover, .text-link:hover { color: var(--orange-dark); background: var(--orange-soft); }
.nav-group { position: relative; }
.nav-parent { display: flex; gap: 7px; align-items: center; }
.nav-popover {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  width: 320px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: .18s ease;
}
.nav-popover-wide { width: 390px; }
.nav-group:hover .nav-popover, .nav-group.is-open .nav-popover { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-popover a { display: block; padding: 12px 13px; border-radius: 12px; }
.nav-popover a:hover { background: var(--surface-soft); }
.nav-popover b, .nav-popover small { display: block; }
.nav-popover b { font-size: .96rem; }
.nav-popover small { margin-top: 2px; color: var(--muted); font-size: .82rem; }
.nav-actions { display: flex; align-items: center; gap: 8px; }
.menu-toggle { display: none; margin-left: auto; width: 44px; height: 44px; padding: 10px; border: 1px solid var(--line); background: #fff; border-radius: 12px; }
.menu-toggle span:not(.sr-only) { display: block; width: 21px; height: 2px; margin: 4px auto; background: var(--ink); border-radius: 4px; }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 48px; padding: 12px 19px; border: 1px solid transparent; border-radius: 13px; font-weight: 820; line-height: 1.2; transition: transform .16s ease, box-shadow .16s ease, background .16s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: var(--orange); box-shadow: 0 11px 28px rgba(232,138,0,.24); }
.button-primary:hover { background: var(--orange-dark); }
.button-secondary { color: var(--ink); background: #fff; border-color: var(--line); box-shadow: var(--shadow-sm); }
.button-secondary:hover { border-color: #b9c9d0; }
.button-small { min-height: 42px; padding: 10px 15px; font-size: .91rem; }
.button-full { width: 100%; }
.inline-link { display: inline-flex; align-items: center; gap: 7px; margin-top: auto; color: var(--orange-dark); font-weight: 800; }
.inline-link:hover { text-decoration: underline; text-underline-offset: 4px; }

.eyebrow { display: inline-flex; align-items: center; gap: 7px; margin-bottom: 14px; color: var(--orange-dark); font-size: .79rem; font-weight: 880; letter-spacing: .12em; text-transform: uppercase; }
.eyebrow-light { color: #ffc2b4; }
.hero { position: relative; overflow: hidden; padding: clamp(72px, 10vw, 130px) 0 85px; background: radial-gradient(circle at 82% 18%, rgba(232,138,0,.17), transparent 30%), linear-gradient(145deg, #fff 0%, var(--cream) 100%); }
.hero::after { content: ""; position: absolute; width: 520px; height: 520px; right: -220px; bottom: -300px; border: 1px solid rgba(232,138,0,.17); border-radius: 50%; box-shadow: 0 0 0 70px rgba(232,138,0,.035), 0 0 0 140px rgba(232,138,0,.025); }
.hero-grid, .page-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: clamp(40px, 7vw, 90px); }
.hero-copy > p, .page-hero-copy > p { max-width: 650px; font-size: clamp(1.08rem, 1.8vw, 1.28rem); }
.hero-actions, .page-hero-actions, .cta-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0 22px; }
.proof-line { display: flex; flex-wrap: wrap; gap: 12px 18px; color: var(--ink-2); font-size: .91rem; font-weight: 700; }
.proof-line span { display: inline-flex; align-items: center; gap: 6px; }
.proof-line .icon { color: var(--green); }
.hero-note { margin: 16px 0 0; font-size: .86rem !important; }
.hero-checks { display: grid; gap: 11px; margin: 24px 0; }
.hero-checks div { display: flex; align-items: center; gap: 9px; color: var(--ink-2); font-weight: 720; }
.hero-checks .icon { color: var(--green); }

.product-window, .hero-panel, .info-panel, .lead-form, .price-card, .mock-form, .mock-summary, .table-mock {
  border: 1px solid rgba(190,207,214,.75);
  background: rgba(255,255,255,.94);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.product-window { overflow: hidden; transform: rotate(1deg); }
.window-bar { display: flex; align-items: center; gap: 7px; padding: 15px 18px; border-bottom: 1px solid var(--line); background: #f8fafb; }
.window-bar > span { width: 9px; height: 9px; border-radius: 50%; background: #d6e0e4; }
.window-bar > span:first-child { background: #ff8c78; }
.window-bar b { margin-left: 8px; font-size: .82rem; color: var(--muted); }
.route-summary { display: flex; justify-content: space-between; gap: 20px; padding: 24px; border-bottom: 1px solid var(--line); }
.route-summary small { color: var(--muted); }
.route-summary h3 { margin: 5px 0 6px; }
.route-summary p { margin: 0; font-size: .87rem; }
.live-pill { align-self: flex-start; padding: 7px 10px; color: var(--green); background: var(--green-soft); border-radius: 999px; font-size: .75rem; font-weight: 850; white-space: nowrap; }
.timeline-mock { padding: 10px 24px 24px; }
.timeline-mock > div { position: relative; display: flex; gap: 14px; padding: 15px 0; }
.timeline-mock > div:not(:last-child)::after { content: ""; position: absolute; left: 13px; top: 42px; bottom: -10px; width: 2px; background: var(--line); }
.timeline-mock > div > span { position: relative; z-index: 1; width: 28px; height: 28px; display: grid; place-items: center; flex: 0 0 auto; border: 2px solid var(--line); border-radius: 50%; color: var(--muted); background: #fff; font-size: .76rem; font-weight: 900; }
.timeline-mock b, .timeline-mock small { display: block; }
.timeline-mock small { color: var(--muted); }
.timeline-mock .done > span { color: #fff; border-color: var(--green); background: var(--green); }
.timeline-mock .current > span { color: #fff; border-color: var(--orange); background: var(--orange); box-shadow: 0 0 0 5px var(--orange-soft); }

.fact-strip { border-block: 1px solid var(--line); background: #fff; }
.fact-grid { display: grid; grid-template-columns: repeat(5, 1fr); }
.fact-grid > div { display: grid; grid-template-columns: auto 1fr; column-gap: 11px; padding: 24px 17px; border-right: 1px solid var(--line); }
.fact-grid > div:last-child { border-right: 0; }
.fact-icon, .card-icon, .boundary-icon { width: 42px; height: 42px; display: grid; place-items: center; grid-row: span 2; color: var(--orange-dark); background: var(--orange-soft); border-radius: 12px; }
.fact-grid b, .fact-grid small { display: block; }
.fact-grid b { font-size: .92rem; }
.fact-grid small { color: var(--muted); font-size: .79rem; }

.section { padding: clamp(72px, 8vw, 112px) 0; }
.section-soft { background: var(--surface-soft); }
.section-dark { color: #fff; background: var(--ink); }
.section-dark p, .section-dark small { color: #bcd0d8; }
.section-dark .content-card { color: var(--ink); background: #fff; }
.section-head { max-width: 760px; margin: 0 auto 44px; text-align: center; }
.section-head p { margin-bottom: 0; font-size: 1.08rem; }
.split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(42px, 7vw, 90px); }
.copy-block > p { font-size: 1.05rem; }
.card-grid { display: grid; gap: 20px; }
.card-grid-three { grid-template-columns: repeat(3, 1fr); }
.content-card, .step-card, .problem-card, .boundary-card, .factor, .contact-option {
  display: flex;
  flex-direction: column;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 7px 24px rgba(15,23,42,.045);
}
.content-card { min-height: 235px; }
.content-card .card-icon { margin-bottom: 23px; }
.content-card p { margin-bottom: 21px; }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
.step-card { position: relative; padding-top: 64px; }
.step-card::before { counter-increment: step; content: counter(step); position: absolute; top: 20px; left: 24px; width: 30px; height: 30px; display: grid; place-items: center; color: #fff; background: var(--orange); border-radius: 50%; font-weight: 900; font-size: .8rem; }
.problem-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.problem-card { gap: 10px; }
.problem-label { color: var(--orange-dark); font-size: .78rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.problem-answer { padding-top: 13px; border-top: 1px solid var(--line); color: var(--ink-2); font-weight: 750; }
.check-list { list-style: none; padding: 0; margin: 24px 0; display: grid; gap: 13px; }
.check-list li { display: flex; align-items: flex-start; gap: 10px; }
.check-list .icon { margin-top: 4px; color: var(--green); }
.notice { padding: 18px 20px; border-left: 4px solid var(--orange); border-radius: 12px; background: var(--orange-soft); color: var(--ink-2); }
.notice b { display: block; margin-bottom: 3px; color: var(--ink); }
.tag-row { display: flex; flex-wrap: wrap; gap: 9px; margin: 20px 0; }
.tag { padding: 7px 11px; border: 1px solid var(--line); border-radius: 999px; background: #fff; color: var(--ink-2); font-size: .84rem; font-weight: 720; }

.page-hero, .price-hero { padding: 72px 0 80px; background: radial-gradient(circle at 86% 10%, rgba(232,138,0,.17), transparent 30%), var(--cream); }
.page-hero h1, .price-hero h1 { font-size: clamp(2.7rem, 5.7vw, 5rem); }
.hero-panel { padding: 28px; }
.metric-row, .info-row { display: flex; align-items: center; gap: 14px; padding: 15px 0; border-bottom: 1px solid var(--line); }
.metric-row:last-child, .info-row:last-child { border-bottom: 0; }
.metric-row b, .metric-row small, .info-row b, .info-row small { display: block; }
.metric-row small, .info-row small { color: var(--muted); }
.info-row > .icon { width: 24px; height: 24px; color: var(--orange-dark); }
.info-panel { padding: 29px; }
.price-card { padding: 34px; color: #fff; background: linear-gradient(145deg, #183e4d, var(--ink)); border-color: rgba(255,255,255,.12); }
.price-zero { font-size: clamp(3rem, 6vw, 5.4rem); line-height: 1; font-weight: 930; letter-spacing: -.07em; }
.price-card > small { color: #c6d6dc; }
.price-points { display: grid; gap: 12px; margin-top: 28px; }
.price-points > div { display: flex; align-items: center; gap: 9px; }
.price-points .icon { color: #7be0bd; }
.factor-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-top: 25px; }
.factor { padding: 20px; }
.factor p { margin: 6px 0 0; font-size: .92rem; }

.quote-layout { display: grid; grid-template-columns: .83fr 1.17fr; align-items: start; gap: clamp(38px, 7vw, 78px); }
.quote-copy { position: sticky; top: 115px; }
.lead-form { padding: clamp(23px, 4vw, 34px); }
.form-head { margin-bottom: 25px; }
.form-head h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
.form-grid, .contact-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field-full { grid-column: 1 / -1; }
.field label { color: var(--ink-2); font-size: .86rem; font-weight: 800; }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 49px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #cfdde2;
  border-radius: 11px;
  outline: none;
  transition: border-color .15s, box-shadow .15s;
}
.field textarea { min-height: 135px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 4px rgba(232,138,0,.12); }
.consent { display: flex; align-items: flex-start; gap: 10px; margin: 20px 0; color: var(--muted); font-size: .88rem; }
.consent input { margin-top: 5px; accent-color: var(--orange); }
.form-note { margin: 14px 0 0; text-align: center; font-size: .82rem; }
.form-success { margin-top: 16px; padding: 13px 15px; color: #0e6a55; background: var(--green-soft); border-radius: 10px; font-weight: 720; }
.form-success.is-error { color: #9a3d2c; background: #fff0ed; }

.coverage-boundary { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.boundary-card { text-align: center; align-items: center; }
.boundary-icon { margin-bottom: 18px; }
.good { color: var(--green); }
.not-yet { color: var(--warning); }
.status { display: inline-flex; align-items: center; width: fit-content; padding: 6px 10px; border-radius: 999px; font-size: .78rem; font-weight: 850; }
.status-success { color: var(--green); background: var(--green-soft); }
.status-warning { color: var(--warning); background: var(--warning-soft); }
.status-neutral { color: var(--ink-2); background: var(--surface-soft); }

.table-mock { overflow: hidden; }
.table-head, .table-mock > .metric-row { display: grid; grid-template-columns: 1.3fr 1fr .8fr; gap: 14px; align-items: center; padding: 16px 20px; }
.table-head { color: var(--muted); background: var(--surface-soft); font-size: .8rem; font-weight: 850; text-transform: uppercase; letter-spacing: .08em; }
.table-mock > .metric-row { border-bottom: 1px solid var(--line); }
.mock-form, .mock-summary { padding: 27px; }
.mock-form { display: grid; gap: 14px; }
.mock-summary { background: var(--ink); color: #fff; }
.mock-summary p, .mock-summary small { color: #bad0d8; }

.breadcrumbs { display: flex; align-items: center; gap: 9px; padding-top: 26px; color: var(--muted); font-size: .87rem; }
.breadcrumbs a:hover { color: var(--orange-dark); }
.faq-list { display: grid; gap: 12px; }
.faq-list details { border: 1px solid var(--line); border-radius: 15px; background: #fff; overflow: hidden; }
.faq-list summary { display: flex; justify-content: space-between; gap: 20px; padding: 19px 21px; cursor: pointer; list-style: none; color: var(--ink); font-weight: 800; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--orange); font-size: 1.25rem; transition: transform .2s; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details > div { padding: 0 21px 18px; }
.faq-list details p { margin: 0; }
.faq-group { margin-bottom: 45px; }
.faq-group h2 { font-size: 2rem; }
.contact-options { display: grid; gap: 14px; }
.contact-option { flex-direction: row; align-items: center; gap: 15px; }
.contact-option .card-icon { flex: 0 0 auto; }

.section-cta { padding-top: 35px; }
.cta-panel { position: relative; overflow: hidden; display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: clamp(31px, 5vw, 55px); color: #fff; background: linear-gradient(135deg, var(--ink), #1e5261); border-radius: var(--radius-lg); }
.cta-panel::after { content: ""; position: absolute; width: 250px; height: 250px; right: -75px; top: -105px; border: 38px solid rgba(255,255,255,.045); border-radius: 50%; }
.cta-panel > * { position: relative; z-index: 1; }
.cta-panel h2 { margin-bottom: 9px; font-size: clamp(2rem, 4vw, 3.2rem); }
.cta-panel p { margin-bottom: 0; color: #bed1d8; }

.site-footer { margin-top: 90px; padding: 70px 0 25px; color: #d4e1e6; background: #0a2531; }
.site-footer p { color: #9fb7c1; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 45px; }
.footer-grid h2 { margin-bottom: 16px; font-size: .83rem; color: #fff; letter-spacing: .1em; text-transform: uppercase; }
.footer-grid > div > a:not(.brand) { display: block; margin: 10px 0; color: #b7cad2; font-size: .91rem; }
.footer-grid a:hover { color: #fff; }
.footer-brand .brand { color: #fff; margin-bottom: 16px; }
.small-print { font-size: .8rem; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 45px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); color: #8ca8b4; font-size: .82rem; }

@media (max-width: 1030px) {
  .nav-actions .nav-login { display: none; }
  .fact-grid { grid-template-columns: repeat(3, 1fr); }
  .fact-grid > div { border-bottom: 1px solid var(--line); }
  .fact-grid > div:nth-child(3n) { border-right: 0; }
  .card-grid-three { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2 / 4; }
}

@media (max-width: 860px) {
  .nav-shell { min-height: 68px; }
  .menu-toggle { display: block; }
  .site-nav {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 20px;
    overflow-y: auto;
    background: #fff;
  }
  .site-nav.is-open { display: flex; }
  .nav-group { width: 100%; }
  .nav-parent, .nav-link { width: 100%; justify-content: space-between; text-align: left; }
  .nav-popover, .nav-popover-wide { position: static; width: 100%; display: none; opacity: 1; visibility: visible; transform: none; margin: 4px 0 10px; box-shadow: none; }
  .nav-group:hover .nav-popover { display: none; }
  .nav-group.is-open .nav-popover { display: block; }
  .nav-actions .button { display: none; }
  .hero-grid, .page-hero-grid, .split, .quote-layout { grid-template-columns: 1fr; }
  .hero { padding-top: 72px; }
  .product-window { transform: none; }
  .quote-copy { position: static; }
  .fact-grid { grid-template-columns: repeat(2, 1fr); }
  .fact-grid > div:nth-child(3n) { border-right: 1px solid var(--line); }
  .fact-grid > div:nth-child(2n) { border-right: 0; }
  .coverage-boundary { grid-template-columns: 1fr; }
  .cta-panel { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: auto; }
}

@media (max-width: 620px) {
  .shell, .narrow { width: min(calc(100% - 28px), var(--shell)); }
  h1 { font-size: clamp(2.35rem, 12vw, 3.65rem); }
  h2 { font-size: clamp(1.9rem, 9vw, 2.65rem); }
  .hero-actions, .page-hero-actions, .cta-actions { flex-direction: column; }
  .hero-actions .button, .page-hero-actions .button, .cta-actions .button { width: 100%; }
  .proof-line { flex-direction: column; }
  .fact-grid, .card-grid-three, .steps-grid, .problem-grid, .form-grid, .contact-form-grid, .factor-grid { grid-template-columns: 1fr; }
  .fact-grid > div, .fact-grid > div:nth-child(3n), .fact-grid > div:nth-child(2n) { border-right: 0; }
  .content-card { min-height: 0; }
  .field-full { grid-column: auto; }
  .table-head, .table-mock > .metric-row { grid-template-columns: 1fr; }
  .table-head { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .site-footer { margin-top: 65px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}

  