.hmmm {
  font-family: 'Roboto', sans-serif;
  background: linear-gradient(135deg, #f5f7fb 0%, #eef2f6 55%, #f8f5f0 100%);
  margin: 0;
  padding: 0 16px 80px;
  padding-top: var(--success-padding-top, 200px);
}

.hmmm * {
  box-sizing: border-box;
}

.success-shell {
  max-width: 1720px;
  margin: 0 auto;
}

.success-hero {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  animation: fade-rise 0.6s ease both;
}

.success-kicker {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: #7b8794;
  font-weight: 700;
}

.success-title {
  font-size: clamp(26px, 3vw, 40px);
  color: #1b1b1b;
  margin: 0;
}

.success-subtitle {
  font-size: 16px;
  color: #5f6c7b;
  margin: 0;
  max-width: 640px;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 24px;
  animation: fade-rise 0.6s ease 0.1s both;
}

.client-card {
  background: #ffffff;
  border: 1px solid #e3e7ee;
  border-radius: 16px;
  padding: 28px;
  min-height: 270px;
  text-align: center;
  cursor: default;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-logo {
  width: 100%;
  height: 200px;
  border-radius: 12px;
  border: 1px dashed #cdd6e1;
  background: linear-gradient(135deg, #f4f6f9 0%, #ffffff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #97a3b4;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 0;
  overflow: hidden;
}

.client-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

img {
  vertical-align: baseline;
}

@keyframes fade-rise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .client-logo {
    height: 180px;
  }
}

@media (max-width: 1700px) {
  .clients-grid {
    grid-template-columns: repeat(5, minmax(260px, 1fr));
  }
}

@media (max-width: 1400px) {
  .clients-grid {
    grid-template-columns: repeat(4, minmax(260px, 1fr));
  }
}

@media (max-width: 1120px) {
  .clients-grid {
    grid-template-columns: repeat(3, minmax(260px, 1fr));
  }
}

@media (max-width: 840px) {
  .clients-grid {
    grid-template-columns: repeat(2, minmax(260px, 1fr));
  }
}

@media (max-width: 600px) {
  .hmmm {
    padding: 0 12px 64px;
    padding-top: var(--success-padding-top, 200px);
  }

  .client-logo {
    height: 170px;
  }
}

@media (max-width: 560px) {
  .clients-grid {
    grid-template-columns: 1fr;
  }
}
