/* WHY US — section #6 (after Testimonials)
   Figma: 1380 × 608, white bg.
   - RIGHT: title + intro + 5 bullets with check icons
   - LEFT: 2 vertical photos */

.why-us {
    width: 100%;
    background: #fff;
    padding: 50px 24px 70px;
}

.why-us__inner {
    max-width: 1380px;
    margin: 0 auto;
    display: flex;
    flex-direction: row-reverse;            /* RTL: text on RIGHT, photos on LEFT */
    gap: 50px;
    align-items: flex-start;
}

/* ===== RIGHT column: title + intro + bullets ===== */
.why-us__text {
    flex: 1 1 auto;
    text-align: right;
    max-width: 622px;
}
.why-us__title {
    font-family: var(--ff-he);
    font-weight: 400;
    font-size: 42px;
    line-height: 1;
    color: var(--c-blk);
    margin: 0 0 30px;
}
.why-us__intro {
    font-family: var(--ff-he);
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    color: #1d1d1b;
    margin: 0 0 30px;
}
.why-us__intro p {
    margin: 0 0 14px;
}
.why-us__intro p:last-child {
    margin-bottom: 0;
}
.why-us__intro strong {
    font-weight: 600;
}

.why-us__list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.why-us__item {
    display: flex;
    /* Natural RTL flex: DOM 1 (check) → RIGHT visually, DOM 2 (body) → LEFT */
    gap: 14px;
    align-items: flex-start;
}
.why-us__check {
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--c-gold-flat);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 4px;
}
.why-us__check svg {
    width: 14px;
    height: 14px;
}
.why-us__item-body {
    flex: 1 1 auto;
    text-align: right;
}
.why-us__item-title {
    font-family: var(--ff-he);
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    color: #1d1d1b;
    margin: 0 0 2px;
}
.why-us__item-desc {
    font-family: var(--ff-he);
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    color: #1d1d1b;
    margin: 0;
}

/* ===== LEFT column: 2 photos side by side ===== */
.why-us__photos {
    flex: 0 0 auto;
    display: flex;
    gap: 22px;
}
.why-us__photo {
    width: 322px;
    height: 608px;
    border-radius: 4px;
    overflow: hidden;
    background: var(--c-blk);
    flex: 0 0 322px;
}
.why-us__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Single-photo mode (only one image set) → one wide photo */
.why-us__photos--single .why-us__photo {
    width: 675px;
    flex: 0 0 675px;
}
@media (max-width: 1024px) {
    .why-us__photos--single { width: 100%; }
    .why-us__photos--single .why-us__photo {
        width: 100% !important;
        max-width: 100% !important;
        flex: 1 1 100% !important;
        height: 360px;
    }
}

/* ===== MOBILE ===== */
@media (max-width: 1024px) {
    .why-us {
        padding: 40px 16px 50px;
    }
    .why-us__inner {
        flex-direction: column;
        gap: 30px;
    }
    .why-us__title {
        font-size: 26px;
        text-align: center;
    }
    .why-us__intro {
        font-size: 16px;
        line-height: 22px;
    }
    .why-us__item-title {
        font-size: 17px;
        line-height: 22px;
    }
    .why-us__item-desc {
        font-size: 16px;
        line-height: 22px;
    }
    .why-us__photos {
        gap: 12px;
        width: 100%;
        justify-content: center;
    }
    .why-us__photo {
        flex: 1 1 0;
        height: 320px;
        max-width: 50%;
    }
}
