:root {
  --blue: #0050a4;
  --blue-deep: #0a2c66;
  --blue-light: #4a90cc;
  --blue-pale: #e9f2fd;
  --blue-surface: #dce6f8;
  --orange: #ec6c04;
  --orange-soft: #f18a4c;
  --text: #333333;
  --text-soft: #535b65;
  --muted: #737b84;
  --white: #ffffff;
  --line: rgba(10, 44, 102, 0.13);
  --shadow: 0 18px 48px rgba(10, 44, 102, 0.13);
  --footer: #082a5a;
  --header-height: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 20%, rgba(74, 144, 204, 0.15), transparent 27rem),
    radial-gradient(circle at 94% 50%, rgba(0, 80, 164, 0.08), transparent 34rem),
    linear-gradient(180deg, #f4f8fd 0, #ffffff 46%, #f4f7fb 100%);
  font-family: "Inter", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
}

a,
button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(1180px, calc(100% - 56px));
  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;
  left: 20px;
  top: -80px;
  z-index: 1000;
  padding: 12px 16px;
  color: var(--white);
  background: var(--blue-deep);
  border-radius: 8px;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-height);
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.74), transparent 42%),
    var(--blue-pale);
  border-bottom: 1px solid rgba(0, 80, 164, 0.12);
  box-shadow: 0 8px 28px rgba(10, 44, 102, 0.08);
  backdrop-filter: blur(18px) saturate(130%);
}

.header-inner {
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  width: 168px;
}

.brand-logo {
  display: block;
  width: 100%;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.main-nav a {
  padding: 12px 13px;
  color: var(--blue-deep);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--blue);
  background: rgba(0, 80, 164, 0.08);
}

.main-nav .mobile-subscriber {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.subscriber-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  color: var(--blue-deep);
  border: 1px solid rgba(0, 80, 164, 0.22);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.52);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.subscriber-link i {
  color: var(--blue);
  font-size: 19px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: var(--blue-deep);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 24px;
  cursor: pointer;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 0;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-small {
  min-height: 44px;
  padding-inline: 18px;
  font-size: 14px;
}

.button-orange {
  color: var(--white);
  background: linear-gradient(145deg, var(--orange-soft), var(--orange));
  box-shadow: 0 9px 22px rgba(236, 108, 4, 0.24);
}

.button-orange:hover {
  box-shadow: 0 13px 28px rgba(236, 108, 4, 0.3);
}

.button-blue {
  color: var(--white);
  background: linear-gradient(145deg, var(--blue-light), var(--blue));
  box-shadow: 0 9px 20px rgba(0, 80, 164, 0.2);
}

.button-glass {
  color: var(--white);
  background: rgba(220, 230, 248, 0.17);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
}

.hero {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  background: var(--blue-deep);
}

.hero-slides,
.hero-slide,
.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-slide {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.65s ease, visibility 0.65s ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.hero-media {
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background: rgba(10, 44, 102, 0.06);
}

.hero-slide-soft-blue .hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 37, 79, 0.68) 0%, rgba(7, 45, 91, 0.48) 34%, rgba(0, 80, 164, 0.22) 62%, rgba(0, 80, 164, 0.06) 80%, transparent 92%),
    linear-gradient(0deg, rgba(10, 44, 102, 0.14), transparent 58%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  min-height: 610px;
  display: flex;
  align-items: center;
}

.hero-copy {
  position: relative;
  max-width: 640px;
  margin-left: 0;
  padding: 50px 0 86px;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.hero.is-copy-changing .hero-copy {
  opacity: 0;
  transform: translateY(8px);
}

.hero-copy::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: -80px;
  bottom: 60px;
  width: 320px;
  height: 170px;
  background: radial-gradient(circle, rgba(236, 108, 4, 0.16), transparent 68%);
  filter: blur(18px);
  pointer-events: none;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 17px;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.015em;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 3px;
  flex: 0 0 auto;
  border-radius: 99px;
  background: var(--orange);
}

