/* benefits block (BEM) */
.benefits {
    background: #fff;
    padding: 2.5rem 1.25rem 1rem;
    font-family: system-ui,-apple-system,"Segoe UI",Roboto,Ubuntu,"Helvetica Neue",Arial,sans-serif;
}

.benefits__inner {
    max-width: 1180px;
    margin: 0 auto;
}

.benefits__title {
    margin: 0 0 1.25rem;
    font-size: 1.35rem;
    font-weight: 600;
    color: #0f172a;
    letter-spacing: .4px;
}

.benefits__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
}

.benefits__item {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: .9rem;
    padding: 1rem 1rem 1.15rem;
    display: flex;
    flex-direction: column;
    gap: .4rem;
    position: relative;
    transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
    box-shadow: 0 2px 4px -2px rgba(15,23,42,.08),0 4px 10px -4px rgba(15,23,42,.06);
}

    .benefits__item:hover, .benefits__item:focus-within {
        border-color: #cbd5e1;
        box-shadow: 0 4px 16px -6px rgba(15,23,42,.18);
        transform: translateY(-3px);
    }

.benefits__icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: #021742;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #fff;
    box-shadow: 0 4px 12px -4px rgba(2,23,66,.6);
}

.benefits__item--highlight .benefits__icon {
    background: #2563eb;
}

.benefits__label {
    font-size: .78rem;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    font-weight: 600;
    color: #2563eb;
}

.benefits__heading {
    margin: 0;
    font-size: .92rem;
    font-weight: 600;
    letter-spacing: .4px;
    color: #0f172a;
}

.benefits__text {
    margin: 0;
    font-size: .75rem;
    line-height: 1.4;
    color: #475569;
}

@media (max-width:640px) {
    .benefits {
        padding-top: 1.5rem;
    }
}
