* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Inter, Arial, sans-serif;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  color: #ffffff;
  background: #02050d;
  overflow-x: hidden;
}

.background-grid {
  position: fixed;
  inset: 0;
  background:
    linear-gradient(rgba(16, 90, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 90, 255, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: -3;
}

.blue-glow {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: #005eff;
  filter: blur(160px);
  opacity: 0.28;
  z-index: -2;
}

.glow-one {
  top: -110px;
  left: -90px;
}

.glow-two {
  bottom: 120px;
  right: -100px;
  background: #6737ff;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 82px;
  padding: 0 42px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(2, 5, 13, 0.78);
  border-bottom: 1px solid rgba(59, 130, 246, 0.2);
  backdrop-filter: blur(18px);
}

.brand {
  text-decoration: none;
  font-size: 36px;
  letter-spacing: 5px;
  font-weight: 900;
  color: transparent;
  background: linear-gradient(180deg, #55d1ff, #005dff 55%, #003cbd);
  -webkit-background-clip: text;
  text-shadow: 0 0 28px rgba(0, 123, 255, 0.65);
}

nav {
  display: flex;
  gap: 26px;
  align-items: center;
}

nav a {
  text-decoration: none;
  color: #d7e4ff;
  font-size: 16px;
  transition: 0.2s;
}

nav a:hover {
  color: #2388ff;
  text-shadow: 0 0 14px #006eff;
}

.section {
  width: min(1220px, 92%);
  margin: auto;
  padding: 70px 0;
  scroll-margin-top: 90px;
}

.hero {
  text-align: center;
  padding-top: 62px;
}

.pill {
  display: inline-block;
  padding: 12px 44px;
  border: 1px solid rgba(37, 99, 235, 0.55);
  border-radius: 18px;
  color: #2d8fff;
  background: rgba(4, 14, 35, 0.8);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 4px;
  margin-bottom: 26px;
}

.hero h1 {
  font-size: clamp(54px, 8vw, 96px);
  letter-spacing: 2px;
  line-height: 0.95;
  color: transparent;
  background: linear-gradient(180deg, #ffffff, #d5d9e5 45%, #7d859b);
  -webkit-background-clip: text;
  text-transform: uppercase;
}

.hero h1 span {
  background: linear-gradient(180deg, #38d7ff, #006aff 60%, #0336bf);
  -webkit-background-clip: text;
  color: transparent;
}

.tagline {
  margin: 22px 0 28px;
  font-size: 26px;
  color: #aebbd2;
}

.contact-strip {
  margin: 0 auto;
  max-width: 1010px;
  min-height: 112px;
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1.15fr;
  align-items: center;
  gap: 24px;
  padding: 20px 28px;
  border-radius: 18px;
  border: 1px solid rgba(83, 127, 221, 0.28);
  background: rgba(6, 10, 23, 0.86);
  box-shadow: 0 0 60px rgba(0, 89, 255, 0.12);
}

.contact-item, .order-btn {
  display: flex;
  align-items: center;
  gap: 18px;
  text-align: left;
}

.divider {
  width: 1px;
  height: 64px;
  background: rgba(154, 178, 225, 0.28);
}

.icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 28px;
  box-shadow: 0 0 26px rgba(0, 102, 255, 0.4);
}

.telegram {
  background: linear-gradient(135deg, #19c7ff, #0064ff);
}

.discord {
  background: linear-gradient(135deg, #7458ff, #3a22dd);
}

small {
  display: block;
  color: #d8e3f8;
  font-weight: 800;
  letter-spacing: 0.8px;
  margin-bottom: 7px;
}

strong {
  color: #1688ff;
  font-size: 25px;
}

.order-btn {
  text-decoration: none;
  padding: 18px 24px;
  border-radius: 12px;
  color: white;
  background: linear-gradient(135deg, #238eff, #082bd5);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.14), 0 0 30px rgba(0, 95, 255, 0.35);
}

.order-btn span {
  font-size: 30px;
}

.order-btn b {
  font-size: 18px;
}

.order-btn small {
  margin: 4px 0 0;
  font-weight: 500;
}

.section-title {
  text-align: center;
  margin-bottom: 28px;
}

.section-title h2, .terms-box h2 {
  font-size: 36px;
  letter-spacing: 2px;
  color: #77a9ff;
}

.section-title p, .terms-box p {
  color: #b8c7e4;
  margin-top: 8px;
}

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

.feature-card, .contact-card, .pricing-box, .terms-box {
  border: 1px solid rgba(37, 99, 235, 0.45);
  background: linear-gradient(180deg, rgba(8, 14, 32, 0.88), rgba(3, 8, 19, 0.88));
  border-radius: 18px;
  box-shadow: 0 0 45px rgba(0, 102, 255, 0.13);
}

.feature-card {
  padding: 28px;
}

.feature-card span {
  font-size: 42px;
}

.feature-card h3 {
  color: #ffffff;
  margin: 18px 0 10px;
}

.feature-card p {
  color: #b9c7e4;
  line-height: 1.55;
}

.pricing {
  padding-top: 30px;
}

.pricing-box {
  padding: 18px;
}

.pricing-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 18px 16px;
}

.pricing-head h2 {
  color: #8da3ff;
  font-size: 24px;
  letter-spacing: 1px;
}

.pricing-head span {
  padding: 10px 18px;
  border: 1px solid rgba(0, 102, 255, 0.6);
  border-radius: 12px;
  color: #43aaff;
  background: rgba(0, 55, 160, 0.18);
  font-weight: 900;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 54px;
  padding: 0 30px;
  border: 1px solid rgba(75, 104, 171, 0.32);
  background: rgba(5, 9, 21, 0.72);
  border-radius: 10px;
  font-size: 22px;
}

.price-row b {
  color: #ffffff;
}

.price-row span {
  color: #248cff;
  font-weight: 900;
}

.price-row s {
  color: #ff5959;
  margin-right: 10px;
  text-decoration-thickness: 3px;
}

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

.contact-card {
  text-decoration: none;
  color: white;
  padding: 26px;
  text-align: center;
  transition: 0.2s;
}

.contact-card:hover {
  transform: translateY(-4px);
  border-color: #1688ff;
}

.contact-card span {
  display: block;
  font-size: 38px;
  margin-bottom: 12px;
}

.contact-card b {
  display: block;
  color: #1688ff;
  font-size: 18px;
  word-break: break-word;
}

.terms-box {
  padding: 34px;
}

.terms-box ul {
  margin-top: 22px;
  padding-left: 22px;
  color: #d5def2;
  line-height: 2;
}

footer {
  border-top: 1px solid rgba(37, 99, 235, 0.2);
  text-align: center;
  color: #8796b3;
  padding: 28px;
}

@media (max-width: 950px) {
  .navbar {
    height: auto;
    padding: 18px;
    flex-direction: column;
    gap: 16px;
  }

  nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
  }

  .contact-strip {
    grid-template-columns: 1fr;
  }

  .divider {
    display: none;
  }

  .feature-grid, .contact-grid, .price-grid {
    grid-template-columns: 1fr;
  }

  .pricing-head {
    flex-direction: column;
    gap: 14px;
  }

  .brand {
    font-size: 30px;
  }
}