.hero-copy h1 {
  max-width: 620px;
  margin: 0;
  color: var(--white);
  font-size: clamp(42px, 4.3vw, 58px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.hero-copy > p {
  max-width: 580px;
  margin: 22px 0 0;
  color: rgba(234, 240, 249, 0.84);
  font-size: 18px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.carousel-arrow {
  position: absolute;
  z-index: 3;
  top: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: var(--white);
  background: rgba(255, 255, 255, 0.15);
  border: 0;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  transform: translateY(-50%);
  backdrop-filter: blur(8px);
}

.carousel-arrow:hover {
  background: rgba(255, 255, 255, 0.26);
}

.carousel-previous {
  left: 18px;
}

.carousel-next {
  right: 18px;
}

.carousel-controls {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 23px;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateX(-50%);
}

.carousel-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.carousel-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  background: rgba(255, 255, 255, 0.55);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease, border-radius 0.25s ease;
}

.carousel-dot.is-active {
  width: 26px;
  background: var(--orange);
  border-radius: 6px;
}

.carousel-toggle {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: var(--white);
  background: rgba(4, 24, 58, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.proof-wrap {
  position: relative;
  z-index: 5;
  margin-top: -45px;
}

.numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 25px 28px;
  background: rgba(255, 255, 255, 0.93);
  border: 1px solid rgba(74, 144, 204, 0.16);
  border-radius: 20px;
  box-shadow: 0 22px 54px rgba(10, 44, 102, 0.16);
  backdrop-filter: blur(16px);
}

.number {
  padding: 2px 24px;
  border-right: 1px solid rgba(74, 74, 74, 0.15);
}

.number:first-child {
  padding-left: 0;
}

.number:nth-child(4) {
  border-right: 0;
}

.number strong {
  display: block;
  color: var(--blue);
  font-size: 31px;
  letter-spacing: -0.03em;
}

.number span {
  color: var(--text-soft);
  font-size: 14px;
}

.numbers-caption {
  grid-column: 1 / -1;
  margin: 22px 0 0;
  padding-top: 20px;
  color: var(--text-soft);
  border-top: 1px solid rgba(74, 74, 74, 0.15);
  font-size: 14px;
}

.section-space {
  margin-top: 82px;
  scroll-margin-top: calc(var(--header-height) + 18px);
}

.section-heading {
  display: block;
  margin-bottom: 26px;
}

.section-heading.compact {
  align-items: start;
  display: block;
}

.section-heading .text-link,
.section-heading.compact .text-link {
  display: inline-flex;
  margin-top: 16px;
}

.section-kicker {
  display: block;
  width: fit-content;
  margin: 0 0 9px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.section-heading h2,
.coverage-copy h2,
.closing-inner h2 {
  margin: 0;
  color: var(--blue);
  font-size: clamp(29px, 3vw, 36px);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.section-heading p:not(.section-kicker),
.coverage-copy > p:not(.section-kicker),
.closing-inner p:not(.section-kicker) {
  max-width: 720px;
  margin: 10px 0 0;
  color: var(--text-soft);
  line-height: 1.55;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  width: fit-content;
  padding-bottom: 2px;
  color: var(--blue);
  border-bottom: 1px solid rgba(236, 108, 4, 0.55);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.text-link i,
.coverage-full-link i {
  color: var(--blue);
  font-size: 1em;
}

.combos-section {
  padding: 44px 34px;
  background: linear-gradient(145deg, rgba(220, 230, 248, 0.9), rgba(255, 255, 255, 0.95));
  border-radius: 32px;
  box-shadow: 0 26px 70px rgba(10, 44, 102, 0.13);
}

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

.combo-card {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(74, 144, 204, 0.15);
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(10, 44, 102, 0.11);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.combo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 48px rgba(10, 44, 102, 0.18);
}

.combo-card.is-featured {
  border-color: rgba(0, 80, 164, 0.45);
}

.combo-card.is-featured::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--orange);
}

.combo-media {
  position: relative;
  height: 150px;
  overflow: hidden;
  background: var(--blue-surface);
}

.combo-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.combo-card:hover .combo-media img {
  transform: scale(1.025);
}

.use-chip,
.speed-chip {
  position: absolute;
  bottom: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  backdrop-filter: blur(7px);
}

.use-chip {
  left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--white);
  background: rgba(4, 24, 58, 0.82);
}

.speed-chip {
  right: 12px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 2px solid var(--orange);
  text-transform: uppercase;
}

.combo-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 20px 20px 18px;
}

.combo-body h3 {
  margin: 0;
  color: var(--blue);
  font-size: 18px;
}

.combo-promise {
  margin: 8px 0 0;
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.42;
}

.detail-label {
  margin-top: 14px;
  color: var(--muted);
  font-size: 11px;
  text-transform: lowercase;
}

.combo-includes {
  margin: 3px 0 0;
  font-size: 14px;
  line-height: 1.4;
}

.price {
  margin: 14px 0 0;
}

.price strong {
  color: var(--blue);
  font-size: 28px;
  letter-spacing: -0.035em;
}

.price span {
  color: var(--muted);
  font-size: 13px;
}

.combo-divider {
  margin: 16px 0 0;
  border-top: 1px solid rgba(74, 74, 74, 0.15);
}

.benefit-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 5px 0 17px;
}

.benefit-list span {
  padding: 6px 8px;
  color: var(--blue-deep);
  background: rgba(220, 230, 248, 0.72);
  border: 1px solid rgba(74, 144, 204, 0.22);
  border-radius: 999px;
  font-size: 11px;
}

.personalize {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin: 0 0 17px;
  color: var(--text-soft);
  font-size: 12px;
  line-height: 1.4;
}

.personalize i {
  margin-top: 1px;
  color: var(--orange);
}

.button-card {
  min-height: 43px;
  margin-top: auto;
}

.coverage-card {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 42px;
  overflow: hidden;
  padding: 42px;
  background:
    radial-gradient(circle at 88% 18%, rgba(74, 144, 204, 0.16), transparent 24rem),
    linear-gradient(145deg, #f7fbff 0%, #e8f2fc 55%, #dceafa 100%);
  border: 1px solid rgba(74, 144, 204, 0.12);
  border-radius: 24px;
  box-shadow: 0 24px 58px rgba(10, 44, 102, 0.1);
}

.coverage-copy {
  min-width: 0;
}

.city-search {
  max-width: 420px;
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.city-search input {
  min-width: 0;
  flex: 1;
  padding: 0 15px;
  color: var(--text);
  background: var(--white);
  border: 1px solid rgba(74, 74, 74, 0.18);
  border-radius: 9px;
  outline: none;
}

.city-search input:focus {
  border-color: var(--blue-light);
  box-shadow: 0 0 0 4px rgba(74, 144, 204, 0.14);
}

.coverage-status {
  min-height: 40px;
  margin: 14px 0 0;
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.5;
}

.coverage-status.is-covered {
  color: var(--blue-deep);
  font-weight: 600;
}

.coverage-status.is-uncovered {
  color: #815122;
}

.coverage-map {
  height: 286px;
  overflow: hidden;
  background: #eef4fa;
  border: 1px solid rgba(74, 144, 204, 0.18);
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(10, 44, 102, 0.09);
}

.coverage-map svg {
  width: 100%;
  height: 100%;
  display: block;
}

.coverage-map-link {
  display: block;
  height: 100%;
  cursor: pointer;
}

.home-map-context {
  fill: #e8edf2;
  stroke: #d4dce4;
  stroke-width: 1.1;
}

.home-map-city {
  fill: #f3f7fb;
  stroke: #558dc4;
  stroke-width: 2.2;
}

.home-map-city.is-headquarters {
  stroke: var(--orange);
  stroke-width: 2.8;
}

.coverage-full-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  width: fit-content;
  margin-top: 14px;
  padding-bottom: 2px;
  color: var(--blue);
  border-bottom: 1px solid rgba(236, 108, 4, 0.55);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

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

.feature-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(74, 144, 204, 0.14);
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(10, 44, 102, 0.09);
}

.feature-card > i {
  position: relative;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  background: linear-gradient(145deg, var(--white), var(--blue-surface));
  border-radius: 14px;
  box-shadow: 0 8px 18px rgba(0, 80, 164, 0.12);
  font-size: 25px;
}

.feature-card > i::after {
  content: "";
  position: absolute;
  top: -3px;
  right: -3px;
  width: 9px;
  height: 9px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.9);
}

.feature-card h3 {
  margin: 12px 0 5px;
  color: var(--blue);
  font-size: 16px;
}

.feature-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.4;
}

