:root {
  --primary-color: #6a3093;
  --secondary-color: #4e54c8;
  --accent-color: #a044ff;
  --dark-bg: #0f0f1a;
  --card-bg: rgba(255, 255, 255, 0.05);
  --light-text: rgba(255, 255, 255, 0.85);
}

body {
  font-family: "Segoe UI", system-ui, sans-serif;
  color: white;
  background: black;
  background-attachment: fixed;
  line-height: 1.6;
}

/* Навбар */
.navbar {
  padding: 20px 0;
  background-color: transparent !important;
  transition: all 0.3s;
}

.navbar.scrolled {
  background-color: rgba(15, 15, 26, 0.98) !important;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  padding: 10px 0;
}

.navbar-brand {
  font-weight: 700;
  font-size: 2.2rem;
  text-transform: uppercase;
  background: linear-gradient(to bottom, #ffffff 0%, wheat 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 10px rgba(0, 216, 255, 0.3);
  font-family:'Courier New', Courier, monospace

}

.nav-link {
  color: var(--light-text) !important;
  font-weight: 500;
  margin: 0 10px;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--accent-color),
    var(--secondary-color)
  );
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* Герой-секция */
/* Hero Section Styles */
.hero-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background: black
}

.hero-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 70%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(41, 98, 255, 0.1) 5%,
    rgba(41, 98, 255, 0) 70%
  );
  z-index: 0;
}

.container {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.2;
  color:gainsboro;
  margin-bottom: 1.5rem;
  background: linear-gradient(90deg, wheat 15%,white 85%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 5px 10px rgba(41, 98, 255, 0.1);
}

.hero-subtitle {
  font-size: 1.4rem;
  line-height: 1.6;
  color:skyblue;
  margin-bottom: 1rem;
  max-width: 90%;
}

.hero-small {
  font-size: 1rem;
  color: #6c757d;
  margin-bottom: 2rem;
  position: relative;
  padding-left: 1.5rem;
}

.hero-small::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: #2962ff;
  border-radius: 50%;
}

