:root {
  --blue-950: #032a62;
  --blue-900: #063b83;
  --blue-800: #064a9e;
  --blue-700: #0555b8;
  --blue-600: #0870d8;
  --lime-500: #c7df37;
  --lime-400: #d6ec4b;
  --green: #24c66b;
  --white: #ffffff;
  --ink: #11213b;
  --muted: #65728a;
  --soft: #f3f7fc;
  --line: #dce6f2;
  --shadow: 0 18px 50px rgba(2, 52, 116, .12);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button, input, select {
  font: inherit;
}

button {
  cursor: pointer;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 9999;
  padding: 12px 18px;
  background: var(--white);
  color: var(--blue-900);
  border-radius: 10px;
  font-weight: 800;
  transition: top .2s ease;
}

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

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

.section {
  padding: 100px 0;
}

.section-soft {
  background: var(--soft);
}

.section-blue {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-800), var(--blue-700) 50%, #0075c9);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  color: var(--white);
  background: rgba(4, 70, 153, .96);
  backdrop-filter: blur(16px);
  transition: box-shadow .25s ease, background .25s ease;
}

.site-header.scrolled {
  background: rgba(3, 55, 125, .98);
  box-shadow: 0 12px 30px rgba(0, 29, 77, .2);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 126px;
  height: 58px;
  overflow: hidden;
}

.brand img,
.footer-brand img {
  width: 118px;
  height: auto;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: .95rem;
  font-weight: 700;
}

.main-nav > a:not(.nav-cta) {
  position: relative;
}

.main-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--lime-500);
  transition: right .2s ease;
}

.main-nav > a:not(.nav-cta):hover::after,
.main-nav > a:not(.nav-cta):focus-visible::after {
  right: 0;
}

.nav-cta {
  padding: 12px 18px;
  color: var(--blue-950);
  background: var(--lime-500);
  border-radius: 999px;
  transition: transform .2s ease, background .2s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  background: var(--lime-400);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 10px;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  margin: 5px 0;
  background: var(--white);
  border-radius: 5px;
  transition: transform .2s ease, opacity .2s ease;
}

.hero {
  position: relative;
  min-height: 680px;
  padding: 110px 0 140px;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  opacity: .18;
  background-image: radial-gradient(circle at 20% 20%, #fff 0 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(to right, #000, transparent 62%);
}

.hero-glow {
  position: absolute;
  z-index: -2;
  border-radius: 50%;
  filter: blur(8px);
  opacity: .25;
}

.hero-glow-one {
  width: 420px;
  height: 420px;
  right: -120px;
  top: 30px;
  background: #48c3ff;
}

.hero-glow-two {
  width: 260px;
  height: 260px;
  left: 35%;
  bottom: 10px;
  background: var(--lime-500);
  opacity: .12;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  align-items: center;
  gap: 72px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--lime-500);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 3px;
  background: currentColor;
  border-radius: 10px;
}

.eyebrow-blue {
  color: var(--blue-700);
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3rem, 7vw, 5.7rem);
  line-height: .96;
  letter-spacing: -.06em;
}

.hero h1 strong {
  display: block;
  color: var(--lime-500);
  font-weight: 900;
}

.hero-content > p {
  max-width: 660px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, .84);
  font-size: 1.15rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  color: var(--blue-950);
  background: var(--lime-500);
  box-shadow: 0 14px 30px rgba(141, 174, 13, .25);
}

.btn-primary:hover {
  background: var(--lime-400);
  box-shadow: 0 16px 34px rgba(141, 174, 13, .34);
}

.btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, .5);
  background: rgba(255, 255, 255, .08);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, .16);
}

.btn-light {
  color: var(--blue-900);
  background: var(--white);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 34px;
  color: var(--lime-400);
  font-size: .94rem;
  font-weight: 800;
}

.hero-card {
  position: relative;
  width: min(100%, 440px);
  min-height: 430px;
  justify-self: end;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 42px;
  background: linear-gradient(160deg, rgba(255,255,255,.2), rgba(255,255,255,.06));
  box-shadow: 0 30px 80px rgba(0, 34, 90, .32);
  backdrop-filter: blur(14px);
  overflow: hidden;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255,255,255,.15), transparent 38%);
}

.router-illustration {
  position: absolute;
  top: 56px;
  left: 50%;
  width: 190px;
  transform: translateX(-50%);
}

.router-antennas {
  display: flex;
  justify-content: space-between;
  padding: 0 18px;
}

.router-antennas i {
  width: 5px;
  height: 76px;
  background: var(--lime-500);
  border-radius: 8px;
}

.router-antennas i:first-child {
  transform: rotate(-8deg);
}

.router-antennas i:last-child {
  transform: rotate(8deg);
}

