/* LeadG2 Findings Stat Grid (2026) — scoped to .lg2-fstat */
.lg2-fstat { padding: 90px 44px; font-family: 'Mulish', system-ui, -apple-system, sans-serif; }
.lg2-fstat * { box-sizing: border-box; }
.lg2-fstat__wrap { max-width: 1240px; margin: 0 auto; }
.lg2-fstat__head { max-width: 640px; margin: 0 0 54px; }
.lg2-fstat__head--center { margin-left: auto; margin-right: auto; text-align: center; }
.lg2-fstat__eyebrow { display: inline-block; font-weight: 800; font-size: 13px; letter-spacing: 1.6px; text-transform: uppercase; margin-bottom: 16px; }
.lg2-fstat__heading { margin: 0; font-weight: 800; font-size: clamp(30px, 3.6vw, 46px); line-height: 1.05; letter-spacing: -1.5px; }
.lg2-fstat__grid { display: grid; grid-template-columns: repeat(var(--cols, 5), 1fr); gap: 14px; }
.lg2-fstat__card { padding: 26px 20px; border-radius: 18px; background: #fff; border: 1px solid #E2E4E0; text-align: center; }
.lg2-fstat__value { font-weight: 800; font-size: clamp(34px, 3.4vw, 46px); line-height: 1; letter-spacing: -1.4px; }
.lg2-fstat__caption { margin: 14px 0 0; font-weight: 500; font-size: 12.5px; line-height: 1.5; }

@keyframes lg2-fstat-rise { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: no-preference) {
  @supports (animation-timeline: view()) {
    .lg2-fstat--anim .lg2-fstat__rise { animation: lg2-fstat-rise linear both; animation-timeline: view(); animation-range: entry 0% entry 40%; }
  }
}

@media (max-width: 1040px) { .lg2-fstat__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px) {
  .lg2-fstat { padding: 60px 24px; }
  .lg2-fstat__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 440px) { .lg2-fstat__grid { grid-template-columns: 1fr; } }
