/* Axencia.co — Clients Section: World-Class Logos */

.clients-section {
  padding: 100px 24px;
  overflow: hidden;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 24px;
  align-items: center;
  justify-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  padding: 16px 24px;
  background: rgba(15, 23, 42, 0.4);
  border: 1px solid rgba(59, 130, 246, 0.1);
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.client-logo:hover {
  transform: scale(1.05);
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.15);
}

.client-logo img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  filter: grayscale(0.3) brightness(1.1);
  transition: filter 0.3s ease;
}

.client-logo:hover img {
  filter: grayscale(0) brightness(1.2);
}

.client-logo span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}
