.lms-services{
    padding: 107px 0 167px;
    background: #fff;
    border-radius: 22px;
    position: relative;
    z-index: 1;
}
.lms-services__container{
    max-width: 1398px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ====== Head ====== */
.lms-services__head{
    display: grid;
    grid-template-columns: 1fr 513px;
    gap: 48px;
    align-items: start;
    margin-bottom: 100px;
}
.lms-services__title{
    margin: 0;
    color: #1C1C1C;
    font-family: 'Geist', sans-serif;
    font-weight: 400;
    font-size: 54px;
    line-height: 62px;
}

.lms-services__intro{
    color: #575757;
    font-family: 'Geist', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    max-width: 513px;
}

/* ====== Items layout (desktop) ====== */
.lms-services__track{
    display: grid;
    gap: 120px;
}
.lms-services__card{
    display: flex;
    gap: 44px;
    align-items: center;
    justify-content: space-between;
}
.lms-services__item.is-reverse .lms-services__content{ order: 2; }
.lms-services__item.is-reverse .lms-services__media{ order: 1; }

.lms-services__content{
    max-width: 571px;
}

.lms-services__tag{
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    border-radius: 8px;
    background: #EEEEEE;
    color: #D41028;
    font-family: 'Geist', sans-serif;
    font-weight: 400;
    font-size: 11px;
    line-height: 18px;
    text-transform: uppercase;
    margin-bottom: 38px;
}
.lms-services__tag--alt{
    color: #D41028;
}

.lms-services__card-title{
    margin: 0 0 20px 0;
    color: #000000;
    font-family: 'Geist', sans-serif;
    font-weight: 400;
    font-size: 36px;
    line-height: 44px;
}
.lms-services__desc{
    margin: 0 0 33px;
    font-family: 'Geist', sans-serif;
    color: #575757;
    max-width: 520px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}
.lms-services__subhead{
    margin: 0 0 10px;
    font-family: 'Geist', sans-serif;
    text-transform: uppercase;
    color: #575757;
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
}
.lms-services__list{
    margin: 0 0 44px;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0;
}
.lms-services__list li{
    position: relative;
    padding-left: 16px;
    font-family: 'Geist', sans-serif;
    color: #1C1C1C;
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
}
.lms-services__list li::before{
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 4px;
    height: 4px;
    border-radius: 999px;
    background: #D41028;
    transform: translateY(-50%);
}
.lms-services__frame::after{
    content:"";
    position:absolute;
    right: 0;
    top: 0;
    width: 90px;
    height: 90px;
    background: #fff;
    clip-path: polygon(100% 0, 0 0, 100% 100%);
    opacity: .25;
}
.lms-services__img{
    display:block;
    width: 100%;
    height: auto;
    border-radius: 12px;
    background: #fff;
    max-width: 548px;
}

.lms-services__slider {
    position: relative;
}

.lms-services__track {
    position: relative;
    display: block;
    gap: 0;
}

.lms-services__item {
    position: sticky;
    top: 120px;
    opacity: 0;
    transform: translateY(40px);
    transition:
            opacity 0.6s ease,
            transform 0.6s ease;
    pointer-events: none;
    will-change: opacity, transform;
    margin-bottom: 0;
}

.lms-services__item + .lms-services__item {
    margin-top: 0;
}

.lms-services__item.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.lms-services__item.is-prev {
    opacity: 0;
    transform: translateY(-40px);
}

.lms-services__item.is-next {
    opacity: 0;
    transform: translateY(40px);
}

.lms-services__dots{ display:none; }

@media (max-width: 1024px){

    .lms-services{
        padding: 125px 0 46px;
        background-image: url(/wp-content/uploads/2026/03/Group-1000007272-1.svg), url(/wp-content/uploads/2026/03/Group-1000007273.svg);
        background-repeat: no-repeat;
        border-radius: 0;
        background-position: top left, top right;
    }

    .lms-services__head{
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }
    .lms-services__title{
        font-size: 36px;
        line-height: 44px;
        text-align: left;
    }
    .lms-services__intro{
        max-width: 100%;
        font-size: 16px;
        line-height: 24px;
    }

    .lms-services__track{
        display: flex;
        gap: 14px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 10px;
        scrollbar-width: none;
    }
    .lms-services__track::-webkit-scrollbar{ display:none; }

    .lms-services__item{
        flex: 0 0 100%;
        scroll-snap-align: start;
        opacity: 1;
        position: relative;
    }

    .lms-services__card{
        grid-template-columns: 1fr;
        gap: 30px;
        flex-direction: column-reverse;
    }
    .lms-services__item.is-reverse .lms-services__content,
    .lms-services__item.is-reverse .lms-services__media{
        order: unset;
    }

    .lms-services__dots{
        display:flex;
        justify-content:center;
        gap: 8px;
        margin-top: 12px;
    }
    .lms-services__dot{
        width: 8px;
        height: 8px;
        border-radius: 999px;
        background: #ddd;
        border: 0;
        padding: 0;
        cursor: pointer;
    }
    .lms-services__dot.is-active{
        background: #D41028;
    }
}