:root {
  --red: #ef2b3f;
  --green: #65bd4a;
  --blue: #2f80ed;
  --dark: #07111f;
  --dark2: #0d1b2f;
  --text: #132033;
  --muted: #667085;
  --line: rgba(19,32,51,.10);
  --white: #ffffff;
  --soft: #f5f8fc;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Segoe UI, Arial, sans-serif;
  color: var(--text);
  background: var(--soft);
}

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

.container {
  width: min(1180px, 92%);
  margin: auto;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 17, 31, .88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.nav-wrap {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand,
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  font-weight: 900;
  font-size: 22px;
}

.brand img,
.footer-brand img {
  height: 46px;
  width: auto;
  display: block;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #e7eefb;
  font-size: 15px;
}

.nav-menu a {
  transition: .2s ease;
}

.nav-menu a:hover {
  color: var(--green);
}

.nav-btn {
  background: linear-gradient(135deg, var(--red), #ff6b6b);
  padding: 11px 17px;
  border-radius: 999px;
  color: white !important;
  font-weight: 800;
}

.menu-btn {
  display: none;
  background: transparent;
  border: 0;
  color: white;
  font-size: 28px;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 12%, rgba(239,43,63,.24), transparent 32%),
    radial-gradient(circle at 85% 8%, rgba(101,189,74,.22), transparent 30%),
    linear-gradient(135deg, #06101f, #0d1b2f 55%, #08111f);
  color: white;
  padding: 100px 0 82px;
}

.hero-glow {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .55;
}

.hero-glow-1 {
  background: var(--red);
  left: -120px;
  top: 120px;
}

.hero-glow-2 {
  background: var(--green);
  right: -140px;
  top: 40px;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 58px;
  align-items: center;
}

.label {
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .14em;
}

h1 {
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: -.04em;
  margin: 14px 0 22px;
}

h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.12;
  letter-spacing: -.03em;
  margin: 10px 0 14px;
}

.hero-desc {
  max-width: 720px;
  color: #b9c7dc;
  font-size: 20px;
  line-height: 1.75;
}

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

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 14px 22px;
  border-radius: 15px;
  font-weight: 900;
  transition: .2s ease;
}

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

.primary {
  background: linear-gradient(135deg, var(--red), #ff6b6b);
  color: white;
  box-shadow: 0 18px 45px rgba(239,43,63,.26);
}

.secondary {
  background: rgba(255,255,255,.08);
  color: white;
  border: 1px solid rgba(255,255,255,.14);
}

.dark-text {
  color: var(--text);
  border: 1px solid var(--line);
  background: white;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-stats div {
  min-width: 130px;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.10);
}

.hero-stats strong {
  display: block;
  font-size: 30px;
}

.hero-stats span {
  color: #b9c7dc;
  font-size: 14px;
}

.infra-panel {
  padding: 24px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,.13), rgba(255,255,255,.05));
  border: 1px solid rgba(255,255,255,.13);
  box-shadow: 0 35px 95px rgba(0,0,0,.38);
}

.panel-header {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #b9c7dc;
  margin-bottom: 18px;
}

.panel-header span {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.35);
}

.panel-header p {
  margin-left: auto;
  font-size: 13px;
}

.cloud-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 19px;
  margin: 14px 0;
  border-radius: 20px;
  background: rgba(0,0,0,.23);
  border: 1px solid rgba(255,255,255,.10);
}

.cloud-card b,
.cloud-card small {
  display: block;
}

.cloud-card small {
  color: #b9c7dc;
  margin-top: 5px;
}

.cloud-card span {
  color: var(--green);
  font-weight: 900;
  font-size: 13px;
}

.cloud-card.active {
  border-color: rgba(101,189,74,.55);
}

.utilization {
  margin-top: 18px;
  padding: 20px;
  border-radius: 22px;
  background: rgba(0,0,0,.20);
}

.util-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.util-title p {
  color: #b9c7dc;
  margin: 0;
}

.bar {
  height: 11px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255,255,255,.10);
  margin: 13px 0;
}

.bar i {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), var(--red));
}

.logo-strip {
  background: white;
  border-bottom: 1px solid var(--line);
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  padding: 24px 0;
  text-align: center;
  color: #475467;
  font-weight: 800;
}

