/* ================================================
   STATS
   ================================================ */
.stats-section {
  background: var(--ot-grad-cta);
  padding: var(--ot-space-2xl) 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 22px 22px;
}

.stats-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.15) 0%, transparent 50%, rgba(0,0,0,0.15) 100%);
}

.stats-inner {
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  padding: var(--ot-space-md) var(--ot-space-lg);
}

.stat-number {
  font-family: var(--ot-font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--ot-white);
  line-height: 1;
  display: block;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-top: 8px;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.2);
  align-self: center;
}

@media (max-width: 767px) {
  .stat-divider { display: none; }
  .stat-item { padding: var(--ot-space-md); }
}
