@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap');

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

:root {
  --primary: #0066FF;
  --primary-dark: #0052D4;
  --primary-light: rgba(0, 102, 255, 0.1);
  --secondary: #FF6B35;
  --accent: #8B5CF6;
  --dark: #0F1623;
  --darker: #090E17;
  --light: #F8FAFC;
  --gray: #94A3B8;
  --gray-dark: #475569;
  --border: rgba(255,255,255,0.08);
  --card-bg: rgba(255,255,255,0.02);
  --success: #10B981;
  --error: #EF4444;
  --gradient: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
}

body { 
  background: var(--darker); 
  color: var(--light); 
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif; 
  line-height: 1.7;
  font-weight: 400;
  overflow-x: hidden;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(0, 102, 255, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(0, 102, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 102, 255, 0); }
}

/* ========== НАВИГАЦИЯ ========== */
.nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1.2rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(9, 14, 23, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  animation: fadeIn 0.6s ease;
}

.nav-scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.nav-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--light);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.nav-logo span { 
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-logo .logo-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-link {
  color: var(--gray);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  position: relative;
  padding: 0.5rem 0;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient);
  transition: width 0.3s ease;
}
.nav-link:hover {
  color: var(--light);
}
.nav-link:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--gradient);
  color: white;
  padding: 0.8rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 102, 255, 0.3);
}

/* ========== МОБИЛЬНОЕ МЕНЮ ========== */
.nav-mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 1001;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}

.hamburger-line {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--light);
  border-radius: 1px;
  transition: all 0.3s ease;
}

.nav-mobile-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-mobile-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.nav-mobile-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s;
}

.menu-overlay.active {
  display: block;
  opacity: 1;
}

/* ========== ГЕРОЙ ========== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 5%;
  position: relative;
  background: linear-gradient(135deg, rgba(9, 14, 23, 0.95) 0%, rgba(15, 22, 35, 0.9) 100%);
  overflow: hidden;
  padding-top: 6rem;
}

.particles {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  animation: fadeIn 1s ease;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(0, 102, 255, 0.15);
  color: var(--primary);
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1px;
  margin-bottom: 2rem;
  border: 1px solid rgba(0, 102, 255, 0.3);
  animation: float 3s ease-in-out infinite;
}

.hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--light) 0%, var(--primary) 50%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.4rem;
  color: var(--gray);
  max-width: 700px;
  margin-bottom: 3rem;
  line-height: 1.8;
  font-weight: 400;
}

.hero-features {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--gray);
  font-weight: 500;
}

.feature-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

/* ========== ОБЩИЕ СТИЛИ ========== */
section {
  padding: 8rem 5%;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 6rem;
}

.section-label {
  display: inline-block;
  color: var(--secondary);
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  font-family: 'Space Grotesk', sans-serif;
}

.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--light);
}

.section-title span {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--gray);
  line-height: 1.8;
}

/* ========== КАРТОЧКИ ========== */
.ready-sites-section {
  background: linear-gradient(135deg, rgba(15, 22, 35, 0.8) 0%, rgba(9, 14, 23, 0.9) 100%);
  border-radius: 30px;
  padding: 6rem;
  margin-top: 4rem;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.ready-sites-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -30%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
  z-index: 0;
}

.ready-sites-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
  position: relative;
  z-index: 1;
}

.ready-site-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.ready-site-card:hover {
  transform: translateY(-15px);
  border-color: var(--accent);
  box-shadow: 0 25px 50px rgba(139, 92, 246, 0.15);
}

.ready-site-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.ready-site-card:hover::before {
  transform: scaleX(1);
}

.ready-site-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gradient);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1px;
}

.ready-site-icon {
  width: 70px;
  height: 70px;
  background: rgba(139, 92, 246, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  font-size: 2rem;
  color: var(--accent);
}

.ready-site-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: var(--light);
}

.ready-site-description {
  color: var(--gray);
  margin-bottom: 2rem;
  line-height: 1.7;
  font-size: 1.05rem;
}

.ready-site-features {
  list-style: none;
  margin-bottom: 2rem;
}

