/* Credibility Bar */
.credibility-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5rem;
    padding: 3rem 2.5rem;
    background: #f5f5f0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.credibility-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.credibility-icon {
    width: 30px;
    height: 30px;
    color: #1a1a1a;
    flex-shrink: 0;
}

.credibility-item span {
    font-size: 1.125rem;
    color: #1a1a1a;
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* Responsive */
@media (max-width: 968px) {
    .credibility-bar {
        flex-direction: column;
        gap: 1.75rem;
        padding: 2.5rem 2rem;
    }

    .credibility-item {
        justify-content: center;
    }

    .credibility-icon {
        width: 26px;
        height: 26px;
    }

    .credibility-item span {
        font-size: 1rem;
    }
}