.advantages {
    background: #FFF;
    position: relative;
    overflow: clip;
    padding-bottom: 160px;
    margin-bottom: 0 !important;
}

.advantages__teeth-layer {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.advantages__tooth--1 {
    position: absolute;
    width: clamp(293px, 33vw, 500px);
    left: calc(53% - 850px);
    top: 30%;
    transform: translateY(-40%);
}

.advantages__tooth--2 {
    position: absolute;
    right: calc(89% - 925px);
    bottom: -9%;
    width: clamp(293px, 40vw, 686px);
}

.advantages__tooth-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.advantages__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 68px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.advantages__left {
}

.advantages__left-sticky {
    position: sticky;
    top: 40px;
}

.advantages__title {
    font-family: Manrope, sans-serif;
    font-weight: 600;
    font-size: 55px;
    line-height: 64px;
    color: #5C075E;
    margin: 0 0 30px 0;
}

.advantages__description {
    font-family: Manrope, sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: #5C075E;
    margin: 0;
}

.advantages__right {
    display: flex;
    flex-direction: column;
}

.advantages__item {
    background: #FCF5FC;
    border-radius: 25px;
    padding: 25px;
    position: relative;
    overflow: hidden;
    margin-bottom: 25px;
}

.advantages__item:last-child { margin-bottom: 0; }

.advantages__item::before {
    content: '';
    position: absolute;
    width: 301px;
    height: 266px;
    left: -17px;
    top: 73px;
    background: rgba(146, 38, 148, 0.19);
    filter: blur(89.3px);
    pointer-events: none;
    border-radius: 50%;
    z-index: 0;
}

.advantages__item::after {
    content: '';
    position: absolute;
    width: 422px;
    height: 266px;
    left: 536px;
    top: -149px;
    background: rgba(146, 38, 148, 0.19);
    filter: blur(89.3px);
    pointer-events: none;
    border-radius: 50%;
    z-index: 0;
}

.advantages__item-title {
    font-family: Manrope, sans-serif;
    font-weight: 600;
    font-size: 28px;
    line-height: 100%;
    color: #450147;
    margin: 0 0 40px 0;
    position: relative;
    z-index: 1;
}

.advantages__item-body {
    position: relative;
    z-index: 1;
}

.advantages__item-text {
    font-family: Manrope, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;
    color: #450147;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: none;
}

.advantages__item.open .advantages__item-text {
    display: block;
    overflow: visible;
    -webkit-line-clamp: unset;
    -webkit-box-orient: unset;
}

.advantages__item-more {
    background: none;
    border: none;
    padding: 0;
    margin-top: 8px;
    cursor: pointer;
    font-family: Manrope, sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
    color: #5C075E;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: opacity 0.2s ease;
    display: inline-block;
}

.advantages__item-more:hover { opacity: 0.7; }

.advantages__item-more-x {
    font-size: 16px;
    color: #8D2A8F;
    margin-left: 6px;
    text-decoration: none;
    display: inline;
    font-weight: 400;
}

@media (max-width: 1400px) {
    .advantages__wrapper { gap: 48px; }
    .advantages__tooth--1 { left: -60px; }
    .advantages__tooth--2 { right: -30px; }
}

@media (max-width: 1024px) {
    .advantages__wrapper {
        display: flex;
        flex-direction: row;
        gap: 35px;
    }

    .advantages__left {
        flex: 0 0 447px;
    }

    .advantages__left-sticky {
        position: sticky;
        top: 100px;
    }

    .advantages__title {
        font-size: 34px;
        line-height: 46px;
        margin-bottom: 15px;
    }

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

    .advantages__right {
        flex: 1;
    }

    .advantages__item {
        border-radius: 20px;
        padding: 25px;
        margin-bottom: 25px;
    }

    .advantages__item-title {
        font-size: 22px;
        line-height: 30px;
        margin-bottom: 25px;
    }

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

    .advantages__item-more {
        font-size: 14px;
        line-height: 19px;
    }

    .home .advantages__tooth--1 {
        left: calc(53% - 444px) !important;
        top: 17% !important;
    }

    .home .advantages__tooth--2 {
        right: calc(89% - 473px) !important;
        bottom: 7% !important;
        top: auto !important;
    }

    .is-about-page .advantages__tooth--1 {
        left: calc(53% - 589px) !important;
        top: 18% !important;
    }

    .is-about-page .advantages__tooth--2 {
        right: calc(89% - 469px) !important;
        bottom: 9% !important;
        top: auto !important;
    }
}

@media (max-width: 768px) {
    .advantages__wrapper {
        flex-direction: column;
        gap: 25px;
    }

    .advantages__left {
        flex: none;
    }

    .advantages__left-sticky {
        position: static;
    }
}

@media (max-width: 576px) {
    .advantages { padding-bottom: 90px; }
    .home .advantages { padding-top: 70px; }

    .advantages__tooth--1,
    .advantages__tooth--2 { display: none; }

    .advantages__title {
        font-size: 24px;
        line-height: 27px;
        margin-bottom: 10px;
    }

    .advantages__description {
        font-size: 12px;
        line-height: 18px;
    }

    .advantages__item {
        border-radius: 20px;
        padding: 20px;
        margin-bottom: 15px;
    }

    .advantages__item-title {
        font-size: 22px;
        line-height: 30px;
        margin-bottom: 20px;
    }

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

    .advantages__item-more {
        font-size: 14px;
        line-height: 19px;
    }
}

.is-about-page .advantages {
    background: #FCF5FC;
}

.is-about-page .advantages__item {
    background: #FFFFFF;
}

.is-about-page .advantages__item::before,
.is-about-page .advantages__item::after {
    background: rgba(207, 119, 209, 0.08);
}
.is-about-page .advantages__tooth--2 {
    right: calc(89% - 839px);
}
.is-about-page .advantages__tooth--1 {
    left: calc(53% - 955px);
    top: 25%;
}
.home .advantages__tooth--2 {
    right: calc(89% - 839px);
}
.home .advantages__tooth--1 {
    left: calc(53% - 947px);
    top: 25%;
}