.router-body {
  position: relative;
  height: 88px;
  margin-top: -12px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 12px;
  padding-bottom: 17px;
  border: 2px solid rgba(255,255,255,.72);
  border-radius: 30px;
  background: rgba(3, 55, 125, .64);
  box-shadow: inset 0 0 24px rgba(255,255,255,.08);
}

.router-body span {
  width: 9px;
  height: 9px;
  background: var(--lime-500);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(202, 226, 54, .8);
}

.signal-orbit {
  position: absolute;
  left: 50%;
  top: 92px;
  border: 2px solid rgba(199, 223, 55, .24);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit-one {
  width: 260px;
  height: 160px;
}

.orbit-two {
  width: 340px;
  height: 220px;
}

.hero-card-label {
  margin: 0;
  color: rgba(255,255,255,.78);
  font-weight: 800;
}

.hero-speed {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  margin: 4px 0 6px;
}

.hero-speed strong {
  color: var(--lime-500);
  font-size: 5rem;
  line-height: .9;
  letter-spacing: -.07em;
}

.hero-speed span {
  padding-bottom: 7px;
  font-size: 1rem;
  font-weight: 900;
}

.hero-card > p:last-of-type {
  margin: 0 0 18px;
  color: rgba(255,255,255,.8);
}

.hero-card > a {
  position: relative;
  z-index: 2;
  color: var(--lime-400);
  font-weight: 900;
}

.hero-wave {
  position: absolute;
  left: -5%;
  right: -5%;
  bottom: -80px;
  height: 180px;
  background: var(--white);
  border-radius: 50% 50% 0 0 / 40% 40% 0 0;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 54px;
  text-align: center;
}

.section-heading.align-left {
  margin-inline: 0;
  text-align: left;
}

.section-heading h2,
.coverage-copy h2,
.game-banner h2 {
  margin: 0;
  color: var(--blue-950);
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -.045em;
}

.section-heading p,
.coverage-copy > p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
}

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

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 500px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 8px 30px rgba(5, 68, 145, .06);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.plan-card:hover {
  transform: translateY(-8px);
  border-color: rgba(6, 80, 177, .25);
  box-shadow: var(--shadow);
}

.plan-card.featured {
  color: var(--white);
  border-color: transparent;
  background: linear-gradient(160deg, var(--blue-800), var(--blue-700));
  box-shadow: 0 24px 54px rgba(3, 68, 153, .24);
}

.popular-label {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 7px 15px;
  color: var(--blue-950);
  background: var(--lime-500);
  border-radius: 999px;
  font-size: .76rem;
  font-weight: 900;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.plan-tag {
  align-self: flex-start;
  padding: 7px 12px;
  color: var(--blue-700);
  background: #e8f1fc;
  border-radius: 999px;
  font-size: .76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.featured .plan-tag {
  color: var(--blue-950);
  background: rgba(199, 223, 55, .95);
}

.plan-card h3 {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin: 26px 0 8px;
  color: var(--blue-900);
  font-size: 1.15rem;
}

.plan-card h3 strong {
  font-size: 3.9rem;
  line-height: .85;
  letter-spacing: -.07em;
}

.featured h3,
.featured h3 strong {
  color: var(--lime-500);
}

.plan-card > p {
  min-height: 76px;
  margin: 12px 0 0;
  color: var(--muted);
}

.featured > p {
  color: rgba(255,255,255,.78);
}

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

.plan-card li {
  position: relative;
  padding-left: 27px;
  font-size: .95rem;
}

.plan-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 900;
}

.featured li::before {
  color: var(--lime-500);
}

.plan-card .btn {
  width: 100%;
  margin-top: auto;
}

.btn-plan {
  color: var(--blue-800);
  border-color: #cbdbea;
  background: #f8fbff;
}

.btn-plan:hover {
  color: var(--white);
  border-color: var(--blue-700);
  background: var(--blue-700);
}

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

.benefit-card {
  padding: 30px;
  border: 1px solid rgba(6, 80, 177, .09);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 12px 36px rgba(5, 67, 140, .06);
}

.icon-box {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  color: var(--blue-700);
  background: linear-gradient(145deg, #e8f3ff, #f6fbff);
  border-radius: 18px;
}

.icon-box svg {
  width: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit-card h3 {
  margin: 0;
  color: var(--blue-950);
  font-size: 1.22rem;
}

.benefit-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.game-banner {
  padding: 72px 0;
  overflow: hidden;
}

.game-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.game-banner h2 {
  color: var(--white);
}

.game-banner p {
  margin: 14px 0 0;
  color: rgba(255,255,255,.8);
}

.coverage-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: start;
  gap: 70px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: fit-content;
  margin-top: 30px;
  padding: 18px 22px;
  color: var(--white);
  background: var(--blue-800);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.contact-card span {
  color: var(--lime-500);
  font-size: .75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.contact-card a {
  font-size: 1.35rem;
  font-weight: 900;
}

.coverage-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-row-full,
.form-submit,
.form-note {
  grid-column: 1 / -1;
}

.form-row label {
  color: var(--blue-950);
  font-size: .9rem;
  font-weight: 800;
}

.form-row input,
.form-row select {
  width: 100%;
  min-height: 52px;
  padding: 0 15px;
  color: var(--ink);
  border: 1px solid #ccd9e7;
  border-radius: 13px;
  background: #fbfdff;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.form-row input:focus,
.form-row select:focus {
  border-color: var(--blue-600);
  box-shadow: 0 0 0 4px rgba(8, 112, 216, .12);
}

.form-row.invalid input,
.form-row.invalid select {
  border-color: #d83e3e;
}

.field-error {
  min-height: 18px;
  color: #c92c2c;
  font-size: .78rem;
}

.form-note {
  margin: -5px 0 0;
  color: var(--muted);
  font-size: .8rem;
  text-align: center;
}

.faq-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 70px;
}

.accordion {
  display: grid;
  gap: 14px;
}

.accordion-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
}

.accordion-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
  color: var(--blue-950);
  border: 0;
  background: transparent;
  font-weight: 900;
  text-align: left;
}

.accordion-button span {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--blue-800);
  background: #eaf3fd;
  border-radius: 50%;
  font-size: 1.25rem;
  transition: transform .2s ease;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}

.accordion-content p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--muted);
}

