.advantages {
    padding: 60px 0 80px;
}

.advantages-bg {
    position: relative;
    background: #FBAE17;
    /* background-image: var(--bg-img-advantages);
    background-repeat: repeat; */
    border-radius: 24px;
    padding: 48px 40px 56px;
    /* mix-blend-mode: plus-darker; */
}
.advantages-bgimage {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
    z-index: 1;
    mix-blend-mode: multiply;
}
/* Heading */
.advantages-heading {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-bottom: 40px;
}
.advantages-title {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    -webkit-text-stroke: 2px #7a3b00;
    paint-order: stroke fill;
    margin-bottom: 16px;
    line-height: 1.2;
}

.advantages-subtitle {
    color: #FFF;
    text-align: center;
    font-family: "Baloo 2";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px; /* 133.333% */
    max-width: 914px;
    margin: 0 auto;
}

/* Layout */
.advantages-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: start;
}

/* List */
.advantages-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.advantages-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border-radius: 100px;
    padding: 16px;
    cursor: pointer;
    transition: box-shadow 0.25s, transform 0.2s;
    min-height: 80px;
}

.advantages-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transform: translateX(4px);
}

.advantages-item.active {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.advantages-item.active .advantages-item-arrow {
    color: #fbae17;
}

.advantages-item-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: #fbae17;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.advantages-item-body {
    flex: 1;
    min-width: 0;
}

.advantages-item-title {
    color: var(--color-text, #2F1B08);
font-family: "Baloo 2";
font-size: 24px;
font-style: normal;
font-weight: 700;
line-height: 32px; /* 133.333% */
}

.advantages-item-desc {
    font-size: 12px;
    color: #666;
    line-height: 1.5;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.advantages-item-arrow {
    flex-shrink: 0;
    color: #ccc;
    display: flex;
    align-items: center;
    transition: color 0.2s;
}

/* Slider */
.advantages-slider {
    position: sticky;
    top: 80px;
}

.advantages-swiper {
    border-radius: 20px;
    overflow: hidden;
    background: #f5f5f5;
    aspect-ratio: 4/3;
    width: 590px;
    height: 752px;
}

.advantages-swiper .swiper-slide {
    width: 100%;
    height: 100%;
}

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

.advantages-swiper .swiper-slide-placeholder {
    width: 100%;
    height: 100%;
    background: #e0e0e0;
}

/* Pagination */
.advantages-pagination {
    bottom: 14px !important;
}

.advantages-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.6);
    opacity: 1;
    transition: background 0.2s, transform 0.2s;
}

.advantages-pagination .swiper-pagination-bullet-active {
    background: #fff;
    transform: scale(1.3);
}

/* Responsive */
@media (max-width: 1024px) {
    .advantages-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .advantages-bg {
        padding: 36px 20px 44px;
        border-radius: 16px;
    }

    .advantages-title {
        font-size: 22px;
        -webkit-text-stroke: 1.5px #7a3b00;
    }

    .advantages-content {
        grid-template-columns: 1fr;
    }

    .advantages-slider {
        position: static;
        order: -1;
    }

    .advantages-item-desc {
        white-space: normal;
    }
}
