:root {
  --bg: #16001f;
  --bg-deep: #08000f;
  --surface: rgba(42, 5, 58, 0.92);
  --surface-strong: rgba(72, 0, 94, 0.96);
  --border: rgba(255, 255, 255, 0.16);
  --text: #ffffff;
  --muted: #f1d9ff;
  --primary: #ff00d4;
  --primary-2: #a200ff;
  --secondary: #06e4ff;
  --accent: #ff00d4;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42), 0 0 34px rgba(255, 0, 212, 0.08);
  --radius: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  line-height: 1.6;
  background:
    radial-gradient(ellipse 80% 55% at 50% 0%, rgba(255, 0, 212, 0.16), transparent 62%),
    radial-gradient(circle at 92% 10%, rgba(6, 228, 255, 0.07), transparent 20rem),
    linear-gradient(180deg, #16001f 0%, #110017 48%, #08000f 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 25%), rgba(255, 0, 212, 0.13), transparent 18rem),
    radial-gradient(circle at calc(var(--mouse-x, 50%) + 12%) calc(var(--mouse-y, 25%) + 8%), rgba(6, 228, 255, 0.08), transparent 14rem),
    linear-gradient(rgba(255, 0, 212, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 0, 212, 0.035) 1px, transparent 1px);
  background-size: auto, auto, 42px 42px, 42px 42px;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 60;
  width: var(--scroll-progress, 0%);
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  box-shadow: 0 0 18px rgba(255, 0, 212, 0.75);
}

a {
  color: inherit;
}

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

.container {
  width: min(1180px, calc(100% - clamp(1rem, 4vw, 2rem)));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 20;
  background: transparent;
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition:
    background 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(8, 0, 15, 0.95);
  border-bottom-color: var(--border);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.38);
}

.topbar {
  border-bottom: 1px solid rgba(255, 0, 212, 0.12);
  background: rgba(255, 0, 212, 0.055);
}

.topbar-grid {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1rem;
  min-height: 2.35rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.topbar a {
  text-decoration: none;
  transition: color 0.2s ease;
}

.topbar a:hover {
  color: #fff;
}

.nav-shell {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-logo {
  width: clamp(8.5rem, 14vw, 12rem);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.45rem, 1vw, 1.15rem);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-nav a {
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #fff;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  flex-direction: column;
  gap: 0.3rem;
  padding: 0.4rem;
}

.menu-toggle span {
  width: 1.55rem;
  height: 2px;
  background: #fff;
  border-radius: 999px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.82rem 1.15rem;
  max-width: 100%;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  text-align: center;
  border: 1px solid transparent;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-2), var(--secondary));
  background-size: 180% 180%;
  box-shadow: 0 14px 38px rgba(255, 0, 212, 0.35);
  animation: gradientShift 5s ease infinite;
}

.btn-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.hero {
  position: relative;
  min-height: 650px;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background:
    radial-gradient(ellipse at 8% 100%, rgba(255, 0, 212, 0.9), transparent 36%),
    linear-gradient(0deg, rgba(104, 0, 95, 0.96), transparent);
  pointer-events: none;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(20, 0, 28, 0.94) 0%, rgba(42, 0, 58, 0.74) 48%, rgba(42, 0, 58, 0.34) 100%),
    url("assets/up-gamer.jpeg") center right / cover no-repeat;
  transform: translate3d(calc(var(--parallax-x, 0px) * -0.25), calc(var(--parallax-y, 0px) * -0.18), 0) scale(1.04);
  transition: transform 0.24s ease-out;
  animation: heroBreath 14s ease-in-out infinite alternate;
}

.hero-glow {
  position: absolute;
  z-index: 1;
  width: 16rem;
  height: 16rem;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(28px);
  opacity: 0.55;
  mix-blend-mode: screen;
}

.hero-glow-one {
  left: 8%;
  bottom: 12%;
  background: rgba(255, 0, 212, 0.54);
  animation: floatGlow 8s ease-in-out infinite;
}

.hero-glow-two {
  right: 18%;
  top: 20%;
  width: 10rem;
  height: 10rem;
  background: rgba(6, 228, 255, 0.34);
  animation: floatGlow 10s ease-in-out infinite reverse;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 580px) minmax(280px, 0.72fr);
  gap: 2rem;
  align-items: center;
  padding: 4.25rem 0 5.75rem;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: #ff9dff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.showcase-copy h2,
