#scope {
    position: relative;
    padding-bottom: 66px;
}

.scope-layer {
    background: #fff;
    border-radius: 25px;
    box-shadow: 0 3px 12px 2px #00000040;
    overflow: hidden;
    padding: 45px 20px 75px;
    position: relative;
    z-index: 1;
}


.scope {
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.scope-item {
    box-shadow: 0 0 8px 4px #00000033;
    border-radius: 25px;
    overflow: hidden;
    padding: 40px 10px 20px;
    background: #fff;
}


.scope-item--title {
    text-align: center;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.3;
    height: 67px;
}

.scope-item--image {
    aspect-ratio: 1 / 1;
    max-width: 190px;
    align-self: center;
    box-shadow: 0 0 8px 4px #00000033;
    border-radius: 20px;
    padding: 10px;
    margin-top: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.scope-collapse {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 1s;
}

.open .scope-collapse {
    max-height: 1250px;
}

.scope-item--text {
    margin-top: 32px;
    font-size: 15px;
    letter-spacing: 0.032em;
}

.scope-item--text p {
    margin-bottom: 0.5rem;
}

.h2 {
    font-size: 40px;
    font-weight: 800;
    letter-spacing: 0.03em;
}

.scope-layer .h2 {
    padding-left: 2.7rem;
    margin-bottom: 2.25rem;
}

.text-list {
    display: flex;
    flex-direction: column;
    margin-top: 18px;
    padding-left: 10px;
    text-indent: 10px;
    margin-bottom: 18px;
}

.text-list > * {
    position: relative;
    margin-bottom: 12px;
    line-height: 1.15;
}

.text-list > *::before {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--color-rose);
    left: -8px;
    top: 5px;
    border-radius: 50%;
}

.scope-item--advantages {
    gap: 30px;
    margin-top: auto;
    padding: 0 20px 10px;

}

.scope-item--advantages > * {
    box-shadow: 0 0 8px 4px #00000033;
    border-radius: 15px;
    padding: 0 8px 0 22px;
    gap: 8px;
    height: 78px;
}

.scope-item--advantages span {
    font-size: 13px;
}

.scope-btn {
    display: flex;
    position: absolute;
    justify-content: center;
    align-items: end;
    background: linear-gradient(178.78deg, #EB5649 -20.77%, #F48665 51.7%, #FFD977 124.16%);
    width: 120px;
    height: 105px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 25px;
    color: #fff;
    cursor: pointer;
    transition: transform 0.4s 0.2s;
}

.scope-btn--inner {
    margin-bottom: 20%;
}

.scope-btn img {
    transform: scaleY(-1);
    transition: transform 0.4s 0.2s;
}

.scope-btn.open img {
    transform: scaleY(1);
}

@media screen and (max-width: 1199px) {
    #scope {
        padding: 0;
    }

    .scope-collapse {
        gap: 10px;
    }

    .scope--title {
        background: #FFFFFF;
        box-shadow: 0 2px 7px 1px #00000040;
        border-radius: 5px;
    }

    .scope--title .tlg {
        font-size: 20px;
        text-align: center;
        letter-spacing: 0;
    }

    .scope-mobile-group {
        margin-top: 10px;
        padding-bottom: 28px;
    }

    .scope-layer {
        padding: 8px 9px;
        border-radius: 10px;
        box-shadow: 0 0 3px 2px #00000033;
    }

    .scope {
        grid-template-columns: repeat(2, 1fr);
    }

    .scope-item {
        border-radius: 10px;
        padding: 14px 5px 20px;
        box-shadow: 0 0 3px 2px #00000033;
    }

    .scope-item--title {
        font-size: 9px;
        height: 34px;
    }

    .scope-item--image {
        max-width: 96px;
        border-radius: 5px;
        box-shadow: 0 0 3px 2px #00000033;
    }

    .scope-item--text {
        margin-top: 12px;
        font-size: 8px;
    }

    .scope-item--text p {
        margin-bottom: 0.25rem;
    }

    .text-list {
        text-indent: 0;
        margin: 0;
    }

    .text-list > *::before {
        width: 4px;
        height: 4px;
        background: var(--color-rose);
        left: -8px;
        top: 3px;
    }

    .text-list > * {
        margin-bottom: 6px;
        line-height: 1.15;
    }

    .scope-item--advantages {
        gap: 10px;
        padding: 0 5px 5px;
    }

    .scope-item--advantages > * {
        border-radius: 5px;
        padding: 0 5px;
        box-shadow: 0 0 3px 2px #00000033;
    }

    .scope-item--advantages img {
        width: 12px;
    }

    .scope-item--advantages span {
        font-size: 9px;
    }


    .scope-btn {
        height: 45px;
        width: 52px;
        border-radius: 5px;
    }

    .scope-btn--inner {
        margin: 0;
    }

    .scope-btn img {
        width: 14px;
    }
}