/* Section Statistiques - Styles optimisés */
.bg-gradient-light {
    background: linear-gradient(135deg, rgba(255, 59, 48, 0.05) 0%, rgba(255, 193, 7, 0.05) 100%);
    backdrop-filter: blur(5px);
}

.stats-card {
    position: relative;
    transition: all 0.3s ease;
}

.stats-card:hover {
    transform: translateY(-8px);
}

/* Animation flottante pour les icônes */
.icon-float {
    animation: floatAnimation 3s ease-in-out infinite;
    display: inline-block;
}

@keyframes floatAnimation {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* Hero Description avec highlight */
.hero-description mark {
    background: linear-gradient(120deg, var(--color-primary-light) 0%, transparent 100%);
    padding: 0 4px;
    border-radius: 3px;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .hero-section {
        padding: 3rem 0;
    }
    
    .hero-description {
        margin-bottom: 1.5rem;
    }
    
    .display-3 {
        font-size: 2rem;
    }
    
    .lead {
        font-size: 1.1rem;
    }
}

/* Effets de survol pour les cartes de stats */
.card.hover-lift:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transform: translateY(-10px);
}

/* Animation du compteur */
@keyframes numberGrow {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.counter {
    animation: numberGrow 0.8s ease-out forwards;
}

/* Trust indicators sous le CTA */
.small {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.small .fw-bold {
    font-size: 0.9rem;
}

.small p {
    font-size: 0.85rem;
}