:root {
  --blue-950: #07143f;
  --blue-900: #0c1d59;
  --blue-800: #132b8f;
  --blue-700: #243db5;
  --blue-600: #3456d1;
  --cyan-500: #19cfd0;
  --cyan-400: #5ce1dc;
  --cyan-100: #dffbfa;
  --yellow-400: #ffc928;
  --ink: #101932;
  --text: #4f5b76;
  --muted: #73809a;
  --line: #dfe5f0;
  --surface: #f5f7fb;
  --white: #ffffff;
  --success: #14a86b;
  --shadow-sm: 0 10px 30px rgba(13, 31, 88, 0.08);
  --shadow-lg: 0 26px 70px rgba(8, 26, 83, 0.16);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --container: 1180px;
  --header-height: 90px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

button,
input {
  font: inherit;
}

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

button {
  color: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

svg {
  stroke-linecap: round;
  stroke-linejoin: round;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 8px;
  color: var(--white);
  background: var(--blue-950);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.announcement {
  color: var(--white);
  background: var(--blue-950);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.announcement__inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.announcement p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.announcement a {
  color: var(--cyan-400);
}

.announcement__phone {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 800;
}

.announcement__phone svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.announcement__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan-400);
  box-shadow: 0 0 0 5px rgba(92, 225, 220, 0.12);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.site-header.is-scrolled {
  border-color: rgba(20, 37, 86, 0.08);
  box-shadow: 0 8px 30px rgba(12, 29, 89, 0.08);
}

.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 30px;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 128px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.2vw, 34px);
  margin-left: auto;
}

.main-nav a {
  position: relative;
  color: #3f4962;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--cyan-500);
  content: "";
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--blue-700);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  border-radius: 12px;
  background: var(--surface);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  border-radius: 2px;
  background: var(--blue-800);
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.1;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, background 0.2s ease;
}

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

.button svg,
.text-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.button--small {
  min-height: 44px;
  padding-inline: 18px;
  border-radius: 12px;
  font-size: 13px;
}

.button--outline {
  border-color: rgba(36, 61, 181, 0.2);
  color: var(--blue-700);
  background: var(--white);
}

.button--outline:hover {
  border-color: var(--blue-700);
  box-shadow: var(--shadow-sm);
}

.button--primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-700), var(--blue-800));
  box-shadow: 0 10px 24px rgba(36, 61, 181, 0.22);
}

.button--primary:hover {
  box-shadow: 0 15px 30px rgba(36, 61, 181, 0.3);
}

.button--accent {
  color: var(--blue-950);
  background: var(--cyan-400);
  box-shadow: 0 12px 28px rgba(25, 207, 208, 0.2);
}

.button--accent:hover {
  background: #74ebe6;
  box-shadow: 0 16px 32px rgba(25, 207, 208, 0.28);
}

.button--soft {
  color: var(--blue-700);
  background: #edf1ff;
}

.button--soft:hover {
  background: #e3e9ff;
}

.button--ghost-light {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
}

.button--ghost-light:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.12);
}

.button--full {
  width: 100%;
}

.header__client svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--blue-900);
}

.hero-slider {
  position: relative;
  width: 100%;
  max-width: 1920px;
  margin-inline: auto;
  overflow: hidden;
}

.hero-slider__track {
  position: relative;
  aspect-ratio: 1920 / 618;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.015);
  transition: opacity 0.65s ease, transform 1.1s ease;
}

.hero-slide.is-active {
  z-index: 1;
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.hero-slide picture,
.hero-slide img {
  width: 100%;
  height: 100%;
}

.hero-slide img {
  object-fit: cover;
}

.slider-arrow {
  position: absolute;
  z-index: 4;
  top: 50%;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: var(--white);
  background: rgba(6, 20, 63, 0.2);
  backdrop-filter: blur(10px);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 0.2s ease, transform 0.2s ease;
}

.slider-arrow:hover {
  background: rgba(6, 20, 63, 0.5);
  transform: translateY(-50%) scale(1.06);
}

.slider-arrow svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.slider-arrow--prev {
  left: max(20px, calc((100vw - var(--container)) / 2 - 60px));
}

.slider-arrow--next {
  right: max(20px, calc((100vw - var(--container)) / 2 - 60px));
}

.slider-dots {
  position: absolute;
  z-index: 4;
  bottom: 22px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 30px;
  background: rgba(6, 20, 63, 0.22);
  backdrop-filter: blur(8px);
  transform: translateX(-50%);
}

.slider-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

.slider-dots button.is-active {
  width: 28px;
  background: var(--white);
}

.coverage-panel {
  position: relative;
  z-index: 8;
  margin-top: -8px;
  background: linear-gradient(to bottom, var(--blue-900) 46%, var(--white) 46%);
}

.coverage-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(500px, 1.4fr);
  align-items: center;
  gap: 42px;
  padding: 34px 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-800) 0%, var(--blue-950) 100%);
  box-shadow: var(--shadow-lg);
}