.ready-site-features li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
  color: var(--gray);
}

.ready-site-features li i {
  color: var(--accent);
  font-size: 0.9rem;
}

.ready-site-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--light);
  margin: 2rem 0;
}

.ready-site-price span {
  font-size: 1rem;
  color: var(--gray);
  font-weight: 500;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.solution-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.solution-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: 0;
}

.solution-card:hover {
  transform: translateY(-15px);
  border-color: var(--primary);
  box-shadow: 0 25px 50px rgba(0, 102, 255, 0.15);
}

.solution-card:hover::before {
  opacity: 0.05;
}

.solution-content {
  position: relative;
  z-index: 1;
}

.solution-icon {
  width: 70px;
  height: 70px;
  background: var(--primary-light);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  font-size: 2rem;
  color: var(--primary);
}

.solution-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: var(--light);
}

.solution-description {
  color: var(--gray);
  margin-bottom: 2rem;
  line-height: 1.7;
  font-size: 1.05rem;
}

.solution-features {
  list-style: none;
  margin-bottom: 2rem;
}

.solution-features li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
  color: var(--gray);
}

.solution-features li i {
  color: var(--primary);
  font-size: 0.9rem;
}

.solution-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--light);
  margin: 2rem 0;
}

.solution-price span {
  font-size: 1rem;
  color: var(--gray);
  font-weight: 500;
}

/* ========== КОНТАКТЫ ========== */
.contact-section {
  background: linear-gradient(135deg, rgba(15, 22, 35, 0.9) 0%, rgba(9, 14, 23, 0.95) 100%);
  border-radius: 30px;
  padding: 6rem;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.1) 0%, transparent 70%);
  z-index: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.contact-info h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--light);
}

.contact-details {
  margin: 3rem 0;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  color: var(--gray);
  font-size: 1.1rem;
}

.contact-detail i {
  width: 50px;
  height: 50px;
  background: var(--primary-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
}

.contact-form {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 3rem;
}

.form-group {
  margin-bottom: 1.8rem;
}

.form-label {
  display: block;
  margin-bottom: 0.8rem;
  color: var(--gray);
  font-weight: 600;
  font-size: 0.95rem;
}

.form-input {
  width: 100%;
  padding: 1.2rem 1.5rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--light);
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(255,255,255,0.05);
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

textarea.form-input {
  min-height: 140px;
  resize: vertical;
}

.form-submit {
  width: 100%;
  padding: 1.3rem;
  background: var(--gradient);
  color: white;
  border: none;
  border-radius: 12px;
  font-family: 'Manrope', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1rem;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 102, 255, 0.3);
}

.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* ========== УВЕДОМЛЕНИЯ ========== */
.notification {
  position: fixed;
  top: 100px;
  right: 2rem;
  padding: 1.2rem 1.8rem;
  border-radius: 12px;
  background: var(--success);
  color: white;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
  transform: translateX(400px);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: 10000;
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 400px;
}

.notification.show {
  transform: translateX(0);
}

.notification.error {
  background: var(--error);
  box-shadow: 0 10px 30px rgba(239, 68, 68, 0.3);
}

/* ========== ФУТЕР ========== */
footer {
  background: rgba(9, 14, 23, 0.98);
  border-top: 1px solid var(--border);
  padding: 6rem 5% 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--light);
}

.footer-brand p {
  color: var(--gray);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.footer-col h5 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.8rem;
  color: var(--light);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 1rem;
}

