/* ═══════════════════════════════════════════
   Trust-Bar - mbp-it.de
   USP-Strip mit Glass-Morphism
   ═══════════════════════════════════════════ */

.trust-bar {
    position: relative;
    padding: 14px 0;
    background: linear-gradient(180deg, rgba(15, 19, 32, 0.6) 0%, rgba(10, 14, 23, 0.4) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    overflow: hidden;
}

.trust-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(800px 100px at 50% 50%, rgba(59, 130, 246, 0.06), transparent);
    pointer-events: none;
}

.trust-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 32px);
    display: flex;
    gap: clamp(20px, 4vw, 48px);
    align-items: center;
    justify-content: space-between;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.trust-bar-inner::-webkit-scrollbar { display: none; }

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    color: #94a3b8;
    font-family: 'Space Grotesk', 'DM Sans', sans-serif;
    font-size: 0.86rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    transition: color 0.3s ease;
}

.trust-item:hover { color: #f1f5f9; }

.trust-item i {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.12);
    color: #22d3ee;
    font-size: 0.85rem;
    border: 1px solid rgba(59, 130, 246, 0.18);
    flex-shrink: 0;
}

.trust-item:hover i {
    background: rgba(59, 130, 246, 0.2);
    color: #fff;
}

@media (max-width: 768px) {
    .trust-bar-inner {
        justify-content: flex-start;
        padding-right: clamp(16px, 4vw, 32px);
    }
    .trust-item { font-size: 0.8rem; }
    .trust-item i { width: 28px; height: 28px; font-size: 0.78rem; }
}
