/* =============================================
   HERO TRUST BADGES — Points de réassurance
   ============================================ */

.hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 1.25rem;
    position: relative;
    z-index: 3;
}

.hero-trust__item {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.8125rem;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-trust__icon {
    font-size: 0.875rem;
    opacity: 0.9;
}

.hero-trust__stars {
    color: #f59e0b;
    letter-spacing: -1px;
    font-size: 0.875rem;
}

/* Mobile: 2 colonnes */
@media (max-width: 640px) {
    .hero-trust {
        gap: 0.625rem 1.25rem;
        margin-top: 1rem;
    }

    .hero-trust__item {
        font-size: 0.75rem;
        flex: 0 1 calc(50% - 0.625rem);
        justify-content: center;
    }
}
