/* Футуристические стили для ads.html */

/* Hero секция */
.hero-futuristic {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(0, 255, 255, 0.1);
  box-shadow: 0 10px 50px rgba(0, 255, 255, 0.05);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.animated-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* Плавающие частицы */
.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #00ffff;
  border-radius: 50%;
  box-shadow: 0 0 10px #00ffff, 0 0 20px #00ffff;
  opacity: 0;
  animation: particleFloat 15s infinite;
}

.particle:nth-child(1) {
  left: 10%;
  animation-delay: 0s;
  animation-duration: 12s;
}

.particle:nth-child(2) {
  left: 30%;
  animation-delay: 3s;
  animation-duration: 15s;
}

.particle:nth-child(3) {
  left: 50%;
  animation-delay: 1s;
  animation-duration: 18s;
}

.particle:nth-child(4) {
  left: 70%;
  animation-delay: 5s;
  animation-duration: 14s;
}

.particle:nth-child(5) {
  left: 90%;
  animation-delay: 2s;
  animation-duration: 16s;
}

@keyframes particleFloat {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100px) scale(1.5);
    opacity: 0;
  }
}

/* Светящиеся орбы */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.15;
  animation: orbFloat 20s infinite ease-in-out;
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #00ffff 0%, transparent 70%);
  top: -100px;
  left: -100px;
  animation-duration: 25s;
}

.orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #8b5cf6 0%, transparent 70%);
  bottom: -150px;
  right: -150px;
  animation-duration: 30s;
  animation-delay: 5s;
}

.orb-3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, #00ffff 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-duration: 20s;
  animation-delay: 10s;
}

@keyframes orbFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(100px, -80px) scale(1.1);
  }
  66% {
    transform: translate(-80px, 100px) scale(0.9);
  }
}

/* Геометрические линии */
.geometric-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.line {
  position: absolute;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.3), transparent);
  transform-origin: center;
}

.line-1 {
  width: 1px;
  height: 100%;
  left: 20%;
  animation: lineGlow 3s infinite ease-in-out;
}

.line-2 {
  width: 100%;
  height: 1px;
  top: 30%;
  animation: lineGlow 4s infinite ease-in-out;
  animation-delay: 1s;
}

.line-3 {
  width: 1px;
  height: 100%;
  right: 25%;
  animation: lineGlow 3.5s infinite ease-in-out;
  animation-delay: 2s;
}

.line-4 {
  width: 100%;
  height: 1px;
  bottom: 35%;
  animation: lineGlow 4.5s infinite ease-in-out;
  animation-delay: 0.5s;
}

@keyframes lineGlow {
  0%, 100% {
    opacity: 0;
    box-shadow: 0 0 0px #00ffff;
  }
  50% {
    opacity: 0.6;
    box-shadow: 0 0 20px #00ffff, 0 0 40px #00ffff;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: linear-gradient(45deg, #ffffff, #00ffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #cccccc;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.cta-button {
  background: linear-gradient(45deg, #8b5cf6, #00ffff);
  color: white;
  border: none;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(139, 92, 246, 0.4);
}

.cta-button.cta-secondary {
  background: transparent;
  border: 2px solid #00ffff;
  color: #00ffff;
  box-shadow: 0 4px 20px rgba(0, 255, 255, 0.2);
}

.cta-button.cta-secondary:hover {
  background: rgba(0, 255, 255, 0.1);
  box-shadow: 0 8px 30px rgba(0, 255, 255, 0.4);
}

/* Миссия, видение, цели */
.mission-section-futuristic {
  background: linear-gradient(180deg, #16213e 0%, #0f1b2e 50%, #0a0a0a 100%);
  padding: 5rem 0;
  color: white;
  position: relative;
  border-bottom: 1px solid rgba(0, 255, 255, 0.1);
}

.mission-main-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  background: linear-gradient(45deg, #ffffff, #00ffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.mission-card {
  background: rgba(26, 26, 46, 0.5);
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 15px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.mission-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at top left, rgba(0, 255, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.mission-card.featured {
  border-color: rgba(139, 92, 246, 0.5);
  background: rgba(139, 92, 246, 0.1);
  transform: scale(1.05);
}

.mission-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 255, 255, 0.5);
  box-shadow: 0 15px 40px rgba(0, 255, 255, 0.2);
}

.mission-card.featured:hover {
  transform: translateY(-10px) scale(1.05);
  border-color: rgba(139, 92, 246, 0.8);
  box-shadow: 0 15px 40px rgba(139, 92, 246, 0.3);
}

.mission-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: #00ffff;
}

.mission-card.featured .mission-icon {
  color: #8b5cf6;
}

.mission-icon svg {
  width: 60px;
  height: 60px;
}

.mission-title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #ffffff;
}

.mission-text {
  color: #cccccc;
  line-height: 1.8;
  font-size: 1rem;
}

/* Адаптивность для миссии */
@media (max-width: 768px) {
  .mission-main-title {
    font-size: 2rem;
  }
  
  .mission-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .mission-card {
    padding: 2rem;
  }
  
  .mission-card.featured {
    transform: scale(1);
  }
  
  .mission-card.featured:hover {
    transform: translateY(-10px) scale(1);
  }
}

/* Что вы получаете - обзор услуг */
.services-overview-futuristic {
  background: linear-gradient(180deg, #0a0a0a 0%, #16213e 50%, #1a1a2e 100%);
  padding: 5rem 0;
  color: white;
  position: relative;
  border-bottom: 1px solid rgba(0, 255, 255, 0.1);
}

.services-overview-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  background: linear-gradient(45deg, #ffffff, #00ffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.services-overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-overview-card {
  background: rgba(26, 26, 46, 0.6);
  border: 1px solid rgba(0, 255, 255, 0.3);
  border-radius: 15px;
  padding: 2.5rem;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.service-overview-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, transparent, #00ffff, transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-overview-card:hover::before {
  opacity: 1;
}

.service-overview-card.featured {
  border-color: rgba(139, 92, 246, 0.5);
  background: rgba(139, 92, 246, 0.15);
  transform: scale(1.05);
}

.service-overview-card.featured::before {
  background: linear-gradient(90deg, transparent, #8b5cf6, transparent);
}

.service-overview-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 255, 255, 0.6);
  box-shadow: 0 20px 50px rgba(0, 255, 255, 0.2);
}

.service-overview-card.featured:hover {
  transform: translateY(-10px) scale(1.05);
  border-color: rgba(139, 92, 246, 0.8);
  box-shadow: 0 20px 50px rgba(139, 92, 246, 0.3);
}

.service-overview-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: #00ffff;
}

.service-overview-card.featured .service-overview-icon {
  color: #8b5cf6;
}

.service-overview-icon svg {
  width: 70px;
  height: 70px;
  filter: drop-shadow(0 0 10px currentColor);
}

.service-overview-heading {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #ffffff;
}

.service-overview-text {
  color: #cccccc;
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.service-overview-btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: linear-gradient(45deg, rgba(0, 255, 255, 0.1), rgba(0, 255, 255, 0.2));
  border: 1px solid #00ffff;
  color: #00ffff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-overview-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(0, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.5s, height 0.5s;
}

.service-overview-btn:hover::before {
  width: 300px;
  height: 300px;
}

.service-overview-btn:hover {
  background: linear-gradient(45deg, rgba(0, 255, 255, 0.2), rgba(0, 255, 255, 0.3));
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
  transform: translateY(-2px);
}

.service-overview-card.featured .service-overview-btn {
  border-color: #8b5cf6;
  color: #8b5cf6;
  background: linear-gradient(45deg, rgba(139, 92, 246, 0.1), rgba(139, 92, 246, 0.2));
}

.service-overview-card.featured .service-overview-btn::before {
  background: rgba(139, 92, 246, 0.2);
}

.service-overview-card.featured .service-overview-btn:hover {
  background: linear-gradient(45deg, rgba(139, 92, 246, 0.2), rgba(139, 92, 246, 0.3));
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.4);
}

