/* ============================================================
   body-standard-four-steps — "Чотири кроки від дзвінка до інсайту"
   Matches reference design (image 1)
   Assets: /assets/image/website/body/standard/four-steps/
     • img.png   (3D-ілюстрація ліворуч)
   ============================================================ */

.body-standard-four-steps *,
.body-standard-four-steps *::before,
.body-standard-four-steps *::after { box-sizing: border-box; }

.body-standard-four-steps {
    --bsfs-blue:    #2d7ff9;
    --bsfs-navy:    #15264a;
    --bsfs-text:    #3d4350;
    --bsfs-orange:  #f6921e;
    --bsfs-maxw:    1180px;

    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    background: #ffffff;
    color: var(--bsfs-navy);
    font-family: "Inter", "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    padding: 48px 32px;
}

.body-standard-four-steps .bsfs-inner {
    max-width: var(--bsfs-maxw);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 56px;
}

/* ---------- left: illustration ---------- */
.body-standard-four-steps .bsfs-visual {
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #eaf1fb 100%);
}
.body-standard-four-steps .bsfs-visual img {
    display: block;
    width: 100%;
    height: auto;
}

/* ---------- right: content ---------- */
.body-standard-four-steps .bsfs-content { max-width: 520px; }

.body-standard-four-steps .bsfs-title {
    font-size: 32px;
    line-height: 1.22;
    font-weight: 800;
    letter-spacing: -.3px;
    color: var(--bsfs-navy);
    margin: 0 0 26px;
}
.body-standard-four-steps .bsfs-title .bsfs-accent { color: var(--bsfs-blue); }
.bsfs-steps .bsfs-step-head {
    display: block;
    font-weight: 800;
    color: #1D93FF;
    margin-bottom: 6px;
}
/* steps */
.body-standard-four-steps .bsfs-steps {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-bottom: 30px;
}
.body-standard-four-steps .bsfs-steps li {
    position: relative;
    padding: 3px 0 3px 18px;
    margin-bottom: 26px;
    font-size: 21px;
    line-height: 1.55;
    color: var(--bsfs-text);
}
.body-standard-four-steps .bsfs-steps li:last-child { margin-bottom: 0; }
.body-standard-four-steps .bsfs-steps li::before {
    content: "";
    position: absolute;
    left: 0; top: 4px; bottom: 4px;
    width: 3px;
    border-radius: 3px;
    background: var(--bsfs-orange);
}




/* ---------- responsive ---------- */
@media (max-width: 900px) {
    .body-standard-four-steps .bsfs-inner {
        grid-template-columns: 1fr;
        gap: 32px;
        max-width: 560px;
    }
}
@media (max-width: 480px) {
    .body-standard-four-steps { padding: 36px 18px; }
    .body-standard-four-steps .bsfs-title { font-size: 23px; }
}