.footer-links a {
  color: var(--gray);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links a:hover {
  color: var(--primary);
  transform: translateX(5px);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.social-link {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.social-link:hover {
  background: var(--gradient);
  color: white;
  transform: translateY(-3px);
}

.footer-bottom {
  padding-top: 3rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--gray);
  font-size: 0.9rem;
}

/* ========== МОБИЛЬНАЯ ВЕРСИЯ ========== */
@media (max-width: 768px) {
  /* Фиксируем навигацию */
  .nav {
    padding: 1rem 5%;
    height: 70px;
  }
  
  .nav-logo {
    font-size: 1.5rem;
  }
  
  /* Гамбургер ВИДЕН */
  .nav-mobile-toggle {
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  .hamburger-line {
    background: white;
    width: 20px;
    height: 2px;
  }
  
  /* Боковое меню */
  .nav-links {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 280px;
    height: calc(100vh - 70px);
    background: rgba(9, 14, 23, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
    gap: 0;
    transition: right 0.3s ease;
    z-index: 1001;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
    border-left: 1px solid var(--border);
    overflow-y: auto;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-link {
    width: 100%;
    padding: 1rem 0 !important;
    font-size: 1rem !important;
    color: var(--light) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
  }
  
  .nav-cta {
    width: 100%;
    margin-top: 1.5rem;
    padding: 1rem !important;
    font-size: 1rem !important;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
  }
  
  /* Герой - поправляем фокус */
  .hero {
    padding-top: 5rem;
    min-height: auto;
    padding: 3rem 5%;
  }
  
  .hero-title {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 1.2rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 800;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-family: 'Manrope', sans-serif;
  }
  
  .hero-features {
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
  }
  
  .feature-item {
    font-family: 'Manrope', sans-serif;
    font-size: 0.95rem;
  }
  
  /* Секции */
  section {
    padding: 3rem 5%;
  }
  
  .section-header {
    margin-bottom: 3rem;
  }
  
  .section-title {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    font-family: 'Space Grotesk', sans-serif;
  }
  
  .section-subtitle {
    font-size: 1rem;
    line-height: 1.6;
    font-family: 'Manrope', sans-serif;
  }
  
  /* Карточки */
  .ready-sites-section,
  .contact-section {
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 20px;
  }
  
  .ready-sites-grid,
  .solutions-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .ready-site-card,
  .solution-card {
    padding: 1.5rem;
  }
  
  .ready-site-title,
  .solution-title {
    font-size: 1.5rem;
    font-family: 'Space Grotesk', sans-serif;
  }
  
  .ready-site-description,
  .solution-description {
    font-size: 1rem;
    font-family: 'Manrope', sans-serif;
  }
  
  /* Контакты */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .contact-info h3 {
    font-size: 2rem;
    font-family: 'Space Grotesk', sans-serif;
  }
  
  .contact-detail {
    font-size: 1rem;
    font-family: 'Manrope', sans-serif;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .form-label,
  .form-input,
  .form-submit {
    font-family: 'Manrope', sans-serif;
  }
  
  /* Футер */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-brand h4 {
    font-size: 1.6rem;
    font-family: 'Space Grotesk', sans-serif;
  }
  
  .footer-brand p,
  .footer-links a {
    font-family: 'Manrope', sans-serif;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    font-family: 'Manrope', sans-serif;
  }
}

/* Десктоп */
@media (min-width: 769px) {
  .nav-mobile-toggle {
    display: none;
  }
  
  .menu-overlay {
    display: none !important;
  }
}

/* Мелкие экраны */
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .nav-links {
    width: 100%;
    max-width: none;
  }
}

/* Убираем скачок при загрузке */
html {
  scroll-behavior: smooth;
}

/* Исправляем фокус */
body {
  padding-top: 0;
}
/* ========== МОБИЛЬНОЕ МЕНЮ ========== */
.nav-mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 1001;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}

.hamburger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: white;
  border-radius: 1px;
  transition: all 0.3s ease;
}

.nav-mobile-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.nav-mobile-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.nav-mobile-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s;
}

.menu-overlay.active {
  display: block;
  opacity: 1;
}

/* В мобильной версии */
@media (max-width: 768px) {
  .nav-mobile-toggle {
    display: flex !important;
  }
  
  .nav-links {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 280px;
    height: calc(100vh - 70px);
    background: rgba(9, 14, 23, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
    gap: 0;
    transition: right 0.3s ease;
    z-index: 1000;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    overflow-y: auto;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-link {
    width: 100%;
    padding: 1rem 0 !important;
    font-size: 1rem !important;
    color: white !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .nav-cta {
    width: 100%;
    margin-top: 1.5rem;
    padding: 1rem !important;
    font-size: 1rem !important;
  }
}