:root {
  --blue: #0057b8;
  --blue-bright: #006ce5;
  --blue-dark: #003d78;
  --cyan: #009fdb;
  --ink: #14212b;
  --muted: #52616d;
  --line: #dce3e8;
  --surface: #f4f7f9;
  --white: #fff;
  --shadow: 0 16px 42px rgba(21, 52, 82, .12);
  --radius: 20px;
  --shell: min(1180px, calc(100% - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input { font: inherit; }
sup { font-size: .58em; line-height: 0; vertical-align: super; }
.shell { width: var(--shell); margin-inline: auto; }
.skip-link {
  position: fixed; z-index: 1000; left: 12px; top: -80px;
  padding: 12px 18px; color: #fff; background: #000; border-radius: 8px;
}
.skip-link:focus { top: 12px; }

.utility-bar { color: #fff; background: var(--blue-dark); font-size: 12px; }
.utility-inner { min-height: 34px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.utility-call { display: inline-flex; align-items: center; gap: 7px; font-weight: 700; text-decoration: none; }
.utility-call svg, .button svg, .mobile-callbar svg { width: 18px; height: 18px; fill: currentColor; }

.site-header {
  position: sticky; z-index: 100; top: 0; background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid rgba(20, 33, 43, .08); backdrop-filter: blur(16px);
}
.nav-wrap { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand { display: inline-flex; align-items: center; gap: 11px; min-width: max-content; text-decoration: none; }
.brand-logo { display: block; width: auto; height: 52px; object-fit: contain; }
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav > a:not(.button) {
  position: relative; color: #26353f; font-size: 14px; font-weight: 600; text-decoration: none;
}
.main-nav > a:not(.button)::after {
  position: absolute; right: 0; bottom: -8px; left: 0; height: 2px; content: "";
  background: var(--blue); transform: scaleX(0); transition: transform .2s ease;
}
.main-nav > a:hover::after { transform: scaleX(1); }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 10px; background: none; border: 0; }
.menu-toggle span { display: block; width: 24px; height: 2px; margin: 5px 0; background: var(--ink); transition: .2s ease; }

.button {
  display: inline-flex; min-height: 48px; align-items: center; justify-content: center; gap: 9px;
  padding: 12px 22px; border: 2px solid transparent; border-radius: 8px;
  font-size: 14px; font-weight: 800; line-height: 1; text-align: center; text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: var(--blue); box-shadow: 0 10px 24px rgba(0, 87, 184, .22); }
.button-primary:hover { background: var(--blue-dark); box-shadow: 0 14px 28px rgba(0, 61, 120, .24); }
.button-outline { color: var(--blue); background: #fff; border-color: var(--blue); }
.button-outline:hover { color: #fff; background: var(--blue); }
.button-light { color: var(--blue-dark); background: #fff; box-shadow: 0 10px 28px rgba(0, 20, 50, .18); }
.button-large { min-height: 58px; padding-inline: 28px; font-size: 17px; }
.nav-button { min-height: 44px; color: #fff; background: var(--blue); }
.text-link, .offer-link {
  color: var(--blue); font-weight: 800; text-decoration: none;
}
.text-link span { display: inline-block; margin-left: 3px; transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }

.hero { position: relative; min-height: 650px; overflow: hidden; background: #fff; }
.hero-image {
  position: absolute; inset: 0; background: url("assets/hero.jpg") center top / cover no-repeat;
}
.hero::after {
  position: absolute; inset: auto 0 0; height: 72px; pointer-events: none; content: "";
  background: linear-gradient(to top, #fff, rgba(255, 255, 255, 0));
}
.hero-shell { position: relative; z-index: 1; min-height: 650px; display: flex; align-items: center; }
.hero-copy { width: 52%; max-width: 615px; padding: 58px 0 72px; }
.eyebrow {
  margin: 0 0 12px; color: var(--blue); font-size: 12px; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase;
}
.hero h1 {
  max-width: 610px; margin: 0; font-size: clamp(42px, 4.35vw, 66px);
  line-height: .98; letter-spacing: -.055em;
}
.hero h1 span { display: block; color: var(--blue); }
.hero-lead { max-width: 580px; margin: 24px 0 28px; color: #3d4d58; font-size: 18px; line-height: 1.6; }
.hero-price {
  display: grid; grid-template-columns: auto 1fr; align-items: end; gap: 24px;
  max-width: 570px; padding: 20px 0; border-block: 1px solid var(--line);
}
.hero-price > div { display: grid; }
.plan-kicker { color: var(--blue); font-size: 13px; font-weight: 800; }
.hero-price strong { color: var(--blue); font-size: 50px; line-height: 1; letter-spacing: -.05em; }
.hero-price strong sup { font-size: .47em; vertical-align: 18px; }
.hero-price strong small { margin-left: 4px; font-size: 16px; letter-spacing: -.02em; }
.hero-price p { margin: 0 0 5px; color: var(--muted); font-size: 12px; line-height: 1.5; }
.hero-actions { display: flex; align-items: center; gap: 22px; margin: 24px 0; }
.microcopy { max-width: 570px; margin: 18px 0 0; color: #65747e; font-size: 10px; line-height: 1.45; }
.microcopy a { color: inherit; font-weight: 700; }

.reward-strip { position: relative; z-index: 2; color: #fff; background: linear-gradient(105deg, var(--blue-dark), var(--blue-bright)); }
.reward-inner {
  position: relative; display: grid; grid-template-columns: 70px 1fr auto; align-items: center; gap: 25px;
  min-height: 170px; padding-block: 32px;
}
.reward-icon { width: 64px; height: 64px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; background: rgba(255,255,255,.1); }
.reward-icon svg { width: 34px; fill: none; stroke: #fff; stroke-width: 2.4; stroke-linecap: round; }
.reward-inner .eyebrow { margin-bottom: 6px; color: #8fe8ff; }
.reward-inner h2 { margin: 0 0 4px; font-size: 28px; line-height: 1.15; letter-spacing: -.035em; }
.reward-inner p { margin: 0; }
.reward-fine { position: absolute; left: 95px; bottom: 14px; color: rgba(255,255,255,.7); font-size: 9px; }

.section { padding: 94px 0; }
.section-heading { max-width: 760px; margin: 0 auto 45px; text-align: center; }
.section-heading h2, .benefits-copy h2, .dealer-grid h2, .faq-intro h2, .cta-inner h2 {
  margin: 0; font-size: clamp(34px, 3.2vw, 48px); line-height: 1.08; letter-spacing: -.045em;
}
.section-heading > p:last-child { max-width: 680px; margin: 18px auto 0; color: var(--muted); }
.plan-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; align-items: stretch; }
.plan-card {
  position: relative; display: flex; min-width: 0; flex-direction: column; padding: 28px 25px;
  background: #fff; border: 1px solid #dde6ed; border-radius: var(--radius);
  box-shadow: 0 8px 26px rgba(31, 65, 94, .07); transition: transform .22s ease, box-shadow .22s ease;
}
.plan-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.plan-card.featured { border: 2px solid var(--blue); box-shadow: 0 18px 44px rgba(0, 87, 184, .16); }
.popular-label {
  position: absolute; top: -14px; left: 50%; min-width: 130px; padding: 6px 12px; transform: translateX(-50%);
  color: #fff; background: var(--blue); border-radius: 20px; font-size: 10px; font-weight: 800; letter-spacing: .1em; text-align: center; text-transform: uppercase;
}
.speed-pill {
  display: inline-flex; width: max-content; padding: 6px 10px; color: var(--blue);
  background: #eaf4ff; border-radius: 30px; font-size: 12px; font-weight: 800;
}
.plan-card h3 { margin: 18px 0 8px; font-size: 22px; line-height: 1.15; letter-spacing: -.035em; }
.card-subtitle { min-height: 48px; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.5; }
.price-row { display: flex; align-items: flex-start; margin-top: 24px; color: var(--blue); letter-spacing: -.055em; }
.price-row > span { margin-top: 7px; font-size: 22px; font-weight: 800; }
.price-row strong { font-size: 52px; line-height: .92; }
.price-row small { align-self: flex-end; margin: 0 0 5px 5px; font-size: 14px; font-weight: 800; letter-spacing: -.02em; }
.price-note { min-height: 59px; margin: 12px 0 18px; color: var(--muted); font-size: 10px; line-height: 1.45; }
.feature-list { display: grid; gap: 12px; margin: 0 0 24px; padding: 19px 0 0; border-top: 1px solid var(--line); list-style: none; }
.feature-list li { position: relative; padding-left: 23px; color: #31414c; font-size: 12px; }
.feature-list li::before {
  position: absolute; left: 0; top: 1px; display: grid; width: 16px; height: 16px; place-items: center;
  color: #fff; background: var(--blue); border-radius: 50%; content: "✓"; font-size: 9px; font-weight: 900;
}
.plan-card .button { width: 100%; margin-top: auto; }
.offer-link { margin-top: 14px; font-size: 11px; text-align: center; text-decoration: underline; text-underline-offset: 3px; }
.broadband-facts {
  display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 28px;
  color: var(--muted); font-size: 12px;
}
.broadband-facts a { color: var(--blue); font-weight: 800; text-decoration: none; }

.benefits-section { background: var(--surface); }
.benefits-grid { display: grid; grid-template-columns: 1.03fr .97fr; align-items: center; gap: 74px; }
.benefits-photo { position: relative; min-height: 500px; }
.benefits-photo::before {
  position: absolute; inset: 40px -20px -20px 40px; content: ""; background: #dceefb; border-radius: 26px;
}
.benefits-photo img { position: relative; width: 100%; min-height: 500px; object-fit: cover; border-radius: 26px; box-shadow: var(--shadow); }
.photo-stat {
  position: absolute; right: -34px; bottom: 32px; display: grid; width: 210px; padding: 22px;
  color: #fff; background: var(--blue); border-radius: 14px; box-shadow: 0 16px 32px rgba(0, 54, 110, .24);
}
.photo-stat strong { font-size: 40px; line-height: 1; letter-spacing: -.05em; }
.photo-stat span { margin-top: 6px; font-size: 11px; line-height: 1.4; }
.benefits-copy > p:not(.eyebrow) { margin: 20px 0 0; color: var(--muted); }
.benefit-list { display: grid; gap: 22px; margin: 32px 0; }
.benefit-list > div { display: grid; grid-template-columns: 30px 1fr; gap: 14px; }
.check-icon { display: grid; width: 28px; height: 28px; place-items: center; color: #fff; background: var(--blue); border-radius: 50%; font-size: 14px; font-weight: 900; }
.benefit-list h3 { margin: 1px 0 4px; font-size: 17px; }
.benefit-list p { margin: 0; color: var(--muted); font-size: 13px; }

.service-section { overflow: hidden; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin: 0; padding: 0; list-style: none; counter-reset: none; }
.steps li { position: relative; padding: 34px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.steps li:not(:last-child)::after {
  position: absolute; top: 53px; right: -32px; z-index: 2; width: 32px; height: 1px; content: ""; background: var(--line);
}
.steps li > span { display: grid; width: 42px; height: 42px; place-items: center; color: #fff; background: var(--blue); border-radius: 12px; font-size: 14px; font-weight: 800; }
.steps h3 { margin: 24px 0 10px; font-size: 20px; letter-spacing: -.025em; }
.steps p { margin: 0; color: var(--muted); font-size: 13px; }

.dealer-section { color: #fff; background: var(--ink); }
.dealer-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; }
.dealer-grid .eyebrow { color: #73dcff; }
.dealer-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.dealer-points article { padding-left: 20px; border-left: 1px solid rgba(255,255,255,.2); }
.dealer-points span { color: #73dcff; font-size: 11px; font-weight: 800; letter-spacing: .12em; }
.dealer-points h3 { margin: 22px 0 9px; font-size: 16px; }
.dealer-points p { margin: 0; color: #b8c2c9; font-size: 12px; line-height: 1.6; }

.faq-section { background: var(--surface); }
.faq-shell { display: grid; grid-template-columns: .68fr 1.32fr; gap: 80px; align-items: start; }
.faq-intro { position: sticky; top: 135px; }
.faq-intro > p:not(.eyebrow) { margin: 20px 0; color: var(--muted); }
.accordion { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.accordion-item + .accordion-item { border-top: 1px solid var(--line); }
.accordion-item button {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 24px 26px; color: var(--ink); background: #fff; border: 0; cursor: pointer;
  font-weight: 800; text-align: left;
}
.accordion-item button:hover { color: var(--blue); }
.accordion-icon { position: relative; flex: 0 0 18px; width: 18px; height: 18px; }
.accordion-icon::before, .accordion-icon::after {
  position: absolute; top: 8px; left: 2px; width: 14px; height: 2px; content: ""; background: var(--blue); transition: transform .2s ease;
}
.accordion-icon::after { transform: rotate(90deg); }
.accordion-item button[aria-expanded="true"] .accordion-icon::after { transform: rotate(0); }
.accordion-panel { padding: 0 26px 24px; }
.accordion-panel p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }

.cta-section { color: #fff; background: linear-gradient(110deg, #004a95, #0078dd); }
.cta-inner { min-height: 280px; display: flex; align-items: center; justify-content: space-between; gap: 50px; padding-block: 58px; }
.cta-inner .eyebrow { color: #8fe8ff; }
.cta-inner h2 { max-width: 690px; }
.cta-inner p:last-child { margin: 14px 0 0; color: #d9ecff; }

.site-footer { color: #d5dde2; background: #0a141b; }
.footer-top { display: grid; grid-template-columns: 1fr 1.45fr; gap: 70px; padding-block: 60px 48px; }
.brand-footer { width: max-content; padding: 0; background: transparent; }
.brand-footer .brand-logo {
  height: 48px;
  opacity: .96;
  filter: grayscale(1) brightness(0) invert(1);
}
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 35px; }
.footer-links h3 { margin: 0 0 14px; color: #fff; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.footer-links a { display: block; margin: 9px 0; color: #aeb9c0; font-size: 12px; text-decoration: none; }
.footer-links a:hover { color: #fff; text-decoration: underline; }
.legal-fineprint { padding: 32px 0 42px; border-top: 1px solid rgba(255,255,255,.13); }
.legal-fineprint h2 { margin: 0 0 20px; color: #fff; font-size: 13px; letter-spacing: .06em; text-transform: uppercase; }
.legal-fineprint p { margin: 13px 0; color: #93a1aa; font-size: 9px; line-height: 1.65; }
.legal-fineprint strong { color: #cbd3d8; }
.legal-fineprint a { color: #c7e5ff; }
.dealer-notice {
  margin: 18px 0;
  padding: 13px 15px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  background: rgba(255,255,255,.04);
}
.dealer-notice p { margin: 0; }
.footer-bottom { background: #050a0e; }
.footer-bottom-inner { min-height: 62px; display: flex; align-items: center; justify-content: space-between; gap: 25px; }
.footer-bottom p { margin: 0; color: #7f8b93; font-size: 10px; }
.mobile-callbar { display: none; }

@media (max-width: 1080px) {
  .main-nav { gap: 18px; }
  .main-nav > a:not(.button) { font-size: 12px; }
  .hero-copy { width: 55%; }
  .plan-grid { grid-template-columns: repeat(2, 1fr); }
  .price-note { min-height: auto; }
  .benefits-grid { gap: 55px; }
  .dealer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  :root { --shell: min(100% - 36px, 680px); }
  body { padding-bottom: 66px; }
  .utility-inner > span { display: none; }
  .utility-inner { justify-content: center; }
  .nav-wrap { min-height: 70px; }
  .menu-toggle { display: block; cursor: pointer; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .main-nav {
    position: absolute; top: 100%; right: 0; left: 0; display: none; flex-direction: column; align-items: stretch; gap: 0;
    padding: 15px 24px 25px; background: #fff; border-top: 1px solid var(--line); box-shadow: 0 18px 28px rgba(0,0,0,.1);
  }
  .main-nav.open { display: flex; }
  .main-nav > a:not(.button) { padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 14px; }
  .main-nav > a::after { display: none; }
  .nav-button { margin-top: 16px; }
  .hero { min-height: auto; }
  .hero-image { position: relative; height: 335px; background-position: 68% top; background-size: auto 100%; }
  .hero::after { display: none; }
  .hero-shell { min-height: auto; }
  .hero-copy { width: 100%; max-width: none; padding: 46px 0 58px; }
  .hero h1 { max-width: 620px; font-size: clamp(40px, 10.5vw, 60px); }
  .hero-price { max-width: none; }
  .hero-actions { max-width: 440px; align-items: stretch; flex-direction: column; gap: 14px; }
  .hero-actions .button { width: 100%; min-height: 54px; }
  .hero-actions .text-link { text-align: center; }
  .reward-inner { grid-template-columns: 62px 1fr; padding: 34px 0 48px; }
  .reward-inner .button { grid-column: 1 / -1; width: 100%; }
  .reward-fine { left: 0; bottom: 15px; }
  .section { padding: 72px 0; }
  .benefits-grid { grid-template-columns: 1fr; }
  .benefits-photo, .benefits-photo img { min-height: 420px; }
  .photo-stat { right: 16px; }
  .steps { grid-template-columns: 1fr; gap: 18px; }
  .steps li:not(:last-child)::after { display: none; }
  .dealer-points { grid-template-columns: 1fr; }
  .dealer-points article { padding: 8px 0 8px 20px; }
  .dealer-points h3 { margin-top: 8px; }
  .faq-shell { grid-template-columns: 1fr; gap: 38px; }
  .faq-intro { position: static; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .footer-top { grid-template-columns: 1fr; gap: 45px; }
  .mobile-callbar {
    position: fixed; z-index: 120; right: 0; bottom: 0; left: 0; display: block; padding: 9px 14px;
    background: rgba(255,255,255,.97); border-top: 1px solid var(--line); box-shadow: 0 -8px 24px rgba(0,0,0,.08);
  }
  .mobile-callbar:not(.is-visible) { display: none; }
  .mobile-callbar a {
    display: flex; min-height: 47px; align-items: center; justify-content: center; gap: 9px;
    color: #fff; background: var(--blue); border-radius: 8px; font-weight: 800; text-decoration: none;
  }
}

@media (max-width: 560px) {
  :root { --shell: calc(100% - 28px); }
  .brand-logo { height: 44px; }
  .hero-image { height: 250px; background-position: 71% top; }
  .hero-copy { padding-top: 38px; }
  .hero h1 { font-size: 42px; }
  .hero-lead { font-size: 16px; }
  .hero-price { grid-template-columns: 1fr; gap: 10px; }
  .hero-price strong { font-size: 44px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 16px; }
  .hero-actions .button { width: 100%; }
  .hero-actions .text-link { text-align: center; }
  .reward-inner { grid-template-columns: 1fr; text-align: center; }
  .reward-icon { margin-inline: auto; }
  .reward-fine { position: static; grid-column: auto; }
  .plan-grid { grid-template-columns: 1fr; }
  .plan-card { padding: 28px 24px; }
  .plan-card h3 { font-size: 24px; }
  .card-subtitle { min-height: auto; }
  .section-heading { text-align: left; }
  .section-heading > p:last-child { margin-left: 0; }
  .benefits-photo, .benefits-photo img { min-height: 340px; }
  .benefits-photo::before { inset: 24px -8px -14px 24px; }
  .photo-stat { right: 10px; bottom: 18px; width: 175px; padding: 18px; }
  .steps li { padding: 28px; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom-inner { min-height: 74px; align-items: flex-start; flex-direction: column; justify-content: center; gap: 5px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