.coverage-grid h2,
.site-footer h2 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  line-height: 0.98;
}

.hero h1 {
  font-size: clamp(3rem, 6vw, 5.9rem);
  text-transform: uppercase;
}

.hero-content p:not(.eyebrow, .hero-before, .hero-note),
.section-heading p,
.showcase-copy p,
.coverage-grid p,
.site-footer p {
  color: var(--muted);
  font-size: 1.04rem;
}

.hero-offer {
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(18, 0, 28, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  transform: translate3d(calc(var(--parallax-x, 0px) * 0.18), calc(var(--parallax-y, 0px) * 0.14), 0);
  transition:
    transform 0.24s ease-out,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.hero-benefits {
  display: grid;
  gap: 0.52rem;
  margin: 1.4rem 0;
  padding: 0;
  color: #fff;
  list-style: none;
}

.hero-benefits li {
  padding-left: 1.45rem;
  background: linear-gradient(90deg, #fff 0 0) left 0.72rem / 0.5rem 0.5rem no-repeat;
  font-weight: 800;
}

.hero-before {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.hero-before s {
  color: #fff;
}

.hero-price {
  display: flex;
  align-items: flex-start;
  gap: 0.18rem;
  margin: 0.15rem 0 1rem;
}

.hero-price span,
.hero-price small {
  padding-top: 0.75rem;
  color: var(--muted);
  font-weight: 900;
}

.hero-price strong {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(4.5rem, 8vw, 7.5rem);
  line-height: 0.82;
  text-shadow: 0 0 34px rgba(255, 0, 212, 0.45);
}

.hero-note {
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 0;
}

.hero-side-card {
  align-self: stretch;
  display: flex;
  position: relative;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 430px;
  padding: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 0, 212, 0.08), rgba(13, 0, 20, 0.88)),
    url("assets/up-500mb.jpeg") center / cover no-repeat;
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: translate3d(calc(var(--parallax-x, 0px) * -0.16), calc(var(--parallax-y, 0px) * -0.12), 0);
  transition:
    transform 0.24s ease-out,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.hero-side-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(12, 0, 22, 0.92), transparent 58%);
}

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

.hero-ribbon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  color: #3d004c;
  background: #fff;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  animation: pulseSoft 2.4s ease-in-out infinite;
}

.hero-side-card strong {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 0.82;
}

.hero-side-card p {
  max-width: 320px;
  color: var(--muted);
  font-weight: 800;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-features span {
  padding: 0.7rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-weight: 900;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.hero-features span:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.17);
}

.plans-section,
.quick-section,
.mesh-section,
.tv-anywhere-section,
.showcase-section,
.promo-band,
.indication-section,
.testimonials-section,
.coverage-section {
  padding: 4.25rem 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 2rem;
}

.section-heading h2 {
  font-size: clamp(2rem, 3vw, 3.35rem);
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 1rem;
}

.plan-card,
.quick-card,
.coverage-panel,
.contact-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.plan-card {
  position: relative;
  min-height: 100%;
  padding: 1.45rem;
  overflow: hidden;
  transition:
    transform 0.28s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.plan-card::before,
.quick-card::before,
.testimonial-card::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  background: radial-gradient(circle at var(--card-x, 50%) var(--card-y, 0%), rgba(255, 255, 255, 0.22), transparent 14rem);
  transition: opacity 0.22s ease;
}

.plan-card:hover::before,
.quick-card:hover::before,
.testimonial-card:hover::after {
  opacity: 1;
}

.plan-card:hover,
.plan-card:focus-within {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(255, 0, 212, 0.68);
  box-shadow: 0 34px 80px rgba(255, 0, 212, 0.28);
}

.plan-card-featured {
  padding-top: 2.35rem;
  background:
    linear-gradient(180deg, rgba(255, 0, 212, 0.3), rgba(74, 0, 102, 0.95)),
    var(--surface-strong);
  box-shadow: 0 30px 80px rgba(255, 0, 212, 0.32);
}