.coverage-card__intro,
.coverage-form {
  transition: opacity 0.25s ease, filter 0.25s ease;
}

.coverage-card.is-routing .coverage-card__intro,
.coverage-card.is-routing .coverage-form {
  opacity: 0.12;
  filter: blur(2px);
  pointer-events: none;
}

.coverage-routing {
  position: absolute;
  z-index: 3;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 28px;
  text-align: left;
  background: rgba(8, 24, 72, 0.78);
  backdrop-filter: blur(8px);
  animation: routingFadeIn 0.25s ease both;
}

.coverage-routing[hidden] {
  display: none;
}

.coverage-routing strong,
.coverage-routing p {
  display: block;
  margin: 0;
}

.coverage-routing strong {
  color: var(--white);
  font-size: 17px;
}

.coverage-routing p {
  margin-top: 3px;
  color: #bfc9e3;
  font-size: 12px;
}

.coverage-spinner {
  position: relative;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border: 4px solid rgba(255, 255, 255, 0.16);
  border-top-color: var(--cyan-400);
  border-radius: 50%;
  animation: coverageSpin 0.85s linear infinite;
}

.coverage-spinner i {
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: rgba(92, 225, 220, 0.16);
}

.coverage-routing.is-ready .coverage-spinner {
  border-color: var(--cyan-400);
  animation: none;
}

.coverage-routing.is-ready .coverage-spinner::after {
  position: absolute;
  top: 12px;
  left: 11px;
  width: 17px;
  height: 9px;
  border-bottom: 3px solid var(--cyan-400);
  border-left: 3px solid var(--cyan-400);
  content: "";
  transform: rotate(-45deg);
}

@keyframes coverageSpin {
  to { transform: rotate(360deg); }
}

@keyframes routingFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--blue-700);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: var(--cyan-500);
  content: "";
}

.eyebrow--light {
  color: var(--cyan-400);
}

.coverage-card h1 {
  margin: 0 0 6px;
  font-size: clamp(24px, 2.1vw, 32px);
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.coverage-card__intro p {
  margin: 0;
  color: #bdc7e2;
  font-size: 13px;
}

.coverage-form {
  position: relative;
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(130px, 0.6fr) auto;
  align-items: end;
  gap: 12px;
}

.coverage-form label > span:first-child {
  display: block;
  margin: 0 0 7px 3px;
  color: #c9d2e8;
  font-size: 11px;
  font-weight: 700;
}

.input-shell {
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.09);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.input-shell:focus-within {
  border-color: var(--cyan-400);
  background: rgba(255, 255, 255, 0.13);
}

.input-shell svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--cyan-400);
  stroke-width: 1.8;
}

.input-shell input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: var(--white);
  background: transparent;
  font-size: 14px;
  font-weight: 700;
}

.input-shell input::placeholder {
  color: #9da9c6;
}

.input-shell.is-invalid {
  border-color: #ff8d98;
}

.form-error {
  position: absolute;
  right: 0;
  bottom: -25px;
  margin: 0;
  color: #ffb4bb;
  font-size: 11px;
}

.trust-strip {
  padding: 70px 0 28px;
}

.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.icon-box {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--blue-700);
  background: var(--cyan-100);
}

.icon-box svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.trust-item strong,
.trust-item small {
  display: block;
}

.trust-item strong {
  margin-bottom: 2px;
  font-size: 14px;
  line-height: 1.3;
}

.trust-item small {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.4;
}

.regional-proof {
  padding: 42px 0 24px;
}

.regional-proof__card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  align-items: center;
  gap: 56px;
  min-height: 410px;
  overflow: hidden;
  padding: 58px 64px;
  border-radius: 32px;
  color: var(--white);
  background:
    radial-gradient(circle at 88% 18%, rgba(65, 86, 225, 0.48), transparent 28%),
    radial-gradient(circle at 70% 115%, rgba(36, 220, 215, 0.18), transparent 34%),
    linear-gradient(125deg, #081748, #172c84 58%, #202a78);
  box-shadow: 0 30px 80px rgba(8, 23, 72, 0.2);
}

