/* ═══════════════════════════════════════════════════════════
   STATISTICS SECTION WITH COUNTERS
   ═══════════════════════════════════════════════════════════ */

.statistics-section {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

/* BACKGROUND DECORATION */
.statistics-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(212, 167, 106, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(30, 91, 168, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.statistics-content {
  position: relative;
  z-index: 2;
}

.statistics-header {
  text-align: center;
  margin-bottom: var(--space-20);
}

.statistics-title {
  font-size: var(--text-4xl);
  font-weight: var(--weight-bold);
  color: var(--color-white);
  margin-bottom: var(--space-4);
}

.statistics-subtitle {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
  line-height: var(--line-height-relaxed);
}

/* STATISTICS GRID */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-12);
  margin-bottom: var(--space-16);
}

/* STAT CARD */
.stat-card {
  text-align: center;
  padding: var(--space-8) 0;
  border-bottom: 2px solid rgba(212, 167, 106, 0.2);
  transition: all var(--transition-slow);
}

.stat-card:hover {
  border-bottom-color: var(--color-primary-gold);
  transform: translateY(-4px);
}

/* COUNTER */
.counter {
  font-size: var(--text-5xl);
  font-weight: var(--weight-bold);
  line-height: 1;
  margin-bottom: var(--space-4);
  color: var(--color-primary-gold);
  transition: color var(--transition-base);
}

.stat-card:hover .counter {
  color: var(--color-primary-gold-light);
}

/* COUNTER SUFFIX/PREFIX */
.counter-suffix {
  font-size: var(--text-2xl);
  margin-left: var(--space-1);
}

/* STAT LABEL */
.stat-label {
  font-size: var(--text-lg);
  font-weight: var(--weight-bold);
  color: var(--color-white);
  margin-bottom: var(--space-2);
}

/* STAT DESCRIPTION */
.stat-description {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.7);
  line-height: var(--line-height-relaxed);
  max-width: 180px;
  margin: 0 auto;
}

/* COUNTER ANIMATION */
@keyframes countUp {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.counter.animate {
  animation: countUp 0.6s ease-out;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-10);
  }

  .stat-card {
    padding: var(--space-6) 0;
  }

  .counter {
    font-size: var(--text-4xl);
  }
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .statistics-title {
    font-size: var(--text-3xl);
  }

  .counter {
    font-size: var(--text-3xl);
  }

  .stat-label {
    font-size: var(--text-base);
  }
}

@media (max-width: 640px) {
  .statistics-title {
    font-size: var(--text-2xl);
  }

  .counter {
    font-size: var(--text-2xl);
  }

  .stat-card {
    padding: var(--space-4) 0;
  }
}

/* ══════════════════════════════════════════════════════════════ */
