.s-count {
  padding: 3rem 0;
  margin: 3rem 0;
  background: #fff;
}

.s-count-panel {
  position: relative;
  overflow: hidden;
  min-height: 22rem;
  padding: 3.5rem 0;
  background-color: #f5f6f8;
  background-size: 100% 260%;
  background-position: center 42%;
  background-repeat: no-repeat;
}

.s-count-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(255, 255, 255, 0.15);
  pointer-events: none;
}

.stats-list {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.stats-list li {
  flex: 1 1 22%;
  min-width: 180px;
  text-align: center;
}

.stat-item {
  padding: 1.5rem 1rem;
}

.stat-icon {
  color: var(--color-brand-primary);
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
}

.stat-icon svg {
  transition: transform 0.9s ease;
}

.stat-item:hover .stat-icon svg {
  transform: rotateY(180deg);
}

.stat-item h5 {
  line-height: 1.5;
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
  color: var(--color-text-secondary);
  font-weight: 400;
}

.stat-item h3 {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--color-text-strong);
  line-height: 1.2;
}

.stat-item h3 small {
  font-size: 1.8rem;
  font-weight: 400;
  margin-left: 0.25rem;
  color: var(--color-text-strong);
}

@media (max-width: 768px) {
  .s-count-panel {
    min-height: 16rem;
    padding: 2.5rem 0;
    background-position: center 35%;
  }

  .stats-list li { flex: 1 1 45%; }
}

@media (max-width: 480px) {
  .stats-list li { flex: 1 1 100%; }
}