.regional-proof__card::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 25px 25px;
  content: "";
  opacity: 0.28;
  mask-image: linear-gradient(90deg, transparent 40%, #000);
}

.regional-proof__content {
  position: relative;
  z-index: 2;
}

.regional-proof__content h2 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(39px, 4.7vw, 64px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.regional-proof__content > p {
  max-width: 690px;
  margin: 20px 0 0;
  color: #c8d2eb;
  font-size: 14px;
  line-height: 1.7;
}

.regional-proof__points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 30px;
}

.regional-proof__points article {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
}

.regional-proof__point-icon {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #0e286b;
  background: var(--cyan-400);
}

.regional-proof__point-icon svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.regional-proof__points strong,
.regional-proof__points small {
  display: block;
}

.regional-proof__points strong {
  margin-bottom: 2px;
  font-size: 11px;
  line-height: 1.25;
}

.regional-proof__points small {
  color: #aebbdc;
  font-size: 8px;
  line-height: 1.4;
}

.regional-proof__visual {
  position: relative;
  z-index: 2;
  min-height: 345px;
  display: grid;
  place-items: start center;
}

.regional-network-card {
  position: relative;
  z-index: 2;
  width: min(100%, 370px);
  min-height: 285px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px) 0 0 / 24px 24px,
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px) 0 0 / 24px 24px,
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.045));
  box-shadow: inset 0 0 36px rgba(255, 255, 255, 0.04), 0 25px 55px rgba(3, 10, 42, 0.28);
  backdrop-filter: blur(12px);
}

.regional-network-card__header {
  min-height: 69px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 11px;
  padding: 13px 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(6, 17, 65, 0.32);
}

.regional-network-card__brand {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: #0b2462;
  background: var(--cyan-400);
}

.regional-network-card__brand svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.regional-network-card__header small,
.regional-network-card__header strong {
  display: block;
}

.regional-network-card__header small {
  margin-bottom: 3px;
  color: var(--cyan-400);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(94, 225, 220, 0.28);
}

.regional-network-card__header strong {
  font-size: 12px;
}

.regional-network-card__status {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 9px;
  border: 1px solid rgba(94, 225, 220, 0.22);
  border-radius: 999px;
  color: var(--cyan-400);
  background: rgba(94, 225, 220, 0.08);
  font-size: 7px;
  font-weight: 800;
  text-transform: uppercase;
}

.regional-network-card__status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan-400);
  box-shadow: 0 0 0 4px rgba(94, 225, 220, 0.12);
  animation: regionalNetworkPulse 1.8s ease-in-out infinite;
}

.regional-network-card__map {
  position: relative;
  min-height: 216px;
}

.regional-network-card__route {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  fill: none;
}

.regional-network-card__route-shadow {
  stroke: rgba(94, 225, 220, 0.16);
  stroke-linecap: round;
  stroke-width: 9;
}

.regional-network-card__route-light {
  stroke: var(--cyan-400);
  stroke-dasharray: 7 11;
  stroke-linecap: round;
  stroke-width: 2;
  animation: regionalNetworkFlow 6s linear infinite;
}

.regional-network-card__node {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 9px;
  background: rgba(6, 17, 62, 0.83);
  box-shadow: 0 10px 25px rgba(3, 10, 42, 0.24);
  font-size: 8px;
}

.regional-network-card__node i {
  width: 8px;
  height: 8px;
  border: 2px solid #102864;
  border-radius: 50%;
  background: var(--cyan-400);
  box-shadow: 0 0 0 5px rgba(94, 225, 220, 0.12);
}

.regional-network-card__node b {
  font-weight: 800;
}

.regional-network-card__node--one { top: 15px; left: 11px; }
.regional-network-card__node--two { top: 80px; left: 118px; }
.regional-network-card__node--three { top: 111px; left: 174px; }
.regional-network-card__node--four { top: 144px; left: 214px; }
.regional-network-card__node--five { right: 10px; bottom: 8px; }

.regional-network-card__summary {
  position: absolute;
  left: 18px;
  bottom: 16px;
  max-width: 135px;
  padding: 10px 12px;
  border-left: 2px solid var(--cyan-400);
  background: linear-gradient(90deg, rgba(94, 225, 220, 0.09), transparent);
}