.updates-section {
  padding-bottom: 82px;
}

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

.updates-grid article {
  padding: 22px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(220, 230, 248, 0.62));
  border: 1px solid rgba(74, 144, 204, 0.14);
  border-radius: 16px;
  box-shadow: 0 10px 26px rgba(10, 44, 102, 0.08);
}

.updates-grid time {
  display: block;
  padding-left: 8px;
  color: var(--text-soft);
  border-left: 3px solid var(--orange);
  font-size: 12px;
  font-weight: 600;
}

.updates-grid h3 {
  margin: 9px 0 5px;
  color: var(--blue);
  font-size: 16px;
}

.updates-grid p {
  margin: 0;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.4;
}

.closing-section {
  padding: 34px 0 40px;
  background: #f1f3f4;
  border-top: 1px solid rgba(27, 37, 47, 0.06);
}

.closing-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding: 34px 38px;
  background:
    radial-gradient(circle at 9% 10%, rgba(236, 108, 4, 0.08), transparent 18rem),
    radial-gradient(circle at 92% 90%, rgba(74, 144, 204, 0.12), transparent 24rem),
    rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(10, 44, 102, 0.08);
  border-radius: 20px;
  box-shadow: 0 12px 34px rgba(10, 44, 102, 0.07);
}

.closing-inner .section-kicker {
  margin-bottom: 9px;
}

.closing-inner h2 {
  font-size: clamp(26px, 2.5vw, 32px);
}

.closing-inner .button {
  flex: 0 0 auto;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 52px 0 28px;
  color: #dbeaf8;
  background:
    radial-gradient(circle at 13% 18%, rgba(74, 144, 204, 0.32), transparent 24rem),
    radial-gradient(circle at 88% 10%, rgba(0, 80, 164, 0.3), transparent 28rem),
    radial-gradient(circle at 62% 115%, rgba(236, 108, 4, 0.09), transparent 22rem),
    linear-gradient(135deg, #061b3d 0%, var(--footer) 48%, #07366f 100%);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.28;
  pointer-events: none;
  background-image:
    linear-gradient(112deg, transparent 0 31%, rgba(126, 183, 226, 0.2) 31.2%, transparent 31.7% 100%),
    linear-gradient(122deg, transparent 0 58%, rgba(126, 183, 226, 0.13) 58.2%, transparent 58.8% 100%),
    radial-gradient(circle, rgba(154, 210, 255, 0.5) 0 1px, transparent 1.7px);
  background-position: 0 0, 80px 18px, 0 0;
  background-size: 360px 160px, 520px 220px, 48px 48px;
  mask-image: linear-gradient(105deg, rgba(0, 0, 0, 0.92), transparent 82%);
}

.site-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.22;
  pointer-events: none;
  background:
    radial-gradient(circle at 16% 35%, rgba(142, 209, 255, 0.78) 0 1.5px, transparent 2.5px),
    radial-gradient(circle at 41% 48%, rgba(142, 209, 255, 0.48) 0 1.2px, transparent 2px),
    radial-gradient(circle at 76% 28%, rgba(142, 209, 255, 0.58) 0 1.3px, transparent 2.2px),
    linear-gradient(101deg, transparent 12%, rgba(142, 209, 255, 0.2) 12.3%, transparent 37%),
    linear-gradient(101deg, transparent 52%, rgba(142, 209, 255, 0.15) 52.3%, transparent 79%);
}

