    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', sans-serif;
      background: #070707;
      color: white;
      overflow-x: hidden;
    }

    html {
      scroll-behavior: smooth;
    }

    .background-glow {
      position: fixed;
      width: 700px;
      height: 700px;
      background: radial-gradient(circle, rgba(121,40,202,0.25) 0%, rgba(0,0,0,0) 70%);
      top: -250px;
      right: -200px;
      z-index: -1;
      filter: blur(40px);
    }

    nav {
      width: 100%;
      padding: 22px 8%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: sticky;
      top: 0;
      backdrop-filter: blur(10px);
      background: rgba(0,0,0,0.45);
      border-bottom: 1px solid rgba(255,255,255,0.05);
      z-index: 999;
    }

    .logo {
      font-size: 1.5rem;
      font-weight: 800;
      background: linear-gradient(90deg, #8b5cf6, #ec4899);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .nav-links {
      display: flex;
      gap: 24px;
    }

    .nav-links a {
      color: #d1d5db;
      text-decoration: none;
    }

    .btn {
      background: linear-gradient(135deg, #8b5cf6, #ec4899);
      padding: 12px 22px;
      border-radius: 12px;
      color: white;
      text-decoration: none;
      font-weight: 700;
      border: none;
      cursor: pointer;
      box-shadow: 0 10px 30px rgba(139,92,246,0.35);
    }

    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 8%;
      gap: 50px;
    }

    .hero-text {
      max-width: 620px;
    }

    .hero-text h1 {
      font-size: 4rem;
      line-height: 1.05;
      margin-bottom: 20px;
      font-weight: 800;
    }

    .hero-text span {
      background: linear-gradient(90deg, #8b5cf6, #ec4899);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .hero-text p {
      color: #b5b5b5;
      font-size: 1.1rem;
      line-height: 1.7;
      margin-bottom: 35px;
    }

    .hero-buttons {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }

    .secondary-btn {
      background: transparent;
      border: 1px solid rgba(255,255,255,0.12);
      box-shadow: none;
    }

    .hero-card {
      width: 380px;
      background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 24px;
      padding: 28px;
      backdrop-filter: blur(12px);
    }

    .rank-box {
      background: rgba(255,255,255,0.05);
      border-radius: 18px;
      padding: 16px;
      margin-bottom: 14px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .price {
      color: #8b5cf6;
      font-weight: 700;
      font-size: 1.1rem;
    }

    section {
      padding: 110px 8%;
    }

    .section-title {
      text-align: center;
      margin-bottom: 60px;
    }

    .section-title h2 {
      font-size: 2.6rem;
      margin-bottom: 12px;
    }

    .services-grid,
    .stats,
    .testimonials {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 24px;
    }

    .service-card,
    .stat-box,
    .testimonial-card {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.05);
      padding: 28px;
      border-radius: 24px;
    }

    .service-card h3,
    .stat-box h3 {
      margin: 18px 0 12px;
    }

    .stat-box {
      text-align: center;
    }

    .stat-box h3 {
      color: #8b5cf6;
      font-size: 2.6rem;
    }

    .faq {
      max-width: 900px;
      margin: auto;
    }

    .faq-item {
      background: rgba(255,255,255,0.04);
      margin-bottom: 16px;
      border-radius: 16px;
      overflow: hidden;
    }

    .faq-question {
      width: 100%;
      background: transparent;
      border: none;
      color: white;
      padding: 22px;
      text-align: left;
      font-size: 1rem;
      font-weight: 700;
      cursor: pointer;
    }

    .faq-answer {
      display: none;
      padding: 0 22px 22px;
      color: #bdbdbd;
    }

    .cta {
      text-align: center;
      background: linear-gradient(135deg, rgba(139,92,246,0.15), rgba(236,72,153,0.12));
      border-radius: 30px;
      padding: 70px 30px;
    }

    footer {
      padding: 40px 8%;
      text-align: center;
      color: #9ca3af;
    }

    @media(max-width: 900px) {
      .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 100px;
      }

      .hero-buttons {
        justify-content: center;
      }

      .hero-text h1 {
        font-size: 2.8rem;
      }

      .hero-card {
        width: 100%;
      }
    }


    .legal-warning {
  width: 100%;
  display: flex;
  gap: 18px;
  align-items: flex-start;

  padding: 28px 32px;

  border-radius: 22px;

  background:
    linear-gradient(
      135deg,
      rgba(255, 140, 0, 0.12),
      rgba(255, 60, 0, 0.08)
    );

  border: 1px solid rgba(255, 145, 0, 0.25);

  box-shadow:
    0 10px 40px rgba(0,0,0,0.35),
    inset 0 0 30px rgba(255,140,0,0.03);

  backdrop-filter: blur(12px);

  margin-top: 40px;
}

.legal-icon {
  font-size: 1.4rem;
  color: #ffb347;

  margin-top: 2px;
}

.legal-content h3 {
  font-size: 1.7rem;
  font-weight: 800;

  color: #ffe2b8;

  margin-bottom: 14px;
}

.legal-content p {
  color: #f1d2bc;

  line-height: 1.8;

  font-size: 1rem;

  margin-bottom: 18px;
}

.legal-content strong {
  color: white;
}

.legal-content span {
  color: #e2b79b;

  font-size: 0.95rem;

  font-weight: 600;
}

@media(max-width: 768px) {
  .legal-warning {
    padding: 24px;
    flex-direction: column;
  }

  .legal-content h3 {
    font-size: 1.4rem;
  }
}

.payments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.payment-card {
  background: rgba(255,255,255,0.04);

  border: 1px solid rgba(255,255,255,0.06);

  border-radius: 24px;

  padding: 30px;

  text-align: center;

  transition: 0.3s ease;

  backdrop-filter: blur(10px);

  overflow: hidden;
}

.payment-card:hover {
  transform: translateY(-8px);

  border-color: rgba(139,92,246,0.4);

  box-shadow: 0 15px 40px rgba(0,0,0,0.35);
}

.payment-image {
  width: 100%;
  height: 120px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 24px;

  border-radius: 18px;

  background: rgba(255,255,255,0.03);

  border: 1px solid rgba(255,255,255,0.05);
}

.payment-image img {
  width: 90px;

  object-fit: contain;

  filter:
    grayscale(100%)
    brightness(1.4)
    contrast(1.1);

  opacity: 0.9;

  transition: 0.3s ease;
}

.payment-card:hover .payment-image img {
  filter:
    grayscale(0%)
    brightness(1);

  opacity: 1;

  transform: scale(1.05);
}

.payment-card h3 {
  font-size: 1.3rem;

  margin-bottom: 12px;

  color: white;
}

.payment-card p {
  color: #bdbdbd;

  line-height: 1.7;

  font-size: 0.95rem;
}


    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 8%;
      gap: 50px;
    }

    .hero-character {
      position: absolute;
      right: -50%;
      bottom: -25;
      height: 150%;
      max-height: 1650px;
      object-fit: contain;
      opacity: 0.22;
      pointer-events: none;
      filter: drop-shadow(0 0 40px rgba(139,92,246,0.35));
      z-index: 0;
    }

    .hero-text {
      position: relative;
      z-index: 2;
      max-width: 620px;
    }

    .hero-text h1 {
      font-size: 4rem;
      line-height: 1.05;
      margin-bottom: 20px;
      font-weight: 800;
    }

    .hero-text span {
      background: linear-gradient(90deg, #8b5cf6, #ec4899);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .hero-text p {
      color: #b5b5b5;
      font-size: 1.1rem;
      line-height: 1.7;
      margin-bottom: 35px;
    }

    .hero-buttons {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }

    .secondary-btn {
      background: transparent;
      border: 1px solid rgba(255,255,255,0.12);
      box-shadow: none;
    }

    .hero-card {
      position: relative;
      z-index: 2;
      width: 380px;
    }
    .name_trust {
      background: linear-gradient(
      90deg,
    #8b5cf6,
    #ec4899
      );
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      font-weight: 700;
      font-size: 135%;
    }
    .text_description {
      color: #bebebe;
      font-size: 125%;
    }

    .text_description_services {
      color: #bebebe;
      font-size: 85%;
    }