.trusted-companies-scroller {
  background: #fff;
  padding: 3rem 0 3rem 0;
  margin-top: 0;
}
.trusted-title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 2rem;
}
.brand-scroller {
  overflow: hidden;
  width: 100%;
  position: relative;
  background: none;
}
.brand-track {
  display: flex;
  align-items: center;
  gap: 3rem;
  animation: brand-marquee 32s linear infinite;
  will-change: transform;
}
.brand-track.reverse {
  animation-direction: reverse;
}
.brand-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  max-width: 180px;
  padding: 0.5rem 1rem;
  opacity: 0.85;
  transition: opacity 0.2s, transform 0.2s;
  gap: 0.75rem;
}
.brand-item img {
  width: 36px;
  height: 36px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 0;
  filter: grayscale(0.2) brightness(0.95);
  transition: filter 0.2s;
  background: #f3f3f3;
  border: 2px solid #e5e7eb;
}
.brand-item span {
  font-size: 1rem;
  font-weight: 600;
  color: #444;
  opacity: 0.8;
  text-align: left;
  margin-left: 0.5rem;
}
.brand-item:hover {
  opacity: 1;
  transform: scale(1.07);
}
.brand-item:hover img {
  filter: grayscale(0) brightness(1.1);
}
@keyframes brand-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (max-width: 900px) {
  .brand-track {
    gap: 2rem;
  }
  .brand-item {
    min-width: 90px;
    max-width: 120px;
    padding: 0.5rem 0.5rem;
    gap: 0.5rem;
  }
  .brand-item img {
    width: 28px;
    height: 28px;
  }
} 