/* ============================================================
   Why BTAP Chess — шахматка «Почему партнёры выбирают BTAP»
   ============================================================ */

.why-chess {
    background: var(--color-white);
    padding: 100px 120px 64px;
}

.why-chess__inner {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* ── Single row ── */
.why-chess__row {
    display: flex;
    align-items: center;
    gap: 64px;
}

.why-chess__row--reverse {
    flex-direction: row-reverse;
}

/* ── Image ── */
.why-chess__image {
    flex-shrink: 0;
    width: 590px;
    height: 496px;
    overflow: hidden;
}

.why-chess__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ── Content ── */
.why-chess__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 0;
    justify-content: center;
}

/* ── Tag ── */
.why-chess__tag {
    font-family: var(--font-inter);
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-black);
}

/* ── Title ── */
.why-chess__title {
    font-family: var(--font-neo);
    font-size: 60px;
    font-weight: 400;
    line-height: 72px;
    letter-spacing: -2px;
    color: var(--color-black);
    margin: 0;
}

/* ── Description ── */
.why-chess__desc {
    font-family: var(--font-inter);
    font-size: 19px;
    font-weight: 400;
    line-height: 30px;
    color: var(--color-text-muted);
    margin: 0;
}

/* ── Info note ── */
.why-chess__info {
    display: flex;
    align-items: center;
    gap: 24px;
}

.why-chess__info-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: block;
}

.why-chess__info-text {
    font-family: var(--font-inter);
    font-size: 17px;
    font-weight: 400;
    line-height: 23px;
    color: var(--color-text-muted);
    margin: 0;
}

/* ── Stats ── */
.why-chess__stats {
    display: flex;
    gap: 64px;
    align-items: flex-start;
}

.why-chess__stat {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.why-chess__stat-value {
    font-family: var(--font-neo);
    font-size: 48px;
    font-weight: 400;
    line-height: 58px;
    letter-spacing: -1.8px;
    color: var(--color-black);
}

.why-chess__stat-label {
    font-family: var(--font-inter);
    font-size: 19px;
    font-weight: 400;
    line-height: 30px;
    color: var(--color-text-muted);
}

/* ── Checks list ── */
.why-chess__checks {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.why-chess__check {
    display: flex;
    align-items: center;
    gap: 16px;
}

.why-chess__check-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: block;
}

.why-chess__check-text {
    font-family: var(--font-inter);
    font-size: 17px;
    font-weight: 400;
    line-height: 23px;
    color: var(--color-text-muted);
}

/* ── Tablet ── */
@media (max-width: 1170px) {
    .why-chess {
        padding: 64px 48px;
    }

    .why-chess__image {
        width: 45%;
        height: 380px;
    }

    .why-chess__title {
        font-size: 40px;
        line-height: 50px;
        letter-spacing: -1.5px;
    }

    .why-chess__desc {
        font-size: 16px;
        line-height: 24px;
    }

    .why-chess__stat-value {
        font-size: 36px;
        line-height: 44px;
        letter-spacing: -1px;
    }

    .why-chess__stat-label {
        font-size: 16px;
        line-height: 24px;
    }

    .why-chess__stats {
        gap: 32px;
    }

    .why-chess__info-text {
        font-size: 15px;
        line-height: 21px;
    }

    .why-chess__check-text {
        font-size: 15px;
        line-height: 21px;
    }
}

/* ── Mobile ── */
@media (max-width: 640px) {
    .why-chess {
        padding: 32px 24px;
    }

    .why-chess__inner {
        gap: 32px;
    }

    /* All rows stack: image top, text below */
    .why-chess__row,
    .why-chess__row--reverse {
        flex-direction: column;
        gap: 24px;
    }

    .why-chess__image {
        width: 100%;
        height: 200px;
        flex-shrink: unset;
    }

    .why-chess__title {
        font-size: 24px;
        font-weight: 500;
        line-height: 32px;
        letter-spacing: 0;
    }

    .why-chess__desc {
        font-size: 14px;
        line-height: 22px;
    }

    .why-chess__tag {
        font-size: 12px;
    }

    .why-chess__stats {
        gap: 32px;
    }

    .why-chess__stat-value {
        font-size: 24px;
        font-weight: 400;
        line-height: 28px;
        letter-spacing: 0;
    }

    .why-chess__stat-label {
        font-size: 14px;
        line-height: 22px;
    }

    .why-chess__info-icon {
        width: 20px;
        height: 20px;
    }

    .why-chess__info-text {
        font-size: 14px;
        line-height: 22px;
    }

    .why-chess__check-icon {
        width: 24px;
        height: 24px;
    }

    .why-chess__check-text {
        font-size: 14px;
        line-height: 22px;
    }
}
