/* ============================================================
   СЕКЦИЯ "Реальность рынка": <section class="section"> сразу после hero — карточки со статистикой (.stat-card, .stat-number, .stats-grid).
   ============================================================ */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: 560px;
  margin: 0 auto;
}

.stat-card {
  background: var(--card);
  border-radius: var(--r-lg);
  padding: 22px 16px;
  text-align: center;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.stat-card::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 184, 48, 0.12), transparent 70%);
}

.stat-number {
  font-family: var(--f-display);
  font-size: clamp(30px, 7vw, 44px);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-text {
  font-size: 12px;
  color: var(--text);
  line-height: 1.5;
  flex-grow: 1;
}

.stat-source {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.3);
  margin-top: auto;
  padding-top: 10px;
}

@media (min-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: none;
    gap: 20px;
  }
}

