/* ═══════════════════════════════════════
   STATS SECTION — Premium
═══════════════════════════════════════ */

.stats-section {
  background-color: #0a0a0a;
  color: #fff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

/* Subtle green glow behind stats */
.stats-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(32, 194, 14, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.stat-card {
  background: linear-gradient(145deg, #161616, #121212);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  height: 100%;
}

.stat-card:hover {
  border-color: rgba(32, 194, 14, 0.35);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(32, 194, 14, 0.1);
  transform: translateY(-4px);
}

.stat-icon {
  width: 56px;
  height: 56px;
  background: rgba(32, 194, 14, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.stat-icon img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  display: block;
}

.stat-number {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 900;
  color: #20C20E;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 0.6rem;
  text-shadow: 0 0 30px rgba(32, 194, 14, 0.3);
}

.stat-title {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.45;
  margin: 0;
}

/* ── Responsive ── */
@media (max-width: 767.98px) {
  .stats-section {
    padding: 60px 0;
  }

  .stat-card {
    padding: 2rem 1.5rem;
    margin-bottom: 1rem;
  }
}

@media (max-width: 576px) {
  .stat-number {
    font-size: 2.2rem;
  }
}
