.brands-list { display:flex; flex-wrap:wrap; justify-content:center; gap:1.5rem; }
@media(min-width:1024px){.brands-list{gap:2.5rem}}
.brand-item { background:#ffffff; border:1px solid var(--border); border-radius:var(--radius); padding:0.75rem 1.25rem; transition:all .3s; display:flex; align-items:center; justify-content:center; min-height: 80px; }
.brand-item:hover { border-color:rgba(255,107,0,.5); box-shadow:0 10px 30px rgba(255,107,0,.05); }
.brand-name { font-family:var(--font-heading); font-size:1.5rem; font-weight:700; color:var(--muted-foreground); transition:color .3s; }
.brand-item:hover .brand-name { color:var(--primary); }
.trust-badges { margin-top:3rem; display:flex; flex-wrap:wrap; justify-content:center; gap:2rem; }
.trust-badge { display:flex; align-items:center; gap:.5rem; color:var(--muted-foreground); }
.trust-badge-dot { width:.5rem; height:.5rem; background:#22C55E; border-radius:50%; }