@font-face {
  font-family: "Museo";
  src: url("assets/fonts/Museo500-Regular.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Museo";
  src: url("assets/fonts/Museo900-Regular.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --navy: #002546;
  --navy-deep: #001b34;
  --cyan: #17bcd0;
  --cyan-soft: #85e8f1;
  --green: #8ac30d;
  --green-bright: #a5dc1b;
  --ink: #102b42;
  --muted: #5b7182;
  --paper: #f7fafb;
  --white: #ffffff;
  --line: rgba(0, 37, 70, 0.11);
  --shadow: 0 28px 70px rgba(0, 37, 70, 0.14);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Museo", "Trebuchet MS", sans-serif;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
}

body,
button,
a {
  font-family: "Museo", "Trebuchet MS", sans-serif;
}

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

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

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

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  color: var(--white);
}

.header-inner {
  min-height: 104px;
  display: grid;
  grid-template-columns: 260px 1fr auto;
  align-items: center;
  gap: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.brand img {
  width: 230px;
  height: 76px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 34px;
}

.main-nav a {
  position: relative;
  padding: 12px 0;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  background: var(--green-bright);
  transform: scaleX(0);
  transition: transform 180ms ease;
}

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

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 8px 24px 8px 24px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

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

.button-outline {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
}

.button-outline:hover {
  border-color: var(--cyan);
  background: rgba(23, 188, 208, 0.12);
}

.button-primary {
  color: var(--navy);
  background: linear-gradient(135deg, var(--green-bright), var(--green));
  box-shadow: 0 18px 38px rgba(138, 195, 13, 0.23);
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.06);
}

.button-light {
  color: var(--navy);
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 74% 42%, rgba(23, 188, 208, 0.18), transparent 26%),
    radial-gradient(circle at 12% 86%, rgba(138, 195, 13, 0.13), transparent 24%),
    linear-gradient(135deg, var(--navy-deep), var(--navy) 58%, #00345d);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.13;
  background-image:
    linear-gradient(rgba(255,255,255,0.17) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.17) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to right, transparent, #000 58%, transparent);
}

.signal-orbit {
  position: absolute;
  border: 1px solid rgba(23, 188, 208, 0.34);
  border-radius: 50%;
  pointer-events: none;
}

.signal-orbit::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green-bright);
  box-shadow: 0 0 0 8px rgba(138, 195, 13, 0.13);
}

.signal-orbit-one {
  width: 620px;
  height: 620px;
  top: 80px;
  right: -210px;
  transform: rotate(18deg);
}

.signal-orbit-one::after {
  left: 62px;
  top: 94px;
}

.signal-orbit-two {
  width: 900px;
  height: 350px;
  left: -360px;
  bottom: 50px;
  transform: rotate(-15deg);
}

.signal-orbit-two::after {
  right: 64px;
  bottom: 50px;
}

.hero-inner {
  position: relative;
  z-index: 3;
  min-height: 760px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 70px;
  padding-top: 108px;
  padding-bottom: 70px;
}

.hero-copy,
.hero-visual {
  min-width: 0;
}

.eyebrow,
.section-label {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--cyan-soft);
}

.eyebrow i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-bright);
  box-shadow: 0 0 0 7px rgba(138, 195, 13, 0.12);
}

.hero h1 {
  max-width: 700px;
  margin: 24px 0 22px;
  font-size: clamp(48px, 6.2vw, 82px);
  line-height: 0.96;
  letter-spacing: -0.045em;
  font-weight: 900;
}

.hero h1 em {
  display: block;
  color: var(--cyan);
  font-style: normal;
}

.hero-copy > p {
  max-width: 580px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.7;
}

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

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 48px;
}

.hero-trust span {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-trust b {
  color: var(--green-bright);
  font-size: 10px;
}

.hero-visual {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.speed-disc {
  position: relative;
  width: min(420px, 82vw);
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  background:
    radial-gradient(circle at 42% 38%, rgba(255,255,255,0.09), transparent 30%),
    linear-gradient(145deg, rgba(23, 188, 208, 0.18), rgba(255,255,255,0.025));
  box-shadow:
    inset 0 0 0 26px rgba(255, 255, 255, 0.018),
    0 45px 90px rgba(0, 12, 28, 0.38);
}

.speed-disc::before,
.speed-disc::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 2px solid transparent;
}

.speed-disc::before {
  inset: -16px;
  border-top-color: var(--green-bright);
  border-right-color: rgba(138, 195, 13, 0.24);
  transform: rotate(28deg);
}

.speed-disc::after {
  inset: 24px;
  border-bottom-color: var(--cyan);
  border-left-color: rgba(23, 188, 208, 0.25);
  transform: rotate(-22deg);
}

.speed-kicker,
.speed-caption {
  position: relative;
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.speed-kicker {
  color: var(--green-bright);
  font-size: 12px;
  font-weight: 900;
}

.speed-disc strong {
  position: relative;
  z-index: 2;
  margin: 6px 0 2px;
  font-size: clamp(64px, 8vw, 104px);
  line-height: 0.95;
  letter-spacing: -0.06em;
  font-weight: 900;
}

.speed-caption {
  color: var(--cyan-soft);
  font-size: 11px;
}

.status-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 175px;
  padding: 15px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(0, 27, 52, 0.84);
  box-shadow: 0 24px 48px rgba(0, 10, 25, 0.34);
  backdrop-filter: blur(12px);
}

.status-card-top {
  top: 48px;
  right: -10px;
}

.status-card-bottom {
  left: -12px;
  bottom: 68px;
}

.status-card small,
.status-card strong {
  display: block;
}

.status-card small {
  margin-bottom: 3px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.status-card strong {
  font-size: 14px;
}

.status-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--green-bright);
  box-shadow: 0 0 0 8px rgba(138, 195, 13, 0.12);
}

