:root {
  --g: #2cd90e;
  --g-dark: #22b60b;
  --b: #3dc9be;
  --b-dark: #2fa99d;
  --navy: #132380;
  --navy-dark: #0f1a66;
  --purple: #9c05c7;
  --ink: #0b1220;
  --ink-soft: #334155;
  --ink-muted: #6b7688;
  --bg: #f4f7fb;
  --surface: #ffffff;
  --border: #e5e9f0;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
  --shadow: 0 10px 30px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
  --radius: 14px;
  --max-width: 1060px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--ink);
  background: var(--bg);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { width: 92%; max-width: var(--max-width); margin: 0 auto; }
.section { padding: 64px 0; }
.section-title {
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(26px, 3.1vw, 38px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
}
.section-sub {
  color: var(--ink-muted);
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 28px;
  max-width: 60ch;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--navy);
  color: white;
  box-shadow: 0 8px 20px rgba(19,35,128,0.18);
}
.btn-primary:hover { background: var(--navy-dark); }
.btn-secondary {
  background: white;
  color: var(--ink);
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover { border-color: #cbd5e1; background: #fbfdff; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(23,26,36,0.78);
  backdrop-filter: saturate(120%) blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 14px 0;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: white;
}
.logo-img {
  width: 38px; height: 38px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 8px 18px rgba(0,0,0,0.18);
  background: #0b1020;
}
.nav { display: flex; gap: 6px; justify-content: flex-end; flex-wrap: wrap; }
.nav a {
  padding: 10px 12px;
  border-radius: 10px;
  font-weight: 500;
  color: #dbe1ea;
  transition: background .2s ease, color .2s ease;
}
.nav a:hover { background: rgba(255,255,255,0.06); color: white; }
.nav a.active { background: rgba(255,255,255,0.1); color: white; font-weight: 700; }

.hero {
  background: linear-gradient(160deg, #0e1424, #0f1a33, #162049);
  color: white;
  padding: 60px 0 80px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 40px;
  align-items: center;
}
.hero h1 {
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 14px 0 12px;
}
.hero h1 .accent {
  background: linear-gradient(135deg, var(--g), var(--b));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.lead {
  color: #cdd5e0;
  font-size: 17px;
  line-height: 1.6;
  margin: 0 0 20px;
  max-width: 55ch;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 22px;
}
.hero-card-header {
  display: flex; align-items: center; gap: 10px; margin-bottom: 14px;
  font-weight: 600; color: #dbe1ea;
}
.hero-card-header .dot { width: 10px; height: 10px; border-radius: 999px; background: var(--g); box-shadow: 0 0 0 6px rgba(44,217,14,0.14); }
.stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.stat { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 14px; }
.stat .num { font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 26px; letter-spacing: -0.02em; color: white; }
.stat .label { font-size: 13px; color: #a8afc0; margin-top: 4px; }

.plans-snapshot { background: #101522; color: white; }
.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.plan-mini {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 22px;
  display: flex; flex-direction: column;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease;
}
.plan-mini:hover { transform: translateY(-2px); box-shadow: 0 18px 40px rgba(0,0,0,0.25); }
.plan-mini .name { font-weight: 800; font-size: 16px; color: #eef1f6; }
.plan-mini .speed { font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 26px; color: white; margin: 4px 0; }
.plan-mini .fee { color: #b6becd; font-size: 14px; margin-bottom: 10px; }
.plan-mini .note { font-size: 12px; color: #8f98a8; margin-top: auto; }
.plan-mini.featured { border-color: var(--g); box-shadow: 0 18px 44px rgba(44,217,14,0.12); transform: translateY(-4px); }
.badge-row { display: flex; justify-content: center; margin-top: 18px; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--g), var(--b));
  color: #08130a;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.06em;
  box-shadow: 0 8px 18px rgba(61,201,190,0.22);
}

.coverage { background: #0b1020; color: white; }
.coverage-box {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 22px;
}
.coverage-box h3 { margin: 0 0 14px; font-size: 17px; font-weight: 700; }
.areas { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; padding: 0; list-style: none; margin: 0 0 16px; }
.areas li {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 13px;
  color: #d7dde6;
  display: flex; gap: 8px; align-items: center;
}
.areas li::before { content: ""; width: 8px; height: 8px; border-radius: 999px; background: var(--g); flex-shrink: 0; }
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

.contact-strip {
  background: linear-gradient(135deg, #0b2a14, #0b2020);
  color: white;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.contact-strip-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.contact-strip p { margin: 0; font-weight: 700; font-size: 17px; color: #eef1f6; }
.socials { display: flex; gap: 10px; }
.social {
  width: 40px; height: 40px; border-radius: 12px;
  background: rgba(255,255,255,0.08);
  display: grid; place-items: center;
  font-weight: 800; font-size: 18px; color: white;
  border: 1px solid rgba(255,255,255,0.14);
}

.about { background: #0e1424; color: white; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.about-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 22px;
}
.about-card h3 { margin: 0 0 10px; font-size: 17px; font-weight: 700; color: white; }
.about-card p, .about-card li { color: #d7dde6; font-size: 14px; line-height: 1.6; }
.about-card ul { margin: 0; padding: 0; list-style: none; }
.about-card li { padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.1); display: flex; gap: 10px; align-items: flex-start; }
.about-card li:last-child { border-bottom: none; }
.dot { width: 8px; height: 8px; border-radius: 999px; background: var(--g); flex-shrink: 0; margin-top: 7px; }

.subscriptions { background: linear-gradient(180deg, #0b1020, #10162b, #0b1020); color: white; }
.sub-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.sub-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.sub-card:hover { transform: translateY(-2px); box-shadow: 0 18px 40px rgba(0,0,0,0.25); }
.sub-card.highlight { border-color: var(--g); box-shadow: 0 18px 44px rgba(44,217,14,0.12); transform: translateY(-4px); }
.sub-card .plan { font-weight: 800; font-size: 18px; text-transform: uppercase; letter-spacing: 0.08em; color: white; }
.sub-card .speed-line { color: #b6becd; font-size: 13px; margin-bottom: 12px; }
.sub-card .price { font-family: "Space Grotesk", sans-serif; font-weight: 800; font-size: 36px; letter-spacing: -0.03em; margin: 4px 0 2px; color: white; }
.sub-card .install { color: #8f98a8; font-size: 13px; margin-bottom: 12px; }
.sub-card ul { margin: 0 0 16px; padding: 0; list-style: none; }
.sub-card li { display: flex; gap: 10px; align-items: flex-start; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.1); font-size: 14px; color: #d7dde6; }
.sub-card li:last-child { border-bottom: none; }
.check { width: 18px; height: 18px; border-radius: 999px; background: linear-gradient(135deg, var(--g), var(--b)); color: #07150a; display: grid; place-items: center; font-size: 11px; flex-shrink: 0; margin-top: 1px; }
.payment-box {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  margin-top: 22px;
}
.payment-box h3 { margin: 0 0 10px; font-size: 17px; font-weight: 700; color: white; }
.pay-row { display: flex; gap: 18px; flex-wrap: wrap; }
.pay-item { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 14px; min-width: 200px; }
.pay-item .label { font-size: 12px; color: #8f98a8; text-transform: uppercase; letter-spacing: 0.08em; }
.pay-item .value { font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 20px; color: white; margin-top: 4px; }

.contact { background: #0e1424; color: white; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-sm);
}
.contact-card h3 { margin: 0 0 12px; font-size: 17px; font-weight: 700; color: white; }
.contact-row { display: flex; gap: 10px; align-items: flex-start; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.1); font-size: 14px; color: #d7dde6; }
.contact-row:last-child { border-bottom: none; }
.icon-circle { width: 32px; height: 32px; border-radius: 10px; background: linear-gradient(135deg, var(--g), var(--b)); color: #06130a; display: grid; place-items: center; font-weight: 800; flex-shrink: 0; }
.form { display: grid; gap: 10px; }
.form input, .form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  font: inherit;
  color: white;
  outline: none;
}
.form input:focus, .form textarea:focus { border-color: var(--g); box-shadow: 0 0 0 4px rgba(44,217,14,0.12); }
.form textarea { min-height: 140px; resize: vertical; }

.footer { background: #070a14; color: #cdd5e0; padding: 34px 0 22px; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 18px; align-items: start; }
.footer h4 { margin: 0 0 10px; color: white; font-size: 15px; }
.footer p, .footer a { color: #a8afc0; font-size: 13px; line-height: 1.6; }
.footer a:hover { color: white; }
.footer-bottom { margin-top: 18px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,0.08); display: flex; justify-content: space-between; gap: 10px; flex-wrap: wrap; font-size: 12px; color: #8f98a8; }

@media (max-width: 980px) {
  .hero-grid, .about-grid, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .plans-grid, .sub-grid { grid-template-columns: repeat(2, 1fr); }
  .header-inner { grid-template-columns: 1fr auto; }
  .nav { display: none; }
  .areas { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .plans-grid, .sub-grid { grid-template-columns: 1fr; }
  .hero { padding: 36px 0 52px; }
  .areas { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: 1fr 1fr; }
}
