/* Section: why-bm — waarom-wij. Centered header + borderless 2-col checklist (design .usps/.usp). */

.why-bm { background: var(--surface); padding: 80px 0 100px 0; }

/* Centered header */
.why-bm > .container { text-align: left; }
.why-bm .eyebrow {
    display: inline-flex;
    font-family: var(--display);
    font-weight: 700;
    text-transform: uppercase;
    font-size: .8rem;
    color: var(--blue);
}
.why-bm h2 { font-family: var(--display); color: var(--ink); margin:0; }
.why-bm .lede { max-width: 60%; margin-top:14px; color: var(--muted); font-size: 18px; line-height: 1.65; }

/* Two-column checklist, left-aligned items, no card chrome. */
.why-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 80px;
    margin-top:40px;
    padding: 0;
    max-width: 940px;
    text-align: left;
}
@media (max-width: 768px) { .why-list { grid-template-columns: 1fr; } }

.why-list li {
    list-style: none;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    color: var(--muted);
    font-size: .93rem;
    line-height: 1.6;
}

/* Green check badge (intended green accent for why-bm). */
.why-list li::before {
    content: "";
    flex: none;
    width: 30px;
    height: 30px;
    margin-top: 1px;
    border-radius: 9px;
    background: var(--green-l);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2313794f' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 17px 17px;
}

/* Lead-in <strong> reads as the item title. */
.why-list li strong {
    display: block;
    font-family: var(--display);
    font-weight: 700;
    color: var(--ink);
    font-size: 1rem;
    line-height: 1.3;
    margin-bottom: 2px;
}
@media (max-width: 767px) {.why-bm{padding: 50px 0 70px;} .why-list {margin-left:0;} .why-bm .lede { max-width: 100%;} }