.status-icon {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border-radius: 10px 4px 10px 4px;
  color: var(--navy);
  background: var(--cyan);
  font-size: 22px;
  font-weight: 900;
}

.hero-ribbon {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 0;
  left: 0;
  height: 52px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--navy);
  background: var(--cyan);
}

.hero-ribbon > div {
  width: max-content;
  min-width: max-content;
  display: flex;
  align-items: center;
  gap: 28px;
  line-height: 1;
  animation: ticker 28s linear infinite;
}

.hero-ribbon span {
  flex: 0 0 auto;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.hero-ribbon i {
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-bright);
}

.section {
  padding: 110px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 54px;
}

.section-label {
  color: var(--cyan);
}

.section-heading h2,
.coverage h2,
.contact h2 {
  margin: 13px 0 0;
  color: var(--navy);
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  font-weight: 900;
}

.section-heading p,
.coverage-copy p,
.contact-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.plans {
  background:
    radial-gradient(circle at 85% 0%, rgba(23, 188, 208, 0.1), transparent 24%),
    var(--paper);
}

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

.plan-card {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 14px 44px 14px 44px;
  background: var(--white);
  box-shadow: 0 20px 55px rgba(0, 37, 70, 0.07);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.plan-card::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -70px;
  width: 180px;
  height: 180px;
  border: 28px solid rgba(23, 188, 208, 0.08);
  border-radius: 50%;
}

.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.plan-card.featured {
  color: var(--white);
  border-color: transparent;
  background: linear-gradient(145deg, var(--navy), #003d69);
  transform: translateY(-12px);
}

.plan-card.featured:hover {
  transform: translateY(-18px);
}

.plan-card.featured::before {
  border-color: rgba(138, 195, 13, 0.2);
}

.plan-index {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.plan-card.featured .plan-index {
  color: var(--green-bright);
}

.plan-card h3 {
  margin: 38px 0 10px;
  color: var(--navy);
  font-size: 34px;
  line-height: 1;
  font-weight: 900;
}

.plan-card.featured h3 {
  color: var(--white);
}

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

.plan-price {
  display: flex;
  align-items: flex-end;
  gap: 7px;
  margin-top: 24px;
  color: var(--navy);
  line-height: 0.85;
}

.plan-price small {
  margin-bottom: 10px;
  color: var(--cyan);
  font-size: 17px;
  font-weight: 900;
}

.plan-price strong {
  font-size: 64px;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.plan-price span {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 7px;
  color: var(--green);
  font-size: 20px;
  font-weight: 900;
}

.plan-price b {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan-card.featured .plan-price {
  color: var(--white);
}

.plan-card.featured .plan-price small,
.plan-card.featured .plan-price span {
  color: var(--green-bright);
}

.plan-card.featured .plan-price b {
  color: rgba(255,255,255,0.58);
}

.plan-card.featured > p {
  color: rgba(255,255,255,0.66);
}

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

.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}

.plan-features li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(138,195,13,0.1);
}

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

.plan-card:not(.featured) .button {
  color: var(--navy);
  border-color: var(--line);
  background: var(--paper);
}

.plans-note {
  max-width: 820px;
  margin: 34px auto 0;
  color: #80919d;
  font-size: 12px;
  line-height: 1.6;
  text-align: center;
}

.coverage {
  padding-top: 20px;
}

.coverage-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 50px;
  min-height: 490px;
  padding: 72px;
  border-radius: 18px 80px 18px 80px;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 20%, rgba(23, 188, 208, 0.22), transparent 27%),
    linear-gradient(135deg, var(--navy-deep), var(--navy));
  box-shadow: var(--shadow);
}

.coverage-card::after {
  content: "";
  position: absolute;
  right: -110px;
  bottom: -210px;
  width: 460px;
  height: 460px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 50px rgba(23,188,208,0.04), 0 0 0 100px rgba(23,188,208,0.025);
}

.section-label-light {
  color: var(--green-bright);
}

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

.coverage-copy p {
  max-width: 610px;
  margin: 22px 0 30px;
  color: rgba(255,255,255,0.68);
}

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

