:root {
  --brand-blue: #0b43b4;
  --brand-blue-deep: #06246f;
  --brand-blue-dark: #04133f;
  --brand-cyan: #17c8ef;
  --brand-red: #ff255b;
  --brand-green: #25d366;
  --white: #ffffff;
  --surface: #f4f7fb;
  --surface-soft: #e9f0f8;
  --line: rgba(11, 67, 180, 0.1);
  --text-strong: #13284f;
  --text-soft: #60728e;
  --shadow-xl: 0 34px 80px rgba(4, 19, 63, 0.16);
  --shadow-lg: 0 22px 52px rgba(4, 19, 63, 0.12);
  --shadow-md: 0 14px 28px rgba(4, 19, 63, 0.08);
  --radius-hero: 40px;
  --radius-xl: 30px;
  --radius-lg: 24px;
  --radius-md: 20px;
  --radius-sm: 16px;
  --radius-pill: 999px;
  --container: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  font-family: "Manrope", sans-serif;
  color: var(--text-strong);
  background:
    radial-gradient(circle at top left, rgba(23, 200, 239, 0.16), transparent 24%),
    linear-gradient(180deg, #f9fbfe 0%, #eef4fb 100%);
}

body.nav-open {
  overflow: hidden;
}

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

button {
  font: inherit;
}

img,
svg {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Sora", sans-serif;
}

p {
  margin: 0;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(4, 19, 63, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

body.nav-open .nav-overlay {
  opacity: 1;
  pointer-events: auto;
}

.page-shell {
  width: min(var(--container), calc(100% - 28px));
  margin: 16px auto 96px;
}

.topbar {
  position: sticky;
  top: 14px;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 78px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(24px);
  box-shadow: var(--shadow-xl);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: clamp(160px, 15vw, 224px);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.4vw, 24px);
  margin-left: auto;
  color: var(--brand-blue);
  font-weight: 800;
}

.site-nav a {
  position: relative;
  white-space: nowrap;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg, var(--brand-cyan), var(--brand-red));
  transition: transform 180ms ease;
}

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

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: var(--radius-pill);
  color: var(--white);
  background: linear-gradient(90deg, var(--brand-blue), #2f7ee8);
  box-shadow: 0 14px 28px rgba(11, 67, 180, 0.2);
}

.nav-cta::after {
  display: none;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(180deg, #eef5ff, #dfeafb);
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: var(--radius-pill);
  background: var(--brand-blue);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.98fr);
  gap: 30px;
  margin-top: 22px;
  padding: 52px 52px 48px;
  overflow: hidden;
  border-radius: var(--radius-hero);
  background:
    radial-gradient(circle at 88% 14%, rgba(255, 255, 255, 0.14), transparent 21%),
    radial-gradient(circle at 10% 90%, rgba(255, 37, 91, 0.16), transparent 18%),
    linear-gradient(135deg, var(--brand-blue-dark) 0%, var(--brand-blue) 50%, #27bced 100%);
  box-shadow: var(--shadow-xl);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.6), transparent 92%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -120px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(23, 200, 239, 0.38), transparent 68%);
  pointer-events: none;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-blue);
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 2px;
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg, var(--brand-cyan), var(--brand-red));
}

.eyebrow--light {
  color: rgba(255, 255, 255, 0.84);
}

.hero h1 {
  max-width: 7.2ch;
  margin-top: 18px;
  color: var(--white);
  font-size: clamp(3.4rem, 6vw, 5.4rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.hero__lede {
  max-width: 34rem;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.1rem;
  line-height: 1.76;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 18px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button--primary {
  color: var(--white);
  background: linear-gradient(90deg, var(--brand-cyan), #2ad8f2);
  box-shadow: 0 18px 34px rgba(23, 200, 239, 0.24);
}

.button--secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.button--outline {
  color: var(--brand-blue);
  border-color: rgba(11, 67, 180, 0.12);
  background: rgba(255, 255, 255, 0.98);
}

.hero__inline-link {
  display: inline-flex;
  align-items: center;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.92);
}

.hero__inline-link:hover,
.hero__inline-link:focus-visible {
  color: var(--white);
}

.hero__features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.hero__features li {
  min-height: 38px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-pill);
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 700;
}

.hero__frame {
  display: grid;
  gap: 18px;
  align-content: start;
}

.hero-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-lg);
  color: var(--white);
}

.hero-card--signal::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -10px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  opacity: 0.6;
}

.hero-card__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-card h2 {
  max-width: 11ch;
  margin-top: 18px;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.06;
}

.hero-card p {
  max-width: 36rem;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.7;
}