.featured-ribbon {
  position: absolute;
  top: 0.75rem;
  right: 0.9rem;
  margin: 0;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  color: #29002d;
  background: #fff;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.plan-label {
  margin: 0 0 0.5rem;
  color: #ff9dff;
  font-weight: 900;
  text-transform: uppercase;
}

.plan-card h3 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 1.55rem;
  line-height: 1;
}

.plan-card ul {
  margin: 1.3rem 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.plan-card li {
  padding: 0.45rem 0 0.45rem 1.35rem;
  background: linear-gradient(90deg, #fff 0 0) left 0.95rem / 0.5rem 0.5rem no-repeat;
}

.plan-price {
  display: flex;
  align-items: flex-start;
  gap: 0.18rem;
  margin: 0 0 1.25rem;
}

.plan-price span,
.plan-price small {
  padding-top: 0.6rem;
  color: var(--muted);
  font-weight: 900;
}

.plan-price strong {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(3.1rem, 6vw, 4rem);
  line-height: 0.85;
}

.price-note {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.quick-section {
  background:
    linear-gradient(90deg, rgba(255, 0, 212, 0.12), transparent 28%),
    rgba(0, 0, 0, 0.18);
}

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

.quick-card {
  position: relative;
  overflow: hidden;
  padding: 1.2rem;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease;
}

.quick-card:hover,
.quick-card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(6, 228, 255, 0.42);
}

.quick-card span {
  color: var(--secondary);
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
}

.quick-card h3 {
  margin: 0.35rem 0;
}

.quick-card p {
  color: var(--muted);
}

.quick-card a {
  color: #fff;
  font-weight: 900;
  text-decoration-color: var(--primary);
  text-decoration-thickness: 3px;
}

.mesh-section {
  background:
    radial-gradient(circle at 18% 20%, rgba(6, 228, 255, 0.18), transparent 20rem),
    linear-gradient(180deg, rgba(8, 0, 15, 0.48), rgba(91, 0, 107, 0.22));
}

.mesh-grid,
.tv-anywhere-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
  align-items: center;
}

.mesh-gallery {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 1rem;
  align-items: end;
}

.mesh-gallery img,
.tv-poster img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  object-fit: cover;
  transition:
    transform 0.45s ease,
    filter 0.45s ease;
}

.mesh-gallery img:hover,
.tv-poster img:hover,
.image-card:hover img,
.promo-card:hover img {
  transform: scale(1.045);
  filter: saturate(1.12) contrast(1.04);
}

.mesh-gallery img:first-child {
  aspect-ratio: 4 / 5;
}

.mesh-gallery img:last-child {
  aspect-ratio: 1 / 1;
  transform: translateY(-2rem);
}

.mesh-copy h2,
.tv-copy h2 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2rem, 3.5vw, 4.2rem);
  line-height: 0.98;
}

.mesh-copy p,
.tv-copy p,
.testimonial-card p {
  color: var(--muted);
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  margin: 1.4rem 0;
}

.spec-grid span {
  padding: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 900;
  transition:
    transform 0.22s ease,
    background 0.22s ease;
}

.spec-grid span:hover {
  transform: translateX(4px);
  background: rgba(255, 255, 255, 0.14);
}

.tv-anywhere-section {
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 0, 212, 0.26), transparent 22rem),
    rgba(0, 0, 0, 0.18);
}

.tv-copy ul {
  display: grid;
  gap: 0.65rem;
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
}

.tv-copy li {
  padding: 0.85rem 1rem;
  border-left: 4px solid var(--primary);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-weight: 900;
}

.tv-poster {
  position: relative;
}

.tv-poster::before {
  content: "UP PLAY";
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 1;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: #fff;
  color: #5e0074;
  font-family: "Montserrat", sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
}

.tv-poster img {
  aspect-ratio: 1 / 1;
}

.showcase-grid,
.coverage-grid,
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.showcase-copy h2,
.coverage-grid h2,
.site-footer h2 {
  font-size: clamp(2rem, 3.5vw, 4.2rem);
}

.image-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.image-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(0deg, rgba(255, 0, 212, 0.74), transparent);
}

.image-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition:
    transform 0.45s ease,
    filter 0.45s ease;
}

.promo-band {
  background:
    radial-gradient(circle at 80% 0%, rgba(6, 228, 255, 0.16), transparent 22rem),
    linear-gradient(180deg, rgba(87, 0, 111, 0.48), rgba(22, 0, 31, 0.88));
}

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

