    :root {
      --bg: #0e0e11;
      --card: #16161c;
      --text: #f5f5f7;
      --muted: #a1a1aa;
      --accent: #6ae3ff;
      --accent-2: #8b5cf6;
      --telega: #24A1DE;
      --radius: 20px;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.5;
    }

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

    .mini {
        font-size: 10px;
        text-align: center;
    }

    .middle {
        font-size: 15px;
    }

    section {
      padding: 64px 16px;
    }

    .container {
      max-width: 1100px;
      margin: 0 auto;
    }

    .btn {
      display: inline-block;
      padding: 14px 22px;
      border-radius: 20px;
      background: linear-gradient(135deg, var(--accent), var(--accent-2));
      color: #000;
      font-weight: 600;
      border: none;
      cursor: pointer;
      transition: transform .2s ease, opacity .2s ease;
    }

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

    .card {
      background: var(--card);
      border-radius: var(--radius);
      padding: 24px;
    }

    .tg {
        text-align: center;
        font-family: Arial, Helvetica, sans-serif;
        font-size: 13.333px;
        background: linear-gradient(135deg, var(--accent), var(--telega));
        
    }

    .mtop {
        margin-top: 20px;
    }
    h1 {
      font-size: 32px;
      line-height: 1.2;
      margin-bottom: 16px;
    }

    h2 {
      font-size: 26px;
      margin-bottom: 16px;
    }

    h3 {
      font-size: 18px;
      margin-bottom: 8px;
    }

    p {
      color: var(--muted);
      font-size: 15px;
    }

    /* ====== HERO ====== */
    .hero {
      padding-top: 96px;
      padding-bottom: 96px;
      background:
        radial-gradient(600px 300px at 20% 0%, rgba(106,227,255,0.15), transparent),
        radial-gradient(600px 300px at 80% 20%, rgba(139,92,246,0.15), transparent);
    }

    .hero p {
      margin-bottom: 24px;
      max-width: 520px;
    }

    /* ====== GRID ====== */
    .grid {
      display: grid;
      gap: 16px;
    }

    /* ====== SERVICES ====== */
    .service-card:hover {
      transform: translateY(-4px);
    }

    .service-card {
      transition: transform .2s ease;
    }

    /* ====== PROCESS ====== */
    .step {
      display: flex;
      gap: 12px;
      align-items: flex-start;
    }

    .step span {
      min-width: 28px;
      height: 28px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--accent), var(--accent-2));
      color: #000;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 14px;
    }

    /* ====== PRICING ====== */
    .price {
      font-size: 28px;
      font-weight: 700;
      margin: 12px 0;
    }

    .recommended {
      outline: 2px solid var(--accent);
    }

     .recommended {
      outline: 2px solid var(--accent);
    }
    /* ====== FAQ ====== */
    .faq-item {
      cursor: pointer;
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height .3s ease;
    }

    .faq-item.active .faq-answer {
      max-height: 200px;
      margin-top: 8px;
    }

    /* ====== FORM ====== */
    form {
      display: grid;
      gap: 12px;
    }

    input {
      padding: 14px 16px;
      border-radius: 12px;
      border: none;
      background: #0b0b0e;
      color: var(--text);
    }

    input:focus {
      outline: 2px solid var(--accent);
    }

    .success {
      color: var(--accent);
      font-size: 14px;
      display: none;
    }

    /* ====== FOOTER ====== */
    footer {
      padding: 32px 16px;
      border-top: 1px solid #222;
      text-align: center;
      font-size: 14px;
      color: var(--muted);
    }

    /* ====== DESKTOP ====== */
    @media (min-width: 768px) {
      h1 { font-size: 48px; }
      h2 { font-size: 36px; }

      .grid-2 {
        grid-template-columns: repeat(2, 1fr);
      }

      .grid-3 {
        grid-template-columns: repeat(3, 1fr);
      }
    }