.regional-network-card__summary small,
.regional-network-card__summary strong {
  display: block;
}

.regional-network-card__summary small {
  color: var(--cyan-400);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.regional-network-card__summary strong {
  margin-top: 3px;
  font-size: 10px;
  line-height: 1.25;
}

.regional-proof__fiber {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: var(--white);
  background: rgba(5, 15, 57, 0.78);
  box-shadow: 0 14px 30px rgba(2, 8, 35, 0.28);
  backdrop-filter: blur(10px);
  font-size: 9px;
  font-weight: 800;
}

.regional-proof__fiber i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan-400);
  box-shadow: 0 0 0 5px rgba(94, 225, 220, 0.13);
}

@keyframes regionalNetworkFlow {
  to { stroke-dashoffset: -72; }
}

@keyframes regionalNetworkPulse {
  50% { opacity: 0.55; transform: scale(0.82); }
}

.section {
  padding: 110px 0;
}

.section-heading {
  max-width: 660px;
  margin-bottom: 48px;
}

.section-heading--center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading--center .eyebrow {
  justify-content: center;
}

.section-heading h2,
.experience h2,
.locations h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.section-heading p,
.experience__content > p,
.locations__content > p {
  margin: 18px 0 0;
  color: var(--text);
  font-size: 16px;
}

.plans {
  background: linear-gradient(180deg, #f7f9fe 0%, #ffffff 100%);
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 24px;
}

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 34px 30px 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 10px 35px rgba(10, 31, 89, 0.05);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.plan-card:hover {
  border-color: rgba(36, 61, 181, 0.28);
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}

.plan-card--featured {
  border: 2px solid var(--blue-700);
  box-shadow: 0 22px 60px rgba(26, 55, 165, 0.15);
}

.plan-card__badge {
  position: absolute;
  top: 0;
  left: 50%;
  padding: 7px 17px;
  border-radius: 0 0 12px 12px;
  color: var(--white);
  background: var(--blue-700);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.plan-card__label {
  color: var(--blue-700);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.plan-speed {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin-top: 12px;
  color: var(--blue-950);
}

.plan-speed strong {
  font-size: clamp(52px, 5vw, 70px);
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.plan-speed span {
  padding-bottom: 6px;
  color: var(--blue-700);
  font-size: 16px;
  font-weight: 800;
}

.plan-card__top p {
  min-height: 48px;
  margin: 16px 0 24px;
  color: var(--muted);
  font-size: 13px;
}

.plan-card__price {
  display: flex;
  align-items: flex-start;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--blue-950);
}

.plan-card__price > span {
  margin: 10px 7px 0 0;
  font-size: 14px;
  font-weight: 700;
}

.plan-card__price strong {
  font-size: 50px;
  line-height: 1;
  letter-spacing: -0.06em;
}

.plan-card__price sup {
  margin: 6px 3px 0 3px;
  font-size: 17px;
  font-weight: 800;
}

.plan-card__price small {
  align-self: flex-end;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 12px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 30px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 26px;
  color: #46516a;
  font-size: 13px;
}

.check-list li::before {
  position: absolute;
  top: 2px;
  left: 0;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--blue-700);
  background: var(--cyan-100);
  content: "✓";
  font-size: 11px;
  font-weight: 900;
}

.plan-card .button {
  margin-top: auto;
}

.plans__note {
  max-width: 760px;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: 11px;
  text-align: center;
}

.experience {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 20%, rgba(44, 207, 209, 0.18), transparent 29%),
    linear-gradient(135deg, var(--blue-950), #102b83);
}

.experience::after {
  position: absolute;
  right: -120px;
  bottom: -190px;
  width: 440px;
  height: 440px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  content: "";
}

.experience__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: 80px;
}

.experience__content {
  position: relative;
  z-index: 2;
}

.experience__content > p {
  color: #bfc9e3;
}

.feature-list {
  display: grid;
  gap: 18px;
  margin: 32px 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  gap: 14px;
}

.feature-list li > span {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: var(--blue-950);
  background: var(--cyan-400);
}

.feature-list svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
}

.feature-list strong,
.feature-list small {
  display: block;
}

.feature-list strong {
  font-size: 14px;
}

