/* Trusted Tools */
#trusted-tools{
  padding:56px 0;
}
#trusted-tools .section-title{
  text-align:center;
  margin-bottom:10px;
}
#trusted-tools .section-sub{
  text-align:center;
  margin:0 auto 30px;
  color:var(--muted);
  font-weight:700;
  max-width:72ch;
}

#trusted-tools .logo-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:14px;
}

@media(min-width:700px){
  #trusted-tools .logo-grid{
    grid-template-columns:repeat(3, minmax(0,1fr));
  }
}

@media(min-width:980px){
  #trusted-tools .logo-grid{
    grid-template-columns:repeat(6, minmax(0,1fr));
  }
}

#trusted-tools .logo-chip{
  border:1px solid var(--border);
  background:rgba(11,92,255,.05);
  border-radius:18px;
  padding:12px;
  min-height:76px;
  display:flex;
  align-items:center;
  justify-content:center;

  box-shadow:0 10px 30px rgba(2,6,23,.06);
  transition:transform .18s ease, border-color .18s ease, background .18s ease;

  /* animation hooks */
  opacity:0;
  transform:translateY(10px);
  transition-property:opacity, transform;
  transition-duration:.55s;
  will-change:opacity, transform;
}

[data-theme="dark"] #trusted-tools .logo-chip{
  background:rgba(11,92,255,.08);
  box-shadow:0 10px 30px rgba(0,0,0,.25);
}

#trusted-tools .logo-chip img{
  max-height:32px;
  width:auto;
  object-fit:contain;
}

#trusted-tools .logo-chip:hover{
  transform:translateY(-3px);
  border-color:rgba(11,92,255,.35);
  background:rgba(11,92,255,.10);
}

#trusted-tools .logo-chip.is-visible{
  opacity:1;
  transform:translateY(0);
}

@media (prefers-reduced-motion: reduce){
  #trusted-tools .logo-chip{
    opacity:1;
    transform:none;
    transition:none;
  }
}

