/* =====================================================
   STATS INDÉPENDANTES EN BAS DU HERO
   Design minimaliste sans conteneur
   ===================================================== */

.hero {
    position: relative;
    padding-bottom: 4rem !important;
}

.hero-stats-individual {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 3.5rem;
    animation: slideUp 0.8s ease-out;
    z-index: 10;
    max-width: 90%;
    flex-wrap: wrap;
}

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

.hero-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: fadeIn 0.6s ease-out backwards;
    text-align: center;
}

.hero-stat-item:nth-child(1) { animation-delay: 0.2s; }
.hero-stat-item:nth-child(2) { animation-delay: 0.3s; }
.hero-stat-item:nth-child(3) { animation-delay: 0.4s; }
.hero-stat-item:nth-child(4) { animation-delay: 0.5s; }

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

.hero-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    line-height: 1;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.6);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.hero-stat-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.6));
}

/* Padding normal sur la section suivante */
.mission {
    padding-top: 4rem !important;
    position: relative;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (max-width: 992px) {
    .hero-stats-individual {
        gap: 2.5rem;
        bottom: 2rem;
    }

    .hero-stat-number {
        font-size: 2.25rem;
    }

    .hero-stat-label {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-bottom: 6rem !important;
    }

    .hero-stats-individual {
        flex-direction: row;
        gap: 1.5rem;
        bottom: 1.5rem;
        left: 1rem;
        width: calc(100% - 2rem);
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .hero-stat-item {
        flex-direction: column;
        gap: 0.25rem;
        text-align: center;
        min-width: 60px;
    }

    .hero-stat-number {
        font-size: 1.75rem;
    }

    .hero-stat-label {
        font-size: 0.7rem;
        letter-spacing: 0.5px;
    }

    .mission {
        padding-top: 3rem !important;
    }
}

@media (max-width: 480px) {
    .hero-stats-individual {
        gap: 1rem;
        bottom: 1rem;
        left: 0.5rem;
        width: calc(100% - 1rem);
    }

    .hero-stat-item {
        min-width: 50px;
    }

    .hero-stat-number {
        font-size: 1.5rem;
    }

    .hero-stat-label {
        font-size: 0.65rem;
        letter-spacing: 0.3px;
    }
}