.section {
  padding: 90px 0;
}

.section-head {
  max-width: 780px;
  margin: auto;
  text-align: center;
}

.section-head p:not(.label) {
  color: var(--muted);
  line-height: 1.75;
  font-size: 17px;
}

.service-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 42px;
}

.service-card,
.price-card {
  position: relative;
  background: white;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 32px;
  box-shadow: 0 20px 55px rgba(16,24,40,.08);
}

.service-card.featured,
.price-card.popular {
  border: 2px solid var(--green);
  transform: translateY(-10px);
}

.icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: white;
  font-weight: 900;
  margin-bottom: 22px;
}

.icon.red {
  background: var(--red);
}

.icon.green {
  background: var(--green);
}

.icon.blue {
  background: var(--blue);
}

.service-card h3,
.price-card h3 {
  font-size: 25px;
  margin: 0 0 12px;
}

.service-card p,
.service-card li,
.price-card span {
  color: var(--muted);
  line-height: 1.7;
}

.service-card ul {
  padding-left: 20px;
}

.dark-section {
  background: var(--dark);
  color: white;
}

.network-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 50px;
  align-items: center;
}

.network-grid p {
  color: #b9c7dc;
  line-height: 1.8;
  font-size: 17px;
}

.network-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.network-list div,
.why-grid div {
  padding: 25px;
  border-radius: 24px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
}

.network-list b,
.network-list span,
.why-grid b,
.why-grid span {
  display: block;
}

.network-list span,
.why-grid span {
  color: #b9c7dc;
  line-height: 1.65;
  margin-top: 8px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 38px;
}

.why-grid div {
  background: white;
  border-color: var(--line);
}

.why-grid span {
  color: var(--muted);
}

.price-card {
  text-align: center;
}

.price {
  font-size: 42px;
  font-weight: 900;
  margin: 8px 0;
  color: var(--red);
}

.price-card span {
  min-height: 80px;
  display: block;
}

.price-card .btn {
  margin-top: 20px;
}

.badge {
  position: absolute;
  top: 20px;
  right: 22px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #ecfff5;
  color: #15925d;
  font-size: 12px;
  font-weight: 900;
}

.faq-list {
  max-width: 850px;
  margin: 38px auto 0;
  display: grid;
  gap: 14px;
}

details {
  background: white;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 20px 22px;
  box-shadow: 0 14px 38px rgba(16,24,40,.06);
}

summary {
  cursor: pointer;
  font-weight: 900;
  font-size: 17px;
}

details p {
  color: var(--muted);
  line-height: 1.7;
}

.cta-section {
  padding: 20px 0 90px;
}

.cta-box {
  text-align: center;
  color: white;
  padding: 62px 24px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 10% 20%, rgba(239,43,63,.35), transparent 30%),
    radial-gradient(circle at 90% 10%, rgba(101,189,74,.30), transparent 30%),
    linear-gradient(135deg, #07111f, #10233d);
}

.cta-box img {
  height: 76px;
  width: auto;
  margin-bottom: 10px;
}

.cta-box p {
  color: #b9c7dc;
  max-width: 720px;
  margin: 0 auto 24px;
  line-height: 1.7;
  font-size: 18px;
}

.footer {
  background: #050b14;
  color: #b9c7dc;
  padding: 46px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 28px;
}

.footer-grid a {
  display: block;
  margin-top: 12px;
}

.footer-grid p {
  line-height: 1.7;
}

.copyright {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: 14px;
}

.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #25d366;
  color: white;
  font-weight: 900;
  box-shadow: 0 18px 42px rgba(0,0,0,.25);
  z-index: 40;
}

@media (max-width: 900px) {
  .menu-btn {
    display: block;
  }

  .nav-menu {
    position: absolute;
    left: 4%;
    right: 4%;
    top: 86px;
    background: #07111f;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 22px;
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    display: none;
  }

  .nav-menu.open {
    display: flex;
  }

  .hero-grid,
  .network-grid,
  .service-grid,
  .pricing-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .strip-grid,
  .why-grid,
  .network-list {
    grid-template-columns: 1fr;
  }

  .service-card.featured,
  .price-card.popular {
    transform: none;
  }

  .hero {
    padding-top: 74px;
  }
}