.hero-card__speeds {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.speed-chip {
  min-height: 118px;
  padding: 18px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  text-align: center;
}

.speed-chip strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 2.4vw, 2.6rem);
  line-height: 1;
}

.speed-chip span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.speed-chip--featured {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 37, 91, 0.22));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.hero-card--support {
  display: grid;
  gap: 12px;
  background: rgba(4, 19, 63, 0.44);
}

.hero-card__support-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 64px;
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
}

.hero-card__support-row strong {
  font-size: 1.05rem;
  text-align: right;
}

.hero-card__pill {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section {
  padding-top: 88px;
}

.section--surface {
  padding-top: 68px;
}

.section-heading {
  display: grid;
  gap: 14px;
  max-width: 760px;
}

.section-heading--split {
  max-width: none;
  grid-template-columns: minmax(0, 1fr) minmax(0, 420px);
  align-items: end;
  gap: 24px;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.section-heading p {
  color: var(--text-soft);
  line-height: 1.78;
}

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

.service-card,
.benefit-card,
.plan-card,
.contact-card,
.coverage-panel,
.payment-band,
.footer {
  border-radius: 28px;
}

.service-card {
  padding: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-md);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover,
.benefit-card:hover,
.plan-card:hover,
.contact-card:hover,
.coverage-panel:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-card__step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: var(--brand-blue);
  background: rgba(11, 67, 180, 0.08);
  font-family: "Sora", sans-serif;
  font-weight: 800;
}

.service-card h3 {
  margin-top: 18px;
  font-size: 1.4rem;
}

.service-card p {
  margin-top: 12px;
  color: var(--text-soft);
  line-height: 1.72;
}

.service-card--accent {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.1);
  background: linear-gradient(135deg, #0a2c8a 0%, #0f63db 65%, #1bc0ee 100%);
}

.service-card--accent p {
  color: rgba(255, 255, 255, 0.84);
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 16px;
  color: var(--brand-blue);
  font-weight: 800;
}

.text-link:hover,
.text-link:focus-visible {
  text-decoration: underline;
}

.text-link--light {
  color: var(--white);
}

.section--speedtest {
  padding-top: 72px;
}

.speedtest-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: 22px;
  margin-top: 30px;
}

.speedtest-card {
  min-height: 100%;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-lg);
}

.speedtest-card--info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    radial-gradient(circle at top right, rgba(23, 200, 239, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(11, 67, 180, 0.04), rgba(255, 255, 255, 0.96));
}

.speedtest-card--embed {
  padding: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(233, 240, 248, 0.96));
}

.speedtest-card__label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 32px;
  padding: 0 12px;
  border-radius: var(--radius-pill);
  color: var(--brand-blue);
  background: rgba(11, 67, 180, 0.08);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.speedtest-card h3 {
  margin-top: 18px;
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  line-height: 1.06;
}

.speedtest-card p {
  margin-top: 14px;
  color: var(--text-soft);
  line-height: 1.78;
}

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

.speedtest-points li {
  position: relative;
  padding-left: 20px;
  font-weight: 700;
  color: var(--text-strong);
  line-height: 1.65;
}

.speedtest-points li::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-cyan), var(--brand-red));
}

.speedtest-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.speedtest-actions .button {
  min-width: 220px;
}

.speedtest-embed {
  overflow: hidden;
  min-height: 680px;
  border: 1px solid rgba(11, 67, 180, 0.1);
  border-radius: 24px;
  background: var(--white);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}

.speedtest-embed iframe {
  width: 100%;
  height: 680px;
  border: 0;
  background: var(--white);
}

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

.benefit-card {
  padding: 28px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-md);
}

.benefit-card__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  color: var(--white);
  background: linear-gradient(135deg, var(--brand-blue), #2c8cef);
  font-family: "Sora", sans-serif;
  font-weight: 800;
}

.benefit-card h3 {
  margin-top: 18px;
  font-size: 1.42rem;
}

.benefit-card p {
  margin-top: 12px;
  color: var(--text-soft);
  line-height: 1.76;
}

.plan-switch {
  display: inline-flex;
  gap: 10px;
  padding: 8px;
  margin-top: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.86);
}

.plan-switch__button {
  min-width: 120px;
  min-height: 48px;
  padding: 0 18px;
  border: 0;
  border-radius: var(--radius-pill);
  color: var(--text-soft);
  background: transparent;
  font-weight: 800;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.plan-switch__button.active {
  color: var(--white);
  background: linear-gradient(90deg, var(--brand-blue), #2d7fe9);
  box-shadow: 0 12px 26px rgba(11, 67, 180, 0.2);
}

.plans-panel {
  display: none;
}

.plans-panel.active {
  display: block;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 26px;
}

.plan-card {
  position: relative;
  padding: 28px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-md);
}

.plan-card__label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: var(--radius-pill);
  color: var(--brand-blue);
  background: rgba(11, 67, 180, 0.07);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.plan-card__badge {
  position: absolute;
  top: 20px;
  right: 20px;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: var(--radius-pill);
  color: var(--white);
  background: linear-gradient(90deg, var(--brand-red), #ff6a7b);
  font-size: 0.76rem;
  font-weight: 800;
}

.plan-card h3 {
  margin-top: 22px;
  font-size: 2rem;
}

.plan-card__price {
  margin-top: 18px;
}

.plan-card__price strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 2.7vw, 3.1rem);
  line-height: 1;
}

