/* ==========================================================================
   Stats Section
   Monotics WordPress Theme
   ========================================================================== */

.stats {
  background: linear-gradient(135deg, #04102a 0%, #0a1a3a 50%, #04102a 100%);
  position: relative;
  overflow: hidden;
}

/* Grid pattern background */
.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 200, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 200, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}

/* --- Stats Grid --- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
  z-index: 1;
}

/* --- Stat Item --- */
.stat-item {
  text-align: center;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--white), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 13px;
  color: var(--gray);
  letter-spacing: 0.5px;
}

/* --- Stat Divider --- */
.stat-divider {
  width: 30px;
  height: 2px;
  background: var(--gradient-text);
  margin: 12px auto 0;
}