.site-footer .container {
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr 1.25fr 0.8fr;
  gap: 34px;
}

.footer-brand img {
  display: block;
  width: 165px;
}

.footer-brand p {
  margin: 14px 0 18px;
  color: #b9cde1;
  font-size: 14px;
}

.footer-subscriber {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.footer-subscriber i {
  color: #8ed1ff;
  font-size: 19px;
}

.footer-column h2 {
  margin: 0 0 13px;
  color: var(--white);
  font-size: 14px;
}

.footer-column a,
.footer-column p {
  display: block;
  margin: 0;
  color: #bdd0e3;
  font-size: 14px;
  line-height: 1.9;
  text-decoration: none;
}

.footer-column a:hover,
.footer-subscriber:hover {
  color: #f2a066;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: rgba(142, 209, 255, 0.1);
  border: 1px solid rgba(142, 209, 255, 0.14);
  border-radius: 10px;
  font-size: 20px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 34px;
  padding-right: 76px;
  padding-top: 19px;
  color: #9bb3ca;
  border-top: 1px solid rgba(142, 209, 255, 0.12);
  font-size: 12px;
}

.whatsapp-float {
  position: fixed;
  z-index: 90;
  right: 24px;
  bottom: 24px;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: #21b765;
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(15, 91, 51, 0.32);
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(15, 91, 51, 0.38);
}

.whatsapp-float svg {
  width: 31px;
  height: 31px;
}

.whatsapp-label {
  position: absolute;
  right: 68px;
  width: max-content;
  padding: 8px 11px;
  color: var(--white);
  background: #27323c;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  opacity: 0;
  visibility: hidden;
  transform: translateX(5px);
  transition: 0.18s ease;
}

.whatsapp-float:hover .whatsapp-label,
.whatsapp-float:focus-visible .whatsapp-label {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* NOSSA HISTÓRIA */
.main-nav a[aria-current="page"] {
  color: var(--blue);
  background: rgba(0, 80, 164, 0.08);
}

.story-hero {
  position: relative;
  min-height: 530px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: var(--blue-deep);
}

.story-hero-media,
.story-hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.story-hero-media {
  object-fit: cover;
  object-position: center;
}

.story-hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 37, 79, 0.94) 0%, rgba(7, 45, 91, 0.76) 43%, rgba(7, 45, 91, 0.16) 76%),
    linear-gradient(0deg, rgba(10, 44, 102, 0.22), transparent 55%);
}

.story-hero-inner {
  position: relative;
  z-index: 1;
  min-height: 530px;
  display: flex;
  align-items: center;
}

.story-hero-copy {
  max-width: 670px;
  padding: 56px 0;
}