.plan-card__price small {
  display: block;
  margin-top: 10px;
  color: var(--text-soft);
  font-size: 0.96rem;
  font-weight: 700;
}

.plan-card__price--text strong {
  font-size: 1.4rem;
  line-height: 1.2;
}

.plan-card ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.plan-card li {
  position: relative;
  padding-left: 18px;
  color: var(--text-soft);
  font-weight: 700;
  line-height: 1.6;
}

.plan-card li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-cyan), var(--brand-red));
}

.plan-card .button {
  width: 100%;
  margin-top: 24px;
}

.plan-card--featured {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, #0b43b4 0%, #1c66dd 56%, #23c7ef 100%);
}

.plan-card--featured .plan-card__label {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.plan-card--featured .plan-card__price small,
.plan-card--featured li,
.plan-card--featured p {
  color: rgba(255, 255, 255, 0.9);
}

.plan-card--featured li::before,
.plan-card--dark li::before {
  background: var(--white);
}

.plan-card--featured .button--primary {
  color: var(--brand-blue);
  background: var(--white);
}

.plan-card--dark {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, var(--brand-blue-dark) 0%, #0a2d87 100%);
}

.plan-card--dark .plan-card__label {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.plan-card--dark .plan-card__price small,
.plan-card--dark li,
.plan-card--dark p {
  color: rgba(255, 255, 255, 0.84);
}

.payment-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px 34px;
  color: var(--white);
  background: linear-gradient(135deg, var(--brand-blue-dark) 0%, var(--brand-blue) 52%, #159fd6 100%);
  box-shadow: var(--shadow-lg);
}

.payment-band h2 {
  margin-top: 14px;
  font-size: clamp(1.9rem, 3.4vw, 2.9rem);
  line-height: 1.08;
}

.payment-band p:last-child {
  max-width: 34rem;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.72;
}

.coverage-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.coverage-copy p:not(.eyebrow) {
  margin-top: 18px;
  color: var(--text-soft);
  line-height: 1.76;
}

.coverage-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.coverage-list li {
  position: relative;
  padding-left: 18px;
  font-weight: 700;
  color: var(--text-strong);
}

.coverage-list li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-cyan), var(--brand-red));
}

.coverage-panels {
  display: grid;
  gap: 18px;
}

.coverage-panel {
  padding: 26px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-md);
}

.coverage-panel--primary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, #0a2d88 0%, #0f58cb 56%, #25c7ef 100%);
}

.coverage-panel__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: var(--radius-pill);
  background: rgba(11, 67, 180, 0.07);
  color: var(--brand-blue);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.coverage-panel--primary .coverage-panel__eyebrow {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.coverage-panel h3 {
  margin-top: 18px;
  font-size: 1.6rem;
  line-height: 1.16;
}

.coverage-panel p {
  margin-top: 12px;
  color: var(--text-soft);
  line-height: 1.74;
}

.coverage-panel--primary p {
  color: rgba(255, 255, 255, 0.84);
}

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

.contact-card {
  padding: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-md);
}

.contact-card__label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: var(--radius-pill);
  color: var(--brand-blue);
  background: rgba(11, 67, 180, 0.07);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-card strong {
  display: block;
  margin-top: 18px;
  font-family: "Sora", sans-serif;
  font-size: 1.45rem;
  line-height: 1.2;
}

.contact-card p {
  margin-top: 10px;
  color: var(--text-soft);
  line-height: 1.72;
}

.contact-card--primary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, var(--brand-blue-dark) 0%, var(--brand-blue) 52%, #1cbfec 100%);
}