.feature-list small {
  color: #aebbd9;
  font-size: 12px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  border: 0;
  color: var(--cyan-400);
  background: transparent;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.text-link svg {
  transition: transform 0.2s ease;
}

.text-link:hover svg {
  transform: translateX(4px);
}

.experience__visual {
  position: relative;
  min-height: 510px;
  display: grid;
  place-items: center;
}

.signal-orbit {
  position: absolute;
  border: 1px solid rgba(94, 229, 224, 0.18);
  border-radius: 50%;
}

.signal-orbit--one {
  width: 390px;
  height: 390px;
}

.signal-orbit--two {
  width: 530px;
  height: 530px;
}

.router-card {
  position: relative;
  z-index: 2;
  width: 320px;
  height: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 120px 120px 38px 38px;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.05));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.2), 0 30px 80px rgba(4, 14, 53, 0.35);
  backdrop-filter: blur(16px);
}

.router-card__signal {
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  border-radius: 30px;
  color: var(--blue-950);
  background: linear-gradient(135deg, var(--cyan-400), #95fff3);
  box-shadow: 0 14px 32px rgba(24, 208, 209, 0.25);
}

.router-card__signal svg {
  width: 48px;
  height: 48px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.router-card p {
  margin: 24px 0 3px;
  color: #aab7d7;
  font-size: 12px;
}

.router-card strong {
  font-size: 34px;
  letter-spacing: -0.04em;
}

.router-card__device {
  width: 180px;
  height: 62px;
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.router-card__device i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan-400);
  box-shadow: 0 0 10px var(--cyan-400);
}

.floating-stat {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 15px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(9, 26, 80, 0.78);
  box-shadow: 0 16px 45px rgba(2, 11, 43, 0.3);
  backdrop-filter: blur(14px);
  animation: float 4.5s ease-in-out infinite;
}

.floating-stat > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: var(--cyan-400);
  background: rgba(25, 207, 208, 0.13);
}

.floating-stat svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.floating-stat small,
.floating-stat strong {
  display: block;
  line-height: 1.35;
}

.floating-stat small {
  color: #91a0c5;
  font-size: 9px;
}

.floating-stat strong {
  font-size: 13px;
}

.floating-stat--top {
  top: 80px;
  right: 0;
}