.story-hero-copy h1 {
  margin: 0;
  color: var(--white);
  font-size: clamp(42px, 4.5vw, 62px);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.story-hero-copy > p:last-child {
  max-width: 570px;
  margin: 22px 0 0;
  color: rgba(234, 240, 249, 0.85);
  font-size: 18px;
  line-height: 1.6;
}

.story-intro {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  gap: 56px;
  margin-top: -38px;
  padding: 42px 46px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(74, 144, 204, 0.16);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.story-intro-year {
  padding-right: 40px;
  border-right: 1px solid var(--line);
}

.story-intro-year strong {
  display: block;
  color: var(--blue);
  font-size: clamp(48px, 6vw, 76px);
  line-height: 1;
  letter-spacing: -0.055em;
}

.story-intro-year span {
  display: block;
  max-width: 190px;
  margin-top: 12px;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.45;
}

.story-lead {
  max-width: 720px;
}

.story-lead p {
  margin: 0 0 17px;
  color: var(--text);
  font-size: 18px;
  line-height: 1.7;
}

.story-lead p:last-child {
  margin-bottom: 0;
}

.story-chapter {
  padding: 96px 0;
}

.story-chapter-light {
  margin-top: 82px;
  background:
    radial-gradient(circle at 90% 20%, rgba(74, 144, 204, 0.12), transparent 28rem),
    #edf3fb;
}

.story-chapter-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: center;
  gap: 72px;
}

.story-chapter-reverse {
  grid-template-columns: 1.08fr 0.92fr;
}

.story-chapter-copy h2,
.story-impact h2 {
  margin: 0;
  color: var(--blue);
  font-size: clamp(32px, 3.4vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.story-chapter-copy > p:not(.section-kicker) {
  margin: 18px 0 0;
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.7;
}

.story-photo {
  position: relative;
  min-height: 390px;
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 24px 54px rgba(10, 44, 102, 0.18);
}

.story-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(0, 80, 164, 0.12), transparent 55%);
  pointer-events: none;
}

.story-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.story-impact {
  padding: 82px 0 48px;
  color: var(--blue-deep);
  background:
    radial-gradient(circle at 86% 20%, rgba(74, 144, 204, 0.16), transparent 30rem),
    linear-gradient(180deg, #f7fbff 0%, #eef5fc 100%);
}

.story-impact .section-kicker {
  color: var(--blue);
}

.story-impact h2 {
  max-width: 670px;
  color: var(--blue);
}

.story-impact-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: end;
  gap: 48px;
}

.story-impact-grid > div:first-child > p {
  margin: 14px 0 0;
  color: var(--text-soft);
}

.story-stat {
  min-width: 150px;
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(74, 144, 204, 0.16);
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(10, 44, 102, 0.07);
}

.story-stat strong {
  display: block;
  font-size: 32px;
  letter-spacing: -0.03em;
}

.story-stat span {
  color: var(--text-soft);
  font-size: 13px;
}

.story-closing {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 72px;
  padding-top: 94px;
  padding-bottom: 94px;
}

.story-closing blockquote {
  position: relative;
  margin: 0;
  padding: 12px 0 12px 34px;
  border-left: 4px solid var(--orange);
}

.story-closing blockquote::before {
  content: "“";
  position: absolute;
  top: -34px;
  left: 22px;
  color: rgba(0, 80, 164, 0.1);
  font-family: Georgia, serif;
  font-size: 120px;
  line-height: 1;
}

.story-closing blockquote p {
  position: relative;
  margin: 0;
  color: var(--blue);
  font-size: clamp(27px, 3vw, 38px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.story-closing-copy p {
  margin: 0 0 17px;
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.65;
}

.story-closing-copy .button {
  margin-top: 10px;
}

/* COBERTURA */
.coverage-hero {
  position: relative;
  overflow: hidden;
  padding: 78px 0 84px;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 16%, rgba(74, 144, 204, 0.34), transparent 27rem),
    radial-gradient(circle at 18% 18%, rgba(236, 108, 4, 0.08), transparent 20rem),
    linear-gradient(135deg, #071f49 0%, var(--blue-deep) 46%, #073d78 100%);
  border-bottom: 1px solid rgba(142, 209, 255, 0.14);
}

.coverage-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.24;
  pointer-events: none;
  background-image:
    linear-gradient(112deg, transparent 0 34%, rgba(142, 209, 255, 0.18) 34.2%, transparent 34.7% 100%),
    linear-gradient(122deg, transparent 0 62%, rgba(142, 209, 255, 0.11) 62.2%, transparent 62.8% 100%),
    radial-gradient(circle, rgba(142, 209, 255, 0.46) 0 1px, transparent 1.7px);
  background-position: 0 0, 70px 10px, 0 0;
  background-size: 360px 160px, 520px 220px, 50px 50px;
  mask-image: linear-gradient(100deg, rgba(0, 0, 0, 0.88), transparent 82%);
}

.coverage-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  align-items: center;
  gap: 72px;
}

.coverage-hero-copy h1,
.coverage-explorer-heading h2,
.coverage-rural h2,
.coverage-missing h2 {
  margin: 0;
  color: var(--blue);
  font-size: clamp(38px, 4.2vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.coverage-hero-copy > p:not(.section-kicker) {
  max-width: 640px;
  margin: 20px 0 28px;
  color: rgba(221, 234, 247, 0.86);
  font-size: 18px;
  line-height: 1.65;
}

.coverage-hero .section-kicker {
  color: #cfe1f3;
}

.coverage-hero-copy h1 {
  color: var(--white);
}

.coverage-hero-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.coverage-hero-facts div {
  min-height: 145px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 24px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.13);
  backdrop-filter: blur(12px);
}

.coverage-hero-facts div:last-child {
  grid-column: 1 / -1;
  min-height: 116px;
  color: var(--white);
  background:
    radial-gradient(circle at 88% 14%, rgba(236, 108, 4, 0.16), transparent 12rem),
    rgba(255, 255, 255, 0.13);
}

.coverage-hero-facts strong {
  display: block;
  color: var(--white);
  font-size: 40px;
  line-height: 1;
  letter-spacing: -0.045em;
}

.coverage-hero-facts div:last-child strong {
  color: var(--white);
}

.coverage-hero-facts span {
  margin-top: 8px;
  color: rgba(221, 234, 247, 0.78);
  font-size: 13px;
}

.coverage-hero-facts div:last-child span {
  color: rgba(255, 255, 255, 0.78);
}

.coverage-explorer {
  padding-top: 82px;
  padding-bottom: 92px;
  scroll-margin-top: calc(var(--header-height) + 20px);
}

.coverage-explorer-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 42px;
}

.coverage-explorer-heading h2,
.coverage-rural h2,
.coverage-missing h2 {
  font-size: clamp(30px, 3.3vw, 42px);
  line-height: 1.12;
}

.coverage-explorer-heading > div > p:not(.section-kicker) {
  margin: 10px 0 0;
  color: var(--text-soft);
}

.coverage-search {
  position: relative;
  width: min(430px, 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(0, 80, 164, 0.18);
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(10, 44, 102, 0.08);
}

.coverage-search > i {
  margin-left: 15px;
  color: var(--blue);
  font-size: 19px;
}

.coverage-search input {
  min-width: 0;
  min-height: 50px;
  flex: 1;
  padding: 0 12px;
  color: var(--text);
  background: transparent;
  border: 0;
  outline: none;
}

.coverage-search input[aria-invalid="true"] {
  color: #8b4919;
}

.coverage-search button {
  align-self: stretch;
  padding: 0 19px;
  color: var(--white);
  background: var(--blue);
  border: 0;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.state-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 28px 0 22px;
}

.state-filter {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 15px;
  color: var(--blue-deep);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(0, 80, 164, 0.14);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.state-filter span {
  min-width: 23px;
  padding: 3px 6px;
  color: var(--blue);
  background: var(--blue-pale);
  border-radius: 999px;
  font-size: 11px;
}

.state-filter.is-active {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 8px 18px rgba(0, 80, 164, 0.18);
}

.state-filter.is-active span {
  color: var(--blue-deep);
  background: var(--white);
}

.coverage-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(310px, 0.55fr);
  gap: 22px;
  align-items: stretch;
}

.real-map-card {
  position: sticky;
  top: calc(var(--header-height) + 18px);
  height: clamp(540px, 47vw, 610px);
  min-width: 0;
  padding: 8px 12px 10px;
  overflow: hidden;
  background: #eef4fa;
  border: 1px solid rgba(74, 144, 204, 0.16);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.map-legend {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 17px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 8px 10px;
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(10, 44, 102, 0.08);
  border-radius: 9px;
  font-size: 11px;
  backdrop-filter: blur(8px);
}

.map-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.map-legend i {
  width: 11px;
  height: 11px;
  display: inline-block;
  border-radius: 3px;
}

.legend-region {
  background: #e8edf2;
  border: 1px solid #d2dae2;
}

.legend-city {
  background: #f3f7fb;
  border: 2px solid #558dc4;
}

.legend-headquarters {
  background: #f3f7fb;
  border: 2px solid var(--orange);
}

.municipal-map {
  width: 100%;
  height: 100%;
  max-height: none;
  display: block;
  overflow: hidden;
}

.map-context {
  fill: transparent;
  stroke: rgba(124, 146, 166, 0.26);
  stroke-width: 1.1;
  pointer-events: none;
}

.map-city {
  fill: #f3f7fb;
  stroke: #558dc4;
  stroke-width: 2.3;
  cursor: pointer;
  transform-box: fill-box;
  transform-origin: center;
  transition: fill 0.16s ease, opacity 0.16s ease, filter 0.16s ease, transform 0.16s ease;
}

.map-city:hover,
.map-city:focus-visible {
  fill: #d8e8f7;
  stroke: var(--blue);
  filter: drop-shadow(0 4px 5px rgba(10, 44, 102, 0.18));
  outline: none;
  transform: scale(1.015);
}

.map-city.is-headquarters {
  fill: #f3f7fb;
  stroke: var(--orange);
  stroke-width: 2.8;
}

.map-headquarters-outline {
  fill: none;
  stroke: var(--orange);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3.3;
  pointer-events: none;
}

.map-city.is-selected {
  fill: #c5dcf1;
  stroke: var(--blue);
  stroke-width: 3;
  filter: drop-shadow(0 5px 7px rgba(10, 44, 102, 0.28));
}

.map-city.is-headquarters.is-selected {
  fill: #f3f7fb;
  stroke: var(--orange);
}

.map-city.is-filtered-out {
  opacity: 0.14;
  pointer-events: none;
}

.map-source {
  position: absolute;
  z-index: 2;
  bottom: 17px;
  left: 18px;
  max-width: 315px;
  margin: 0;
  padding: 4px 6px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.72);
  border-radius: 5px;
  font-size: 10px;
  backdrop-filter: blur(5px);
}

.coverage-sidebar {
  height: clamp(540px, 47vw, 610px);
  min-width: 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
  padding: 8px;
  overflow: hidden;
  background: #eef4fa;
  border: 1px solid rgba(74, 144, 204, 0.16);
  border-radius: 22px;
  box-shadow: 0 14px 34px rgba(10, 44, 102, 0.09);
}

.selected-city-card {
  min-height: 224px;
  padding: 25px;
  background:
    radial-gradient(circle at 100% 0, rgba(236, 108, 4, 0.1), transparent 13rem),
    var(--white);
  border: 1px solid rgba(74, 144, 204, 0.17);
  border-radius: 18px;
  box-shadow: 0 13px 34px rgba(10, 44, 102, 0.1);
  scroll-margin-top: calc(var(--header-height) + 18px);
}

.map-selection-card {
  position: absolute;
  z-index: 3;
  top: 18px;
  left: 20px;
  width: min(318px, calc(100% - 36px));
  min-height: 0;
  padding: 14px 16px 15px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 15px;
  box-shadow: 0 10px 26px rgba(10, 44, 102, 0.1);
  backdrop-filter: blur(12px);
}

.map-selection-card h2 {
  margin-top: 4px;
  font-size: 20px;
  line-height: 1.08;
}

.map-selection-card p {
  margin-top: 7px;
  font-size: 11.5px;
  line-height: 1.45;
}

.map-selection-card .selected-city-actions {
  margin-top: 12px;
}

.map-selection-card .selected-city-actions .button {
  max-width: 100%;
  min-height: 38px;
  padding: 8px 13px;
  font-size: 12px;
  line-height: 1.2;
}

.map-selection-card .selected-state {
  font-size: 9.5px;
}

.selected-state {
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.035em;
}

.selected-city-card h2 {
  margin: 7px 0 0;
  color: var(--blue);
  font-size: 28px;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.selected-city-card p {
  margin: 12px 0 0;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.55;
}

.selected-city-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}

.selected-city-actions .button {
  min-height: 44px;
  padding-inline: 17px;
  font-size: 13px;
}

.city-list-heading {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 0 0 auto;
  margin: 0 0 7px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(74, 144, 204, 0.12);
  border-radius: 12px;
}

.city-list-heading h2 {
  margin: 0;
  color: var(--blue);
  font-size: 15px;
}

.city-list-heading span {
  color: var(--muted);
  font-size: 12px;
}

.city-list {
  min-height: 0;
  max-height: none;
  flex: 1;
  display: grid;
  align-content: start;
  gap: 6px;
  overflow: auto;
  padding: 0 2px 2px 0;
  scrollbar-width: thin;
  scrollbar-color: #a8bdd6 transparent;
}

.city-list-button {
  min-height: 43px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 13px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(74, 144, 204, 0.12);
  border-radius: 9px;
  text-align: left;
  cursor: pointer;
}

.city-list-button:hover,
.city-list-button:focus-visible,
.city-list-button.is-selected {
  color: var(--blue);
  background: var(--blue-pale);
  border-color: rgba(0, 80, 164, 0.24);
  outline: none;
}

.city-list-button span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
}

.city-list-button small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
}

