   :root {
      --primary: #7B61FF;
      --primary-dark: #5D40FF;
      --primary-light: #9D8AFF;
      --secondary: #FF4D8D;
      --accent: #00E0C7;
      --dark: #0A0A14;
      --darker: #06060C;
      --light: #F5F5FF;
      --gray: #A1A1B5;
      --gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
      --glass: rgba(255, 255, 255, 0.08);
      --glass-border: rgba(255, 255, 255, 0.1);
      --glass-highlight: rgba(255, 255, 255, 0.15);
    }
    
    @font-face {
      font-family: 'Neue Machina';
      src: url('https://fonts.cdnfonts.com/css/neue-machina') format('woff2');
      font-weight: normal;
      font-style: normal;
    }
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }
    
    body {
      background-color: var(--dark);
      color: var(--light);
      font-family: 'Inter', system-ui, -apple-system, sans-serif;
      line-height: 1.6;
      overflow-x: hidden;
    }
    
    h1, h2, h3, h4, h5, h6 {
      font-family: 'Neue Machina', sans-serif;
      font-weight: 800;
      line-height: 1.2;
    }
    
    h1 {
      font-size: clamp(2.5rem, 5vw, 4.5rem);
      background: linear-gradient(to right, var(--light), var(--primary-light));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      margin-bottom: 1.5rem;
    }
    
    h2 {
      font-size: clamp(2rem, 4vw, 3.5rem);
      margin-bottom: 2rem;
      position: relative;
      display: inline-block;
    }
    
    h2:after {
      content: '';
      position: absolute;
      bottom: -12px;
      left: 0;
      width: 60px;
      height: 4px;
      background: var(--gradient);
      border-radius: 2px;
    }
    
    h3 {
      font-size: clamp(1.5rem, 3vw, 2rem);
      margin-bottom: 1.5rem;
    }
    
    p {
      margin-bottom: 1.5rem;
      color: var(--gray);
      font-size: 1.1rem;
      line-height: 1.7;
    }
    
    a {
      color: inherit;
      text-decoration: none;
      transition: all 0.3s ease;
    }
    
    .container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 2rem;
    }
    main {
        overflow: hidden;
    }
    section {
      padding: 8rem 0;
      position: relative;
    }
    
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: var(--gradient);
      color: white;
      padding: 1rem 2.5rem;
      border-radius: 50px;
      font-weight: 700;
      text-decoration: none;
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      border: none;
      cursor: pointer;
      font-size: 1rem;
      position: relative;
      overflow: hidden;
      z-index: 1;
      box-shadow: 0 10px 20px -5px rgba(123, 97, 255, 0.3);
    }
    .particles-js-canvas-el {
        position: absolute;
    }
    .btn:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
      z-index: -1;
      opacity: 0;
      transition: opacity 0.4s ease;
    }
    
    .btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 15px 30px -5px rgba(123, 97, 255, 0.4);
      color: #fff!important;
    }
    
    .btn:hover:before {
      opacity: 1;
    }
    
    .btn-outline {
      background: transparent;
      border: 2px solid var(--primary);
      color: var(--primary);
      box-shadow: none;
    }
    
    .btn-outline:hover {
      background: var(--primary);
      color: white;
    }
    
    .btn-lg {
      padding: 1.25rem 3rem;
      font-size: 1.1rem;
    }
    
    .text-gradient {
      background: var(--gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    
    /* Header - Glass Morphism */
    header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      background: var(--glass);
      border-bottom: 1px solid var(--glass-border);
    }
    
    nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1.5rem 0;
    }
    
    .logo {
      font-family: 'Neue Machina', sans-serif;
      font-size: 1.8rem;
      font-weight: 800;
         max-width: 320px;
      background: var(--gradient);
      -webkit-background-clip: text;

      -webkit-text-fill-color: transparent;
    }
    .logo img {
        width: 100%;
        display: flex;
    }
    @media(max-width: 768px) {
        .logo {
            max-width: 80%;
        }
    }
    
    .nav-links {
      display: flex;
      gap: 2.5rem;
    }
    
    .nav-links a {
      font-weight: 600;
      position: relative;
      padding: 0.5rem 0;
    }
    
    .nav-links a:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--primary);
      transition: width 0.3s ease;
    }
    
    .nav-links a:hover:after {
      width: 100%;
    }
    
    .mobile-menu-btn {
      display: none;
      background: none;
      border: none;
      color: white;
      font-size: 1.5rem;
      cursor: pointer;
    }
    
    /* Hero Section - 3D Effect */
    #hero {
      padding-top: 10rem!important;
      padding-bottom: 6rem;
      overflow: hidden;
      position: relative;
    }
    
    #hero:before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle at center, rgba(123, 97, 255, 0.1) 0%, transparent 50%);
      z-index: -1;
    }
    
    .hero-content {
      display: flex;
      align-items: center;
      gap: 1rem;
    }
    
    .hero-text {
      flex: 1;
    }
    @media (max-width: 1600px) and (min-width: 1100px) {
        .hero-text {
            transform: translateY(-10%) !important;
        }
        #hero {
          padding-top: 7rem!important;
        }
    }

    
    .hero-image {
      flex: 1;
      position: relative;
      perspective: 1000px;
    }
    
    .code-card {
      background: rgba(10, 10, 20, 0.6);
      border-radius: 20px;
      border: 1px solid var(--glass-border);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      padding: 2rem;
      transform-style: preserve-3d;
      transform: rotateY(-10deg) rotateX(5deg);
      box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.3);
      transition: transform 0.5s ease;
    }
    
    .code-card:hover {
      transform: rotateY(-5deg) rotateX(3deg);
    }
    
    .code-header {
      display: flex;
      gap: 0.5rem;
      margin-bottom: 1.5rem;
    }
    
    .code-dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
    }
    
    .code-dot:nth-child(1) {
      background: #FF4D8D;
    }
    
    .code-dot:nth-child(2) {
      background: #FFC233;
    }
    
    .code-dot:nth-child(3) {
      background: #00E0C7;
    }
    
    .code-line {
      font-family: 'Fira Code', monospace;
      margin-bottom: 0.5rem;
      color: var(--gray);
    }
    
    .code-line span {
      color: var(--accent);
    }
    
    .code-line .purple {
      color: var(--primary-light);
    }
    
    .code-line .yellow {
      color: #FFC233;
    }
    
    .hero-btns {
      display: flex;
      gap: 1.5rem;
      margin-top: 2.5rem;
    }
    
    .stats {
      display: flex;
      justify-content: space-between;
      margin-top: 6rem;
      padding: 2rem 0;
      border-top: 1px solid var(--glass-border);
      border-bottom: 1px solid var(--glass-border);
    }
    
    .stat-item {
      text-align: center;
      position: relative;
      padding: 0 2rem;
    }
    
    .stat-item:not(:last-child):after {
      content: '';
      position: absolute;
      top: 50%;
      right: 0;
      transform: translateY(-50%);
      width: 1px;
      height: 40px;
      background: var(--glass-border);
    }
    
    .stat-number {
      font-size: 3rem;
      font-weight: 800;
      font-family: 'Neue Machina', sans-serif;
      background: var(--gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      margin-bottom: 0.5rem;
    }
    
    .stat-label {
      font-size: 1rem;
      color: var(--gray);
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    
    /* Floating Elements */
    .floating-element {
      position: absolute;
      border-radius: 50%;
      filter: blur(60px);
      opacity: 0.6;
      z-index: -1;
    }
    
    .floating-1 {
      width: 300px;
      height: 300px;
      background: var(--primary);
      top: 10%;
      left: 5%;
      animation: float 8s ease-in-out infinite;
    }
    .crossed {
      position: relative;
      display: inline-block;
    }

    .crossed::after {
      content: "";
      position: absolute;
      top: 50%;
      left: 0;
      height: 2px;
      width: 100%;
      background: #938b9a;
    }
.slick-dots li button:before {
    font-family: 'slick';
    font-size: 6px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    content: '•';
    text-align: center;
    opacity: 1;
    color: #7659e9;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
    opacity: .75;
    color: #00ffe4;
}
    .floating-2 {
      width: 400px;
      height: 400px;
      background: var(--secondary);
      bottom: 10%;
      right: 5%;
      animation: float 10s ease-in-out infinite 2s;
    }
    
    @keyframes float {
      0% { transform: translate(0, 0) rotate(0deg); }
      50% { transform: translate(30px, 50px) rotate(180deg); }
      100% { transform: translate(0, 0) rotate(360deg); }
    }
    
    /* Glass Card */
    .glass-card {
      background: var(--glass);
      border: 1px solid var(--glass-border);
      border-radius: 20px;
      padding: 2.5rem;
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      transition: all 0.4s ease;
    }
    
    .glass-card:hover {
      transform: translateY(-10px);
      background: var(--glass-highlight);
      box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.2);
    }
    
    /* Course Start Section */
    #start-info {
      background: var(--darker);
      position: relative;
      overflow: hidden;
    }
    
    #start-info:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjAzKSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNwYXR0ZXJuKSIvPjwvc3ZnPg==');
      opacity: 0.3;
    }
    
    .start-container {
      display: flex;
      align-items: center;
      gap: 4rem;
    }
    
    .start-image {
      flex: 1;
      position: relative;
    }
    /* Video Reviews Section */