.floating-stat--bottom {
  bottom: 75px;
  left: 0;
  animation-delay: -2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.solutions {
  background: var(--white);
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.solution-card {
  position: relative;
  min-height: 310px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #f8f9fc;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.solution-card::after {
  position: absolute;
  right: -50px;
  bottom: -70px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(25, 207, 208, 0.08);
  content: "";
}

.solution-card:hover {
  border-color: rgba(36, 61, 181, 0.25);
  box-shadow: var(--shadow-sm);
  transform: translateY(-5px);
}

.solution-card--large {
  min-height: 350px;
  display: grid;
  grid-column: span 3;
  grid-template-columns: 200px minmax(0, 1fr);
  align-items: center;
  gap: 50px;
  padding: 50px 70px;
  color: var(--white);
  background: linear-gradient(110deg, var(--blue-800), var(--blue-950));
}

.solution-card--large::after {
  width: 430px;
  height: 430px;
  right: -110px;
  bottom: -240px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(94, 225, 220, 0.08);
}

.solution-card__icon {
  position: relative;
  z-index: 2;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  margin-bottom: 40px;
  border-radius: 18px;
  color: var(--blue-700);
  background: var(--cyan-100);
}

.solution-card--large .solution-card__icon {
  width: 170px;
  height: 170px;
  margin: 0;
  border-radius: 50px;
  color: var(--blue-950);
  background: linear-gradient(135deg, var(--cyan-400), #b3fff6);
  box-shadow: 0 20px 60px rgba(25, 207, 208, 0.22);
}

.solution-card__icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.solution-card--large .solution-card__icon svg {
  width: 72px;
  height: 72px;
}

.solution-card__tag {
  color: var(--blue-700);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.solution-card--large .solution-card__tag {
  color: var(--cyan-400);
}

.solution-card h3 {
  position: relative;
  z-index: 2;
  margin: 7px 0 10px;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.solution-card--large h3 {
  max-width: 620px;
  font-size: clamp(34px, 4vw, 52px);
}

.solution-card p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.solution-card--large p {
  max-width: 650px;
  color: #b9c5e2;
  font-size: 15px;
}

.solution-card .text-link {
  margin-top: 26px;
}

.circle-link {
  position: relative;
  z-index: 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-top: auto;
  border: 0;
  border-radius: 50%;
  color: var(--blue-700);
  background: var(--white);
  box-shadow: 0 8px 20px rgba(10, 31, 89, 0.08);
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.circle-link:hover {
  color: var(--white);
  background: var(--blue-700);
  transform: translateX(4px);
}

.circle-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.locations {
  overflow: hidden;
  background: #f5f7fb;
}

.locations__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(460px, 1.15fr);
  align-items: center;
  gap: 80px;
}

.locations__content .button {
  margin-top: 30px;
}

.location-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px;
}

.location-tags span {
  padding: 8px 13px;
  border: 1px solid #dce3ef;
  border-radius: 30px;
  color: #536079;
  background: var(--white);
  font-size: 11px;
  font-weight: 700;
}

.locations__map {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  border: 1px solid #dae2f0;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 70% 15%, rgba(25, 207, 208, 0.18), transparent 28%),
    linear-gradient(145deg, #eef3fb, #e1e8f4);
  box-shadow: var(--shadow-lg);
}

.map-grid {
  position: absolute;
  inset: 0;
  opacity: 0.65;
  background-image:
    linear-gradient(rgba(31, 59, 140, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 59, 140, 0.06) 1px, transparent 1px);
  background-size: 42px 42px;
  transform: rotate(-9deg) scale(1.2);
}

.map-route {
  position: absolute;
  width: 520px;
  height: 180px;
  border: 4px solid transparent;
  border-top-color: rgba(36, 61, 181, 0.2);
  border-radius: 50%;
  transform: rotate(-24deg);
}

.map-route--one {
  top: 115px;
  left: -45px;
}

.map-route--two {
  top: 210px;
  left: 70px;
  border-top-color: rgba(25, 207, 208, 0.3);
  transform: rotate(31deg);
}

.map-pin {
  position: absolute;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 6px solid var(--white);
  border-radius: 50% 50% 50% 0;
  background: var(--blue-700);
  box-shadow: 0 10px 18px rgba(13, 36, 113, 0.22);
  transform: rotate(-45deg);
}

.map-pin i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan-400);
}

.map-pin--one { top: 90px; left: 26%; }
.map-pin--two { top: 45%; left: 61%; }
.map-pin--three { right: 13%; bottom: 16%; }
.map-pin--four { bottom: 20%; left: 16%; }

.map-label {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 190px;
  padding: 18px 22px;
  border-radius: 18px;
  color: var(--white);
  background: var(--blue-900);
  box-shadow: var(--shadow-lg);
  transform: translate(-50%, -50%);
}

.map-label strong,
.map-label span {
  display: block;
}

.map-label strong {
  color: var(--cyan-400);
  font-size: 25px;
}

.map-label span {
  color: #aebbd6;
  font-size: 10px;
}

.faq__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(500px, 1.28fr);
  align-items: start;
  gap: 90px;
}

.faq .section-heading {
  position: sticky;
  top: calc(var(--header-height) + 35px);
  margin: 0;
}

.faq .section-heading .text-link {
  margin-top: 28px;
  color: var(--blue-700);
}

.accordion {
  border-top: 1px solid var(--line);
}

.accordion-item {
  border-bottom: 1px solid var(--line);
}

.accordion-item h3 {
  margin: 0;
}

.accordion-item button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 25px 4px;
  border: 0;
  color: var(--ink);
  background: transparent;
  font-size: 15px;
  font-weight: 750;
  text-align: left;
  cursor: pointer;
}

.accordion-item button > span {
  position: relative;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #edf1ff;
}

.accordion-item button > span::before,
.accordion-item button > span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 2px;
  border-radius: 2px;
  background: var(--blue-700);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease;
}

.accordion-item button > span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.accordion-item button[aria-expanded="true"] {
  color: var(--blue-700);
}

.accordion-item button[aria-expanded="true"] > span::after {
  transform: translate(-50%, -50%) rotate(0);
}

.accordion-panel {
  overflow: hidden;
}

.accordion-panel p {
  margin: 0;
  padding: 0 50px 25px 4px;
  color: var(--text);
  font-size: 13px;
}

.final-cta {
  padding: 0 0 80px;
}

.final-cta__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  overflow: hidden;
  padding: 60px 70px;
  border-radius: var(--radius-lg);
  color: var(--white);
  background:
    radial-gradient(circle at 95% 0, rgba(70, 231, 224, 0.28), transparent 35%),
    linear-gradient(125deg, var(--blue-800), var(--blue-950));
}