.coverage-rural {
  padding: 58px 0;
  color: var(--blue-deep);
  background:
    radial-gradient(circle at 84% 22%, rgba(74, 144, 204, 0.16), transparent 27rem),
    linear-gradient(180deg, #f7fbff 0%, #eef5fc 100%);
}

.coverage-rural-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 34px;
  padding: 28px 32px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(74, 144, 204, 0.15);
  border-radius: 22px;
  box-shadow: 0 14px 34px rgba(10, 44, 102, 0.08);
}

.coverage-rural-icon {
  width: 96px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  background: var(--blue-pale);
  border: 1px solid rgba(74, 144, 204, 0.18);
  border-radius: 24px;
  font-size: 46px;
}

.coverage-rural .section-kicker {
  color: var(--blue);
}

.coverage-rural h2 {
  color: var(--blue);
}

.coverage-rural p:not(.section-kicker) {
  max-width: 760px;
  margin: 12px 0 0;
  color: var(--text-soft);
  line-height: 1.6;
}

.coverage-missing {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  margin-top: 70px;
  margin-bottom: 70px;
  padding: 36px 40px;
  background:
    radial-gradient(circle at 8% 5%, rgba(236, 108, 4, 0.08), transparent 19rem),
    var(--white);
  border: 1px solid rgba(10, 44, 102, 0.1);
  border-radius: 20px;
  box-shadow: 0 13px 34px rgba(10, 44, 102, 0.08);
}