.video-testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.video-review {
  background: linear-gradient(145deg, #12121C, #0A0A14);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.video-review:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px -10px rgba(123, 97, 255, 0.2);
}

.video-container {
  position: relative;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
  background: #000;
}

.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(123, 97, 255, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
}

.play-btn:hover {
  background: var(--primary);
  transform: translate(-50%, -50%) scale(1.1);
}

.review-author {
  display: flex;
  align-items: center;
  padding: 1.5rem;
  gap: 1rem;
}

.author-photo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
}

.author-info h4 {
  margin-bottom: 0.25rem;
  font-size: 1.1rem;
}

.author-info p {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* Адаптивность */
@media (max-width: 768px) {
  .video-testimonials {
    grid-template-columns: 1fr;
  }
  
  .video-review {
    max-width: 500px;
    margin: 0 auto;
        width: -webkit-fill-available;
  }
}
    .start-image img {
      width: 100%;
      border-radius: 20px;
      box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.3);
      transform: perspective(1000px) rotateY(10deg);
      transition: transform 0.5s ease;
    }
    
    .start-image:hover img {
      transform: perspective(1000px) rotateY(5deg);
    }
    
    .start-content {
      flex: 1;
    }
    
    /* Form Styles */
    .form-group {
      margin-bottom: 1.5rem;
    }
    
    label {
      display: block;
      margin-bottom: 0.5rem;
      font-weight: 600;
      color: var(--light);
    }
    
    input, textarea, select {
      width: 100%;
      padding: 1rem;
      background: rgba(10, 10, 20, 0.6);
      border: 1px solid var(--glass-border);
      border-radius: 12px;
      color: white;
      font-size: 1rem;
      transition: all 0.3s ease;
    }
    
    input:focus, textarea:focus, select:focus {
      outline: none;
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(123, 97, 255, 0.2);
    }
    
    /* Card Styles */
    .card {
      background: linear-gradient(145deg, #12121C, #0A0A14);
      border-radius: 20px;
      padding: 2.5rem;
      box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.3);
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      position: relative;
      overflow: hidden;
      border: 1px solid var(--glass-border);
    }
    
    .card:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--gradient);
      opacity: 0;
      transition: opacity 0.4s ease;
      z-index: -1;
    }
    
    .card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.4);
    }
    
    .card:hover:before {
      opacity: 0.1;
    }
    
    .card-icon {
      width: 70px;
      height: 70px;
      background: rgba(123, 97, 255, 0.1);
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 2rem;
      font-size: 1.8rem;
      color: var(--primary);
    }
    
    /* Grid Layout */
    .grid {
      display: grid;
      gap: 2rem;
    }
    
    .grid-2 {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .grid-3 {
      grid-template-columns: repeat(3, 1fr);
    }
    
    .grid-4 {
      grid-template-columns: repeat(4, 1fr);
    }
    
    /* Features Section */
    .feature-list {
        display: grid;
        grid-template-columns: repeat(3, 1fr); /* 3 колонки одинаковой ширины */
        grid-template-rows: repeat(2, auto);   /* 2 ряда по высоте контента */
        gap: 20px; /* при необходимости */

      margin-top: 3rem;
    }
    ul {
  list-style: none; /* Убираем стандартные точки */
  padding-left: 0;  /* Убираем отступ, если нужно */
}

    .feature-item {
      display: flex;
      align-items: flex-start;
      gap: 1.5rem;
      padding: 2rem;
      background: linear-gradient(145deg, #12121C, #0A0A14);
      border-radius: 16px;
      border: 1px solid var(--glass-border);
      transition: all 0.3s ease;
    }
    
    .feature-item:hover {
      transform: translateY(-5px);
      border-color: var(--primary);
    }
    
    .feature-icon {
      flex-shrink: 0;
      width: 50px;
      height: 50px;
      background: rgba(123, 97, 255, 0.1);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary);
      font-size: 1.5rem;
    }
    
    /* Program Timeline - 3D Effect */
    .timeline {
      position: relative;
      max-width: 900px;
      margin: 4rem auto;
      perspective: 1000px;
    }
    
    .timeline:before {
      content: '';
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 4px;
      height: 100%;
      background: var(--gradient);
    }
    
    .timeline-item {
      position: relative;
      margin-bottom: 4rem;
      width: 100%;
      transform-style: preserve-3d;
      transition: transform 0.5s ease;
    }
    
    .timeline-item:hover {
      transform: translateZ(20px);
    }
    
    .timeline-item:nth-child(odd) {
      padding-right: 50%;
      text-align: right;
    }
    
    .timeline-item:nth-child(even) {
      padding-left: 50%;
      text-align: left;
    }
    
    .timeline-dot {
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 24px;
      height: 24px;
      border-radius: 50%;
      background: var(--dark);
      border: 4px solid var(--primary);
      box-shadow: 0 0 0 4px rgba(123, 97, 255, 0.2);
    }
    
    .timeline-content {
      background: linear-gradient(145deg, #12121C, #0A0A14);
      padding: 2rem;
      border-radius: 16px;
      box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.2);
      border: 1px solid var(--glass-border);
    }
    
    .timeline-content h3 {
      color: var(--primary-light);
    }
    
    /* Pricing Cards - 3D Tilt Effect */
    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      align-items: start;
      margin-top: 4rem;
    }
    
    .pricing-card {
      position: relative;
      background: linear-gradient(145deg, #12121C, #0A0A14);
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.3);
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      border: 1px solid var(--glass-border);
      transform-style: preserve-3d;
    }
    
    .pricing-card:hover {
      transform: translateY(-10px) rotateX(5deg);
      box-shadow: 0 30px 60px -10px rgba(0, 0, 0, 0.4);
    }
    
    .pricing-card.popular {
      border: 1px solid var(--primary);
      box-shadow: 0 20px 50px -10px rgba(123, 97, 255, 0.3);
    }

    .pricing-card.primary {
        border: 1px solid #ffc233;
        box-shadow: 0 20px 50px -10px #ffc233;
    }
    
    .pricing-card.popular:before {
      content: 'Popular';
      position: absolute;
      top: 10px;
      right: -40px;
      background: var(--primary);
      color: white;
      padding: 0.25rem 2rem;
      transform: rotate(45deg);
      font-size: 0.8rem;
      font-weight: 700;
    }
    
    .pricing-header {
      padding: 2.5rem;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    
    .pricing-header:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--gradient);
      opacity: 0.1;
      z-index: 0;
    }
    
    .pricing-header h3 {
      position: relative;
      z-index: 1;
    }
    
    .pricing-price {
      font-size: 3.5rem;
      font-weight: 800;
      font-family: 'Neue Machina', sans-serif;
      margin: 1rem 0;
      position: relative;
      z-index: 1;
      background: var(--gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    
    .pricing-body {
      padding: 2.5rem;
    }
    
    .pricing-features {
      list-style: none;
      margin: 0 0 2rem 0;
      padding: 0;
    }
    
    .pricing-features li {
      margin-bottom: 1rem;
      padding-left: 2rem;
      position: relative;
      color: var(--gray);
    }
    
    .pricing-features li:before {
      content: '\f00c';
      font-family: 'Font Awesome 6 Free';
      font-weight: 900;
      position: absolute;
      left: 0;
      color: var(--accent);
    }
    .pricing-features li.disabled {
      color: #aaa;
      text-decoration: line-through;
    }

    .pricing-features li.disabled:before {
      content: '\f00d'; /* FA Times (X) */
      font-family: 'Font Awesome 6 Free';
      font-weight: 900;
      color: #dc2626; /* Red accent */
    }

    /* Testimonials - Swiper */
    .testimonials {
      margin-top: 4rem;
      position: relative;
    }
    
    .testimonial-slide {
      background: linear-gradient(145deg, #12121C, #0A0A14);
      border-radius: 20px;
      padding: 3rem;
      border: 1px solid var(--glass-border);
      margin: 1rem;
      transition: all 0.3s ease;
    }
    
    .testimonial-slide:hover {
      border-color: var(--primary);
    }
    
    .testimonial-text {
      font-style: italic;
      margin-bottom: 2rem;
      position: relative;
      font-size: 1.1rem;
      line-height: 1.8;
    }
    
    .testimonial-text:before {
      content: '\201C';
      font-size: 5rem;
      position: absolute;
      top: -2rem;
      left: -1.5rem;
      color: rgba(123, 97, 255, 0.1);
      font-family: serif;
      line-height: 1;
    }
    
    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 1.5rem;
    }
    
    .author-avatar {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: var(--gradient);
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-weight: bold;
      font-size: 1.5rem;
      flex-shrink: 0;
    }
    
    .author-info h4 {
      margin-bottom: 0.5rem;
    }
    
    .author-info p {
      font-size: 0.9rem;
      color: var(--gray);
      margin-bottom: 0;
    }
    
    /* Team - Hover Effects */
    .team-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr); /* Фиксированное количество колонок - 3 */
      gap: 2rem;
      margin-top: 4rem;
    }
    
    .team-member {
      text-align: center;
      position: relative;
        padding-top: 10px;
    }
    
    .member-avatar {
      width: 180px;
      height: 180px;
      border-radius: 50%;
      margin: 0 auto 1.5rem;
      overflow: hidden;
      position: relative;
      border: 4px solid var(--primary);
      box-shadow: 0 10px 30px -10px rgba(123, 97, 255, 0.3);
      transition: all 0.3s ease;
    }
    
    .member-avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    
    .team-member:hover .member-avatar {
      transform: scale(1.05);
      box-shadow: 0 15px 40px -10px rgba(123, 97, 255, 0.4);
    }
    
    .team-member:hover .member-avatar img {
      transform: scale(1.1);
    }
    
    .member-social {
      display: flex;
      gap: 1rem;
      justify-content: center;
      margin-top: 1.5rem;
    }
    
    .member-social a {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(123, 97, 255, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary);
      transition: all 0.3s ease;
    }
    
    .member-social a:hover {
      background: var(--primary);
      color: white;
      transform: translateY(-3px);
    }
    
    /* FAQ - Animated */
    .faq-item {
      margin-bottom: 1rem;
      border: 1px solid var(--glass-border);
      border-radius: 12px;
      overflow: hidden;
      background: linear-gradient(145deg, #12121C, #0A0A14);
      transition: all 0.3s ease;
    }
    
    .faq-item.active {
      border-color: var(--primary);
      box-shadow: 0 10px 30px -10px rgba(123, 97, 255, 0.2);
    }
    
    .faq-question {
      padding: 1.5rem;
      font-weight: 700;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: all 0.3s ease;
    }
    
    .faq-question:hover {
      color: var(--primary-light);
    }
    
    .faq-answer {
      padding: 0 1.5rem;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.5s ease, padding 0.5s ease;
    }
    
    .faq-item.active .faq-answer {
      padding: 0 1.5rem 1.5rem;
      max-height: 500px;
    }
    
    .faq-toggle {
      transition: transform 0.3s;
      color: var(--primary);
    }
    
    .faq-item.active .faq-toggle {
      transform: rotate(180deg);
    }
    
    /* CTA Section - Parallax */
    #cta {
      background: linear-gradient(rgba(10, 10, 20, 0.9), rgba(10, 10, 20, 0.9)), url('https://images.unsplash.com/photo-1555066931-4365d14bab8c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') no-repeat center center;
      background-size: cover;
      background-attachment: fixed;
      position: relative;
      overflow: hidden;
      text-align: center;
    }
    
    #cta:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--gradient);
      opacity: 0.3;
      z-index: 0;
    }
    
    #cta .container {
      position: relative;
      z-index: 1;
    }
    
    #cta h2 {
      color: white;
    }
    
    #cta h2:after {
      background: white;
    }
    
    #cta p {
      color: rgba(255, 255, 255, 0.8);
      max-width: 700px;
      margin: 0 auto 2rem;
    }
    
    /* Partners - Logo Grid */
    .partners {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 3rem;
      align-items: center;
      margin-top: 3rem;
    }
    
    .partner-logo {
      height: 40px;
      filter: grayscale(100%) brightness(2);
      opacity: 0.7;
      transition: all 0.3s;
      justify-self: center;
    }
    
    .partner-logo:hover {
      filter: grayscale(0%) brightness(1);
      opacity: 1;
    }
    
    /* Footer - Modern */
    footer {
      background: var(--darker);
      padding: 6rem 0 3rem;
      position: relative;
    }
    
    footer:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 1px;
      background: var(--gradient);
    }
    
    .footer-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 3rem;
      margin-bottom: 3rem;
    }
    
    .footer-logo {
      font-family: 'Neue Machina', sans-serif;
      font-size: 1.8rem;
      font-weight: 800;
      background: var(--gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      margin-bottom: 1.5rem;
      display: inline-block;
    }
    
    .footer-about p {
      margin-bottom: 1.5rem;
    }
    
    .footer-links h4 {
      margin-bottom: 1.5rem;
      color: white;
    }
    
    .footer-links ul {
      list-style: none;
    }
    
    .footer-links li {
      margin-bottom: 0.8rem;
    }
    
    .footer-links a {
      color: var(--gray);
      transition: color 0.3s;
    }
    
    .footer-links a:hover {
      color: var(--primary);
    }
    
    .footer-subscribe input {
      margin-bottom: 1rem;
    }
    
    .social-links {
      display: flex;
      gap: 1rem;
      margin-top: 1.5rem;
    }
    
    .social-links a {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(123, 97, 255, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary);
      transition: all 0.3s ease;
    }
    
    .social-links a:hover {
      background: var(--primary);
      color: white;
      transform: translateY(-3px);
    }
    
    .copyright {
      margin-top: 3rem;
      padding-top: 2rem;
      border-top: 1px solid var(--glass-border);
      text-align: center;
      font-size: 0.9rem;
      color: var(--gray);
    }
    
    /* Animations */
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }
    
    .animate {
      animation: fadeIn 1s ease forwards;
    }
    
    .delay-1 {
      animation-delay: 0.2s;
    }
    
    .delay-2 {
      animation-delay: 0.4s;
    }
    
    .delay-3 {
      animation-delay: 0.6s;
    }
    
    /* Responsive */
    @media (max-width: 1024px) {
      .hero-content, .start-container {
        flex-direction: column;
      }
      
      .hero-image, .start-image {
        order: -1;
        margin-bottom: 3rem;
      }
      
      .timeline:before {
        left: 31px;
      }
      
      .timeline-item:nth-child(odd),
      .timeline-item:nth-child(even) {
        padding-left: 80px;
        padding-right: 0;
        text-align: left;
      }
      
      .timeline-dot {
        left: 20px;
      }
    }
    
    @media (max-width: 768px) {
            section {
        padding: 4rem 0!important;
    }

      .nav-links {
        display: none;
      }
      
      .mobile-menu-btn {
        display: block;
      }
      
      .stats {
        flex-direction: column;
        gap: 2rem;
      }
      
      .stat-item:not(:last-child):after {
        display: none;
      }
      
      .hero-btns {
        flex-direction: column;
        gap: 1rem;
      }
      
      .btn {
        width: 100%;
      }
    }
    
    /* Special Effects */
    .particle {
      position: absolute;
      border-radius: 50%;
      pointer-events: none;
      z-index: -1;
    }