.final-cta__inner::after {
  position: absolute;
  right: 32%;
  bottom: -150px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  content: "";
}

.final-cta h2 {
  max-width: 660px;
  font-size: clamp(34px, 4vw, 50px);
}

.final-cta p {
  margin: 14px 0 0;
  color: #bac6e0;
  font-size: 14px;
}

.final-cta__actions {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  display: grid;
  gap: 10px;
}

.site-footer {
  color: #aeb8d0;
  background: #07102d;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.9fr 1fr;
  gap: 65px;
  padding-top: 70px;
  padding-bottom: 60px;
}

.footer__brand img {
  width: 138px;
  padding: 9px 12px;
  border-radius: 12px;
  background: var(--white);
}

.footer__brand p {
  max-width: 270px;
  margin: 23px 0;
  font-size: 13px;
}

.app-link {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 11px;
  color: var(--cyan-400);
  font-size: 11px;
  font-weight: 800;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.app-link:hover {
  border-color: rgba(92, 225, 220, 0.5);
  background: rgba(92, 225, 220, 0.08);
}

.app-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.footer__column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer__column h2 {
  margin: 0 0 10px;
  color: var(--white);
  font-size: 13px;
}

.footer__column a,
.footer-link {
  padding: 0;
  border: 0;
  color: #95a1bc;
  background: transparent;
  font-size: 12px;
  cursor: pointer;
  transition: color 0.2s ease;
}

.footer__column a:hover,
.footer-link:hover {
  color: var(--cyan-400);
}

.footer__contact a:first-of-type {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--cyan-400);
  font-size: 15px;
  font-weight: 800;
}

.footer__contact svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.footer__contact small {
  margin-top: 10px;
  color: #697691;
  font-size: 10px;
}

.footer__bottom {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #65718b;
  font-size: 10px;
}

.footer__bottom a {
  color: #9ca7bd;
}

.whatsapp-float {
  position: fixed;
  z-index: 90;
  right: 24px;
  bottom: 24px;
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px 0 14px;
  border-radius: 30px;
  color: var(--white);
  background: #16a865;
  box-shadow: 0 15px 35px rgba(7, 74, 42, 0.28);
  font-size: 12px;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease;
}