.contact-card--primary .contact-card__label {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.contact-card--primary p {
  color: rgba(255, 255, 255, 0.88);
}

.contact-card--info {
  background: linear-gradient(180deg, rgba(11, 67, 180, 0.04), rgba(23, 200, 239, 0.08));
}

.social-links {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.social-links__item {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 38px;
  padding: 0 14px;
  border-radius: var(--radius-pill);
  color: var(--brand-blue);
  background: rgba(11, 67, 180, 0.08);
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.social-links__item:hover,
.social-links__item:focus-visible {
  transform: translateY(-1px);
  color: var(--white);
  background: linear-gradient(90deg, var(--brand-blue), #2d7fe9);
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 72px;
  padding: 24px 28px;
  color: var(--white);
  background: linear-gradient(135deg, var(--brand-blue-dark), #092a82);
  box-shadow: var(--shadow-lg);
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer__brand img {
  width: clamp(150px, 14vw, 190px);
  filter: brightness(1.02);
}

.footer__brand p {
  max-width: 24rem;
  color: rgba(255, 255, 255, 0.82);
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px 18px;
  font-weight: 700;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.92);
}

.footer__links a:hover,
.footer__links a:focus-visible {
  color: var(--brand-cyan);
}

.whatsapp-fab {
  position: fixed;
  right: 20px;
  bottom: max(18px, calc(env(safe-area-inset-bottom, 0px) + 18px));
  z-index: 140;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 62px;
  padding: 0 18px 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-pill);
  color: var(--white);
  background: var(--brand-green);
  box-shadow: 0 18px 36px rgba(37, 211, 102, 0.26);
}

.whatsapp-fab__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
}

.whatsapp-fab__icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.whatsapp-fab__text {
  font-weight: 800;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 480ms ease, transform 480ms ease;
}

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

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

  .section-heading--split,
  .coverage-layout,
  .speedtest-layout {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .benefits-grid,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 1040px) {
  .page-shell {
    width: min(var(--container), calc(100% - 20px));
  }

  .topbar {
    min-height: 74px;
    padding: 12px 14px;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .site-nav {
    position: fixed;
    top: 92px;
    right: 12px;
    left: 12px;
    display: grid;
    gap: 8px;
    padding: 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-xl);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

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

  .site-nav a {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 0 12px;
    border-radius: 16px;
    background: rgba(11, 67, 180, 0.04);
  }

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

  .nav-cta {
    width: 100%;
  }
}

@media (max-width: 820px) {
  html {
    scroll-padding-top: 88px;
  }

  .page-shell {
    width: min(var(--container), calc(100% - 14px));
    margin: 10px auto 92px;
  }

  .topbar {
    top: 10px;
    min-height: 70px;
    border-radius: 22px;
  }

  .brand img {
    width: min(166px, 44vw);
  }

  .site-nav {
    top: 84px;
  }

  .hero {
    padding: 28px 22px 24px;
    border-radius: 30px;
  }

  .hero h1 {
    max-width: 8ch;
    font-size: clamp(2.6rem, 12vw, 4.2rem);
  }

  .hero__lede {
    font-size: 1rem;
    line-height: 1.7;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .hero__inline-link {
    justify-content: center;
    min-height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
  }

  .hero-card,
  .service-card,
  .benefit-card,
  .plan-card,
  .contact-card,
  .coverage-panel,
  .payment-band,
  .footer {
    border-radius: 22px;
  }

  .hero-card__speeds,
  .service-grid,
  .benefits-grid,
  .plans-grid,
  .contact-grid,
  .coverage-panels {
    grid-template-columns: 1fr;
  }

  .hero-card__support-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .payment-band,
  .footer,
  .footer__brand {
    flex-direction: column;
    align-items: flex-start;
  }

  .speedtest-card {
    padding: 24px;
  }

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

  .speedtest-actions .button {
    width: 100%;
    min-width: 0;
  }

  .speedtest-embed,
  .speedtest-embed iframe {
    min-height: 620px;
    height: 620px;
  }

  .footer__links {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .topbar {
    padding: 12px;
  }

  .hero {
    gap: 18px;
  }

  .hero h1 {
    font-size: clamp(2.28rem, 12vw, 3.4rem);
  }

  .hero__features {
    gap: 8px;
  }

  .hero__features li {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .section {
    padding-top: 72px;
  }

  .section-heading h2 {
    font-size: clamp(1.8rem, 10vw, 2.6rem);
  }

  .plan-switch {
    width: 100%;
  }

  .plan-switch__button {
    flex: 1 1 0;
    min-width: 0;
  }

  .contact-card strong,
  .coverage-panel h3 {
    font-size: 1.28rem;
  }

  .speedtest-card h3 {
    font-size: clamp(1.55rem, 8vw, 2rem);
  }

  .speedtest-embed,
  .speedtest-embed iframe {
    min-height: 540px;
    height: 540px;
    border-radius: 20px;
  }

  .whatsapp-fab {
    right: 12px;
    bottom: max(16px, calc(env(safe-area-inset-bottom, 0px) + 72px));
    width: 58px;
    height: 58px;
    padding: 0;
    justify-content: center;
  }

  .whatsapp-fab__text {
    display: none;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