/* Адаптивность для обзора услуг */
@media (max-width: 768px) {
  .services-overview-title {
    font-size: 2rem;
  }
  
  .services-overview-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .service-overview-card {
    padding: 2rem;
  }
  
  .service-overview-card.featured {
    transform: scale(1);
  }
  
  .service-overview-card.featured:hover {
    transform: translateY(-10px) scale(1);
  }
}

/* Лид-магнит: Бесплатный видеоаудит */
.lead-magnet-futuristic {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #8b5cf6 100%);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
  border-top: 2px solid rgba(139, 92, 246, 0.3);
  border-bottom: 2px solid rgba(139, 92, 246, 0.3);
}

.lead-magnet-futuristic::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(139, 92, 246, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.lead-magnet-content {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  background: rgba(26, 26, 46, 0.7);
  border: 2px solid rgba(139, 92, 246, 0.5);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 20px 60px rgba(139, 92, 246, 0.3);
  backdrop-filter: blur(10px);
}

.lead-magnet-icon {
  display: inline-block;
  margin-bottom: 1.5rem;
}

.lead-magnet-icon svg {
  width: 80px;
  height: 80px;
  color: #8b5cf6;
  filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.6));
  animation: pulse-icon 2s ease-in-out infinite;
}

@keyframes pulse-icon {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.6));
  }
  50% {
    transform: scale(1.1);
    filter: drop-shadow(0 0 30px rgba(139, 92, 246, 0.8));
  }
}

.lead-magnet-title {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2rem;
  line-height: 1.3;
  background: linear-gradient(45deg, #ffffff, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lead-magnet-benefits {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  text-align: left;
  display: inline-block;
}

.lead-magnet-benefits li {
  display: flex;
  align-items: center;
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  transition: all 0.3s ease;
}

.lead-magnet-benefits li:hover {
  transform: translateX(10px);
  color: #8b5cf6;
}

.lead-magnet-benefits li svg {
  width: 28px;
  height: 28px;
  margin-right: 1rem;
  color: #00ffff;
  flex-shrink: 0;
}

.lead-magnet-btn {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 1.2rem 3rem;
  background: linear-gradient(45deg, #8b5cf6, #00ffff);
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
  position: relative;
  overflow: hidden;
}

.lead-magnet-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.lead-magnet-btn:hover::before {
  width: 400px;
  height: 400px;
}

.lead-magnet-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(139, 92, 246, 0.6);
}

.lead-magnet-btn:active {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(139, 92, 246, 0.5);
}

/* Адаптивность для лид-магнита */
@media (max-width: 768px) {
  .lead-magnet-content {
    padding: 2rem;
  }
  
  .lead-magnet-title {
    font-size: 1.5rem;
  }
  
  .lead-magnet-benefits {
    text-align: center;
  }
  
  .lead-magnet-benefits li {
    font-size: 1rem;
    justify-content: center;
  }
  
  .lead-magnet-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    width: 100%;
  }
}

/* Блог - секция новостей */
.blog-section-futuristic {
  background: linear-gradient(180deg, #0a0a0a 0%, #16213e 50%, #1a1a2e 100%);
  padding: 5rem 0;
  min-height: 100vh;
  color: white;
}

.blog-main-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, #ffffff, #00ffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.blog-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #cccccc;
  margin-bottom: 4rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.blog-card {
  background: rgba(26, 26, 46, 0.6);
  border: 1px solid rgba(0, 255, 255, 0.3);
  border-radius: 15px;
  padding: 2rem;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.blog-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, transparent, #00ffff, transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 255, 255, 0.6);
  box-shadow: 0 20px 50px rgba(0, 255, 255, 0.2);
}

.blog-card:hover::before {
  opacity: 1;
}

.blog-card-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.5));
}

.blog-card-date {
  color: #00ffff;
  font-size: 0.85rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.blog-card-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #ffffff;
  line-height: 1.4;
}

.blog-card-excerpt {
  color: #cccccc;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.blog-card-btn {
  background: transparent;
  border: 1px solid #00ffff;
  color: #00ffff;
  padding: 0.6rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.blog-card-btn:hover {
  background: rgba(0, 255, 255, 0.1);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
  transform: translateX(5px);
}

/* Модальные окна для блога */
.blog-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  overflow-y: auto;
}

.blog-modal.active {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 2rem 0;
}

.blog-modal-content {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border: 2px solid rgba(0, 255, 255, 0.3);
  border-radius: 20px;
  max-width: 800px;
  width: 90%;
  margin: 2rem auto;
  padding: 3rem;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 255, 255, 0.3);
  animation: modalSlideIn 0.3s ease;
  max-height: calc(100vh - 4rem);
  overflow-y: auto;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.blog-modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 2rem;
  background: transparent;
  border: none;
  color: #00ffff;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all 0.3s ease;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.blog-modal-close:hover {
  background: rgba(0, 255, 255, 0.1);
  transform: rotate(90deg);
}

.blog-modal-close:focus {
  outline: 2px solid #00ffff;
  outline-offset: 2px;
}

.blog-modal-image {
  width: 100%;
  margin-bottom: 2rem;
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid rgba(0, 255, 255, 0.2);
}

.blog-modal-placeholder {
  width: 100%;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(139, 92, 246, 0.1));
  filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.3));
}

.blog-modal-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #ffffff;
  line-height: 1.3;
}

.blog-modal-date {
  color: #00ffff;
  font-size: 0.9rem;
  margin-bottom: 2rem;
  font-weight: 600;
}

.blog-modal-text {
  color: #cccccc;
  line-height: 1.8;
  font-size: 1rem;
}

.blog-modal-text p {
  margin-bottom: 1.5rem;
}

.blog-modal-text strong {
  color: #00ffff;
  font-weight: 600;
}

.blog-modal-text ul {
  margin: 1rem 0 1.5rem 1.5rem;
}

.blog-modal-text li {
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

/* Адаптивность для блога */
@media (max-width: 768px) {
  .blog-main-title {
    font-size: 2rem;
  }
  
  .blog-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .blog-modal-content {
    padding: 2rem;
    margin: 1rem;
    width: 95%;
  }
  
  .blog-modal-title {
    font-size: 1.5rem;
  }
  
  .blog-modal-placeholder {
    height: 200px;
    font-size: 4rem;
  }

  /* Увеличение кнопки закрытия для мобильных */
  .blog-modal-close {
    top: 0.75rem;
    right: 0.75rem;
    font-size: 2.5rem;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10001;
  }

  .blog-modal-close:active {
    background: rgba(0, 255, 255, 0.3);
    transform: scale(0.95);
  }
}

/* Адаптивность блога для очень маленьких экранов */
@media (max-width: 480px) {
  .blog-modal-content {
    padding: 1.5rem;
    margin: 0.5rem;
    width: 98%;
    max-height: 90vh;
    overflow-y: auto;
  }

  .blog-modal-title {
    font-size: 1.3rem;
    padding-right: 2.5rem;
  }

  /* Кнопка закрытия ещё больше для маленьких экранов */
  .blog-modal-close {
    top: 0.5rem;
    right: 0.5rem;
    font-size: 3rem;
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(0, 255, 255, 0.5);
  }

  .blog-modal-close:active {
    background: rgba(0, 255, 255, 0.4);
    transform: scale(0.9);
    border-color: #00ffff;
  }

  .blog-modal-placeholder {
    height: 150px;
    font-size: 3rem;
  }

  .blog-modal-text {
    font-size: 0.95rem;
  }
}

/* Services секция */
.services-futuristic {
  background: linear-gradient(180deg, #16213e 0%, #0a0a0a 20%, #0a0a0a 80%, #1a1a2e 100%);
  padding: 5rem 0;
  color: white;
  position: relative;
  border-bottom: 1px solid rgba(0, 255, 255, 0.1);
}

.services-futuristic::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(180deg, rgba(22, 33, 62, 0.3) 0%, transparent 100%);
  pointer-events: none;
}

.services-futuristic::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(0deg, rgba(26, 26, 46, 0.3) 0%, transparent 100%);
  pointer-events: none;
}