.promo-card {
  position: relative;
  min-height: 450px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #180020;
  box-shadow: var(--shadow);
  transition:
    transform 0.3s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.promo-card:hover {
  transform: translateY(-7px);
  border-color: rgba(255, 0, 212, 0.5);
  box-shadow: 0 34px 90px rgba(255, 0, 212, 0.26);
}

.promo-card img {
  width: 100%;
  height: 100%;
  min-height: 450px;
  object-fit: cover;
  opacity: 0.82;
  transition:
    transform 0.5s ease,
    filter 0.5s ease;
}

.promo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(23, 0, 34, 0.94), transparent 58%);
}

.promo-card div {
  position: absolute;
  left: 1.2rem;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 1;
}

.promo-card h3 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 1.55rem;
  line-height: 1;
}

.promo-card p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.indication-section {
  text-align: center;
  background:
    linear-gradient(90deg, rgba(255, 0, 212, 0.12), transparent 24%, rgba(6, 228, 255, 0.1)),
    rgba(255, 255, 255, 0.03);
}

.indication-section .section-heading {
  margin-inline: auto;
}

.steps-line,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.mini-step,
.testimonial-card {
  position: relative;
  overflow: hidden;
  padding: 1.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03)),
    var(--surface);
  box-shadow: var(--shadow);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease;
}

.mini-step:hover,
.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 0, 212, 0.44);
}

.mini-step strong {
  display: block;
  color: var(--secondary);
  font-family: "Montserrat", sans-serif;
  font-size: 2.5rem;
  line-height: 1;
}

.mini-step span {
  display: block;
  margin-top: 0.45rem;
  font-weight: 900;
  text-transform: uppercase;
}

.indication-cta {
  margin-top: 1.4rem;
}

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

.testimonial-card {
  text-align: left;
}

.testimonial-card::before {
  content: "★★★★★";
  display: block;
  margin-bottom: 0.9rem;
  color: #ff9dff;
  letter-spacing: 0.08em;
}

.testimonial-card strong,
.testimonial-card span {
  display: block;
}

.testimonial-card span {
  color: var(--muted);
  font-size: 0.92rem;
}

.coverage-panel {
  padding: 1.5rem;
}

.coverage-panel strong {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(4rem, 10vw, 7rem);
  line-height: 0.85;
  text-shadow: 0 0 34px rgba(255, 0, 212, 0.45);
}

.coverage-panel span {
  display: block;
  color: #ff9dff;
  font-weight: 900;
  text-transform: uppercase;
}

.site-footer {
  padding: 4rem 0;
  background:
    radial-gradient(circle at 0% 100%, rgba(255, 0, 212, 0.4), transparent 26rem),
    #08000f;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-card {
  padding: 1.45rem;
}

.contact-card p {
  margin: 0 0 0.8rem;
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.footer-links a {
  color: #fff;
  font-weight: 900;
  text-decoration-color: var(--primary);
  text-decoration-thickness: 3px;
}

.reveal {
  opacity: 0;
  transform: translateY(30px) scale(0.98);
  transition:
    opacity 0.65s ease,
    transform 0.65s cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes heroBreath {
  from {
    filter: saturate(1) contrast(1);
  }

  to {
    filter: saturate(1.12) contrast(1.06);
  }
}

@keyframes floatGlow {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(1.2rem, -1rem, 0) scale(1.12);
  }
}

@keyframes pulseSoft {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(255, 255, 255, 0);
  }

  50% {
    transform: scale(1.04);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.26);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 980px) {
  .plans-grid,
  .quick-grid,
  .promo-grid,
  .mesh-grid,
  .tv-anywhere-grid,
  .showcase-grid,
  .coverage-grid,
  .footer-grid,
  .steps-line,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    background:
      linear-gradient(180deg, rgba(20, 0, 28, 0.9), rgba(42, 0, 58, 0.74)),
      url("assets/up-gamer.jpeg") center / cover no-repeat;
  }

  .hero-content {
    grid-template-columns: 1fr;
  }

  .promo-card,
  .promo-card img {
    min-height: 360px;
  }

  .mesh-gallery img:last-child {
    transform: none;
  }
}

