:root {
  --blue: #0754b8;
  --blue-dark: #062f6b;
  --blue-soft: #eaf3ff;
  --orange: #ff6b00;
  --text: #14213d;
  --muted: #64748b;
  --border: #dbe5f2;
  --white: #ffffff;
  --bg: #f7faff;
  --shadow: 0 14px 36px rgba(5, 52, 117, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
.container { width: min(1120px, calc(100% - 32px)); margin-inline: auto; }

.hero {
  color: var(--white);
  background:
    radial-gradient(circle at 80% 30%, rgba(51, 180, 255, .35), transparent 27%),
    linear-gradient(135deg, #031f48, #0754b8 62%, #0d77d8);
  min-height: 620px;
  overflow: hidden;
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
}
.brand { display: inline-flex; align-items: center; font-weight: 800; font-size: 29px; letter-spacing: -1.5px; }
.brand-mark { color: var(--orange); font-style: italic; font-size: 42px; line-height: 1; }
.brand-name { color: currentColor; }
.nav-cta { border: 1px solid rgba(255,255,255,.45); padding: 10px 18px; border-radius: 999px; font-weight: 700; }

.hero-content {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 56px;
  align-items: center;
  padding: 72px 0 95px;
}
.eyebrow { display: inline-block; font-size: 12px; font-weight: 800; letter-spacing: .12em; color: #bfe4ff; }
.eyebrow.dark { color: var(--blue); }
.hero h1, .section-heading h2, .cta-box h2 { margin: 10px 0 14px; line-height: 1.08; }
.hero h1 { font-size: clamp(42px, 7vw, 72px); letter-spacing: -3px; max-width: 760px; }
.hero-copy p { max-width: 650px; font-size: 18px; color: #dcecff; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 0 22px;
  font-weight: 800;
  transition: .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--orange); color: white; box-shadow: 0 10px 25px rgba(255, 107, 0, .3); }
.btn-secondary { border: 1px solid rgba(255,255,255,.5); color: white; }
.btn-outline { border: 1px solid var(--blue); color: var(--blue); }
.btn-white { background: white; color: var(--blue-dark); }

.signal-card {
  width: min(360px, 100%);
  aspect-ratio: 1;
  justify-self: center;
  display: grid;
  place-items: center;
  align-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.08);
  box-shadow: inset 0 0 80px rgba(255,255,255,.08);
}
.signal-card strong { font-size: 28px; margin-top: 14px; }
.signal-card small { color: #cce9ff; }
.wifi { width: 160px; height: 125px; position: relative; }
.wifi span { position: absolute; left: 50%; transform: translateX(-50%); border: 12px solid transparent; border-top-color: white; border-radius: 50%; }
.wifi span:nth-child(1) { width: 155px; height: 155px; top: 0; }
.wifi span:nth-child(2) { width: 110px; height: 110px; top: 28px; }
.wifi span:nth-child(3) { width: 65px; height: 65px; top: 57px; }
.wifi i { position: absolute; width: 18px; height: 18px; border-radius: 50%; background: white; left: 50%; bottom: 0; transform: translateX(-50%); }

.stats {
  margin-top: -46px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: white;
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.stats article { padding: 28px; text-align: center; border-right: 1px solid var(--border); }
.stats article:last-child { border: 0; }
.stats strong { display: block; font-size: 28px; color: var(--blue); }
.stats span { color: var(--muted); font-size: 14px; }

.section { padding: 92px 0; }
.section-heading { max-width: 700px; margin-bottom: 36px; }
.section-heading h2 { font-size: clamp(32px, 5vw, 48px); letter-spacing: -2px; }
.section-heading p { color: var(--muted); }

.package-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  align-items: stretch;
}
.package-card {
  position: relative;
  background: white;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  min-height: 430px;
}
.package-card.featured { border: 2px solid var(--orange); box-shadow: var(--shadow); transform: translateY(-8px); }
.best-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  background: var(--orange);
  color: white;
  font-size: 11px;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 999px;
}
.package-icon {
  width: 50px; height: 50px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: var(--blue-soft);
  color: var(--blue);
  font-weight: 800;
  margin-bottom: 20px;
}
.package-label { color: var(--muted); font-size: 13px; font-weight: 700; }
.package-card h3 { margin: 2px 0 6px; font-size: 27px; }
.price { font-size: 32px; font-weight: 800; color: var(--orange); letter-spacing: -1px; }
.price small { font-size: 14px; margin-right: 3px; }
.package-card ul { padding: 0; margin: 22px 0 26px; list-style: none; color: var(--muted); font-size: 14px; }
.package-card li { margin: 9px 0; padding-left: 18px; position: relative; }
.package-card li::before { content: "✓"; position: absolute; left: 0; color: var(--blue); font-weight: 800; }
.package-card .btn { margin-top: auto; width: 100%; }

.benefits { background: var(--blue-dark); color: white; padding: 86px 0; }
.section-heading.light p { color: #c7ddf8; }
.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.benefit-grid article { border: 1px solid rgba(255,255,255,.14); border-radius: 16px; padding: 24px; background: rgba(255,255,255,.04); }
.benefit-grid span { font-size: 28px; }
.benefit-grid h3 { margin: 12px 0 4px; }
.benefit-grid p { margin: 0; color: #c7ddf8; font-size: 14px; }

.info-card {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 48px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px;
}
.info-card h2 { margin: 8px 0; font-size: 38px; line-height: 1.1; }
.info-card ol { margin: 0; padding: 0; list-style: none; counter-reset: step; }
.info-card li { counter-increment: step; display: grid; grid-template-columns: 42px 1fr; gap: 3px 14px; margin-bottom: 18px; }
.info-card li::before {
  content: counter(step);
  grid-row: 1 / span 2;
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue);
  font-weight: 800;
}
.info-card li strong { display: block; }
.info-card li span { color: var(--muted); font-size: 14px; }

.cta-section { padding: 0 0 90px; }
.cta-box {
  background: linear-gradient(135deg, var(--orange), #ff8a00);
  color: white;
  border-radius: 24px;
  padding: 38px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.cta-box h2 { font-size: 36px; }
.cta-box p { margin: 0; }

footer { background: #031d42; color: white; padding: 45px 0; text-align: center; }
.footer-content p { color: #bdd3ef; margin: 6px 0; }
.footer-content small { color: #8faaca; }
.footer-brand { justify-content: center; }

.floating-wa {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: #16a34a;
  color: white;
  font-weight: 800;
  box-shadow: 0 10px 25px rgba(0,0,0,.2);
  z-index: 10;
}

@media (max-width: 1020px) {
  .package-grid { grid-template-columns: repeat(2, 1fr); }
  .package-card.featured { transform: none; }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .hero { min-height: auto; }
  .hero-content { grid-template-columns: 1fr; padding: 48px 0 90px; }
  .hero h1 { letter-spacing: -2px; }
  .signal-card { width: 230px; margin-top: 12px; }
  .wifi { transform: scale(.7); }
  .stats { grid-template-columns: 1fr; margin-top: -36px; }
  .stats article { border-right: 0; border-bottom: 1px solid var(--border); padding: 18px; }
  .package-grid, .benefit-grid { grid-template-columns: 1fr; }
  .section { padding: 70px 0; }
  .info-card { grid-template-columns: 1fr; padding: 28px 22px; }
  .cta-box { flex-direction: column; align-items: flex-start; padding: 30px 24px; }
  .cta-box .btn { width: 100%; }
}
