.stats-counter-section {
  padding-top: clamp(24px, 4vw, 48px);
  padding-bottom: clamp(24px, 4vw, 48px);
  background: #4b4b4b;
}

.stats-counter {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  align-items: center;
  padding: clamp(18px, 3vw, 30px) 0;
  color: #fff;
}

.stats-counter__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 0;
  text-align: center;
}

.stats-counter__value {
  display: block;
  min-height: 1.1em;
  font-size: clamp(2.4rem, 6vw, 4.1rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0;
  white-space: nowrap;
}

.stats-counter__label {
  margin-top: 10px;
  font-size: clamp(1rem, 2.4vw, 1.55rem);
  font-weight: 500;
  line-height: 1.2;
  text-transform: lowercase;
}

@media (max-width: 900px) {
  .stats-counter {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
}

@media (max-width: 520px) {
  .stats-counter {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}
