.about {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  color: white;
  text-align: center;
  overflow: hidden;
}

.background-video {
  position: absolute;
  top: 0; 
  left: 0;
  width: 100%; 
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.about::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(255, 94, 0, 0.2) 50%,
    rgba(0, 0, 0, 0.8) 100%
  );
  z-index: 2;
}

.about-overlay {
  position: relative;
  max-width: 1000px;
  z-index: 3;
  width: 100%;
}

.about-title {
  font-size: 4.5rem;
  font-weight: 900;
  color: var(--neon);
  text-shadow: 0 0 30px rgba(255, 94, 0, 0.7);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.about-tagline {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 60px;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.about-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 94, 0, 0.2);
  transition: all 0.3s ease;
}

.feature:hover {
  transform: translateY(-5px);
  border-color: var(--neon);
  box-shadow: 0 10px 30px rgba(255, 94, 0, 0.3);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.feature-text h3 {
  font-size: 1.4rem;
  color: var(--ink);
  margin-bottom: 10px;
  font-weight: 600;
}

.feature-text p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  font-size: 1rem;
}

.cta-section {
  background: rgba(0, 0, 0, 0.7);
  padding: 40px;
  border-radius: 20px;
  border: 2px solid var(--neon);
  backdrop-filter: blur(10px);
}

.cta-title {
  font-size: 2.2rem;
  color: var(--neon);
  margin-bottom: 15px;
  font-weight: 700;
  text-transform: uppercase;
}

.cta-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
  font-weight: 300;
}

.stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 30px;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--neon);
  text-shadow: 0 0 15px rgba(255, 94, 0, 0.5);
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 5px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 35px;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-btn.primary {
  background: linear-gradient(45deg, var(--neon), #ff8c00);
  color: white;
  box-shadow: 0 0 25px rgba(255, 94, 0, 0.5);
}

.cta-btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 40px rgba(255, 94, 0, 0.7);
  background: linear-gradient(45deg, #ff8c00, var(--neon));
}

.cta-btn.secondary {
  background: transparent;
  color: var(--neon);
  border: 2px solid var(--neon);
  box-shadow: 0 0 15px rgba(255, 94, 0, 0.3);
}

.cta-btn.secondary:hover {
  background: rgba(255, 94, 0, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(255, 94, 0, 0.5);
}

.btn-icon {
  font-size: 1.3rem;
}

/* Анимации */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.cta-btn {
  animation: pulse 2s infinite;
}

.cta-btn:hover {
  animation: none;
}

/* Адаптивность */
@media (max-width: 768px) {
  .about-title {
    font-size: 3rem;
  }
  
  .about-tagline {
    font-size: 1.2rem;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .stats {
    gap: 20px;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .cta-section {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .about {
    padding: 60px 15px;
  }
  
  .about-title {
    font-size: 2.5rem;
  }
  
  .stats {
    flex-direction: column;
    gap: 15px;
  }
  
  .feature {
    padding: 20px 15px;
  }
  
  .feature-icon {
    font-size: 2.5rem;
  }
}




.video-modal .modal-content {
  position: relative;
  width: 90%;
  max-width: 900px;
  background: #000;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 0 50px rgba(255, 94, 0, 0.4);
  border: 2px solid var(--neon);
  aspect-ratio: 16/9;
  z-index: 10001;
}

.video-modal .video-container {
  position: relative;
  background: #000;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-modal .modal-video {
  width: 100%;
  height: auto;
  max-height: 80vh;
  display: block;
  background: #000;
}

/* Кнопка закрытия для видео */
.video-modal .close {
  position: absolute;
  top: -40px;
  right: 0;
  color: white;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 94, 0, 0.3);
  transition: all 0.3s ease;
  z-index: 10002;
}

.video-modal .close:hover {
  background: rgba(255, 94, 0, 0.7);
  transform: scale(1.1);
}