@media (max-width: 780px) {
  .topbar {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.7rem);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
    background: rgba(13, 0, 20, 0.96);
  }

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

  .nav-cta {
    display: none;
  }

  .hero-content {
    padding: 2rem 0 4.5rem;
  }

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

  .hero-features {
    display: grid;
    grid-template-columns: 1fr;
  }

  .mesh-gallery,
  .spec-grid {
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }
}


.hero h1,
.section-heading h2,
.showcase-copy h2,
.coverage-grid h2,
.site-footer h2,
.plan-card h3,
.mesh-copy h2,
.tv-copy h2,
.quick-card h3,
.promo-card h3 {
  font-family: "Exo 2", "Montserrat", sans-serif;
}

.site-nav,
.hero-content p:not(.eyebrow, .hero-before, .hero-note),
.section-heading p,
.showcase-copy p,
.coverage-grid p,
.site-footer p {
  color: var(--muted);
}

.site-nav a {
  padding: 0.45rem clamp(0.35rem, 0.75vw, 0.75rem);
  border-radius: 8px;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.active {
  color: var(--primary);
  background: rgba(255, 0, 212, 0.06);
}

.site-nav a.active {
  background: rgba(255, 0, 212, 0.12);
}

.btn {
  border-radius: 999px;
  font-family: "Exo 2", "Inter", sans-serif;
  letter-spacing: 0;
}

.btn-primary {
  color: #16001f;
  background: linear-gradient(135deg, var(--primary), #06e4ff);
  box-shadow: 0 0 22px rgba(255, 0, 212, 0.36);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 0 38px rgba(255, 0, 212, 0.56);
}

.btn-secondary {
  color: var(--primary);
  background: transparent;
  border: 2px solid rgba(255, 0, 212, 0.8);
  box-shadow: 0 0 14px rgba(255, 0, 212, 0.12);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: rgba(255, 0, 212, 0.08);
  box-shadow: 0 0 28px rgba(255, 0, 212, 0.28);
}

.hero {
  min-height: 100vh;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255, 0, 212, 0.26), transparent 65%);
}

.hero::after {
  height: 34%;
  background: linear-gradient(0deg, rgba(8, 0, 15, 0.98), transparent);
}

.hero-media {
  background:
    linear-gradient(90deg, rgba(8, 0, 15, 0.96) 0%, rgba(8, 0, 15, 0.75) 52%, rgba(8, 0, 15, 0.28) 100%),
    url("assets/up-gamer.jpeg") center right / cover no-repeat;
}

.hero-glow-one {
  background: rgba(255, 0, 212, 0.42);
}

.hero-glow-two {
  background: rgba(6, 228, 255, 0.22);
}

.hero-content {
  grid-template-columns: minmax(0, 1fr) minmax(290px, 0.82fr);
  gap: clamp(2rem, 6vw, 4rem);
  padding-top: 7.5rem;
}

.hero-offer {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  padding: 0.38rem 0.9rem;
  border: 1px solid rgba(255, 0, 212, 0.26);
  border-radius: 999px;
  color: var(--primary);
  background: rgba(255, 0, 212, 0.08);
  font-family: "Exo 2", "Inter", sans-serif;
  letter-spacing: 0.18em;
}

.hero h1 {
  max-width: 740px;
  font-size: clamp(3rem, 7vw, 6.2rem);
  line-height: 0.92;
  color: #fff;
  text-shadow: 0 0 34px rgba(255, 0, 212, 0.26);
}

.hero-benefits {
  max-width: 560px;
  color: var(--muted);
}

.hero-benefits li {
  background: none;
  position: relative;
}

.hero-benefits li::before,
.plan-card li::before,
.tv-copy li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.45rem;
  display: grid;
  place-items: center;
  width: 1rem;
  height: 1rem;
  border: 1px solid rgba(255, 0, 212, 0.34);
  border-radius: 50%;
  color: var(--primary);
  background: rgba(255, 0, 212, 0.1);
  font-size: 0.65rem;
}

.hero-before {
  color: var(--primary);
}

.hero-price strong,
.plan-price strong {
  color: #fff;
  text-shadow: 0 0 28px rgba(255, 0, 212, 0.46);
}

