/* ===== ОПТИМИЗИРОВАННЫЕ АНИМАЦИИ - ТОЛЬКО HOVER ЭФФЕКТЫ ===== */

/* Базовые настройки для всех анимаций */
* {
    box-sizing: border-box;
}

/* Плавные переходы для всех элементов */
.card,
.feature-card,
.testimonial-card,
.pricing-card,
.stat-card,
.btn,
.hero-content,
.features-content,
.testimonials-content,
.pricing-content {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, opacity;
}

/* Оптимизированные hover эффекты */
.hover-smooth-lift:hover {
    transform: translateY(-3px);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-smooth-scale:hover {
    transform: scale(1.02);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Отключение анимаций на мобильных устройствах */
@media (max-width: 768px) {
    .hover-smooth-lift:hover,
    .hover-smooth-scale:hover {
        transform: none;
    }
}

/* Уважение к настройкам пользователя */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
} 