﻿/*
   Talkiva - css\components\stats.css
   Stats counters band
   Extracted verbatim from the original style.css. No rules altered.
*/

/* ---------- 10. Stats ---------- */
.stats {
  background:
    radial-gradient(900px 420px at 50% 0%, rgba(239, 27, 67, 0.22), transparent 60%),
    var(--bg-deep);
  padding: 112px 0;
  position: relative;
  overflow: hidden;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat {
  text-align: center;
  padding: 40px 24px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform 0.4s var(--ease-out), border-color 0.4s, box-shadow 0.4s;
}
.stat:hover { transform: translateY(-8px); border-color: rgba(239, 27, 67, 0.35); box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35); }
.stat-icon {
  font-size: 1.5rem;
  margin-bottom: 16px;
  display: inline-block;
  color: var(--primary-soft);
}
.stat:nth-child(2) .stat-icon { color: var(--cyan); }
.stat:nth-child(3) .stat-icon { color: var(--gold); }
.stat:nth-child(4) .stat-icon { color: var(--green); }
.stat-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2.2rem, 4.4vw, 3.1rem);
  line-height: 1.1;
  background: linear-gradient(92deg, #ffffff, #ffc9d4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-variant-numeric: tabular-nums;
}
.stat p { color: rgba(255, 255, 255, 0.58); font-size: 0.92rem; margin-top: 8px; }