.accordion-item.open .accordion-button span {
  transform: rotate(45deg);
}

.site-footer {
  padding: 72px 0 24px;
  color: rgba(255,255,255,.78);
  background: var(--blue-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr .7fr 1fr;
  gap: 50px;
  padding-bottom: 46px;
}

.footer-brand img {
  width: 138px;
}

.footer-brand p {
  max-width: 330px;
  margin: 18px 0 0;
}

.footer-grid h3 {
  margin: 0 0 16px;
  color: var(--white);
  font-size: 1rem;
}

.footer-grid > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.footer-grid a:hover {
  color: var(--lime-500);
}

.footer-grid p {
  margin: 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: .86rem;
}

.footer-bottom p {
  margin: 0;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 900;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: #20c76b;
  border: 4px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(0,0,0,.22);
  transition: transform .2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.08) translateY(-2px);
}

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

.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 1200;
  max-width: min(90vw, 460px);
  padding: 14px 20px;
  color: var(--white);
  background: var(--blue-950);
  border-radius: 12px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 20px);
  transition: opacity .25s ease, transform .25s ease;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

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

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

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

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

@media (max-width: 1060px) {
  .plan-grid,
  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid {
    gap: 40px;
  }

  .hero-card {
    min-height: 400px;
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: block;
    position: relative;
    z-index: 1002;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    inset: 0 0 0 25%;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 8px;
    padding: 100px 32px 40px;
    background: var(--blue-950);
    box-shadow: -20px 0 50px rgba(0,0,0,.24);
    transform: translateX(105%);
    transition: transform .28s ease;
  }

  .main-nav.open {
    transform: translateX(0);
  }

  .main-nav a {
    padding: 14px 8px;
    font-size: 1.05rem;
  }

  .nav-cta {
    margin-top: 12px;
    text-align: center;
  }

  .hero {
    padding-top: 80px;
  }

  .hero-grid,
  .coverage-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    justify-self: start;
    width: 100%;
    max-width: 520px;
  }

  .coverage-grid,
  .faq-grid {
    gap: 44px;
  }

  .game-banner-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 76px 0;
  }

  .header-inner {
    min-height: 70px;
  }

  .brand {
    width: 110px;
    height: 52px;
  }

  .brand img {
    width: 105px;
  }

  .main-nav {
    left: 12%;
  }

  .hero {
    min-height: auto;
    padding: 70px 0 130px;
  }

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

  .hero-content > p {
    font-size: 1rem;
  }

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

  .hero-actions .btn {
    width: 100%;
  }

  .hero-points {
    gap: 10px 18px;
  }

  .hero-card {
    min-height: 390px;
    padding: 28px;
    border-radius: 30px;
  }

  .hero-speed strong {
    font-size: 4.3rem;
  }

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

  .plan-card {
    min-height: auto;
  }

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

  .form-row,
  .form-row-full,
  .form-submit,
  .form-note {
    grid-column: 1;
  }

  .footer-grid {
    gap: 34px;
  }

  .footer-bottom {
    flex-direction: column;
  }

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