/* Hero Trust Signals */
.hero-trust {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2.5rem;
    animation: fadeIn 1s ease-out 1s backwards;
}

.hero-trust .avatars {
    display: flex;
}

.avatar-circle {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid var(--bg-black);
    margin-left: -10px;
    background-size: cover;
    background-color: var(--text-dim);
}

.avatar-circle:first-child {
    margin-left: 0;
}

.hero-trust p {
    margin: 0 !important;
    font-size: 0.9rem !important;
    color: var(--text-dim) !important;
}

.hero-trust strong {
    color: white;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .hero-trust {
        justify-content: center;
    }
}