.services-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: #ffffff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: rgba(26, 26, 46, 0.8);
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.service-card:hover::before {
  left: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 255, 255, 0.5);
  box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
}

.service-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  color: #00ffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon svg {
  width: 100%;
  height: 100%;
}

.service-card h3 {
    font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #ffffff;
}

.service-card p {
  color: #cccccc;
  line-height: 1.6;
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #00ffff;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 255, 255, 0.2);
}

/* Results секция */
.results-futuristic {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f1729 100%);
  padding: 5rem 0;
  color: white;
  position: relative;
  border-bottom: 1px solid rgba(0, 255, 255, 0.1);
}

.results-futuristic::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: linear-gradient(180deg, rgba(26, 26, 46, 0.4) 0%, transparent 100%);
  pointer-events: none;
}

.results-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: #ffffff;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.result-card {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(0, 255, 255, 0.3);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.result-card:hover {
  transform: scale(1.05);
  border-color: rgba(0, 255, 255, 0.6);
  box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
}

.result-number {
  font-size: 3rem;
  font-weight: 700;
  color: #00ffff;
  margin-bottom: 0.5rem;
}

.result-text {
  color: #cccccc;
  font-size: 1.1rem;
}

/* Process секция */
.process-futuristic {
  background: linear-gradient(180deg, #0f1729 0%, #0a0a0a 30%, #0a0a0a 70%, #1a1a2e 100%);
  padding: 5rem 0;
  color: white;
  position: relative;
  border-bottom: 1px solid rgba(0, 255, 255, 0.1);
}

.process-futuristic::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(180deg, rgba(15, 23, 41, 0.5) 0%, transparent 100%);
  pointer-events: none;
}

.process-futuristic::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(0deg, rgba(26, 26, 46, 0.5) 0%, transparent 100%);
  pointer-events: none;
}

.process-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: #ffffff;
}

.process-timeline {
  max-width: 800px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
  padding: 1.5rem;
  background: rgba(26, 26, 46, 0.5);
  border-radius: 15px;
  border-left: 4px solid #00ffff;
  transition: all 0.3s ease;
}

.process-step:hover {
  background: rgba(26, 26, 46, 0.8);
  transform: translateX(10px);
}

.step-number {
  font-size: 2rem;
  font-weight: 700;
  color: #00ffff;
  margin-right: 2rem;
  min-width: 60px;
}

.step-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.step-content p {
  color: #cccccc;
  line-height: 1.6;
}

/* Formats секция */
.formats-futuristic {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f1b2e 100%);
  padding: 5rem 0;
  color: white;
  position: relative;
  border-bottom: 1px solid rgba(0, 255, 255, 0.1);
}

.formats-futuristic::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: linear-gradient(180deg, rgba(26, 26, 46, 0.6) 0%, transparent 100%);
  pointer-events: none;
}

.formats-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: #ffffff;
}

.formats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.format-card {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.format-card.featured {
  border-color: rgba(139, 92, 246, 0.5);
  background: rgba(139, 92, 246, 0.1);
}

.format-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 255, 255, 0.2);
}

.format-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.format-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #ffffff;
}

.format-card p {
  color: #cccccc;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.price-features-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  text-align: left;
}

.price-features-list li {
  color: #cccccc;
  padding: 0.5rem 0;
  font-size: 0.95rem;
  line-height: 1.5;
  display: flex;
  align-items: center;
}

.price-features-list li i {
  color: #00ffff;
  margin-right: 0.75rem;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.format-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #00ffff;
  margin-top: 1.5rem;
}

/* Кнопка "Заказать услугу" в блоке форматов */
.formats-cta-wrapper {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 255, 255, 0.1);
}

.formats-cta-button {
  padding: 1.2rem 3rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: #0a0a0a;
  background: linear-gradient(135deg, #00ffff, #8a2be2);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  box-shadow: 0 5px 20px rgba(0, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.formats-cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.formats-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 255, 255, 0.5);
}

.formats-cta-button:hover::before {
  left: 100%;
}

.formats-cta-button:active {
  transform: translateY(-1px);
}

/* Адаптивность кнопки "Заказать услугу" */
@media (max-width: 768px) {
  .formats-cta-button {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    letter-spacing: 1px;
  }
  
  .formats-cta-wrapper {
    margin-top: 2rem;
    padding-top: 1.5rem;
  }
}

@media (max-width: 480px) {
  .formats-cta-button {
    padding: 0.9rem 2rem;
    font-size: 0.9rem;
    width: 100%;
    max-width: 300px;
  }
  
  .formats-cta-wrapper {
    margin-top: 1.5rem;
    padding-top: 1rem;
  }
}

/* ИИ генератор изображений */
.ai-image-generator-futuristic {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f1b2e 100%);
  padding: 5rem 0;
  color: white;
  position: relative;
  border-bottom: 1px solid rgba(0, 255, 255, 0.1);
}

.ai-image-generator-futuristic::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: linear-gradient(180deg, rgba(26, 26, 46, 0.6) 0%, transparent 100%);
  pointer-events: none;
}

.ai-image-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffffff;
}

.ai-image-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #cccccc;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.ai-image-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.ai-image-form-container {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(0, 255, 255, 0.3);
  border-radius: 15px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 255, 255, 0.1);
  margin-bottom: 2rem;
}

.form-group-image {
  margin-bottom: 1.5rem;
}

