#clients {
  background: linear-gradient(180deg, #1a6a82 0%, #5baab8 50%, #7ec8d8 100%);
  text-align: center;
}

#clients .section-title { color: var(--white); }

#clients .section-sub {
  color: rgba(255, 255, 255, 0.85);
  max-width: 640px;
  margin: 0 auto 48px;
}

.clients-track-wrap {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 24px;
  overflow: hidden;
  position: relative;
}

.clients-track-wrap::before,
.clients-track-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.clients-track-wrap::before {
  left: 0;
  background: linear-gradient(to right, white, transparent);
}

.clients-track-wrap::after {
  right: 0;
  background: linear-gradient(to left, white, transparent);
}

.clients-track {
  display: flex;
  gap: 48px;
  align-items: center;
  animation: marquee 20s linear infinite;
  width: max-content;
}

.clients-track:hover {
  animation-play-state: paused;
}

.client-logo {
  width: 90px; height: 90px;
  object-fit: contain;
  filter: grayscale(30%);
  transition: filter var(--t-med), transform var(--t-med);
  flex-shrink: 0;
  border-radius: 8px;
}

.client-logo:hover {
  filter: grayscale(0%);
  transform: scale(1.08);
}