.hero-price span,
.hero-price small,
.plan-price span,
.plan-price small {
  color: var(--muted);
}

.hero-side-card {
  min-height: 460px;
  border-color: rgba(255, 0, 212, 0.24);
  background:
    linear-gradient(180deg, rgba(255, 0, 212, 0.04), rgba(8, 0, 15, 0.92)),
    url("assets/up-500mb.jpeg") center / cover no-repeat;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.48), 0 0 46px rgba(255, 0, 212, 0.14);
}

.hero-side-card::after {
  background: linear-gradient(0deg, rgba(8, 0, 15, 0.96), transparent 58%);
}

.hero-ribbon,
.featured-ribbon {
  color: #16001f;
  background: linear-gradient(135deg, var(--secondary), #a7f7ff);
}

.hero-features span,
.spec-grid span,
.showcase-tags span,
.tag {
  border-color: rgba(255, 0, 212, 0.22);
  color: var(--primary);
  background: rgba(255, 0, 212, 0.08);
}

.plans-section,
.quick-section,
.mesh-section,
.tv-anywhere-section,
.showcase-section,
.promo-band,
.indication-section,
.testimonials-section,
.coverage-section,
.faq-section {
  padding: 5.25rem 0;
}

.plans-section,
.tv-anywhere-section,
.coverage-section,
.faq-section {
  background: rgba(13, 20, 16, 0.78);
  border-top: 1px solid rgba(255, 0, 212, 0.08);
  border-bottom: 1px solid rgba(255, 0, 212, 0.08);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 3rem;
}

.section-heading h2 {
  color: #fff;
  font-size: clamp(2.1rem, 4vw, 3.8rem);
  line-height: 1.06;
}

.plans-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.35rem;
}

.plan-card {
  flex: 1 1 calc((100% - 2 * 1.35rem) / 3);
  max-width: calc((100% - 2 * 1.35rem) / 3);
}

.plan-card,
.quick-card,
.coverage-panel,
.contact-card,
.testimonial-card,
.promo-card,
.faq-item {
  background: linear-gradient(160deg, rgba(24, 38, 28, 0.96), rgba(14, 22, 17, 0.96));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.plan-card {
  padding: 2.15rem 1.7rem;
}

.plan-card::before {
  inset: 0 24% auto;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0;
}

.plan-card:hover,
.plan-card:focus-within {
  transform: translateY(-8px);
  border-color: rgba(255, 0, 212, 0.46);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.44), 0 0 48px rgba(255, 0, 212, 0.14);
}

.plan-card-featured {
  background: linear-gradient(160deg, rgba(255, 0, 212, 0.72), rgba(22, 32, 25, 0.96));
  border-color: var(--primary);
  box-shadow: 0 30px 86px rgba(0, 0, 0, 0.48), 0 0 62px rgba(255, 255, 255, 0.16);
}

.plan-label {
  color: var(--muted);
  font-family: "Exo 2", "Inter", sans-serif;
  letter-spacing: 0.16em;
}

.plan-card h3 {
  color: var(--primary);
  font-size: clamp(2rem, 4vw, 3rem);
  text-shadow: 0 0 18px rgba(255, 0, 212, 0.32);
}

.plan-card ul {
  color: var(--muted);
}

.plan-card li {
  position: relative;
  background: none;
  padding-left: 1.75rem;
}

.plan-price {
  padding-top: 1.2rem;
  border-top: 1px solid var(--border);
}

.price-note {
  color: var(--muted);
}

.quick-section,
.mesh-section,
.showcase-section,
.promo-band,
.indication-section,
.testimonials-section {
  background:
    radial-gradient(circle at 14% 8%, rgba(255, 0, 212, 0.12), transparent 22rem),
    transparent;
}

.quick-card,
.promo-card {
  border-radius: var(--radius);
}

.quick-card span {
  color: var(--secondary);
}

.quick-card a {
  color: var(--primary);
  text-decoration-color: var(--primary);
}

