/* ═══════════════════════════════════════════════════════════════
   23 · STATS COUNTERS
   Editorial-style big numbers · 4-column · brand metrics
   ═══════════════════════════════════════════════════════════════ */

.stats {
  background: var(--navy-800);
  padding: 90px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* Decorative gold accent line */
.stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--gold-500);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.stat {
  text-align: center;
  position: relative;
  padding: 0 16px;
}

.stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 80px;
  background: rgba(255, 255, 255, 0.1);
}

.stat__num {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(48px, 5.5vw, 72px);
  font-weight: 400;
  line-height: 1;
  color: var(--gold-400);
  letter-spacing: -0.03em;
  margin-bottom: 12px;
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}

.stat__num__plus {
  font-size: 0.5em;
  color: var(--gold-500);
  font-weight: 500;
  align-self: flex-start;
  margin-top: 0.15em;
}

.stat__lbl {
  font-size: 11.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  display: block;
  margin-bottom: 4px;
}

.stat__sub {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.4;
}