.coverage-missing p:not(.section-kicker) {
  margin: 10px 0 0;
  color: var(--text-soft);
}

.coverage-missing .button {
  flex: 0 0 auto;
}

@media (max-width: 1080px) {
  .header-inner {
    grid-template-columns: auto auto 1fr;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
    order: 3;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: none;
    align-items: stretch;
    padding: 14px 28px 20px;
    background: rgba(233, 242, 253, 0.98);
    border-bottom: 1px solid rgba(0, 80, 164, 0.12);
    box-shadow: 0 16px 28px rgba(10, 44, 102, 0.1);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    text-align: center;
  }

  .header-actions {
    justify-self: end;
  }

  .combo-grid,
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .story-chapter-grid,
  .story-chapter-reverse {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .story-impact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .story-impact-grid > div:first-child {
    grid-column: 1 / -1;
  }

  .coverage-layout {
    grid-template-columns: minmax(0, 1.2fr) minmax(285px, 0.8fr);
  }
}

@media (max-width: 1300px) and (min-width: 761px) {
  .hero-copy {
    max-width: 590px;
    margin-left: 54px;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 70px;
  }

  .container {
    width: min(100% - 40px, 1180px);
  }

  .header-inner {
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .brand-link {
    width: 145px;
  }

  .menu-toggle {
    order: initial;
  }

  .header-actions {
    display: none;
  }

  .main-nav {
    flex-direction: column;
    padding-inline: 20px;
  }

  .main-nav .mobile-subscriber {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 5px;
    color: var(--white);
    background: var(--blue);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
  }

  .hero,
  .hero-inner {
    min-height: 660px;
  }

  .hero-media {
    object-position: 63% center;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(10, 44, 102, 0.06) 0%, rgba(10, 44, 102, 0.17) 45%, rgba(10, 44, 102, 0.72) 100%);
  }

  .hero-slide-soft-blue .hero-overlay {
    background:
      linear-gradient(180deg, rgba(10, 44, 102, 0.05) 0%, rgba(10, 44, 102, 0.18) 45%, rgba(10, 44, 102, 0.72) 100%),
      linear-gradient(90deg, rgba(7, 37, 79, 0.6) 0%, rgba(0, 80, 164, 0.26) 60%, transparent 88%);
  }

  .hero-inner {
    align-items: end;
  }

  .hero-copy {
    margin-left: 0;
    padding: 30px 0 86px;
  }

  .hero-copy h1 {
    font-size: 39px;
  }

  .hero-copy > p {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .carousel-arrow {
    display: none;
  }

  .proof-wrap {
    margin-top: -28px;
  }

  .numbers {
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    padding: 22px;
  }

  .number,
  .number:first-child {
    padding: 0;
    border: 0;
  }

  .number strong {
    font-size: 26px;
  }

  .numbers-caption {
    margin-top: 0;
  }

  .section-space {
    margin-top: 64px;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

  .combos-section {
    width: calc(100% - 24px);
    padding: 34px 20px;
    border-radius: 24px;
  }

  .combo-grid,
  .feature-grid,
  .updates-grid {
    grid-template-columns: 1fr;
  }

  .coverage-card {
    grid-template-columns: 1fr;
    padding: 30px 22px;
  }

  .coverage-full-link {
    margin-top: 14px;
  }

  .city-search {
    flex-direction: column;
  }

  .city-search input {
    min-height: 48px;
  }

  .closing-inner {
    align-items: stretch;
    flex-direction: column;
    gap: 24px;
    padding: 28px 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: start;
    flex-direction: column;
    padding-right: 0;
  }

  .site-footer {
    padding-bottom: 88px;
  }

  .story-hero,
  .story-hero-inner {
    min-height: 600px;
  }

  .story-hero-media {
    object-position: 63% center;
  }

  .story-hero-overlay {
    background: linear-gradient(180deg, rgba(7, 45, 91, 0.12) 0%, rgba(7, 45, 91, 0.45) 42%, rgba(7, 37, 79, 0.95) 100%);
  }

  .story-hero-inner {
    align-items: end;
  }

  .story-hero-copy {
    padding: 42px 0 72px;
  }

  .story-hero-copy h1 {
    font-size: 39px;
  }

  .story-hero-copy > p:last-child {
    font-size: 16px;
  }

  .story-intro {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: -26px;
    padding: 30px 24px;
  }

  .story-intro-year {
    padding: 0 0 22px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .story-intro-year strong {
    font-size: 52px;
  }

  .story-intro-year span {
    max-width: none;
  }

  .story-lead p {
    font-size: 16px;
  }

  .story-chapter {
    padding: 68px 0;
  }

  .story-chapter-light {
    margin-top: 64px;
  }

  .story-chapter-grid,
  .story-chapter-reverse {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .story-chapter-reverse .story-photo {
    order: 2;
  }

  .story-photo {
    min-height: 300px;
  }

  .story-impact {
    padding: 64px 0;
  }

  .story-impact-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .story-impact-grid > div:first-child {
    grid-column: auto;
  }

  .story-stat {
    padding: 18px 22px;
  }

  .story-closing {
    grid-template-columns: 1fr;
    gap: 42px;
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .coverage-hero {
    padding: 58px 0 64px;
  }

  .coverage-hero-inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .coverage-hero-facts div {
    min-height: 120px;
  }

  .coverage-explorer {
    padding-top: 64px;
    padding-bottom: 68px;
  }

  .coverage-explorer-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .coverage-search {
    width: 100%;
  }

  .state-filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .state-filter {
    flex: 0 0 auto;
  }

  .coverage-layout {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .real-map-card {
    position: relative;
    top: auto;
    height: auto;
    padding: 12px 8px 10px;
  }

  .coverage-sidebar {
    height: auto;
    min-height: 420px;
    padding: 8px;
  }

  .selected-city-card {
    order: initial;
  }

  .city-list-heading {
    order: initial;
    margin-top: 0;
  }

  .city-list {
    order: initial;
    max-height: 360px;
  }

  .map-selection-card {
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    margin: 4px 4px 8px;
  }

  .map-legend {
    right: 12px;
    bottom: 13px;
    left: 12px;
    justify-content: center;
  }

  .map-source {
    position: static;
    max-width: none;
    margin-bottom: 80px;
    background: transparent;
    backdrop-filter: none;
  }

  .coverage-rural {
    padding: 58px 0;
  }

  .coverage-rural-inner {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .coverage-rural-icon {
    width: 76px;
    height: 76px;
    font-size: 36px;
  }

  .coverage-missing {
    align-items: stretch;
    flex-direction: column;
    gap: 26px;
    margin-top: 52px;
    margin-bottom: 52px;
    padding: 30px 24px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 54px;
    height: 54px;
  }

  .whatsapp-label {
    display: none;
  }
}

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

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