.form-label-image {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.image-textarea {
  width: 100%;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(0, 255, 255, 0.3);
  border-radius: 10px;
  color: #ffffff;
  font-size: 1rem;
  font-family: inherit;
  resize: vertical;
  min-height: 120px;
  transition: all 0.3s ease;
}

.image-textarea:focus {
  outline: none;
  border-color: #00ffff;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.image-textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.ai-image-button {
  width: 100%;
  padding: 1.2rem 2rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: #0a0a0a;
  background: linear-gradient(135deg, #00ffff, #8b5cf6);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  box-shadow: 0 5px 20px rgba(0, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.ai-image-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.ai-image-button:hover:not(:disabled) {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 255, 255, 0.5);
}

.ai-image-button:hover:not(:disabled)::before {
  left: 100%;
}

.ai-image-button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.button-loader {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.loader-spinner {
  width: 20px;
  height: 20px;
  border: 3px solid rgba(10, 10, 10, 0.3);
  border-top-color: #0a0a0a;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.ai-image-loading {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(0, 255, 255, 0.3);
  border-radius: 15px;
  padding: 3rem 2rem;
  text-align: center;
  margin-bottom: 2rem;
}

.loading-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.loading-spinner {
  position: relative;
  width: 80px;
  height: 80px;
}

.spinner-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 4px solid transparent;
  border-top-color: #00ffff;
  border-radius: 50%;
  animation: spin-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

.spinner-ring:nth-child(1) {
  animation-delay: -0.45s;
}

.spinner-ring:nth-child(2) {
  animation-delay: -0.3s;
  border-top-color: #8b5cf6;
}

.spinner-ring:nth-child(3) {
  animation-delay: -0.15s;
  border-top-color: #00ffff;
}

@keyframes spin-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.loading-text {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}

.loading-subtext {
  font-size: 0.95rem;
  color: #cccccc;
  margin: 0;
}

.ai-image-result-container {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(0, 255, 255, 0.3);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 255, 255, 0.1);
  animation: fadeIn 0.5s ease;
}

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

.image-result-wrapper {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.generated-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.image-download-btn {
  margin-top: 1.5rem;
  width: 100%;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  background: rgba(0, 255, 255, 0.2);
  border: 1px solid rgba(0, 255, 255, 0.5);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.image-download-btn:hover {
  background: rgba(0, 255, 255, 0.3);
  border-color: #00ffff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 255, 255, 0.3);
}

.image-download-btn svg {
  width: 20px;
  height: 20px;
}

/* Адаптивность для ИИ генератора изображений */
@media (max-width: 768px) {
  .ai-image-title {
    font-size: 2rem;
  }
  
  .ai-image-subtitle {
    font-size: 1rem;
    padding: 0 1rem;
  }
  
  .ai-image-form-container {
    padding: 1.5rem;
  }
  
  .ai-image-button {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }
  
  .loading-spinner {
    width: 60px;
    height: 60px;
  }
  
  .loading-text {
    font-size: 1rem;
  }
  
  .loading-subtext {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .ai-image-generator-futuristic {
    padding: 3rem 0;
  }
  
  .ai-image-title {
    font-size: 1.75rem;
    padding: 0 1rem;
  }
  
  .ai-image-subtitle {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }
  
  .ai-image-form-container {
    padding: 1.25rem;
    margin-bottom: 1.5rem;
  }
  
  .form-label-image {
    font-size: 1rem;
  }
  
  .image-textarea {
    padding: 0.875rem;
    font-size: 0.95rem;
    min-height: 100px;
  }
  
  .ai-image-button {
    padding: 0.9rem 1.25rem;
    font-size: 0.9rem;
    letter-spacing: 1px;
  }
  
  .ai-image-loading {
    padding: 2rem 1.5rem;
  }
  
  .loading-spinner {
    width: 50px;
    height: 50px;
  }
  
  .loading-text {
    font-size: 0.95rem;
  }
  
  .loading-subtext {
    font-size: 0.8rem;
  }
  
  .ai-image-result-container {
    padding: 1.25rem;
  }
  
  .image-download-btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.9rem;
  }
}

/* FAQ секция */
.faq-futuristic {
  background: linear-gradient(180deg, #0f1b2e 0%, #0a0a0a 25%, #0a0a0a 75%, #16213e 100%);
  padding: 5rem 0;
  color: white;
  position: relative;
  border-bottom: 1px solid rgba(0, 255, 255, 0.1);
}

.faq-futuristic::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(180deg, rgba(15, 27, 46, 0.4) 0%, transparent 100%);
  pointer-events: none;
}

.faq-futuristic::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(0deg, rgba(22, 33, 62, 0.4) 0%, transparent 100%);
  pointer-events: none;
}

.faq-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: #ffffff;
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(26, 26, 46, 0.5);
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 10px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(0, 255, 255, 0.4);
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: #ffffff;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(0, 255, 255, 0.1);
}

.faq-icon {
  font-size: 1.5rem;
  color: #00ffff;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: #cccccc;
  line-height: 1.6;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

/* Блок записи на видеоаудит */
.video-audit-cta {
  background: linear-gradient(135deg, #0a0a0a 0%, #16213e 50%, #1a1a2e 100%);
  padding: 5rem 0;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 255, 255, 0.1);
}

.video-audit-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 255, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

.audit-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: linear-gradient(45deg, #ffffff, #00ffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 2;
}

.audit-subtitle {
  font-size: 1.2rem;
  color: #cccccc;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

.audit-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.audit-btn {
  padding: 1.2rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
  display: inline-block;
}

.audit-btn.primary {
  background: linear-gradient(45deg, #8b5cf6, #00ffff);
  color: white;
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
}

.audit-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(139, 92, 246, 0.5);
}

.audit-btn.secondary {
  background: transparent;
  color: #00ffff;
  border: 2px solid #00ffff;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

.audit-btn.secondary:hover {
  background: rgba(0, 255, 255, 0.1);
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.4);
  transform: translateY(-2px);
}

/* Адаптивность для блока видеоаудита */
@media (max-width: 768px) {
  .audit-title {
    font-size: 2rem;
  }
  
  .audit-subtitle {
    font-size: 1rem;
    padding: 0 1rem;
  }
  
  .audit-buttons {
    flex-direction: column;
    padding: 0 1rem;
  }
  
  .audit-btn {
    width: 100%;
    max-width: 350px;
  }
}

/* CTA секция */
.cta-futuristic {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  padding: 5rem 0;
  text-align: center;
  color: white;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #00ffff;
}

.cta-button-large {
  background: linear-gradient(45deg, #8b5cf6, #00ffff);
  color: white;
  border: none;
  padding: 1.2rem 3rem;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
}

.cta-button-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(139, 92, 246, 0.4);
}

/* Стили для index.html в футуристическом стиле */

/* ИИ секция для index.html */
.ai-section-futuristic {
  background: linear-gradient(135deg, #16213e 0%, #0a0a0a 30%, #0a0a0a 70%, #1a1a2e 100%);
  padding: 5rem 0;
  color: white;
  position: relative;
  border-bottom: 1px solid rgba(0, 255, 255, 0.1);
}

.ai-section-futuristic::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(180deg, rgba(22, 33, 62, 0.5) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.ai-section-futuristic::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(0deg, rgba(26, 26, 46, 0.5) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.ai-title-futuristic {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.ai-sub-futuristic {
  text-align: center;
  font-size: 1.2rem;
  color: #cccccc;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.ai-grid-futuristic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.ai-chat-futuristic {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(0, 255, 255, 0.3);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 255, 255, 0.1);
}

.ai-chat__head-futuristic {
  background: rgba(0, 255, 255, 0.1);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid rgba(0, 255, 255, 0.2);
}

.ai-avatar-futuristic {
  font-size: 2rem;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 255, 255, 0.2);
  border-radius: 50%;
}

.ai-about-futuristic {
  flex: 1;
}

.ai-about-futuristic b {
  display: block;
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.ai-online-futuristic {
  color: #00ffff;
    font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ai-online-futuristic::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #00ffff;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.ai-chat__body-futuristic {
  padding: 1.5rem;
  max-height: 300px;
  overflow-y: auto;
  display: flex;
   flex-direction: column;
}

.ai-msg-futuristic {
  padding: 1rem;
  border-radius: 10px;
  margin-bottom: 1rem;
  color: #ffffff;
  max-width: 85%;
  animation: slideIn 0.3s ease;
}

.ai-msg-futuristic.bot {
  background: rgba(0, 255, 255, 0.1);
  border-left: 3px solid #00ffff;
  align-self: flex-start;
}

.ai-msg-futuristic.user {
  background: linear-gradient(45deg, rgba(139, 92, 246, 0.2), rgba(0, 255, 255, 0.2));
  border-right: 3px solid #8b5cf6;
  border-left: none;
  align-self: flex-end;
  margin-left: auto;
}

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

/* Индикатор печати для ИИ Ассистента */
.ai-msg-futuristic.typing-indicator {
  background: rgba(0, 255, 255, 0.1);
  border-left: 3px solid #00ffff;
  padding: 1rem;
  display: flex;
  gap: 5px;
  align-items: center;
  max-width: 80px;
}

.ai-chat__form-futuristic {
  padding: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  border-top: 1px solid rgba(0, 255, 255, 0.2);
}

.ai-chat__form-futuristic input {
  flex: 1;
  min-width: 200px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(0, 255, 255, 0.3);
  border-radius: 25px;
  padding: 0.75rem 1rem;
  color: #ffffff;
  font-size: 0.9rem;
}

.ai-chat__form-futuristic input::placeholder {
  color: #cccccc;
}

.ai-chat__form-futuristic button {
  background: linear-gradient(45deg, #8b5cf6, #00ffff);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
  white-space: nowrap;
}

.ai-chat__form-futuristic button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(139, 92, 246, 0.3);
}

.ai-benefits-futuristic {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 15px;
  padding: 2rem;
}

.ai-benefits-futuristic h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #00ffff;
  text-align: center;
}

.benefits-list-futuristic {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefits-list-futuristic li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
  color: #cccccc;
  border-bottom: 1px solid rgba(0, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.benefits-list-futuristic li:hover {
  color: #ffffff;
  background: rgba(0, 255, 255, 0.05);
  padding-left: 1rem;
}

.benefit-icon {
  font-size: 1.2rem;
  width: 30px;
  text-align: center;
}

/* FAQ для index.html */
.faq-desc {
  text-align: center;
  color: #cccccc;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

/* ИИ виджет для ads.html */
.chat-widget-futuristic {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
}

.chat-launcher-futuristic {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(45deg, #8b5cf6, #00ffff);
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-launcher-futuristic:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(139, 92, 246, 0.6);
}

.chat-window-futuristic {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 350px;
  height: 500px;
  background: rgba(10, 10, 10, 0.95);
  border: 1px solid rgba(0, 255, 255, 0.3);
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  display: none;
   flex-direction: column;
  backdrop-filter: blur(10px);
}

.chat-window-futuristic.active {
  display: flex;
}

.chat-header-futuristic {
  background: rgba(0, 255, 255, 0.1);
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 15px 15px 0 0;
}

.chat-avatar-futuristic {
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 255, 255, 0.2);
  border-radius: 50%;
}

.chat-info-futuristic {
  flex: 1;
}

.chat-name-futuristic {
  display: block;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.9rem;
}

.chat-status-futuristic {
  color: #00ffff;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.chat-status-futuristic::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #00ffff;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.chat-close-futuristic {
  background: none;
  border: none;
  color: #cccccc;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0.25rem;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.chat-close-futuristic:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.chat-messages-futuristic {
  flex: 1;
  padding: 1rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.msg-futuristic {
  padding: 0.75rem 1rem;
  border-radius: 10px;
  max-width: 80%;
  word-wrap: break-word;
}

.msg-futuristic.bot {
  background: rgba(0, 255, 255, 0.1);
  color: #ffffff;
  border-left: 3px solid #00ffff;
  align-self: flex-start;
}

.msg-futuristic.user {
  background: rgba(139, 92, 246, 0.2);
  color: #ffffff;
  border-right: 3px solid #8b5cf6;
  align-self: flex-end;
}

.chat-input-futuristic {
  padding: 1rem;
  display: flex;
  gap: 0.75rem;
  border-top: 1px solid rgba(0, 255, 255, 0.2);
}

.chat-input-futuristic input {
  flex: 1;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(0, 255, 255, 0.3);
  border-radius: 20px;
  padding: 0.5rem 1rem;
  color: #ffffff;
  font-size: 0.9rem;
}

.chat-input-futuristic input::placeholder {
  color: #cccccc;
}

.chat-input-futuristic button {
  background: linear-gradient(45deg, #8b5cf6, #00ffff);
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.chat-input-futuristic button:hover {
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(139, 92, 246, 0.3);
}

/* ИИ форма в конце страницы */
.ai-form-section {
  background: linear-gradient(180deg, #16213e 0%, #0a0a0a 25%, #0a0a0a 75%, #1a1a2e 100%);
  padding: 5rem 0;
  color: white;
  position: relative;
  border-bottom: 1px solid rgba(0, 255, 255, 0.1);
}

.ai-form-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(180deg, rgba(22, 33, 62, 0.6) 0%, transparent 100%);
  pointer-events: none;
}

.ai-form-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(0deg, rgba(26, 26, 46, 0.6) 0%, transparent 100%);
  pointer-events: none;
}

.ai-form-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: #ffffff;
}

.ai-form-container {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(0, 255, 255, 0.3);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.ai-form-header {
  background: rgba(0, 255, 255, 0.1);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid rgba(0, 255, 255, 0.2);
}

.ai-form-avatar {
  font-size: 2rem;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 255, 255, 0.2);
  border-radius: 50%;
}

.ai-form-info {
  flex: 1;
}

.ai-form-name {
  display: block;
  color: #ffffff;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.ai-form-status {
  color: #00ffff;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ai-form-status::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #00ffff;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.ai-form-messages {
  height: 400px;
  overflow-y: auto;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ai-form-msg {
  display: flex;
  flex-direction: column;
  max-width: 80%;
  word-wrap: break-word;
}

.ai-form-msg.bot {
  align-self: flex-start;
}

.ai-form-msg.user {
  align-self: flex-end;
}

.msg-content {
  padding: 1rem 1.25rem;
  border-radius: 15px;
  font-size: 0.95rem;
  line-height: 1.4;
}

.ai-form-msg.bot .msg-content {
  background: rgba(0, 0, 0, 0.3);
  color: #ffffff;
  border: 1px solid rgba(0, 255, 255, 0.2);
}

.ai-form-msg.user .msg-content {
  background: linear-gradient(45deg, #8b5cf6, #00ffff);
  color: #ffffff;
  border: none;
}

.msg-time {
  font-size: 0.75rem;
  color: #cccccc;
  margin-top: 0.25rem;
  padding: 0 0.5rem;
}

.ai-form-input {
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  border-top: 1px solid rgba(0, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.2);
}

.ai-form-input input {
  flex: 1;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(0, 255, 255, 0.3);
  border-radius: 25px;
  padding: 0.75rem 1.25rem;
  color: #ffffff;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.ai-form-input input:focus {
  outline: none;
  border-color: rgba(0, 255, 255, 0.6);
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.2);
}

.ai-form-input input::placeholder {
  color: #cccccc;
}

.ai-form-input button {
  background: linear-gradient(45deg, #8b5cf6, #00ffff);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  min-width: 100px;
}

.ai-form-input button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(139, 92, 246, 0.3);
}

.ai-form-input button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Анимация появления сообщений */
.ai-form-msg {
  animation: slideIn 0.3s ease-out;
}

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

/* Скролл к форме */
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100vw;
}

/* Индикатор печати для чата */
.typing-indicator .msg-content {
  display: flex;
  gap: 5px;
  padding: 1rem;
  align-items: center;
}

.typing-dot {
  width: 8px;
  height: 8px;
  background: #00ffff;
  border-radius: 50%;
  animation: typing-bounce 1.4s infinite ease-in-out;
}

.typing-dot:nth-child(1) {
  animation-delay: -0.32s;
}

.typing-dot:nth-child(2) {
  animation-delay: -0.16s;
}

.typing-dot:nth-child(3) {
  animation-delay: 0s;
}

@keyframes typing-bounce {
  0%, 60%, 100% {
    transform: translateY(0);
    opacity: 0.7;
  }
  30% {
    transform: translateY(-10px);
    opacity: 1;
  }
}

/* Модальное окно для формы телефона */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
}

.modal-overlay.active {
  display: flex;
  opacity: 1;
}

.modal-content {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border-radius: 20px;
  padding: 2.5rem;
  max-width: 500px;
  width: 90%;
  position: relative;
  box-shadow: 0 10px 50px rgba(0, 255, 255, 0.3);
  border: 1px solid rgba(0, 255, 255, 0.2);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: none;
  color: #00ffff;
  font-size: 2rem;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  line-height: 1;
}

.modal-close:hover {
  background: rgba(0, 255, 255, 0.1);
  transform: rotate(90deg);
  color: #ffffff;
}

.modal-title {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
  text-align: center;
}

.modal-subtitle {
  font-size: 1rem;
  color: #cccccc;
  margin-bottom: 2rem;
  text-align: center;
}

.phone-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  color: #00ffff;
  font-weight: 600;
  font-size: 0.95rem;
}

.form-group input {
  background: rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(0, 255, 255, 0.3);
  border-radius: 12px;
  padding: 1rem;
  color: #ffffff;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus {
  outline: none;
  border-color: rgba(0, 255, 255, 0.8);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

.form-group input::placeholder {
  color: #888888;
}

.error-message {
  color: #ff4444;
  font-size: 0.85rem;
  min-height: 1.2rem;
  display: block;
}

.submit-button {
  background: linear-gradient(45deg, #8b5cf6, #00ffff);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

.submit-button:active {
  transform: translateY(0);
}

.submit-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Стили для чекбокса согласия */
.checkbox-group {
  margin: 0.5rem 0;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  user-select: none;
}

.checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  min-width: 20px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: #00ffff;
  border: 2px solid rgba(0, 255, 255, 0.5);
  border-radius: 4px;
}

.checkbox-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  line-height: 1.5;
}

.checkbox-text a {
  color: #00ffff;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 255, 255, 0.3);
  transition: all 0.2s ease;
}

.checkbox-text a:hover {
  color: #8b5cf6;
  border-bottom-color: #8b5cf6;
}

.checkbox-label input[type="checkbox"]:focus {
  outline: 2px solid #00ffff;
  outline-offset: 2px;
}

.checkbox-label input[type="checkbox"]:checked {
  background-color: #00ffff;
}

/* Адаптивность модального окна */
@media (max-width: 768px) {
  .modal-content {
    padding: 2rem 1.5rem;
    max-width: 95%;
  }

  .modal-title {
    font-size: 1.5rem;
  }

  .modal-subtitle {
    font-size: 0.9rem;
  }

  .form-group input {
    padding: 0.875rem;
    font-size: 0.95rem;
  }

  .submit-button {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  .checkbox-text {
    font-size: 0.85rem;
  }

  .checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
  }
}

@media (max-width: 480px) {
  .modal-content {
    padding: 1.5rem 1rem;
  }

  .modal-title {
    font-size: 1.3rem;
  }

  .modal-close {
    top: 0.5rem;
    right: 0.5rem;
    font-size: 1.5rem;
    width: 35px;
    height: 35px;
  }

  .checkbox-text {
    font-size: 0.8rem;
  }

  .checkbox-label {
    gap: 0.5rem;
  }

  .checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    min-width: 16px;
  }
}

/* Footer футуристический */
.site-footer {
  background: #0d1b2a;
  border-top: none;
  padding: 4rem 0 2rem;
  color: #ffffff;
  position: relative;
  overflow: visible;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr auto 1fr;
  gap: 2rem;
  align-items: start;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem 4rem;
  position: relative;
}

.footer-left {
  color: #cccccc;
  font-size: 0.85rem;
  line-height: 1.6;
  padding: 1rem 1rem 1rem 0;
  background: transparent;
  border-left: none;
  border-radius: 0;
  max-width: 500px;
}

.footer-center {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 0.5rem;
}

.footer-center .phone {
  color: #00ffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.4rem;
  transition: all 0.3s ease;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  border: none;
  background: transparent;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.footer-center .phone::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.footer-center .phone:hover::before {
  left: 100%;
}

.footer-center .phone:hover {
  color: #ffffff;
  background: transparent;
  border-color: transparent;
  text-shadow: 0 0 15px rgba(0, 255, 255, 0.8);
  transform: scale(1.08);
  box-shadow: none;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
  font-size: 0.85rem;
  padding-top: 0.5rem;
}

.footer-right span {
  color: #cccccc;
  padding: 0.25rem 0.5rem;
}

.privacy-link {
  color: #00ffff;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 0;
  border: none;
}

.privacy-link:hover {
  color: #ffffff;
  background: transparent;
  border-color: transparent;
  text-shadow: 0 0 8px rgba(0, 255, 255, 0.6);
}

.tg-footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #00ffff;
  text-decoration: none;
  padding: 1rem 2rem;
  border: none;
  border-radius: 30px;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  font-weight: 600;
  background: transparent;
  position: absolute;
  bottom: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  box-shadow: none;
}

.tg-footer:hover {
  background: transparent;
  border-color: transparent;
  transform: translateX(-50%) translateY(-5px);
  box-shadow: none;
  color: #ffffff;
}

.tg-footer svg {
  width: 20px;
  height: 20px;
  filter: drop-shadow(0 0 8px rgba(0, 255, 255, 0.6));
  transition: transform 0.3s ease;
}

.tg-footer:hover svg {
  transform: rotate(360deg);
}

/* Topbar футуристический */
.topbar {
  background: #0d1b2a;
  border-bottom: none;
  padding: 0.75rem 0;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.topitem {
  color: #cccccc;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
}

.topitem:hover {
  color: #00ffff;
  background: rgba(0, 255, 255, 0.1);
  transform: translateY(-2px);
}

.topitem .icn {
  width: 16px;
  height: 16px;
  color: #00ffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.topitem .icn svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 3px rgba(0, 255, 255, 0.3));
}

/* Адаптивность */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }

  /* Упрощение анимации на планшетах */
  .orb {
    filter: blur(40px);
    opacity: 0.1;
  }

  .orb-1 {
    width: 300px;
    height: 300px;
  }

  .orb-2 {
    width: 350px;
    height: 350px;
  }

  .orb-3 {
    width: 250px;
    height: 250px;
  }

  .particle {
    width: 3px;
    height: 3px;
  }
  
  .services-grid,
  .results-grid,
  .formats-grid {
    grid-template-columns: 1fr;
  }
  
  .process-step {
    flex-direction: column;
    text-align: center;
  }
  
  .step-number {
    margin-right: 0;
    margin-bottom: 1rem;
  }

  .ai-grid-futuristic {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .chat-window-futuristic {
    width: calc(100vw - 2rem);
    max-width: 350px;
    height: 500px;
    right: 1rem;
  }

  .chat-widget-futuristic {
    bottom: 1rem;
    right: 1rem;
  }

  .chat-input-futuristic {
    padding: 0.75rem;
  }

  .chat-input-futuristic input {
    font-size: 0.85rem;
    padding: 0.5rem 0.75rem;
  }

  .chat-input-futuristic button {
    padding: 0.5rem 0.75rem;
    font-size: 0.85rem;
    min-width: 80px;
    flex-shrink: 0;
    white-space: nowrap;
  }

  .ai-form-container {
    max-width: 100%;
  }

  .ai-form-input {
    padding: 1rem;
  }

  .ai-form-input input {
    font-size: 0.85rem;
    padding: 0.65rem 1rem;
  }

  .ai-form-input button {
    padding: 0.65rem 1rem;
    font-size: 0.85rem;
    min-width: 80px;
  }

  /* Исправление формы ИИ-ассистента на планшетах */
  .ai-chat__form-futuristic {
    padding: 1.25rem;
    gap: 0.75rem;
  }

  .ai-chat__form-futuristic input {
    min-width: 180px;
  }

  .ai-chat__form-futuristic button {
    min-width: 110px;
    padding: 0.75rem 1.25rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }

  .cta-button {
    width: 100%;
    padding: 0.875rem 2rem;
    font-size: 1rem;
  }

  /* Минимальная анимация на мобильных для производительности */
  .orb {
    filter: blur(30px);
    opacity: 0.08;
  }

  .orb-1 {
    width: 200px;
    height: 200px;
  }

  .orb-2 {
    width: 250px;
    height: 250px;
  }

  .orb-3 {
    display: none; /* Отключаем третий орб на слабых устройствах */
  }

  .particle {
    width: 2px;
    height: 2px;
    box-shadow: 0 0 5px #00ffff;
  }

  /* Упрощаем линии */
  .line {
    opacity: 0.3;
  }

  .line-3,
  .line-4 {
    display: none; /* Меньше линий на мобильных */
  }

  .chat-window-futuristic {
    width: calc(100vw - 1rem);
    height: 450px;
    right: 0.5rem;
  }

  .chat-widget-futuristic {
    bottom: 0.5rem;
    right: 0.5rem;
  }

  .chat-launcher-futuristic {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }

  .chat-input-futuristic {
    padding: 0.5rem;
    gap: 0.5rem;
  }

  .chat-input-futuristic input {
    font-size: 0.8rem;
    padding: 0.4rem 0.75rem;
  }

  .chat-input-futuristic button {
    padding: 0.4rem 0.6rem;
    font-size: 0.8rem;
    min-width: 70px;
    flex-shrink: 0;
    white-space: nowrap;
  }

  .ai-form-input {
    padding: 0.75rem;
    gap: 0.5rem;
  }

  .ai-form-input input {
    font-size: 0.8rem;
    padding: 0.6rem 0.75rem;
  }

  .ai-form-input button {
    padding: 0.6rem 0.75rem;
    font-size: 0.8rem;
    min-width: 70px;
  }

  .ai-form-messages {
    height: 300px;
  }

  /* Исправление формы ИИ-ассистента на мобильных */
  .ai-chat__form-futuristic {
    flex-direction: column;
    padding: 1rem;
    gap: 0.75rem;
  }

  .ai-chat__form-futuristic input {
    width: 100%;
    min-width: 100%;
  }

  .ai-chat__form-futuristic button {
    width: 100%;
    padding: 0.75rem;
    font-size: 0.9rem;
    flex-shrink: 0;
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
    padding-bottom: 3rem;
    align-items: center;
  }

  .footer-left {
    text-align: center;
    padding: 1rem;
    max-width: 100%;
  }

  .footer-right {
    align-items: center;
    text-align: center;
  }

  .footer-center .phone {
    font-size: 1.2rem;
  }

  .tg-footer {
    position: static;
    transform: none;
    margin-top: 1rem;
  }

  .tg-footer:hover {
    transform: translateY(-3px);
  }

  .topbar .container {
    justify-content: center;
  }

  .topitem {
    font-size: 0.85rem;
    padding: 0.4rem 0.75rem;
  }
}

/* Для очень узких экранов - кнопка всегда внизу */
@media (max-width: 380px) {
  .ai-chat__form-futuristic input {
    min-width: 100%;
  }
  
  .ai-chat__form-futuristic button {
    min-width: 100%;
  }
}

/* Шрифты */
@font-face {
  font-family: "Nunito Sans";
  src: url("./fonts/NunitoSans.woff2") format("woff2");
  font-weight: 100 900;        /* диапазон для вариативного начертания */
  font-style: normal;
  font-display: swap;
}

/* Назначаем для всего */
html {
  font-family: "Nunito Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
}

/* Наследование на все элементы и псевдоэлементы */
*, *::before, *::after {
  font-family: inherit;
}

/* Базовые стили */
* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

/* Предотвращение горизонтального скролла для всех медиа элементов */
img, video, iframe {
  max-width: 100%;
  height: auto;
}

body {
  font: 15px/1.4 system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Arial, sans-serif;
  color: #1b1f23;
  background: #0a0a0a;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  max-width: 100vw;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Контейнер */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Специальный класс для синего текста */
.blue-span {
  color: #06b6d4;
}

/* Header и навигация */
.header {
  background: #0d1b2a;
  border-bottom: none;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #00ffff;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-flex;
}

.brand-mark svg {
  width: 42px;
  height: 42px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-text strong {
  font-size: 22px;
  color: #ffffff;
}

.brand-text span {
  font-size: 12px;
  color: #cccccc;
}

.nav ul {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav a {
  display: inline-flex;
  align-items: center;
  padding: 10px 0;
  color: #ffffff;
  font-weight: 500;
}

.nav a:hover {
  color: #00ffff;
}

.nav-toggle {
  display: none;
}

.hamburger {
  display: none;
  width: 36px;
  height: 28px;
  cursor: pointer;
  position: relative;
}

.hamburger span {
  position: absolute;
  left: 0;
  right: 0;
  height: 3px;
  background: #00ffff;
  border-radius: 2px;
  transition: 0.25s;
}

.hamburger span:nth-child(1) {
  top: 2px;
}

.hamburger span:nth-child(2) {
  top: 12px;
}

.hamburger span:nth-child(3) {
  top: 22px;
}

.backdrop {
  display: none;
}

.nav-close {
  display: none;
}

@media (max-width: 860px) {
  .hamburger {
    display: inline-block;
  }
  
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: #0d1b2a;
    border-left: none;
    transition: right 0.3s ease;
    z-index: 1000;
    padding: 2rem;
  }
  
  .nav ul {
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
  }
  
  .nav a {
    padding: 12px 4px;
    font-size: 18px;
  }
  
  .nav-toggle:checked ~ .nav {
    right: 0;
  }
  
  .backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 900;
    display: none;
  }
  
  .nav-toggle:checked ~ .backdrop {
    display: block;
  }
  
  .nav-close {
    display: block;
    position: absolute;
    top: 10px;
    right: 12px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 28px;
    color: #ffffff;
    cursor: pointer;
    background: none;
    border: none;
  }
}

/* Преимущества секция */
.advantages-futuristic {
  background: linear-gradient(180deg, #0a0a0a 0%, #1a1a2e 100%);
  padding: 5rem 0;
  border-top: 1px solid rgba(0, 255, 255, 0.1);
}

.advantages-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  background: linear-gradient(45deg, #ffffff, #00ffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.advantage-card {
  background: linear-gradient(145deg, rgba(13, 27, 42, 0.6), rgba(22, 33, 62, 0.4));
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.advantage-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 255, 255, 0.5);
  box-shadow: 0 8px 30px rgba(0, 255, 255, 0.2);
}

.advantage-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(0, 255, 255, 0.2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.advantage-icon svg {
  width: 32px;
  height: 32px;
  fill: #00ffff;
}

.advantage-card h3 {
  font-size: 1.35rem;
  color: #ffffff;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.advantage-card p {
  color: #cccccc;
  font-size: 1rem;
  line-height: 1.6;
}

/* Логотипы партнеров */
.partners-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
  padding: 3rem 0;
  margin-bottom: 3rem;
  border-top: 1px solid rgba(0, 255, 255, 0.1);
  border-bottom: 1px solid rgba(0, 255, 255, 0.1);
}

.partner-logo {
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.partner-logo:hover {
  opacity: 1;
}

.partner-logo svg {
  height: 40px;
  width: auto;
}

/* Секция сертификатов */
.certificates-section {
  margin-top: 3rem;
}

.certificates-heading {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 2.5rem;
}

.certificates-slider {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
  padding: 0 60px;
}

.certificates-track {
  display: flex;
  transition: transform 0.4s ease-in-out;
  gap: 1.5rem;
}

.certificate-slide {
  min-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

.certificate-slide {
  position: relative;
}

.certificate-slide img {
  max-width: 600px;
  width: 100%;
  height: auto;
  border-radius: 10px;
  border: 2px solid rgba(0, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  display: block;
}

.certificate-slide img:hover {
  transform: scale(1.02);
  border-color: rgba(0, 255, 255, 0.5);
  box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
}

/* Индикатор увеличения для сертификатов */
.certificate-slide::after {
  content: '🔍';
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: rgba(0, 0, 0, 0.7);
  color: #00ffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  border: 2px solid rgba(0, 255, 255, 0.5);
}

.certificate-slide:hover::after {
  opacity: 1;
}

.certificate-placeholder {
  width: 100%;
  max-width: 600px;
  height: 400px;
  background: linear-gradient(145deg, rgba(13, 27, 42, 0.8), rgba(22, 33, 62, 0.6));
  border: 2px dashed rgba(0, 255, 255, 0.3);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  transition: all 0.3s ease;
}

.certificate-placeholder:hover {
  border-color: rgba(0, 255, 255, 0.5);
  background: linear-gradient(145deg, rgba(13, 27, 42, 0.9), rgba(22, 33, 62, 0.7));
}

.certificate-placeholder span {
  font-size: 1.5rem;
  font-weight: 600;
  color: #00ffff;
}

.certificate-placeholder p {
  color: #cccccc;
  font-size: 1rem;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 255, 255, 0.2);
  border: 1px solid rgba(0, 255, 255, 0.4);
  color: #00ffff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-btn:hover {
  background: rgba(0, 255, 255, 0.3);
  border-color: rgba(0, 255, 255, 0.6);
}

.slider-btn.prev {
  left: 0;
}

.slider-btn.next {
  right: 0;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 2rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(0, 255, 255, 0.3);
  border: 1px solid rgba(0, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot:hover,
.dot.active {
  background: rgba(0, 255, 255, 0.8);
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

/* Адаптивность для преимуществ */
@media (max-width: 768px) {
  .advantages-title {
    font-size: 1.8rem;
  }
  
  .advantages-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .partners-logos {
    gap: 2rem;
  }
  
  .partner-logo svg {
    height: 30px;
  }
  
  .certificates-slider {
    padding: 0 50px;
  }
  
  .slider-btn {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
  
  .certificate-placeholder {
    height: 300px;
  }

  /* Уменьшение сертификатов на планшетах */
  .certificate-slide img {
    max-width: 450px;
    border-radius: 8px;
  }

  /* Иконка увеличения видна на планшетах */
  .certificate-slide::after {
    opacity: 0.7;
    bottom: 1rem;
    right: 1rem;
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .advantages-title {
    font-size: 1.5rem;
  }
  
  .certificates-slider {
    padding: 0 40px;
  }
  
  .slider-btn {
    width: 35px;
    height: 35px;
    font-size: 1.3rem;
  }
  
  .certificate-placeholder {
    height: 250px;
  }
  
  .certificates-heading {
    font-size: 1.4rem;
  }

  /* Сильное уменьшение сертификатов на мобильных */
  .certificate-slide {
    padding: 0.5rem;
  }

  .certificate-slide img {
    max-width: 280px;
    border-radius: 6px;
    border-width: 1px;
  }

  .certificate-slide img:active {
    transform: scale(0.98);
  }

  /* Иконка увеличения всегда видна на мобильных */
  .certificate-slide::after {
    opacity: 0.8;
    bottom: 0.5rem;
    right: 0.5rem;
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }

  .certificate-slide:active::after {
    opacity: 0;
  }
}

/* Секция кейсов */
.cases-futuristic {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(0, 255, 255, 0.1);
  border-bottom: 1px solid rgba(0, 255, 255, 0.1);
}

.cases-futuristic::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 50%, rgba(0, 255, 255, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(138, 43, 226, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.cases-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  background: linear-gradient(135deg, #00ffff, #ffffff, #8a2be2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 1;
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.case-card {
  background: rgba(20, 20, 40, 0.6);
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 15px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.case-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.05), rgba(138, 43, 226, 0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.case-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 255, 255, 0.4);
  box-shadow: 0 10px 40px rgba(0, 255, 255, 0.2);
}

.case-card:hover::before {
  opacity: 1;
}

.case-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.case-header h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #00ffff;
  margin: 0;
}

.case-badge {
  background: linear-gradient(135deg, #00ffff, #8a2be2);
  color: #0a0a0a;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.case-screenshot {
  width: 100%;
  height: 200px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(0, 255, 255, 0.2);
  position: relative;
  background: rgba(10, 10, 10, 0.5);
}

.case-screenshot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.case-card:hover .case-screenshot img {
  transform: scale(1.05);
}

.case-screenshot-img:hover {
  opacity: 0.9;
}

.case-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.case-block {
  background: rgba(0, 0, 0, 0.3);
  padding: 1rem;
  border-radius: 8px;
  border-left: 3px solid #00ffff;
}

.case-label {
  font-size: 0.9rem;
  color: #00ffff;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.case-block p {
  color: #e0e0e0;
  line-height: 1.6;
  margin: 0;
  font-size: 0.95rem;
}

.case-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  margin-top: 0.5rem;
}

.metric-item {
  text-align: center;
  padding: 0.6rem 0.3rem;
  background: rgba(0, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(0, 255, 255, 0.15);
}

.metric-value {
  font-size: 1.4rem;
  font-weight: 700;
  background: linear-gradient(135deg, #00ffff, #8a2be2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.2rem;
  line-height: 1.2;
}

.metric-label {
  font-size: 0.65rem;
  color: #b0b0b0;
  text-transform: uppercase;
  letter-spacing: 0.2px;
  line-height: 1.2;
  word-break: break-word;
  hyphens: auto;
  padding: 0 0.2rem;
}

.case-testimonial {
  background: rgba(138, 43, 226, 0.1);
  border-left: 3px solid #8a2be2;
  padding: 1rem;
  border-radius: 8px;
  font-style: italic;
}

.case-testimonial p {
  color: #e0e0e0;
  margin: 0 0 0.5rem 0;
  line-height: 1.6;
  font-size: 0.95rem;
}

.testimonial-author {
  color: #8a2be2;
  font-size: 0.85rem;
  font-weight: 600;
}

.case-cta {
  width: 100%;
  padding: 1rem;
  margin-top: 1.5rem;
  background: linear-gradient(135deg, #00ffff, #8a2be2);
  color: #0a0a0a;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.case-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0, 255, 255, 0.4);
}

.case-cta:active {
  transform: translateY(0);
}

/* Адаптивность для кейсов */
@media (max-width: 1024px) {
  .cases-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
  
  .case-metrics {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }
  
  .metric-value {
    font-size: 1.3rem;
  }
  
  .metric-label {
    font-size: 0.6rem;
  }
}

@media (max-width: 768px) {
  .cases-title {
    font-size: 2rem;
  }
  
  .cases-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .case-screenshot {
    height: 180px;
  }
  
  .case-metrics {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  
  .metric-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 1rem;
  }
  
  .metric-value {
    font-size: 1.6rem;
  }
  
  .metric-label {
    font-size: 0.8rem;
    text-align: right;
  }
}

@media (max-width: 480px) {
  .cases-title {
    font-size: 1.5rem;
  }
  
  .case-card {
    padding: 1.5rem;
  }
  
  .case-header h3 {
    font-size: 1.2rem;
  }
  
  .case-screenshot {
    height: 150px;
  }
  
  .metric-value {
    font-size: 1.2rem;
  }
  
  .metric-label {
    font-size: 0.6rem;
  }
  
  .case-cta {
    font-size: 0.9rem;
    padding: 0.9rem;
  }
}

/* Модальное окно для увеличения изображений */
.image-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  padding-top: 50px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
}

.image-modal.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.image-modal-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 10px;
  border: 2px solid rgba(0, 255, 255, 0.3);
  box-shadow: 0 0 50px rgba(0, 255, 255, 0.3);
  animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.image-modal-close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #00ffff;
  font-size: 50px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10001;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

.image-modal-close:hover,
.image-modal-close:focus {
  color: #fff;
  text-shadow: 0 0 20px rgba(0, 255, 255, 1);
  transform: scale(1.2);
}

.image-modal-caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #00ffff;
  padding: 20px 0;
  font-size: 1rem;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

/* Адаптивность модального окна */
@media (max-width: 768px) {
  .image-modal-content {
    max-width: 95%;
    max-height: 80vh;
  }
  
  .image-modal-close {
    top: 10px;
    right: 20px;
    font-size: 40px;
  }
  
  .image-modal-caption {
    font-size: 0.9rem;
    width: 90%;
  }
}

@media (max-width: 480px) {
  .image-modal {
    padding-top: 30px;
  }
  
  .image-modal-content {
    max-width: 98%;
    max-height: 75vh;
  }
  
  .image-modal-close {
    top: 5px;
    right: 10px;
    font-size: 35px;
  }
}

/* Стили для формы дополнительных услуг */
.additional-services-form-section {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f1729 100%);
  padding: 5rem 0;
  color: white;
  position: relative;
  border-top: 1px solid rgba(0, 255, 255, 0.1);
}

.form-section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffffff;
  background: linear-gradient(135deg, #00ffff 0%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.form-section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.additional-services-form {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(26, 26, 46, 0.8);
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.form-input,
.form-select {
  background: rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(0, 255, 255, 0.3);
  border-radius: 12px;
  padding: 1rem;
  color: #ffffff;
  font-size: 1rem;
  transition: all 0.3s ease;
  width: 100%;
  font-family: inherit;
}

.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2300ffff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 12px;
  padding-right: 3rem;
}

.form-select:focus {
  outline: none;
  border-color: rgba(0, 255, 255, 0.8);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

.form-input:focus {
  outline: none;
  border-color: rgba(0, 255, 255, 0.8);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

.form-input::placeholder {
  color: #888888;
}

.form-select option {
  background: #1a1a2e;
  color: #ffffff;
}

/* Адаптивность формы дополнительных услуг */
@media (max-width: 768px) {
  .form-section-title {
    font-size: 2rem;
  }

  .form-section-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .additional-services-form {
    padding: 2rem 1.5rem;
  }

  .form-input,
  .form-select {
    padding: 0.875rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .additional-services-form-section {
    padding: 3rem 0;
  }

  .form-section-title {
    font-size: 1.75rem;
  }

  .form-section-subtitle {
    font-size: 0.9rem;
    padding: 0 1rem;
  }

  .additional-services-form {
    padding: 1.5rem 1rem;
    border-radius: 16px;
  }

  .form-input,
  .form-select {
    padding: 0.75rem;
    font-size: 0.9rem;
  }
}

