/* g410/stats — design "stats" de la home (bundle standalone) */

.stats {
    --st-ink: var(--ink, #00202f);
    --st-blue: var(--blue, #359ee0);
    --st-line: var(--line, #e7ebee);
    --st-muted: var(--muted, #5a6b76);
    --st-display: var(--font-display, "Manrope", ui-sans-serif, system-ui, sans-serif);

    background: #fff;
    padding: 72px 0;
    color: var(--st-ink);
}
.stats > .container {
    max-width: var(--container-width, 1240px);
    margin: 0 auto;
    padding: 0 24px;
}
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    border-top: 1px solid var(--st-line);
    border-bottom: 1px solid var(--st-line);
    padding: 36px 0;
}
.stat {
    text-align: center;
    padding: 8px 0;
}
.stat .num {
    font-family: var(--st-display);
    font-size: clamp(40px, 4vw, 56px);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--st-ink);
    line-height: 1;
}
.stat .num .plus { color: var(--st-blue); }
.stat .label {
    font-size: 14px;
    color: var(--st-muted);
    margin-top: 10px;
    font-weight: 500;
    line-height: 1.4;
}
@media (max-width: 800px) {
    .stats-row { grid-template-columns: repeat(2, 1fr) !important; gap: 32px; }
}
@media (max-width: 480px) {
    .stats-row { grid-template-columns: 1fr !important; gap: 24px; }
    .stats { padding: 48px 0; }
}
