/* ── TRUSTED BRANDS ── */
.trusted-brands-sec{
  width:100%;
  background:#0a0a0a;
  padding:48px 164px;
}

.trusted-brands-wrap{
  max-width:1440px;
  margin:0 auto;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:48px;
}

.trusted-brands-title{
  font-size:24px;
  font-weight:700;
  letter-spacing:.02em;
  /* text-transform:uppercase; */
  color:#ffffff;
  margin:0;
  text-align:center;
}

.trusted-brands-grid{
  display:flex;
  gap:32px;
  width:100%;
  align-items:center;
  overflow-x:auto;
  overflow-y:hidden;
  scroll-behavior:smooth;
  -webkit-overflow-scrolling:touch;
  scrollbar-width:none;
  -ms-overflow-style:none;
  flex-wrap:nowrap;
}

.trusted-brands-grid::-webkit-scrollbar{
  display:none;
}

.trusted-brand-item{
  display:flex;
  align-items:center;
  justify-content:center;
  flex:0 0 160px;
  min-width:160px;
  opacity:.7;
  cursor:pointer !important;
  transition:opacity .3s;
}

.trusted-brand-item:hover{
  opacity:1;
}

.trusted-brand-logo{
  max-width:150px;
  max-height:80px;
  object-fit:contain;
  filter:brightness(1.2);
}

.trusted-brand-text{
  font-size:18px;
  font-weight:600;
  color:#fff;
  opacity:.8;
}

@media(max-width:980px){
  .trusted-brands-sec{padding:48px 24px}
  .trusted-brands-title{font-size:24px}
  .trusted-brands-grid{gap:24px}
  .trusted-brand-item{flex:0 0 120px; min-width:120px;}
  .trusted-brand-logo{max-width:120px;max-height:60px}
}

@media(max-width:768px){
  .trusted-brands-sec{padding:24px 20px}
  .trusted-brands-wrap{gap:32px; padding: 20px 0;}
  .trusted-brands-title{font-size:20px}
  .trusted-brands-grid{
    gap:20px;
    padding:20px 0;
  }
  .trusted-brand-item{
    flex:0 0 100px;
    min-width:100px;
  }
  .trusted-brand-logo{max-width:100px;max-height:50px}
}
