.advantages-section {
    background-color: var(--color-bg-light);
    padding: 64px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 64px;
}

.advantages-title,
.advantages-list,
.advantages-btn {
    width: 100%;
    max-width: 1200px;
}

/* Section title */

.advantages-title {
    font-family: var(--font-neo);
    font-size: 36px;
    font-weight: 400;
    line-height: 42px;
    letter-spacing: -1px;
    color: var(--color-black);
    text-align: center;
    white-space: nowrap;
}

/* Items list */

.advantages-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
}

/* Single item row */

.advantages-item {
    display: flex;
    align-items: center;
    gap: 64px;
}

.advantages-item--reverse {
    flex-direction: row-reverse;
}

/* Image block */

.advantages-image {
    flex-shrink: 0;
    width: 590px;
    height: 496px;
    overflow: hidden;
}

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

/* Text block */

.advantages-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-width: 0;
}

.advantages-item-title {
    font-family: var(--font-neo);
    font-size: 60px;
    font-weight: 400;
    line-height: 72px;
    letter-spacing: -2px;
    color: var(--color-black);
}

.advantages-item-desc {
    font-family: var(--font-inter);
    font-size: 19px;
    font-weight: 400;
    line-height: 30px;
    color: var(--color-text-muted);
}

/* CTA button */

.advantages-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 315px;
    height: 60px;
    padding: 24px 32px;
    background-color: var(--color-primary);
    border-radius: 4px;
    font-family: var(--font-neo);
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
    color: var(--color-white);
    text-decoration: none;
    white-space: nowrap;
    box-sizing: border-box;
}

/* ==============================
   Responsive
   ============================== */

@media (max-width: 1170px) {
    .advantages-section {
        padding: 32px 24px;
        gap: 32px;
    }

    .advantages-title {
        font-size: 32px;
        line-height: 37px;
        letter-spacing: 0;
        white-space: normal;
        text-align: left;
    }

    .advantages-list {
        gap: 24px;
    }

    /* All items stack: image on top, text below. No chess on mobile. */
    .advantages-item,
    .advantages-item--reverse {
        flex-direction: column;
        gap: 24px;
    }

    .advantages-image {
        width: 100%;
        height: 200px;
        flex-shrink: unset;
    }

    .advantages-item-title {
        font-size: 24px;
        font-weight: 500;
        line-height: 32px;
        letter-spacing: 0;
    }

    .advantages-text {
        gap: 16px;
    }

    .advantages-item-desc {
        font-size: 14px;
        line-height: 22px;
    }

    .advantages-btn {
        width: 100%;
        height: 44px;
        padding: 4px 32px;
        font-size: 16px;
    }
}
