/* ===== STATS SECTION ===== */
.stats-section {
  background: #0f172a;
  padding: 5rem var(--hnd-space-xl);
  color: var(--hnd-white);
  position: relative;
  overflow: hidden;
}

.stats-inner {
  max-width: var(--hnd-container-md);
  margin: 0 auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--hnd-space-3xl);
  text-align: center;
}

.stat-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.stat-item.animated {
  opacity: 1;
  transform: translateY(0);
}

.stat-number {
  background: var(--hnd-primary-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: var(--hnd-font-6xl);
  font-weight: var(--hnd-font-bold);
  line-height: 1.2;
  margin-bottom: var(--hnd-space-sm);
  letter-spacing: -0.02em;
  background-size: 200% 200%;
  animation: gradient-shift 3s ease infinite;
}

.stat-label {
  font-size: var(--hnd-font-lg);
  color: rgba(255, 255, 255, 0.85);
  font-weight: var(--hnd-font-normal);
  letter-spacing: 0.01em;
}

@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.stat-item:nth-child(1) { transition-delay: 0s; }
.stat-item:nth-child(2) { transition-delay: 0.1s; }
.stat-item:nth-child(3) { transition-delay: 0.2s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .stats-section {
    padding: var(--hnd-space-3xl) var(--hnd-space-lg);
  }
  
  .stats-grid {
    gap: var(--hnd-space-xl);
  }
  
  .stat-number {
    font-size: var(--hnd-font-5xl);
  }
  
  .stat-label {
    font-size: var(--hnd-font-md);
  }
}