.btn-primary {
  background: linear-gradient(90deg, #2962ff 0%, #2b3a8c 100%);
  border: none;
  padding: 12px 28px;
  font-weight: 600;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(41, 98, 255, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(41, 98, 255, 0.4);
}

.btn-primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #2b3a8c 0%, #2962ff 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 50px;
}

.btn-primary:hover::after {
  opacity: 1;
}

/* AI Pulse Effect */

.orb-container {
  position: relative;
  width: 500px;
  height: 500px;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.orb {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 2px solid;
  transform-style: preserve-3d;
  transform: translate(-50%, -50%);
  border-color: rgba(0, 168, 255, 0.9);
  box-shadow: 
      0 0 15px rgba(0, 168, 255, 0.7),
      inset 0 0 15px rgba(0, 168, 255, 0.5);
  opacity: 0.9;
  filter: brightness(1.2);
}

.orb-1 {
  width: 400px;
  height: 400px;
  animation: orb-rotate-1 12s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

.orb-2 {
  width: 300px;
  height: 300px;
  animation: orb-rotate-2 14s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

.orb-3 {
  width: 200px;
  height: 200px;
  animation: orb-rotate-3 16s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

.orb-4 {
  width: 100px;
  height: 100px;
  animation: orb-rotate-4 18s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes orb-rotate-1 {
  0%, 100% { transform: translate(-50%, -50%) rotateX(0deg) rotateY(0deg) rotateZ(0deg); opacity: 0.9; }
  25% { transform: translate(-50%, -50%) rotateX(70deg) rotateY(20deg) rotateZ(40deg); opacity: 0.7; }
  50% { transform: translate(-50%, -50%) rotateX(140deg) rotateY(40deg) rotateZ(80deg); opacity: 0.9; }
  75% { transform: translate(-50%, -50%) rotateX(210deg) rotateY(60deg) rotateZ(120deg); opacity: 0.7; }
}

@keyframes orb-rotate-2 {
  0%, 100% { transform: translate(-50%, -50%) rotateX(20deg) rotateY(70deg) rotateZ(0deg); opacity: 0.8; }
  25% { transform: translate(-50%, -50%) rotateX(90deg) rotateY(90deg) rotateZ(40deg); opacity: 0.6; }
  50% { transform: translate(-50%, -50%) rotateX(160deg) rotateY(110deg) rotateZ(80deg); opacity: 0.8; }
  75% { transform: translate(-50%, -50%) rotateX(230deg) rotateY(130deg) rotateZ(120deg); opacity: 0.6; }
}

@keyframes orb-rotate-3 {
  0%, 100% { transform: translate(-50%, -50%) rotateX(40deg) rotateY(20deg) rotateZ(70deg); opacity: 0.7; }
  25% { transform: translate(-50%, -50%) rotateX(110deg) rotateY(40deg) rotateZ(110deg); opacity: 0.5; }
  50% { transform: translate(-50%, -50%) rotateX(180deg) rotateY(60deg) rotateZ(150deg); opacity: 0.7; }
  75% { transform: translate(-50%, -50%) rotateX(250deg) rotateY(80deg) rotateZ(190deg); opacity: 0.5; }
}

@keyframes orb-rotate-4 {
  0%, 100% { transform: translate(-50%, -50%) rotateX(60deg) rotateY(40deg) rotateZ(20deg); opacity: 0.6; }
  25% { transform: translate(-50%, -50%) rotateX(130deg) rotateY(60deg) rotateZ(60deg); opacity: 0.4; }
  50% { transform: translate(-50%, -50%) rotateX(200deg) rotateY(80deg) rotateZ(100deg); opacity: 0.6; }
  75% { transform: translate(-50%, -50%) rotateX(270deg) rotateY(100deg) rotateZ(140deg); opacity: 0.4; }
}



  @keyframes simple-spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
  }




/* Секции */
.section {
  padding: 100px 0;
  position: relative;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 60px;
  text-align: center;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--accent-color),
    var(--secondary-color)
  );
  border-radius: 2px;
}

/* Карточки */
.feature-card {
  background: var(--card-bg);
  border-radius: 15px;
  padding: 30px;
  height: 100%;
  transition: all 0.4s;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--accent-color),
    var(--secondary-color)
  );
  opacity: 0;
  transition: 0.3s;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  background: linear-gradient(
    90deg,
    var(--accent-color),
    var(--secondary-color)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.feature-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.feature-text {
  color: var(--light-text);
  font-size: 1.05rem;
}

.pricing {
  background: var(--bg-darker);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.pricing-card {
  background: rgba(26, 26, 29, 0.7);
  border-radius: 16px;
  padding: 30px;
  transition: all 0.3s;
  border: 1px solid #00ffff;
  position: relative;
}

.pricing-card.popular {
  border: 1px solid var(--primary);
  box-shadow: 0 0 20px rgba(0, 178, 255, 0.2);
}

.pricing-card h3 {
  font-size: 24px;
  margin-bottom: 20px;
}

.price {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.pricing-card ul {
  list-style: none;
  margin-bottom: 30px;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
}

.pricing-card li {
  margin-bottom: 10px;
  color: var(--text-gray);
}
.button-1 {
  background: linear-gradient(90deg, #2962ff 0%, #2b3a8c 100%);
  border: none;
  padding: 12px 28px;
  font-weight: 600;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(41, 98, 255, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.button-1:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 178, 255, 0.3);
}
.button {
  display: inline-block;
  padding: 12px 24px;
  background: #1a1a2e;
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 178, 255, 0.3);
}
.billing-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
  gap: 15px;
}

.billing-label {
  font-weight: 500;
  cursor: pointer;
  opacity: 0.6;
  transition: 0.3s;
}

.billing-label.active {
  opacity: 1;
}

.toggle-switch {
  width: 50px;
  height: 24px;
  background: #555;
  border-radius: 30px;
  position: relative;
  cursor: pointer;
}

.toggle-switch::after {
  content: "";
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 2px;
  left: 2px;
  transition: 0.3s;
}

.toggle-yearly .toggle-switch::after {
  left: 28px;
}

.old {
  text-decoration: line-through;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.9rem;
  display: block;
  margin-bottom: 5px;
}

.price .yearly {
  display: none;
}

/* Список с эмодзи */
.emoji-list {
  list-style: none;
  padding: 0;
}

.emoji-list li {
  margin-bottom: 15px;
  padding-left: 40px;
  position: relative;
  font-size: 1.1rem;
}

.emoji-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  font-size: 1.4rem;
}

/* Шаги */
.steps-container {
  position: relative;
}

.step-line {
  position: absolute;
  left: 50px;
  top: 0;
  height: 100%;
  width: 4px;
  background: linear-gradient(
    to bottom,
    var(--accent-color),
    var(--secondary-color)
  );
  z-index: 0;
}

.step-card {
  background: var(--card-bg);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s;
}

.step-card:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.step-number {
  position: absolute;
  left: -30px;
  top: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--accent-color),
    var(--secondary-color)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: 0 5px 15px rgba(106, 48, 147, 0.4);
}

/* Кейсы */
.case-card {
  background: var(--card-bg);
  border-radius: 15px;
  padding: 30px;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s;
}

.case-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.case-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--accent-color);
}

.case-result {
  font-weight: 700;
  margin-top: 15px;
  color: #4cd964;
}