/* Добавьте это в конец вашего CSS файла */

/* Медиа-запрос для 1200px */
@media (max-width: 1200px) {
  .container {
    padding: 0 1.5rem;
  }
  
  section {
    padding: 6rem 0;
  }
  
  .hero-content {
    gap: 2rem;
  }
  
  .feature-list {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pricing-card.primary {
    grid-column: span 2;
  }
}



/* Медиа-запрос для 768px */
@media (max-width: 768px) {
    .pricing-header {
        padding: 2.5rem 1rem!important;
    }
    .glass-card {
        padding: 2rem!important;
    }
    .glass-card h2 {
        text-align: left;
    }
    .glass-card p {
            text-align: left;
        font-size: 1rem!important;
    }
  h1 {
    font-size: 9vw;
  }
  
  h2 {
    font-size: 2.2rem;
  }
  
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
  
  .hero-content {
    flex-direction: column-reverse;
  }
  
  .hero-text {
    order: 2;
    text-align: center;
  }
  
  .hero-image {
    order: 1;
    margin-bottom: 3rem;
  }
  
  .hero-btns {
    flex-direction: column;
    align-items: center;
  }
  
  .stats {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  
  .stat-item:not(:last-child):after {
    display: none;
  }
  
  .start-container {
    flex-direction: column;
  }
  
  .start-image {
    margin-bottom: 3rem;
  }
  
  .feature-list {
    grid-template-columns: 1fr;
  }
  
  .timeline:before {
    left: 10px;
  }
  
  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    padding-left: 0px;
    padding-right: 0;
    text-align: left;
  }
  
    .timeline-dot {
        left: 10px;
        top: -10px;
    }
  
  .team-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-card.primary {
    grid-column: span 1;
  }
  
  .pricing-card.popular:before {
    right: -30px;
    font-size: 0.7rem;
  }
  
  .testimonial-slide {
    padding: 2rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .social-links {
    justify-content: center;
  }
  #cta h2:after {
    background: white;
    text-align: center;
    margin: 0 auto;
    display: flex
;
    align-items: center;
    justify-content: center;
    left: 50%;
    transform: translateX(-50%);
}
  .nav-links {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: var(--darker);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--glass-border);
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .mobile-menu-btn {
    display: block;
  }
}
@media (max-width: 425px) {
    .pricing-header {
        padding: 2rem 1rem!important;
        padding-bottom: 1rem!important;
    }
    .pricing-price {
        font-size: 3rem;
    }
    .pricing-body {
        padding: 2rem!important;
    }
}
/* Медиа-запрос для 375px */
@media (max-width: 375px) {
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .container {
    padding: 0 1rem;
  }
  
  section {
    padding: 4rem 0;
  }
  
  .code-card {
    padding: 1.5rem;
    font-size: 0.9rem;
  }
  
  .btn {
    padding: 0.8rem 1.5rem;
  }
  
  .btn-lg {
    padding: 1rem 2rem;
  }
  
  .pricing-header {
    padding: 1.5rem;
  }
  
  .pricing-body {
    padding: 1.5rem;
  }
  
  .pricing-price {
    font-size: 2.5rem;
  }
  
  .testimonial-slide {
    padding: 1.5rem;
  }
  
  .timeline-content {
    padding: 1.5rem;
  }
  
  .faq-question {
    padding: 1rem;
    font-size: 1rem;
  }
  
  .glass-card {
    padding: 2rem 1.5rem;
  }
  
  .member-avatar {
    width: 140px;
    height: 140px;
  }
  
  .floating-1 {
    width: 200px;
    height: 200px;
  }
  
  .floating-2 {
    width: 250px;
    height: 250px;
  }
}

/* Дополнительные адаптивные стили для элементов */
@media (max-width: 480px) {
  .code-card {
    transform: none !important;
  }
  
  .start-image img {
    transform: none !important;
  }
  
  .hero-image {
    width: 100%;
  }
  
  .feature-item {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .feature-icon {
    margin-bottom: 1rem;
  }
  
  .testimonial-author {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .author-info {
    margin-top: 1rem;
  }
  
  .footer-links {
    text-align: left;
  }
  
  .footer-subscribe {
    text-align: left;
  }
  
  .copyright {
    font-size: 0.8rem;
  }
}