.home-benefits__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 24px;
    align-items: stretch;
}

.home-benefits__cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.home-benefit-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px 18px;
    border: 1px solid #dbe3ee;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 4px 18px rgba(20, 73, 140, 0.05);
}

.home-benefit-card--wide {
    grid-column: 1 / -1;
}

.home-benefit-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(20, 73, 140, 0.08);
    color: #14498c;
    font-size: 1.05rem;
}

.home-benefit-card__title {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: #152535;
    line-height: 1.35;
}

.home-benefit-card__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.home-benefit-card__list li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 8px;
    font-size: 0.92rem;
    line-height: 1.55;
    color: #5f6b7a;
}

.home-benefit-card__list li:last-child {
    margin-bottom: 0;
}

.home-benefit-card__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.62em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #c9a227;
}

.home-benefit-card__perks {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.home-benefit-card__perks li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #4b5563;
}

.home-benefit-card__perks i {
    flex-shrink: 0;
    width: 18px;
    margin-top: 2px;
    color: #14498c;
    text-align: center;
}

.home-benefits__visual {
    display: flex;
    min-height: 100%;
}

.home-benefits__visual-frame {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 18px;
    border: 1px solid #dbe3ee;
    border-radius: 16px;
    background: linear-gradient(180deg, #ffffff 0%, #f4f8fc 100%);
    box-shadow: 0 4px 18px rgba(20, 73, 140, 0.05);
}

.home-benefits__visual-frame img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.home-benefits__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 28px;
}

.home-benefits__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    padding: 12px 22px;
    border-radius: 10px;
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.home-benefits__btn--primary {
    border: 1px solid #14498c;
    background: #14498c;
    color: #ffffff;
}

.home-benefits__btn--primary:hover,
.home-benefits__btn--primary:focus-visible {
    background: #0f3a6e;
    border-color: #0f3a6e;
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 6px 16px rgba(20, 73, 140, 0.2);
}

.home-benefits__btn--secondary {
    border: 1px solid #dbe3ee;
    background: #ffffff;
    color: #14498c;
}

.home-benefits__btn--secondary:hover,
.home-benefits__btn--secondary:focus-visible {
    border-color: #b8dcfa;
    background: #f4f8fc;
    color: #0f3a6e;
    text-decoration: none;
}

@media (max-width: 991px) {
    .home-benefits__layout {
        grid-template-columns: 1fr;
    }

    .home-benefits__visual {
        order: -1;
    }
}

@media (max-width: 575px) {
    .home-benefits__cards {
        grid-template-columns: 1fr;
    }

    .home-benefits__btn {
        width: 100%;
    }
}
