.results {
  background: linear-gradient(180deg, #020b16 0%, #031c2d 100%);
  padding: 100px 0;
  text-align: center;
}

.results h2 {
  font-size: clamp(26px, 4vw, 46px);
  font-weight: 800;
  color: white;
  margin: 0 0 56px;
  letter-spacing: -0.5px;
}

.results h2 span {
  color: #00d2b9;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: stretch;
}

.stat-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 210, 185, 0.15);
  border-radius: 16px;
  padding: 32px 20px;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 210, 185, 0.5), transparent);
}

.stat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 210, 185, 0.4);
  background: rgba(0, 210, 185, 0.05);
}

.stat-icon {
  font-size: 20px;
  color: #00d2b9;
  margin-bottom: 14px;
  opacity: 0.8;
  line-height: 1;
}

.stat-number {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  color: #00d2b9;
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -1px;
  white-space: nowrap;
}

.stat-label {
  font-size: 14px;
  color: white;
  font-weight: 600;
  margin-bottom: 6px;
}

.stat-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.5px;
}