    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Segoe UI', sans-serif;
      background: linear-gradient(135deg, #0d0d0d, #1a1a1a);
      color: #00ffd5;
      line-height: 1.6;
      overflow-x: hidden;
      position: relative;
    }

    h1, h2, h3 {
      text-shadow: 0 0 10px #00ffd5;
    }

    header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1.5rem 2rem;
      background: #121212;
      box-shadow: 0 2px 4px rgba(42, 255, 227, 0.1);
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    header h1 {
      font-size: 1.7rem;
      font-weight: bold;
      color: #fff;
    }

    .btn {
      background-color: #00ffd5;
      color: #000;
      padding: 0.7rem 1.4rem;
      border: none;
      border-radius: 8px;
      font-weight: bold;
      text-decoration: none;
      box-shadow: 0 0 14px #00ffd5;
      transition: 0.2s ease-in-out;
      display: inline-block;
    }

    .btn:active {
      box-shadow: 0 0 10px #00ffd5;
      transform: translateY(2px);
    }

    .btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 0 25px #00ffd5;
    }

    .hero {
      padding: 6rem 2rem;
      text-align: center;

    }

    .globe {
      max-width: 800px;
      margin: 0 auto;
      animation: fadeIn 1s ease;
    }
    .globe h2 {
      font-size: 2.5rem;
      color: #00ffd5;
      margin-bottom: 2rem;
      text-shadow: 0 0 20px #00ffd5;
    }

    .globe h2 {
      word-break: break-word;
      hyphens: auto;
    }

    .globe p {
      color: #00977e;
      margin-bottom: 4rem;
    }

    section {
      padding: 3rem 4rem;
      text-align: center;
    }

    .feature-grid, .pricing-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
      margin-top: 2rem;
    }

    .feature, .plan {
      background: #0c0c0c;
      border: 1px solid #00ffd5;
      border-radius: 12px;
      padding: 2rem;
      box-shadow: 0 0 12px #637971;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .feature:hover, .plan:hover {
      transform: translateY(-5px);
      box-shadow: 0 0 20px #00ffd5;
    }

    .plan .price {
      font-size: 2rem;
      margin: 0.5rem 0;
      color: #00ffd5;
    }

    .plan ul {
      list-style: none;
      margin: 2rem 0;
      padding: 4px 0;
      text-align: left;
      color: #ccc;
      font-size: 1rem;
      line-height: 1.5;
    }

    .plan ul li::before {
      content: "✔";
      margin-right: 0.5rem;
      color: #00ff88;
    }

    footer {
      background: #121212;
      padding: 2rem;
      color: #888;
      font-size: 0.9rem;
      text-align: center;
    }

    @keyframes fadeIn {
      0% {opacity: 0; transform: translateY(20px);}
      100% {opacity: 1; transform: translateY(0);}
    }

    /* Кастомный курсор (по умолчанию скрыт на touch-устройствах) */
    .cursor {
      width: 20px;
      height: 20px;
      border: 2px solid #00ffd5;
      border-radius: 50%;
      position: fixed;
      pointer-events: none;
      z-index: 9999;
      transform: translate(-50%, -50%);
      box-shadow: 0 0 12px #00ffd5;
      transition: transform 0.1s ease-out;
    }

    /* Мобильная адаптация */
    @media (max-width: 768px) {
      header {
        flex-direction: column;
        gap: 1rem;
      }

      .globe h2 {
        font-size: 2rem;
      }

      .globe p {
        font-size: 1.1rem;
      }

      .btn {
        padding: 0.6rem 1.2rem;
        font-size: 1rem;
      }

      .cursor {
        display: none !important;
      }

      section {
        padding: 2rem 1rem;
      }

      .feature-grid, .pricing-grid {
        grid-template-columns: 1fr;
      }
    }
    @media (pointer: fine) {
  * {
    cursor: none !important;
  }
}
.faq {
  padding: 3rem 2rem;
  color: #00ffd5;
  text-align: left;
  max-width: 800px;
  margin: 0 auto;
}

.faq h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  text-shadow: 0 0 10px #00ffd5;
}

.faq-item {
  background: #0c0c0c;
  border: 1px solid #00ffd5;
  border-radius: 6px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: background 0.3s ease;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: #00ffd5;
  font-size: 1rem;
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.faq-question .arrow {
  display: inline-block;
  margin-right: 0.6rem;
  transition: transform 0.3s ease;
}

.faq-item.open .arrow {
  transform: rotate(90deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1rem;
  background: #0c0c0c;
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.5;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 1rem 1rem;
}
.pricing-grid {
  display: flex;
  justify-content: center;
}

.plan {
  max-width: 800px;
  width: 100%;
}
    .plan ul {
      padding-left: 1.5rem;
      text-align: left;
    }
    @keyframes fadeFast {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.globe h2 {
  animation: fadeFast 0.4s ease-out 0.1s both;
}

.globe p {
  animation: fadeFast 0.4s ease-out 0.2s both;
}

.globe .btn {
  animation: fadeFast 0.4s ease-out 0.3s both;
}

.faq a {
  color: #00ffd5;
  text-decoration: none;
}

.faq a:hover {
  text-decoration: underline;
}
footer a:hover {
  text-shadow: 0 0 8px #00ffd5;
}