.homepage-clients-section {
  padding: 90px 20px;
  background-color: var(--hp-bg, #ffffff);
}

.clients-inner {
  max-width: var(--hp-maxw, 1140px);
  margin: 0 auto;
}

.clients-title {
  text-align: center;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--hp-ink-soft, #4a5d5b);
  margin: 0 0 44px;
  font-weight: 700;
}

/* ── Logos ── */
.logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px 50px;
}

.client-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.logos img {
  height: 50px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  background: transparent;
  filter: grayscale(100%);
  opacity: 0.55;
  transition:
    filter 0.35s ease,
    opacity 0.35s ease,
    transform 0.3s ease;
}

.client-logo-link:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: translateY(-4px);
}

/* ── Responsive ── */
@media (max-width: 640px) {
  .logos {
    gap: 22px 32px;
  }

  .logos img {
    height: 38px;
    max-width: 150px;
  }
}
