/* ════════════════════════════════
   STATS
════════════════════════════════ */

.stats-section { position: relative; z-index: 5; padding: 100px 24px 64px; }
.stats-inner { max-width: 1020px; margin: 0 auto; }

.stats-headline {
  font-family: var(--serif);
  font-size: clamp(26px, 3.2vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.022em;
  color: #fff;
  text-align: center;
  margin-bottom: 64px;
}
.stats-headline em { font-style: italic; font-weight: 500; color: var(--red-m); }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 44px;
}

.stat-card {
  position: relative;
  background: rgba(10,10,12,0.95);
  padding: 44px 24px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow: hidden;
  transition: background 250ms ease-out;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.stat-card:last-child { border-right: none; }
.stat-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--red); transform: scaleX(0); transform-origin: center; transition: transform 350ms var(--ease-out); }

.stat-card-glow { position: absolute; bottom: -20px; left: 50%; transform: translateX(-50%); width: 160px; height: 100px; background: radial-gradient(ellipse at center, rgba(192,18,40,0.18) 0%, transparent 70%); opacity: 0; transition: opacity 250ms ease-out; pointer-events: none; }

@media (hover: hover) and (pointer: fine) {
  .stat-card:hover { background: rgba(14,11,12,0.98); }
  .stat-card:hover::after { transform: scaleX(1); }
  .stat-card:hover .stat-card-glow { opacity: 1; }
}

.stat-icon { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(192,18,40,0.32); background: rgba(192,18,40,0.14); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; flex-shrink: 0; }
.stat-icon svg { width: 15px; height: 15px; stroke: var(--red-m); stroke-width: 1.7; fill: none; }

.stat-number { display: flex; align-items: baseline; justify-content: center; line-height: 1; margin-bottom: 16px; }
.num-prefix { font-family: var(--serif); font-size: clamp(18px, 2.2vw, 26px); font-weight: 700; color: rgba(255,255,255,0.65); margin-right: 2px; align-self: flex-start; margin-top: 6px; }
.num-value { font-family: var(--serif); font-size: clamp(44px, 5vw, 62px); font-weight: 700; color: #fff; letter-spacing: -0.04em; line-height: 1; }
.num-unit { font-family: var(--serif); font-style: italic; font-size: clamp(22px, 2.5vw, 30px); font-weight: 500; color: var(--red-m); letter-spacing: -0.02em; margin-left: 3px; align-self: flex-end; margin-bottom: 2px; }

.stat-label { font-size: 10.5px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.3); line-height: 1.7; }

.stats-footer { display: flex; align-items: center; justify-content: center; gap: 14px; }
.stats-footer-line { flex: 1; max-width: 80px; height: 1px; background: rgba(255,255,255,0.07); }
.stats-footer-text { font-family: var(--serif); font-style: italic; font-size: 15px; font-weight: 400; color: rgba(255,255,255,0.5); }
.stats-footer-text strong { font-style: normal; font-weight: 700; color: rgba(255,255,255,0.55); }

@media (max-width: 680px) {
  .stats-section { padding: 72px 16px 80px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-card { padding: 32px 16px 28px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .stat-card:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.06); }
  .stat-card:nth-child(3),
  .stat-card:nth-child(4) { border-bottom: none; }
}
