/* ── Stats v2 Premium ── */
.stats-section {
  padding: clamp(3.5rem, 6vh, 5rem) 0;
  background: var(--surface-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-inner {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1.5rem;
  border-right: 1px solid var(--border);
  gap: 0.4rem;
  transition: background 300ms;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(234,91,19,0.04); }

.stat-icon {
  font-size: 1.4rem;
  margin-bottom: 0.25rem;
  opacity: 0.85;
}
.stat-value {
  display: block;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--white);
  font-family: var(--font-sans);
}
.stat-label {
  font-size: 0.78rem;
  color: rgba(245,244,240,0.5);
  font-family: var(--font-mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.4;
}

@media (max-width: 640px) {
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(1),
  .stat-item:nth-child(2) { border-bottom: 1px solid var(--border); }
}