.coverage-place {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.map-pin {
  position: relative;
  width: 112px;
  height: 112px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50% 50% 50% 14%;
  background: linear-gradient(145deg, var(--cyan), #0a93b0);
  transform: rotate(-45deg);
  box-shadow: 0 24px 55px rgba(0,0,0,0.28);
}

.map-pin i {
  width: 32px;
  height: 32px;
  border: 8px solid var(--navy);
  border-radius: 50%;
  background: var(--green-bright);
}

.coverage-place small {
  color: var(--cyan-soft);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.coverage-place strong {
  margin-top: 8px;
  font-size: 36px;
  font-weight: 900;
}

.coverage-place > span:last-child {
  margin-top: 4px;
  color: rgba(255,255,255,0.55);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: 80px;
}

.contact-copy p {
  max-width: 560px;
  margin-top: 20px;
}

.contact-phone {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 132px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 16px 46px 16px 46px;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform 180ms ease;
}

.contact-phone:hover {
  transform: translateY(-5px);
}

.phone-icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 12px 24px 12px 24px;
  color: var(--navy);
  background: var(--green-bright);
}

.phone-icon svg {
  width: 27px;
  fill: currentColor;
}

.contact-phone small,
.contact-phone strong {
  display: block;
}

.contact-phone small {
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-phone strong {
  color: var(--navy);
  font-size: clamp(19px, 2.5vw, 29px);
  font-weight: 900;
}

.phone-arrow {
  color: var(--cyan);
  font-size: 28px;
}

.site-footer {
  color: rgba(255,255,255,0.62);
  background: var(--navy-deep);
}

.footer-inner {
  min-height: 180px;
  display: grid;
  grid-template-columns: 250px 1fr auto;
  align-items: center;
  gap: 42px;
}

.footer-inner img {
  width: 210px;
  height: 80px;
  object-fit: contain;
}

.footer-inner p {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  font-size: 13px;
}

.footer-inner p i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green-bright);
}

.footer-inner small {
  text-align: right;
  font-size: 11px;
}

.floating-whatsapp {
  position: fixed;
  z-index: 30;
  right: 24px;
  bottom: 24px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px 8px 18px 8px;
  color: var(--navy);
  background: var(--green-bright);
  box-shadow: 0 20px 42px rgba(0,37,70,0.25);
  transition: transform 180ms ease;
}

.floating-whatsapp:hover {
  transform: translateY(-4px) rotate(-3deg);
}

.floating-whatsapp svg {
  width: 29px;
  fill: currentColor;
}

.reveal {
  animation: reveal 700ms both cubic-bezier(.2,.7,.2,1);
}

.reveal-delay {
  animation-delay: 140ms;
}

@keyframes reveal {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

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

  .header-inner > .button {
    display: none;
  }

  .main-nav {
    justify-content: flex-end;
  }

  .hero-inner,
  .coverage-card,
  .contact-grid,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    padding-top: 155px;
    gap: 20px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy > p {
    margin-inline: auto;
  }

  .eyebrow,
  .hero-actions,
  .hero-trust {
    justify-content: center;
  }

  .hero-visual {
    min-height: 470px;
  }

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

  .plan-card,
  .plan-card.featured {
    transform: none;
  }

  .plan-card.featured:hover {
    transform: translateY(-8px);
  }

  .section-heading,
  .contact-grid {
    gap: 28px;
  }

  .coverage-card {
    padding: 56px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 40px 0;
    text-align: center;
  }

  .footer-inner img {
    margin-inline: auto;
  }

  .footer-inner p {
    justify-content: center;
  }

  .footer-inner small {
    text-align: center;
  }
}

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

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

  .brand img {
    width: 190px;
    height: 66px;
  }

  .main-nav {
    display: none;
  }

  .hero {
    min-height: 1050px;
  }

  .hero-inner {
    min-height: 990px;
    padding-top: 128px;
  }

  .hero h1 {
    font-size: clamp(44px, 13vw, 64px);
    overflow-wrap: anywhere;
  }

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

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

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

  .hero-trust {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .hero-visual {
    min-height: 390px;
  }

  .speed-disc {
    width: 300px;
  }

  .status-card {
    min-width: 150px;
    padding: 12px 14px;
  }

  .status-card-top {
    top: 18px;
    right: 0;
  }

  .status-card-bottom {
    left: 0;
    bottom: 28px;
  }

  .section {
    padding: 78px 0;
  }

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

  .section-heading h2,
  .coverage h2,
  .contact h2 {
    font-size: 38px;
  }

  .plan-card {
    min-height: 440px;
    padding: 28px;
  }

  .coverage {
    padding-top: 0;
  }

  .coverage-card {
    padding: 40px 26px;
    border-radius: 14px 48px 14px 48px;
  }

  .coverage-copy {
    text-align: center;
  }

  .coverage-copy .button {
    width: 100%;
  }

  .contact-phone {
    grid-template-columns: auto 1fr;
    padding: 22px;
  }

  .phone-arrow {
    display: none;
  }

  .footer-inner p {
    flex-direction: column;
    gap: 8px;
  }

  .footer-inner p i {
    display: none;
  }

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
