/* ============================================================
   body-standard-statistics — блок статистики
   Matches reference design (image 1)
   Assets: /assets/image/website/body/standard/statistics/
     • Group_1597887781.png   (3D-ілюстрація праворуч)
   (іконка-смужки реалізована вбудованим SVG)
   ============================================================ */

.body-standard-statistics *,
.body-standard-statistics *::before,
.body-standard-statistics *::after { box-sizing: border-box; }

.body-standard-statistics {
    --bss-card:    #e9f2fc;
    --bss-blue:    #3b82f6;
    --bss-purple:  #8b5cf6;
    --bss-gray:    #8196A9;
    --bss-maxw:    1080px;

    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    background: #ffffff;
    color: #1f2a44;
    font-family: "Inter", "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    padding: 56px 32px;
}

.body-standard-statistics .bss-inner {
    max-width: var(--bss-maxw);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    gap: 100px;
}

/* ---------- left: 2x2 cards ---------- */
.body-standard-statistics .bss-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.body-standard-statistics .bss-card {
    background: var(--bss-card);
    border-radius: 14px;
    padding: 22px 24px 24px;
    min-height: 250px;
    min-width: 250px;
    display: flex;
    flex-direction: column;
}
.body-standard-statistics .bss-ic {
    display: block;
    width: 28px;
    height: 17px;
    margin-bottom: auto;
}
.body-standard-statistics .bss-ic svg { display: block; width: 100%; height: 100%; }

.body-standard-statistics .bss-num {
    font-size: 60px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -1px;
    margin: 26px 0 6px;
    background: linear-gradient(90deg, var(--bss-purple) 0%, var(--bss-blue) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    width: max-content;
}
.body-standard-statistics .bss-label {
    font-size: 21px;
    line-height: 1.4;
    font-weight: 800;
    color: var(--bss-gray);
}

/* ---------- right: 3D illustration ---------- */
.body-standard-statistics .bss-visual {
    border-radius: 18px;
    overflow: hidden;
    background: #f3f7fd;
    box-shadow: 0 18px 44px rgba(40, 78, 140, .14);
}
.body-standard-statistics .bss-visual img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ---------- responsive ---------- */
@media (max-width: 880px) {
    .body-standard-statistics .bss-inner {
        grid-template-columns: 1fr;
        gap: 28px;
        max-width: 460px;
    }
    .body-standard-statistics .bss-visual { order: -1; }
}
@media (max-width: 460px) {
    .body-standard-statistics { padding: 40px 18px; }
    .body-standard-statistics .bss-cards { gap: 12px; }
    .body-standard-statistics .bss-card { min-height: 132px; padding: 18px 18px 20px; }
    .body-standard-statistics .bss-num { font-size: 32px; }
}