/* ── Brand Logos Strip ── */
.brands-sec {
  background: #fff;
  padding: 60px 0;
  overflow: hidden;
}

.brands-track {
  display: flex;
  gap: 24px;
  align-items: center;
  width: max-content;
  animation: brands-marquee 30s linear infinite;
}
.brands-sec:hover .brands-track {
  animation-play-state: paused;
}

@keyframes brands-marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.brand-chip {
  width: 130px;
  height: 130px;
  border-radius: 30px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 13px;
  color: #fff;
  text-align: center;
  line-height: 1.3;
  box-shadow: inset 0 0 11px rgba(255,255,255,.5);
}
