section.compare{
    padding-top: calc(40 * var(--rpx-50));
    padding-bottom: calc(120 * var(--rpx-50));

    position: relative;
}

.compare::before{
    content: "";
    position: absolute;
    width: calc(520 * var(--rpx-50));
    height: calc(520 * var(--rpx-50));
    left: 5%;
    top: -40%;
    background: url("../images/back_glow.webp") center/contain no-repeat;
    z-index: 200;
}

.compare::after{
    content: "";
    position: absolute;
    width: calc(875 * var(--rpx-50));
    height: calc(875 * var(--rpx-50));
    right: calc(-120 * var(--rpx-50));
    bottom: calc(-400 * var(--rpx-50));
    background: url("../images/back_glow.webp") center/contain no-repeat;
    z-index: 200;
}

section.compare .wrapper{
    position: relative;
    z-index: 210;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.compare .title{
    font-size: calc(24 * var(--rpx-75));
    font-weight: 600;
}

.compare picture{
    margin-top: calc(30 * var(--rpx));
}

.compare picture,
.compare img{
    display: block;
    width: 100%;
    height: auto;
}

section.advantages{
    padding-top: calc(120 * var(--rpx-50));
    padding-bottom: calc(120 * var(--rpx-50));
    position: relative;
    z-index: 220;
}

.advantage-list{
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: calc(60 * var(--rpx-50));
}

.advantage{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.advantage.flipped{
    flex-direction: row-reverse;
}

.advantage .info{
    flex: 0 0 auto;
    width: calc(600 * var(--rpx-75));
}

.advantage .figure{
    flex: 0 0 auto;
    width: calc(600 * var(--rpx));
    height: calc(600 * var(--rpx));
    display: flex;
    justify-content: center;
    align-items: center;
}

.advantage .figure img{
    pointer-events: none;
    width: 200%;
    height: auto;
}

.advantage .no{
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(60em / 16);
    height: calc(40em / 16);
    border-radius: calc(20em / 16);
    background: var(--theme-gradient);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255,.4);
}

.advantage .title{
    margin-top: calc(24 * var(--rpx));
    font-size: calc(32 * var(--fpx-67));
    line-height: calc(48em / 38);
    font-weight: 600;
}

.advantage .desc{
    margin-top: calc(27 * var(--rpx));
    font-size: calc(24 * var(--fpx-75));
    color: #fff9;
}

.advantage .sub-info{
    margin-top: calc(60 * var(--rpx-50));
}

.advantage .sub-info p{
    position: relative;
    padding-left: calc(54 * var(--fpx));
    color: #fff9;
}

.advantage .sub-info p+p{
    margin-top: calc(36 * var(--fpx));
}

.advantage .sub-info p img{
    position: absolute;
    left: 0;
    top: 0;
    width: calc(32 * var(--fpx));
    height: calc(32 * var(--fpx));
}

.advantage .sub-info p strong{
    display: block;
    width: 100%;
    font-weight: 600;
    font-size: calc(18rem / 16);
    color: #fff;
}

.advantage .sub-info p .rest{
    display: block;
    width: 100%;
    margin-top: calc(8 * var(--fpx));
}

@media (max-width: 828px) {
    .advantage,
    .advantage.flipped{
        flex-direction: column-reverse;
        align-items: center;
    }

    .advantage-list{
        gap: calc(120 * var(--rpx));
    }

    .advantage .info{
        width: 100%;
    }

    .advantage .figure{
        width: 75vw;
        height: 75vw;
    }
}