/* Сравнение */
.comparison-card {
  background: var(--card-bg);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.pros {
  color: #4cd964;
}

.cons {
  color: #ff3b30;
}

/* Форма */
/* Общая стилизация секции формы */
.form-section {
  background: #0b0b0b;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}

.form-wrapper {
  background: #0e0e11;
  border-radius: 24px;
  padding: 50px 30px;
  max-width: 600px;
  width: 100%;
  box-shadow: 0 0 60px rgba(0, 255, 255, 0.05);
  color: white;
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-wrapper h2 {
  font-size: 28px;
  font-weight: 800;
  background: linear-gradient(90deg, #ff4ecd, #00f0ff);
  background-clip: content-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.form-wrapper p {
  font-size: 15px;
  color: wheat;
  margin-bottom: 10px;
}

.form-fields {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-fields input,
.form-fields textarea {
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #121218;
  border-radius: 12px;
  color: #e0e0e0;
  font-size: 16px;
  transition: 0.3s;
  box-shadow: inset 0 0 5px rgba(255, 255, 255, 0.05);
}

.form-fields input::placeholder,
.form-fields textarea::placeholder {
  color: #777;
}

.form-fields input:focus,
.form-fields textarea:focus {
  border-color: #00f0ff;
  box-shadow: 0 0 10px #00f0ff44;
  outline: none;
}

.form-fields button {
  background: linear-gradient(90deg, #ff4ecd, #00f0ff);
  color: white;
  padding: 14px;
  font-weight: 600;
  font-size: 16px;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px #00f0ff33;
}

.form-fields button:hover {
  transform: scale(1.02);
  box-shadow: 0 0 30px #00f0ff66;
}

.privacy-note {
  font-size: 12px;
  color: #666;
  text-align: center;
}

.privacy-note a {
  color: #00f0ff;
  text-decoration: underline;
}



h5{
  font-size: 12.7px;
  padding-top: 5%;
}
.form-control:focus {
  outline: none;
  border-color: #2962ff;
  background: rgba(255, 255, 255, 0.08);
}
/* Футер */
.footer {
  background-color: #0a0a12;
  padding: 70px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  font-size: 1.2rem;
  margin-right: 15px;
  transition: all 0.3s;
}

.social-icons a:hover {
  background: linear-gradient(
    135deg,
    var(--accent-color),
    var(--secondary-color)
  );
  transform: translateY(-5px);
}

.copyright {
  padding-top: 20px;
  margin-top: 50px;
  color: var(--light-text);
  font-size: 0.9rem;
  text-align: center;
  opacity: 0.7;
}

/* Анимации */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Карусель */
.carousel-container {
  background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1a 100%);
  border-radius: 20px;
  padding: 50px;
  margin: 50px 0;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.carousel-item {
  padding: 30px;
  text-align: center;
}

.carousel-icon {
  font-size: 4rem;
  margin-bottom: 20px;
  background: linear-gradient(
    90deg,
    var(--accent-color),
    var(--secondary-color)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* FAQ */
.faq-card {
  background: var(--card-bg);
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: all 0.3s;
}

.faq-card:hover {
  background: rgba(255, 255, 255, 0.08);
}

.faq-question {
  font-weight: 600;
  margin-bottom: 0;
  position: relative;
  padding-right: 40px;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: var(--light-text);
}

.faq-card.active .faq-answer {
  max-height: 500px;
  margin-top: 15px;
}

.faq-toggle {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.5rem;
  transition: transform 0.3s;
}

.faq-card.active .faq-toggle {
  transform: rotate(45deg);
}




@media (max-width: 768px) {
  body,
  .hero-section {
    background: #0a0a12 !important; /* Сохраняем фирменный тёмный фон */  
    font-family: 'Courier New', Courier, monospace;
  }



 
  .navbar-brand {
    font-weight: 700;
    font-size: 2.2rem;
    text-transform: uppercase;
    background: linear-gradient(to bottom, #ffffff 0%, wheat 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 10px rgba(0, 216, 255, 0.3);
    font-family:'Courier New', Courier, monospace
  
  }

  /* Дополнительные улучшения для мобильных */

  
    .hero-title {
      font-family: 'Inter', sans-serif !important;
      font-size: 40px !important;
  
      /* снимаем градиент-текст */
      background: none !important;
      -webkit-background-clip: initial !important;
      background-clip: initial !important;
  
      /* задаём реальный цвет текста */
      -webkit-text-fill-color: white !important;
      color: white !important;
    }
  
  

    .hero-subtitle {
      font-size: 1.4rem;
      line-height: 1.6;
      color:skyblue;
      margin-bottom: 1rem;
      max-width: 90%;
    }

  .btn {
    padding: 14px 28px !important;
    font-size: 1rem !important;
  }

  
/* Мобильная версия — скрыть orb-container (CSS-анимации) */


  .orb-container {
    display: none !important;
  }


/* Десктопная версия — скрыть optimized-orb (JS-анимации) */



  .hero-section::before {
    display: none !important;
  }

}
@media (min-width: 769px) {
  .optimized-animation {
    display: none !important;
  }
}
