.clients-section {
  max-width: 1170px;
  margin: 60px auto;
  text-align: center;
  padding: 0 15px;
}

.clients-section h2 {
  font-size: 26px;
  color: #2b2d42;
  margin-bottom: 40px;
  font-weight: 700;
}

.clients-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.client-card {
  width: 160px;
  background: #ffffff;
  border-radius: 16px;
  padding: 25px 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.client-card:hover {
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
  transform: translateY(-5px);
}

.client-card img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 12px;
}

.client-card .label {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  line-height: 1.4;
  text-align: center;
}

/* Адаптив */
@media (max-width: 768px) {
  .client-card {
    width: 45%;
  }
}

@media (max-width: 480px) {
  .client-card {
    width: 100%;
  }
}