.mesh-gallery img,
.tv-poster img,
.image-card img,
.promo-card img {
  border-color: rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.tv-copy ul {
  position: relative;
  padding: 0;
  list-style: none;
}

.tv-copy li {
  position: relative;
  padding: 0.42rem 0 0.42rem 1.75rem;
  color: var(--muted);
}

.coverage-panel strong {
  color: var(--primary);
  text-shadow: 0 0 24px rgba(255, 0, 212, 0.46);
}

.site-footer {
  background: #08000f;
  border-top: 1px solid var(--border);
}

.contact-card {
  background: linear-gradient(160deg, rgba(255, 0, 212, 0.42), rgba(22, 32, 25, 0.98));
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.35rem;
  color: #fff;
  background: transparent;
  border: 0;
  font: 800 1rem "Exo 2", "Inter", sans-serif;
  text-align: left;
  cursor: pointer;
}

.faq-question strong {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  color: #16001f;
  background: var(--primary);
  flex: 0 0 auto;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.35rem;
  color: var(--muted);
  transition: max-height 0.38s ease, padding 0.38s ease;
}

.faq-item.is-open .faq-answer {
  max-height: 500px;
  padding: 0 1.35rem 1.25rem;
}

.faq-item.is-open .faq-question strong {
  background: var(--secondary);
}

.mobile-cta-bar {
  display: none;
}

.whatsapp-float {
  position: fixed;
  right: 1.3rem;
  bottom: 1.3rem;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  min-width: 10.5rem;
  padding: 0.85rem 1rem;
  color: #16001f;
  text-decoration: none;
  background: linear-gradient(135deg, var(--primary), #06e4ff);
  border-radius: 999px;
  box-shadow: 0 0 28px rgba(255, 0, 212, 0.42);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 42px rgba(255, 0, 212, 0.58);
}

.whatsapp-float span {
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
}

.whatsapp-float strong {
  font-family: "Exo 2", "Inter", sans-serif;
  line-height: 1;
}

@media (max-width: 1120px) {
  .nav-shell {
    gap: 0.65rem;
  }

  .brand small {
    display: none;
  }

  .site-nav {
    font-size: 0.78rem;
  }

  .plan-card {
    flex: 1 1 calc((100% - 1.35rem) / 2);
    max-width: calc((100% - 1.35rem) / 2);
  }
}

@media (max-width: 980px) {
  .site-header {
    position: sticky;
  }

  .topbar-grid {
    justify-content: center;
  }

  .nav-shell {
    flex-wrap: wrap;
  }

  .site-nav {
    order: 3;
    flex: 1 0 100%;
    justify-content: center;
    gap: 0.35rem;
    overflow-x: auto;
    padding-top: 0.25rem;
    scrollbar-width: none;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-top: 3.5rem;
  }

  .hero-side-card {
    min-height: 380px;
  }

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

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

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

@media (max-width: 780px) {
  body {
    overflow-x: hidden;
  }

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

  .nav-shell {
    flex-wrap: nowrap;
  }

  .site-nav {
    order: initial;
    flex: initial;
    overflow-x: visible;
    padding-top: 1rem;
    background: rgba(8, 0, 15, 0.98);
    border-color: var(--border);
  }

  .menu-toggle {
    border: 1px solid rgba(255, 0, 212, 0.55);
    border-radius: 999px;
  }

  .menu-toggle span {
    background: var(--primary);
  }

  .hero-content {
    padding: 2.5rem 0 4rem;
  }

  .hero-media {
    background:
      linear-gradient(180deg, rgba(8, 0, 15, 0.96), rgba(8, 0, 15, 0.78)),
      url("assets/up-gamer.jpeg") center / cover no-repeat;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.25rem, 13vw, 3.7rem);
  }

  .hero-price strong {
    font-size: clamp(4rem, 22vw, 6rem);
  }

  .hero-actions,
  .footer-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-side-card {
    min-height: 330px;
  }

  .plans-section,
  .quick-section,
  .mesh-section,
  .tv-anywhere-section,
  .showcase-section,
  .promo-band,
  .indication-section,
  .testimonials-section,
  .coverage-section,
  .faq-section {
    padding: 3.5rem 0;
  }

  .plans-grid {
    gap: 1rem;
  }

  .plan-card {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .quick-grid,
  .promo-grid,
  .steps-line,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    margin-bottom: 2rem;
  }

  .section-heading h2,
  .mesh-copy h2,
  .tv-copy h2,
  .showcase-copy h2,
  .coverage-grid h2,
  .site-footer h2 {
    font-size: clamp(1.9rem, 10vw, 2.7rem);
  }

  .mesh-gallery {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .mesh-gallery img:first-child,
  .mesh-gallery img:last-child,
  .tv-poster img,
  .image-card img {
    aspect-ratio: 4 / 5;
  }

  .promo-card,
  .promo-card img {
    min-height: 330px;
  }

  .whatsapp-float {
    display: none;
  }

  .mobile-cta-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 45;
    display: block;
    padding: 0.75rem;
    background: rgba(8, 0, 15, 0.95);
    border-top: 1px solid var(--border);
    backdrop-filter: blur(16px);
  }

  .mobile-cta-bar .btn {
    min-height: 3.2rem;
  }

  .site-footer {
    padding-bottom: 5rem;
  }
}

@media (max-width: 430px) {
  .brand-mark {
    width: 2.8rem;
    height: 2.15rem;
  }

  .brand strong {
    font-size: 0.98rem;
  }

  .hero h1 {
    font-size: clamp(2rem, 14vw, 3.05rem);
  }

  .hero-benefits li,
  .plan-card li,
  .tv-copy li {
    font-size: 0.95rem;
  }

  .hero-offer,
  .plan-card,
  .quick-card,
  .coverage-panel,
  .contact-card,
  .testimonial-card,
  .faq-question {
    padding-inline: 1rem;
  }

  .hero-features span {
    width: 100%;
    text-align: center;
  }

  .mesh-gallery,
  .spec-grid {
    grid-template-columns: 1fr;
  }

  .mobile-cta-bar {
    padding: 0.65rem 0.5rem;
  }
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.footer-copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.82rem;
}

.footer-dev {
  margin: 0.4rem 0 0;
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.75rem;
}

/* ── Nav Instagram icon ── */
.nav-instagram {
  display: flex;
  align-items: center;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.nav-instagram:hover {
  color: #e1306c;
}

/* ── Instagram Banner ── */
.instagram-banner {
  background: #0d0d0d;
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 2rem 0;
}
.instagram-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.instagram-banner-left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.instagram-icon-wrap {
  width: 62px;
  height: 62px;
  border-radius: 16px;
  background: linear-gradient(135deg, #f9ce34, #ee2a7b, #6228d7);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(238,42,123,0.35);
}
.instagram-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.2rem;
}
.instagram-title span {
  background: linear-gradient(90deg, #f9ce34, #ee2a7b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.instagram-sub {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin: 0;
}
.instagram-sub strong {
  color: rgba(255,255,255,0.8);
}
.instagram-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #f9ce34, #ee2a7b, #6228d7);
  color: #fff;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.75rem 1.5rem;
  white-space: nowrap;
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 4px 18px rgba(238,42,123,0.35);
}
.instagram-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}
@media (max-width: 600px) {
  .instagram-banner-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .instagram-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ── Scroll hint ── */
.hero-scroll-hint {
  position: absolute;
  bottom: 2.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  animation: scrollBounce 2.2s ease-in-out infinite;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.hero-scroll-hint:hover {
  border-color: var(--primary);
  color: var(--primary);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

@media (max-width: 980px) {
  .hero-scroll-hint { display: none; }
}

/* ── Plan period label ── */
.plan-period {
  align-self: flex-end;
  padding-bottom: 0.55rem;
  color: var(--muted);
  font-style: normal;
  font-weight: 700;
  font-size: 0.9rem;
}

/* ── Coverage map ── */
.coverage-map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  min-height: 360px;
}

.coverage-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}

.coverage-stat-mini {
  margin: 1.5rem 0 0.25rem;
}

.coverage-stat-mini strong {
  display: block;
  font-family: "Exo 2", "Montserrat", sans-serif;
  font-size: clamp(3rem, 7vw, 5rem);
  line-height: 0.9;
  color: var(--primary);
  text-shadow: 0 0 24px rgba(255, 0, 212, 0.46);
}

.coverage-stat-mini span {
  display: block;
  margin-top: 0.4rem;
  color: #ff9dff;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
}

.coverage-cta {
  margin-top: 1.5rem;
}

@media (max-width: 780px) {
  .coverage-map {
    min-height: 280px;
  }
  .coverage-map iframe {
    min-height: 280px;
  }
}
