/* ===== CLIENT LOGO STRIP — Scrolling Trust Bar ===== */
.logo-strip {
  padding: 2rem 0 2.5rem;
  background: #fafbfc;
  overflow: hidden;
  position: relative;
}

.logo-strip-heading {
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--grey-250);
  margin-bottom: 1.5rem;
}

.logo-strip-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: logoScroll 40s linear infinite;
}

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

.logo-strip-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2rem;
  height: 48px;
}

.logo-strip-item img,
.logo-strip-item svg {
  max-width: 120px;
  max-height: 40px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.5);
  transition: filter 0.3s ease;
}

.logo-strip-item:hover img,
.logo-strip-item:hover svg {
  filter: grayscale(0%) opacity(1);
}

/* Fade edges */
.logo-strip::before,
.logo-strip::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.logo-strip::before {
  left: 0;
  background: linear-gradient(90deg, #fafbfc 0%, transparent 100%);
}

.logo-strip::after {
  right: 0;
  background: linear-gradient(270deg, #fafbfc 0%, transparent 100%);
}

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

/* Mobile adjustments */
@media (max-width: 768px) {
  .logo-strip {
    padding: 1.5rem 0 2rem;
  }

  .logo-strip-heading {
    font-size: 0.65rem;
    margin-bottom: 1rem;
    text-align: center !important;
  }

  .logo-strip-item {
    padding: 0 1.25rem;
    height: 36px;
  }

  .logo-strip-item img,
  .logo-strip-item svg {
    max-width: 90px;
    max-height: 30px;
  }

  .logo-strip-track {
    animation-duration: 30s;
  }
}
