/* Landing page specific styles */
html,body{height:100%;margin:0;font-family:'Inter',sans-serif;scroll-behavior:smooth;}
.hero{min-height:100%;display:flex;flex-direction:column;justify-content:center;align-items:center;color:#fff;background:linear-gradient(230deg,#1976d2 0%,#0d47a1 100%);text-align:center;position:relative;overflow:hidden;}
.glass-card{position:relative;z-index:2;backdrop-filter:blur(18px);background-color:rgba(255,255,255,0.08);border-radius:20px;padding:2rem 3rem;box-shadow:0 8px 32px rgba(0,0,0,0.3);}
.hero h1{font-size:clamp(2.5rem,6vw,4rem);font-weight:700;margin-bottom:1rem;}
.hero p{font-size:clamp(1rem,2.5vw,1.25rem);margin-bottom:2rem;max-width:520px;margin-left:auto;margin-right:auto;}
.btn-cta{font-weight:600;font-size:1.125rem;padding:.75rem 2rem;border-radius:50px;}
.features{margin-top:3rem;display:flex;gap:2.5rem;flex-wrap:wrap;justify-content:center;}
.feature-item i{font-size:2rem;margin-bottom:.75rem;}
.feature-item span{display:block;font-weight:600;}
.pricing-section{position:relative;background:linear-gradient(230deg,#0d47a1 0%,#1976d2 100%);overflow:hidden;}
.price-card{border-radius:20px;border:1px solid rgba(255,255,255,0.25);background:rgba(255,255,255,0.08);backdrop-filter:blur(14px);color:#fff;box-shadow:0 12px 30px rgba(0,0,0,.25);transition:transform .25s ease,box-shadow .25s ease;}
.price-card:hover{transform:translateY(-8px) scale(1.02);box-shadow:0 16px 40px rgba(0,0,0,.3);}
.price-card h2{font-weight:700;}
.price-card ul li{position:relative;padding-left:26px;margin-bottom:8px;}
.price-card ul li::before{content:'\f058';font-family:"Font Awesome 6 Free";font-weight:900;position:absolute;left:0;color:#4caf50;}
.badge-discount{position:absolute;top:-10px;right:-10px;background:#ff4081;border-radius:20px;padding:6px 12px;font-size:.8rem;}
@keyframes slideUp{from{opacity:0;transform:translateY(60px);}to{opacity:1;transform:translateY(0);}}
.animate-slide-up{animation:slideUp .7s ease-out forwards;}
@keyframes slideLeft{from{opacity:0;transform:translateX(80px);}to{opacity:1;transform:translateX(0);}}
@keyframes slideRight{from{opacity:0;transform:translateX(-80px);}to{opacity:1;transform:translateX(0);}}
.animate-slide-left{animation:slideLeft .7s ease-out forwards;}
.animate-slide-right{animation:slideRight .7s ease-out forwards;}
.scroll-arrow{animation:bounce 2s infinite;}
@keyframes bounce{0%,20%,50%,80%,100%{transform:translateY(0);}40%{transform:translateY(-8px);}60%{transform:translateY(-4px);}}

/* Pulse анимация для badge элементов */
@keyframes pulse{
  0%{transform:scale(1);}
  50%{transform:scale(1.05);}
  100%{transform:scale(1);}
}

/* ====================== МОБИЛЬНАЯ АДАПТАЦИЯ ====================== */
/* Общие стили для мобильных */
@media(max-width:768px){
  /* Отключение тяжелых эффектов */
  .floating-icon{display:none !important;}
  #codeRain{display:none !important;}
  
  /* Оптимизация анимаций */
  *{animation-duration:.3s !important;}
  
  /* Контейнеры */
  .container{padding-left:1rem;padding-right:1rem;}
  
  /* Секции */
  section{padding-top:2rem !important;padding-bottom:2rem !important;}
}

/* Экстра маленькие экраны (<576px) */
@media(max-width:576px){
  /* === НАВИГАЦИЯ === */
  .navbar{padding:.5rem 0;}
  .navbar-brand{font-size:1.1rem;font-weight:700;}
  
  /* === ГЕРОЙ СЕКЦИЯ === */
  .hero{
    min-height:100vh;
    padding:5rem 1rem 3rem;
    background:linear-gradient(180deg,#1976d2 0%,#0d47a1 100%);
  }
  .glass-card{
    padding:2rem 1.5rem;
    border-radius:20px;
    max-width:100%;
    backdrop-filter:blur(15px);
    background-color:rgba(255,255,255,0.12);
  }
  .hero h1{
    font-size:2.5rem;
    line-height:1.1;
    margin-bottom:1.5rem;
  }
  .hero p{
    font-size:1.1rem;
    line-height:1.5;
    margin-bottom:2rem;
  }
  .btn-cta{
    font-size:1.125rem;
    padding:1rem 2.5rem;
    border-radius:50px;
    margin-bottom:2rem;
    box-shadow:0 4px 20px rgba(255,193,7,.3);
  }
  
  /* Features в герое */
  .features{
    margin-top:2rem;
    gap:1.5rem;
    flex-direction:row;
    justify-content:space-around;
  }
  .feature-item{
    flex:1;
    text-align:center;
  }
  .feature-item i{
    font-size:1.5rem;
    margin-bottom:.5rem;
    display:block;
  }
  .feature-item span{
    font-size:.85rem;
    font-weight:600;
  }
  
  /* === О ПРОДУКТЕ === */
  .about-section{background:#f8f9fa;}
  .about-section h2{
    font-size:1.75rem;
    text-align:center;
    margin-bottom:1.5rem;
  }
  .about-section .lead{
    font-size:1rem;
    text-align:center;
    margin-bottom:2rem;
  }
  
  /* Таймлайн */
  .timeline{
    padding-left:25px;
    margin-top:2rem;
  }
  .timeline::before{
    left:15px;
    width:3px;
  }
  .timeline-item{
    margin-bottom:2rem;
    padding-left:35px;
  }
  .timeline-item .dot{
    left:-6px;
    width:14px;
    height:14px;
  }
  .timeline-card{
    padding:1.25rem;
    border-radius:12px;
  }
  .timeline-card h5{
    font-size:1rem;
    margin-bottom:.75rem;
  }
  .timeline-card i{
    font-size:1.25rem;
  }
  .timeline-card ul{
    font-size:.85rem;
  }
  
  /* === ТАРИФЫ === */
  .pricing-section h2{
    font-size:1.75rem;
    margin-bottom:2rem;
  }
  .price-card{
    border-radius:16px;
    background:rgba(255,255,255,0.15);
    backdrop-filter:blur(10px);
    margin-bottom:1.5rem;
  }
  .price-card .card-body{
    padding:2rem 1.5rem;
  }
  .price-card h5{
    font-size:1.25rem;
  }
  .price-card h2{
    font-size:2rem;
    margin:1rem 0;
  }
  .price-card ul{
    font-size:.9rem;
    margin-bottom:1.5rem;
  }
  .price-card .btn{
    padding:.75rem 1.5rem;
    font-weight:600;
  }
  .badge-discount{
    top:-8px;
    right:-8px;
    font-size:.75rem;
    padding:4px 10px;
  }
  
  /* === ОТЗЫВЫ === */
  #testimonials h2{
    font-size:1.75rem;
    margin-bottom:2rem;
  }
     .testimonial-card{
     padding:1.75rem 1.25rem;
     border-radius:16px;
     margin-bottom:1rem;
     text-align:center;
   }
   .testimonial-card .testimonial-avatar{
     width:60px;
     height:60px;
     margin:0 auto 1rem;
   }
  .testimonial-card p{
    font-size:.95rem;
    line-height:1.5;
    margin-bottom:1rem;
  }
  .testimonial-card .name{
    font-size:.9rem;
    font-weight:600;
  }
  
  /* Карусель */
  .carousel-control-prev,
  .carousel-control-next{
    width:40px;
    top:50%;
    transform:translateY(-50%);
  }
  .carousel-control-prev{left:-20px;}
  .carousel-control-next{right:-20px;}
  
  /* === CTA БАННЕР === */
  .cta-banner{
    padding:2.5rem 1.5rem;
    border-radius:16px;
    margin:1rem;
  }
  .cta-banner h2{
    font-size:1.5rem;
    margin-bottom:1.5rem;
  }
  .cta-banner .btn{
    font-size:1.125rem;
    padding:1rem 2rem;
  }
  
  /* === FAQ === */
  #faq h2{
    font-size:1.75rem;
    margin-bottom:2rem;
  }
  .accordion-button{
    font-size:.95rem;
    padding:1rem 1.25rem;
  }
  .accordion-body{
    font-size:.9rem;
    padding:1rem 1.25rem;
  }
  
     /* === УВЕДОМЛЕНИЯ === */
   .glass-note{
     width:calc(100% - 2rem);
     margin:0 1rem;
     padding:1rem;
     border-radius:12px;
     font-size:.85rem;
   }
   .glass-note .notification-icon{
     width:36px;
     height:36px;
     font-size:1rem;
   }
   .glass-note .title{
     font-size:.9rem;
   }
   .glass-note .small{
     font-size:.75rem;
   }
}

/* Средние экраны (576px - 768px) */
@media(min-width:577px) and (max-width:768px){
  .hero{padding:6rem 2rem 4rem;}
  .glass-card{padding:2.5rem 2rem;}
  .hero h1{font-size:3rem;}
  .hero p{font-size:1.125rem;}
  .features{gap:2rem;}
  .feature-item i{font-size:1.75rem;}
  .timeline{padding-left:30px;}
  .price-card{margin-bottom:2rem;}
}

/* === СТИКИ CTA ДЛЯ МОБИЛЬНЫХ === */
.sticky-cta{
  position:fixed;
  bottom:0;
  left:0;
  right:0;
  background:rgba(255,255,255,0.95);
  backdrop-filter:blur(10px);
  padding:1rem;
  box-shadow:0 -4px 20px rgba(0,0,0,.15);
  z-index:1000;
  border-top:1px solid rgba(0,0,0,.1);
}
.sticky-cta .btn{
  font-weight:600;
  font-size:1.125rem;
  padding:1rem;
  border-radius:12px;
  box-shadow:0 4px 20px rgba(255,193,7,.3);
}

/* Компенсация для контента при стики CTA */
@media(max-width:767px){
  body{padding-bottom:80px;}
}

/* === КНОПКА НАВЕРХ === */
.scroll-to-top{
  position:fixed;
  bottom:100px;
  right:20px;
  width:50px;
  height:50px;
  background:#1976d2;
  color:#fff;
  border:none;
  border-radius:50%;
  font-size:1.25rem;
  cursor:pointer;
  box-shadow:0 4px 20px rgba(25,118,210,.3);
  transition:all .3s ease;
  z-index:999;
  opacity:0;
  visibility:hidden;
  transform:translateY(20px);
}

.scroll-to-top.show{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

.scroll-to-top:hover{
  background:#0d47a1;
  transform:translateY(-3px);
  box-shadow:0 6px 25px rgba(25,118,210,.4);
}

/* Мобильная адаптация кнопки */
@media(max-width:767px){
  .scroll-to-top{
    bottom:90px;
    right:15px;
    width:45px;
    height:45px;
    font-size:1.1rem;
  }
}

/* === УЛУЧШЕНИЯ ПРОИЗВОДИТЕЛЬНОСТИ === */
@media(max-width:768px){
  /* Упрощение градиентов */
  .hero{background:#1976d2;}
  .pricing-section{background:#0d47a1;}
  
  /* Отключение тяжелых теней */
  .price-card:hover{
    transform:none;
    box-shadow:0 12px 30px rgba(0,0,0,.25);
  }
  
  /* Упрощение backdrop-filter для слабых устройств */
  @supports not (backdrop-filter: blur(10px)) {
    .glass-card{
      background-color:rgba(255,255,255,0.2);
      backdrop-filter:none;
    }
    .price-card{
      background:rgba(255,255,255,0.2);
      backdrop-filter:none;
    }
  }
}

/* === ДОПОЛНИТЕЛЬНЫЕ УЛУЧШЕНИЯ === */
@media(max-width:576px){
  /* Улучшение кликабельности */
  .btn{
    min-height:48px;
    display:flex;
    align-items:center;
    justify-content:center;
  }
  
  /* Улучшение читаемости */
  body{font-size:16px;line-height:1.5;}
  
  /* Оптимизация форм */
  .form-control{
    font-size:16px; /* Предотвращает зум в iOS */
    padding:.75rem;
  }
  
  /* Улучшение аккордеона */
  .accordion-item{
    border-radius:12px !important;
    margin-bottom:.5rem;
    overflow:hidden;
  }
  
  /* Центрирование изображений */
  .about-section img{
    margin-top:2rem;
    border-radius:16px;
  }
}
/* ====================== НАВИГАЦИЯ ====================== */
/* Основные стили navbar */
.navbar{
  transition:all .3s ease;
  padding:.75rem 0;
}

/* Прозрачная навигация */
.navbar.bg-transparent{
  background-color:transparent !important;
}

/* Твердая навигация при скролле */
.navbar-solid{
  background:#ffffff !important;
  box-shadow:0 2px 20px rgba(0,0,0,.1);
  backdrop-filter:blur(10px);
} 
.navbar-solid .nav-link,
.navbar-solid .navbar-brand{
  color:#1976d2 !important;
}
.navbar-solid .btn-outline-light{
  border-color:#1976d2;
  color:#1976d2;
  background:transparent;
}
.navbar-solid .btn-outline-light:hover{
  background:#1976d2;
  color:#fff;
}

/* Мобильная навигация */
.navbar-toggler{
  border:none;
  padding:.25rem .5rem;
  border-radius:8px;
}
.navbar-toggler:focus{
  box-shadow:none;
}

/* Выпадающее меню */
.navbar-collapse{
  z-index:1050;
}

/* Мобильное меню - прозрачный фон */
@media(max-width:991px){
  .navbar-collapse{
    position:absolute;
    top:100%;
    left:0;
    right:0;
    margin-top:.5rem;
    background:rgba(255,255,255,0.95);
    backdrop-filter:blur(15px);
    border-radius:16px;
    box-shadow:0 8px 30px rgba(0,0,0,.15);
    border:1px solid rgba(255,255,255,.2);
    max-height:80vh;
    overflow-y:auto;
  }
  
  /* Стили для темной навигации */
  .navbar-dark .navbar-collapse{
    background:rgba(13,71,161,0.95);
    border:1px solid rgba(255,255,255,.1);
  }
  
  /* Стили для светлой навигации */
  .navbar-light .navbar-collapse{
    background:rgba(255,255,255,0.98);
    border:1px solid rgba(0,0,0,.1);
  }
  
  .navbar-nav{
    padding:1rem 1.5rem;
  }
  
  .navbar-nav .nav-link{
    padding:.875rem 1rem;
    border-radius:12px;
    margin:.25rem 0;
    font-weight:500;
    transition:all .3s ease;
  }
  
  /* Темное меню - ссылки */
  .navbar-dark .navbar-nav .nav-link{
    color:rgba(255,255,255,.9) !important;
    border-bottom:1px solid rgba(255,255,255,.1);
  }
  .navbar-dark .navbar-nav .nav-link:hover{
    background:rgba(255,255,255,.1);
    color:#fff !important;
  }
  
  /* Светлое меню - ссылки */
  .navbar-light .navbar-nav .nav-link{
    color:#1976d2 !important;
    border-bottom:1px solid rgba(25,118,210,.1);
  }
  .navbar-light .navbar-nav .nav-link:hover{
    background:rgba(25,118,210,.1);
    color:#0d47a1 !important;
  }
  
  /* Кнопка в мобильном меню */
  .navbar-nav .btn{
    margin-top:1rem;
    width:100%;
    padding:.875rem 1.5rem;
    border-radius:12px;
    font-weight:600;
  }
  
  /* Темная кнопка */
  .navbar-dark .navbar-nav .btn-outline-light{
    background:rgba(255,255,255,.9);
    color:#1976d2;
    border:2px solid rgba(255,255,255,.9);
  }
  .navbar-dark .navbar-nav .btn-outline-light:hover{
    background:#fff;
    color:#0d47a1;
    transform:translateY(-2px);
  }
  
  /* Светлая кнопка */
  .navbar-light .navbar-nav .btn-outline-light{
    background:#1976d2;
    color:#fff;
    border:2px solid #1976d2;
  }
  .navbar-light .navbar-nav .btn-outline-light:hover{
    background:#0d47a1;
    border-color:#0d47a1;
    transform:translateY(-2px);
  }
  
  /* Последний элемент без границы */
  .navbar-nav .nav-link:last-of-type{
    border-bottom:none;
  }
}
/* Timeline */
.comparison-section{background:linear-gradient(135deg,#f1f4ff,#e6ecff);} 
.timeline{position:relative;margin:0 auto;max-width:700px;padding-left:30px;} 
.timeline::before{content:"";position:absolute;left:20px;top:0;bottom:0;width:4px;background:#1976d2;} 
.timeline-item{position:relative;margin-bottom:2.5rem;padding-left:40px;} 
.timeline-item:last-child{margin-bottom:0;} 
.timeline-item .dot{position:absolute;left:-1px;top:0;width:16px;height:16px;border-radius:50%;background:#1976d2;border:4px solid #fff;box-shadow:0 0 0 2px #1976d2;} 
.timeline-card{background:#fff;border:1px solid #e0e7ff;border-radius:16px;box-shadow:0 4px 16px rgba(0,0,0,.06);padding:1.5rem;} 
.timeline-card h5{font-weight:700;margin-bottom:.5rem;} 
.timeline-card i{font-size:1.5rem;color:#1976d2;margin-right:.5rem;} 
.timeline-card ul{margin:0;padding-left:1rem;font-size:.9rem;} 
.timeline-card ul li{margin-bottom:.3rem;} 
.timeline-card ul li.neg{color:#d32f2f;} 
.timeline-card.pos ul li{color:#388e3c;} 
/* Testimonials */
.testimonial-card{background:#fff;border:1px solid #e0e7ff;border-radius:20px;box-shadow:0 6px 20px rgba(0,0,0,.06);padding:2rem;height:100%;display:flex;flex-direction:column;}
.testimonial-card .testimonial-avatar{
  width:64px;
  height:64px;
  border-radius:50%;
  object-fit:cover;
  margin:0 auto 1rem;
  box-shadow:0 4px 12px rgba(0,0,0,.15);
  border:3px solid #fff;
  background:#f8f9fa;
}
.testimonial-card p{flex-grow:1;font-size:.95rem;line-height:1.45;}
.testimonial-card .name{font-weight:600;margin-top:1rem;color:#1976d2;}
/* CTA */
.cta-banner{background:linear-gradient(135deg,#1976d2,#0d47a1);color:#fff;border-radius:20px;padding:3rem;text-align:center;box-shadow:0 8px 24px rgba(0,0,0,.15);} 
/* Canvas matrix background */
.hero #codeRain{position:absolute;top:0;left:0;width:100%;height:100%;z-index:0;pointer-events:none;background:#0d47a1;} 
/* Floating symbols over matrix */
.floating-icon{
  position:absolute;
  color:rgba(173,216,255,0.7); /* светло-голубой */
  text-shadow:0 0 8px rgba(173,216,255,0.9),0 0 12px rgba(13,71,161,0.6);
  filter:drop-shadow(0 0 6px rgba(13,71,161,0.5));
  pointer-events:none;
  z-index:1;
  animation-name:iconFloat;
  animation-timing-function:linear;
  animation-iteration-count:infinite;
}
@keyframes iconFloat{
  0%{transform:translateY(0) rotate(0deg);opacity:0;}
  10%{opacity:0.8;}
  100%{transform:translateY(-120vh) rotate(360deg);opacity:0;}
} 
/* ======= Стеклянная карточка уведомлений ======= */
.glass-note{
  display:flex;
  align-items:center;
  gap:12px;
  padding:12px 16px;
  border-radius:14px;
  background:rgba(255,255,255,0.15);
  backdrop-filter:blur(12px);
  box-shadow:0 6px 20px rgba(0,0,0,0.25);
  color:#fff;
  width:clamp(260px,40vw,340px);
  animation:noteSlideUp .6s cubic-bezier(.34,1.56,.64,1) both;
}

/* Иконка уведомления */
.glass-note .notification-icon{
  width:40px;
  height:40px;
  border-radius:50%;
  background:rgba(255,255,255,0.2);
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  font-size:1.1rem;
  border:2px solid rgba(255,255,255,0.3);
}

/* Цветовые темы для иконок */
.glass-note.info .notification-icon{
  background:rgba(33,150,243,0.8);
  border-color:rgba(33,150,243,0.6);
}
.glass-note.success .notification-icon{
  background:rgba(76,175,80,0.8);
  border-color:rgba(76,175,80,0.6);
}
.glass-note.warning .notification-icon{
  background:rgba(255,193,7,0.8);
  border-color:rgba(255,193,7,0.6);
}
.glass-note.error .notification-icon{
  background:rgba(244,67,54,0.8);
  border-color:rgba(244,67,54,0.6);
}

.glass-note .text-group{flex:1;min-width:0;}
.glass-note .title{font-weight:600;font-size:.95rem;line-height:1.2;}
.glass-note .small{font-size:.8rem;opacity:.9;}

@keyframes noteSlideUp{0%{transform:translateY(20px);opacity:0;}100%{transform:translateY(0);opacity:1;}}

/* Цветовые модификаторы */
.glass-note.info{border-left:4px solid #2196f3;}
.glass-note.success{border-left:4px solid #4caf50;}
.glass-note.warning{border-left:4px solid #ffc107;}
.glass-note.error{border-left:4px solid #f44336;} 

/* ======= ИНЛАЙН СТИЛИ ИЗ HTML (ПЕРЕНЕСЕНЫ) ======= */
/* Компактные стили для новых секций - оптимизированы для мобильных */
.feature-card, .result-card, .guarantee-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(0,0,0,0.05);
}
.feature-card:hover, .guarantee-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.result-card {
  background: linear-gradient(135deg, #1976d2 0%, #1565c0 100%);
  color: white;
  border: none;
}
.result-number {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
.result-text {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Единая цветовая схема кнопок */
.btn-warning {
  background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
  border: none;
  color: #000;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
}
.btn-warning:hover {
  background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 193, 7, 0.4);
}

/* Стили для новых секций */
.hero-badge, .section-badge {
  font-size: 0.85rem;
  animation: pulse 2s infinite;
}

.pain-points-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.pain-card {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.1);
  padding: 1rem;
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.pain-icon {
  font-size: 1.5rem;
  margin-right: 1rem;
  flex-shrink: 0;
}

.evolution-card {
  background: white;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.evolution-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
}

.card-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.result-highlight {
  border-left: 4px solid #1976d2;
}

.hero-guarantee {
  font-size: 0.8rem;
}

.calculator-card {
  max-width: 600px;
  margin: 0 auto;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.loss-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: #dc3545;
}

.form-range {
  accent-color: #1976d2;
}

.bullshit-card, .promise-card {
  background: rgba(255,255,255,0.1);
  padding: 1.5rem;
  border-radius: 8px;
}

.guarantee-badge {
  font-size: 1.1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* Дополнительные мобильные оптимизации для перенесенных стилей */
@media (max-width: 768px) {
  .feature-card, .guarantee-card {
    padding: 1rem;
  }
  .feature-card h6, .guarantee-card h6 {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
  }
  .feature-card .fa-2x, .guarantee-card .fa-2x {
    font-size: 1.5rem !important;
  }
  .result-number {
    font-size: 1.5rem;
  }
  .result-text {
    font-size: 0.8rem;
  }
  .pain-points .pain-item {
    font-size: 0.8rem;
  }
  .loss-number {
    font-size: 1.2rem;
  }
  .bullshit-card, .promise-card {
    padding: 1rem;
  }
  .evolution-card {
    padding: 1.5rem 1rem;
  }
  .card-icon {
    width: 50px;
    height: 50px;
  }
  .pain-card {
    padding: 0.75rem;
  }
  .pain-icon {
    font-size: 1.2rem;
    margin-right: 0.75rem;
  }
}

/* Быстрая загрузка - минимальные анимации на мобильных */
@media (max-width: 480px) {
  .feature-card:hover, .guarantee-card:hover {
    transform: none;
  }
} 

/* ======= УЛУЧШЕНИЕ КОНТРАСТНОСТИ ДЛЯ ДОСТУПНОСТИ ======= */

/* Калькулятор потерь - улучшаем контраст */
.calculator-results {
  background-color: #ffffff !important;
  color: #212529 !important;
  border: 2px solid #dc3545;
}

.calculator-results h5.text-danger {
  color: #dc3545 !important;
  font-weight: 700;
}

/* Секция "Что НЕ будет / Что БУДЕТ" - улучшаем контраст */
.no-bullshit-section .bullshit-card,
.no-bullshit-section .promise-card {
  background: rgba(255,255,255,0.9) !important;
  color: #212529 !important;
}

.no-bullshit-section h5.text-danger,
.no-bullshit-section h5.text-success {
  color: #212529 !important;
  font-weight: 700;
}

.no-bullshit-section .text-danger {
  color: #dc3545 !important;
}

.no-bullshit-section .text-success {
  color: #198754 !important;
}

/* Гарантийный badge - улучшаем контраст */
.guarantee-badge {
  background: #ffc107 !important;
  color: #000000 !important;
  font-weight: 700;
  border: 2px solid #000000;
} 

/* ======= ЭКСТРЕННАЯ ОПТИМИЗАЦИЯ ИЗОБРАЖЕНИЙ ======= */

/* Принудительно ограничиваем размер аватарок */
.testimonial-avatar {
  width: 58px !important;
  height: 58px !important;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
  border: 3px solid #fff;
  background: #f8f9fa;
}

/* Оптимизация загрузки изображений */
img {
  image-rendering: optimizeQuality;
  max-width: 100%;
  height: auto;
}

/* Прогрессивная загрузка для больших изображений */
img[loading="lazy"] {
  opacity: 0;
  transition: opacity 0.3s ease;
}

img[loading="lazy"].loaded {
  opacity: 1;
}

@media (max-width: 768px) {
  /* На мобильных еще больше сжимаем */
  .testimonial-avatar {
    width: 48px !important;
    height: 48px !important;
  }
} 