/* ============================================================
   body-retail-problem — "Проблема"
   Розмітка: retail-problem.html | Скрипт: retail-problem.js
   ============================================================ */

.body-retail-problem *,
.body-retail-problem *::before,
.body-retail-problem *::after { box-sizing: border-box; }

.body-retail-problem {
    --brp-blue:   #2196FF;
    --brp-navy:   #15264a;
    --brp-ink:    #1f2a44;
    --brp-gray:   #5b6678;
    --brp-amber:  #f4a52f;
    --brp-maxw:   1060px;

    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    /* голубий градієнт як на макеті */
    background: linear-gradient(180deg, #e8f1fc 0%, #f4f9ff 60%, #ffffff 100%);
    color: var(--brp-ink);
    font-family: "Inter", "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    padding: 54px 24px 64px;
}

.body-retail-problem .brp-inner {
    max-width: var(--brp-maxw);
    margin: 0 auto;
}

/* ---------- headings ---------- */
.body-retail-problem .brp-eyebrow {
    margin: 0 0 16px;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -.2px;
    color: var(--brp-blue);
}
.body-retail-problem .brp-lead {
    margin: 0 0 34px;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.4;
    color: var(--brp-navy);
}

/* ---------- two columns ---------- */
.body-retail-problem .brp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 72px;
    row-gap: 8px;
    margin-bottom: 36px;
}
.body-retail-problem .brp-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.body-retail-problem .brp-list li {
    position: relative;
    padding: 2px 0 2px 16px;
    margin-bottom: 26px;
    font-size: 14px;
    line-height: 1.55;
    color: var(--brp-gray);
}
.body-retail-problem .brp-list li:last-child { margin-bottom: 0; }
.body-retail-problem .brp-list li::before {
    content: "";
    position: absolute;
    left: 0; top: 4px; bottom: 4px;
    width: 3px;
    border-radius: 3px;
    background: var(--brp-amber);
}

/* ---------- callout bar ---------- */
.body-retail-problem .brp-callout {
    background: var(--brp-blue);
    color: #fff;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    padding: 18px 28px;
    border-radius: 12px;
    box-shadow: 0 16px 34px rgba(33, 150, 255, .22);
}

/* ---------- responsive ---------- */
@media (max-width: 760px) {
    .body-retail-problem { padding: 40px 18px 48px; }
    .body-retail-problem .brp-grid {
        grid-template-columns: 1fr;
        column-gap: 0;
        row-gap: 0;
    }
    .body-retail-problem .brp-list { margin-bottom: 26px; }
    .body-retail-problem .brp-list:last-child { margin-bottom: 0; }
    .body-retail-problem .brp-lead { font-size: 16px; }
}
@media (max-width: 480px) {
    .body-retail-problem { padding: 32px 16px 40px; }
    .body-retail-problem .brp-callout { font-size: 14px; padding: 16px 18px; }
}

/* ---------- поява при скролі (вмикається скриптом) ---------- */
.body-retail-problem.brp-anim .brp-inner > * {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .5s ease, transform .5s ease;
}
.body-retail-problem.brp-anim .brp-lead    { transition-delay: .05s; }
.body-retail-problem.brp-anim .brp-grid    { transition-delay: .1s; }
.body-retail-problem.brp-anim .brp-callout { transition-delay: .15s; }
.body-retail-problem.brp-anim.is-in .brp-inner > * {
    opacity: 1;
    transform: none;
}
@media (prefers-reduced-motion: reduce) {
    .body-retail-problem.brp-anim .brp-inner > * {
        opacity: 1;
        transform: none;
        transition: none;
    }
}