.whatsapp-float:hover {
  background: #12965a;
  transform: translateY(-3px);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
  stroke: none;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  :root {
    --header-height: 80px;
  }

  .header__inner {
    gap: 20px;
  }

  .main-nav {
    gap: 18px;
  }

  .site-header.is-scrolled .main-nav {
    top: var(--header-height);
  }

  .main-nav a {
    font-size: 12px;
  }

  .header__client {
    padding-inline: 14px;
  }

  .coverage-card {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .trust-strip__grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 25px;
  }

  .regional-proof__card {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 52px;
  }

  .regional-proof__visual {
    min-height: 260px;
  }

  .experience__grid {
    gap: 35px;
  }

  .locations__grid {
    gap: 45px;
  }

  .faq__grid {
    gap: 55px;
  }

  .footer__grid {
    gap: 35px;
  }
}

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .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: fixed;
    z-index: 101;
    top: calc(34px + var(--header-height));
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 25px 20px;
    background: var(--white);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 17px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 16px;
  }

  .main-nav a::after {
    display: none;
  }

  .header__client {
    order: 2;
  }

  .menu-toggle {
    order: 3;
  }

  .plan-grid {
    grid-template-columns: 1fr;
    max-width: 590px;
    margin-inline: auto;
  }

  .experience__grid,
  .locations__grid,
  .faq__grid {
    grid-template-columns: 1fr;
  }

  .experience__content {
    max-width: 650px;
  }

  .experience__visual {
    min-height: 470px;
  }

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

  .solution-card--large {
    grid-column: span 2;
    grid-template-columns: 140px 1fr;
    padding: 45px;
  }

  .solution-card--large .solution-card__icon {
    width: 130px;
    height: 130px;
  }

  .solution-card:last-child {
    grid-column: span 2;
  }

  .locations__map {
    min-height: 400px;
  }

  .faq .section-heading {
    position: static;
  }

  .final-cta__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .final-cta__actions {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 640px) {
  :root {
    --header-height: 72px;
  }

  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .announcement__inner {
    justify-content: center;
  }

  .announcement a {
    display: none;
  }

  .brand img {
    width: 105px;
  }

  .header__client {
    width: 42px;
    min-height: 42px;
    padding: 0;
    border-radius: 50%;
  }

  .header__client svg {
    width: 20px;
    height: 20px;
  }

  .header__client {
    font-size: 0;
  }

  .menu-toggle {
    margin-left: 0;
  }

  .main-nav {
    top: calc(34px + var(--header-height));
  }

  .hero-slider__track {
    aspect-ratio: 600 / 733;
  }

  .slider-arrow {
    width: 38px;
    height: 38px;
    background: rgba(6, 20, 63, 0.24);
  }

  .slider-arrow--prev {
    left: 10px;
  }

  .slider-arrow--next {
    right: 10px;
  }

  .slider-dots {
    bottom: 14px;
  }

  .coverage-panel {
    margin-top: 0;
    padding-top: 0;
    background: var(--white);
  }

  .coverage-panel .container {
    width: 100%;
  }

  .coverage-card {
    gap: 25px;
    padding: 34px 22px;
    border-radius: 0;
    box-shadow: none;
  }

  .coverage-card h1 {
    font-size: 28px;
  }

  .coverage-form {
    grid-template-columns: 1fr 0.55fr;
  }

  .coverage-form .button {
    grid-column: 1 / -1;
  }

  .form-error {
    position: static;
    grid-column: 1 / -1;
    margin-top: -4px;
  }

  .trust-strip {
    padding: 50px 0 10px;
  }

  .trust-strip__grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .regional-proof {
    padding: 40px 0 0;
  }

  .regional-proof .container {
    width: 100%;
  }

  .regional-proof__card {
    gap: 34px;
    padding: 45px 22px 38px;
    border-radius: 0;
  }

  .regional-proof__content h2 {
    font-size: 42px;
  }

  .regional-proof__content > p {
    font-size: 13px;
  }

  .regional-proof__points {
    grid-template-columns: 1fr;
  }

  .regional-proof__points article {
    padding: 13px;
  }

  .regional-proof__points strong {
    font-size: 12px;
  }

  .regional-proof__points small {
    font-size: 9px;
  }

  .regional-proof__visual {
    min-height: 345px;
    place-items: start center;
  }

  .regional-proof__fiber {
    right: 0;
    bottom: 4px;
  }

  .section {
    padding: 80px 0;
  }

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

  .section-heading h2,
  .experience h2,
  .locations h2,
  .final-cta h2 {
    font-size: 36px;
  }

  .section-heading p,
  .experience__content > p,
  .locations__content > p {
    font-size: 14px;
  }

  .plan-card {
    padding: 30px 24px 25px;
  }

  .experience__grid {
    gap: 35px;
  }

  .experience__visual {
    min-height: 410px;
  }

  .router-card {
    width: 250px;
    height: 330px;
  }

  .router-card__signal {
    width: 75px;
    height: 75px;
  }

  .router-card__signal svg {
    width: 38px;
    height: 38px;
  }

  .signal-orbit--one {
    width: 300px;
    height: 300px;
  }

  .signal-orbit--two {
    width: 400px;
    height: 400px;
  }

  .floating-stat--top {
    top: 20px;
    right: -3px;
  }

  .floating-stat--bottom {
    bottom: 15px;
    left: -4px;
  }

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

  .solution-card,
  .solution-card:last-child {
    min-height: 285px;
    grid-column: auto;
  }

  .solution-card--large {
    display: flex;
    grid-column: auto;
    gap: 25px;
    padding: 30px;
  }

  .solution-card--large .solution-card__icon {
    width: 80px;
    height: 80px;
  }

  .solution-card--large .solution-card__icon svg {
    width: 40px;
    height: 40px;
  }

  .solution-card--large h3 {
    font-size: 34px;
  }

  .locations__map {
    min-height: 350px;
  }

  .map-label {
    min-width: 170px;
  }

  .faq__grid {
    gap: 40px;
  }

  .accordion-item button {
    font-size: 14px;
  }

  .final-cta {
    padding-bottom: 50px;
  }

  .final-cta .container {
    width: 100%;
  }

  .final-cta__inner {
    padding: 45px 24px;
    border-radius: 0;
  }

  .final-cta__actions {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 3px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 54px;
    padding: 0;
    justify-content: center;
  }

  .whatsapp-float span {
    display: none;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
