.why-section { padding: 88px 0; background: #fff; }
.why-section__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}
.why-list { margin: 8px 0 24px; }
.why-list__item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
}
.why-list__icon-wrap {
    width: 44px; height: 44px;
    border-radius: 16px;
    background: var(--blue-bg);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.why-list__icon-wrap img { width: 20px; height: 20px; }
.why-list__label {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 2px;
}
.why-list__desc {
    font-size: 14px;
    line-height: 1.4;
    color: var(--text-body);
}
.why-section__img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}
@media (max-width: 1024px) {
    .why-section__grid { grid-template-columns: 1fr; gap: 40px; }
}
