.service_page {
    height: 740px;
}


.service_page-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.service_page-title {
    font-family: var(--second-family);
    color: var(--general-white);
    font-weight: 500;
    font-size: 52px;
    line-height: 123%;
    letter-spacing: -0.01em;
    text-align: center;
    margin-top: 100px;
}

.service_page-descript {
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 20px;
    line-height: 140%;
    text-align: center;
    color: var(--general-white);
}


.benefits_top {
    border-bottom: 1px solid #ECDED5;
    box-shadow: 0 1px 0 0 #fff;
}

.benefits_top-inner {
    margin: 100px 0 72px 110px;
    max-width: 573px;
}

.benefits_top-descript {
    font-family: var(--first-family);
    font-weight: 400;
    font-size: 18px;
    line-height: 144%;
    color: var(--grey-text);
    margin-top: 18px;
}

.benefits_bottom {
    padding: 72px 0 140px;
    border-bottom: 1px solid #ECDED5;
    box-shadow: 0 1px 0 0 #fff;
}


.benefits_list {
    display: flex;
    align-items: center;
    gap: 48px;
}

.benefits_list-item,
.benefits_item-wrap {
    display: flex;
    flex-direction: column;
    align-items: start;
}

.benefits_list-item {
    gap: 24px;
}

.benefits_item-wrap {
    gap: 8px;
}

.benefits_item-img {
    display: flex;
    width: 72px;
    height: 72px;
}

.benefits_item-img img {
    width: 35px;
    height: 35px;
    margin-top: 30px;
    margin-left: 9px;
}

.benefits_item-title {
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 20px;
    line-height: 140%;
}

.benefits_item-text {
    font-family: var(--first-family);
    font-weight: 400;
    font-size: 18px;
    line-height: 144%;
    color: var(--grey-text);
}

/*******************************************************/
.sample {
    background-color: #fbf5e7;
    border-bottom: 1px solid #ECDED5;
    box-shadow: 0 1px 0 0 #fff;
}

.sample_inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 72px 0;
    gap: 72px;
    border-left: 1px solid #ECDED5;
    border-right: 1px solid #ECDED5;
    box-shadow: -1px 0 0 0 #fff, 1px 0 0 0 #fff;
}

.sample_title {
    text-align: center;
    max-width: 764px;

}

.sample_list {
    display: flex;
    flex-direction: column;

}

.sample_list-item {
    display: flex;
    align-items: center;
    gap: 48px;
    border-bottom: 1px solid #ECDED5;
    padding: 28px 110px;
}

.sample_list-item:first-child {
    border-top: 1px solid #ECDED5;
    box-shadow: 0 -1px 0 0 #fff, 0 1px 0 0 #fff;
}

.sample_list-item:last-child {
    border-bottom: none;
    box-shadow: none;
}

.sample_item-title {
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 26px;
    line-height: 154%;
    max-width: 320px;
    width: 100%;
}

.sample_item-title span {
    color: #f60;
}

.sample_item-descript {
    font-family: var(--first-family);
    font-weight: 400;
    font-size: 18px;
    line-height: 144%;
    color: var(--grey-text);
}

.sample_btn-wrap {
    display: flex;
    align-items: center;
    max-width: 764px;
    width: 100%;
}

.sample_btn {
    background-color: #111;
    width: 100%;
}

/********************************************/

.stage {
    padding: 100px 0 140px;
    border-bottom: 1px solid #ECDED5;
    box-shadow: 0 1px 0 0 #fff;
}


.stage_top {
    margin-left: 110px;
    margin-bottom: 72px;
    max-width: 573px;
}


.stage_descript {
    font-family: var(--first-family);
    font-weight: 400;
    font-size: 18px;
    line-height: 144%;
    margin-top: 18px;
    color: var(--grey-text);
}

.stage_list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}


.stage_card-link {
    display: flex;
    flex-direction: column;
    gap: 16px;
    pointer-events: none;
    background-color: #f5f0e3;
    border-radius: 28px;
    padding: 26px;
    transition: var(--transition);
}

.stage_list-item:first-child .card-active {
    position: relative;
    background: linear-gradient(180deg, #2b2b2b, #2b2b2b);
    overflow: hidden;
}

.stage_list-item:first-child .card-active::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #2c1706 0%, #000 100%);
    opacity: 0;
    transition: opacity 0.2s ease;
    z-index: 0;
}

.stage_list-item:first-child .card-active:hover::before {
    opacity: 1;
}

.stage_list-item:first-child .card-active>* {
    position: relative;
    z-index: 1;
}

.stage_list-item:first-child .stage_card-title {
    color: #f60;
}

.stage_list-item:first-child .stage_card-descript {
    color: #fffcfa;
}

.stage_list-item:first-child .stage_card-top {
    position: relative;
}

.stage_list-item:first-child .stage_card-top::before {
    content: '';
    position: absolute;
    top: -4px;
    left: 0;
    width: 35px;
    height: 35px;
    transition: var(--transition);
    background: url(../image/icons/star-background-dark.png) center center / contain no-repeat;
}

.stage_list-item:first-child .stage_card-count {
    opacity: 0;
}

.stage_list-item:first-child .stage_card-top span path {
    fill: var(--general-white);
}


.stage_card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    transition: var(--transition);
}

.stage_card-top span path {
    transition: var(--transition);
    opacity: 0;
}

.stage_card-count {
    word-spacing: 16px;
}

.stage_card-count,
.stage_card-title {
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 20px;
    line-height: 140%;
    transition: var(--transition);
}



.stage_card-descript {
    font-family: var(--first-family);
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    color: var(--grey-text);
    margin-top: 4px;
    transition: var(--transition);
}

.card-active {
    pointer-events: all;
}

.card-active:hover {
    background-color: #fbf5e7;
}

.card-active .stage_card-top span path {
    opacity: 1;
}

.card-active:hover .stage_card-title {
    color: #f60;
}

.card-active:hover .stage_card-top span path {
    fill: #f60;
}


/**************************************************************/

.platform {
    padding: 100px 0 140px;
    border-bottom: 1px solid #ECDED5;
    box-shadow: 0 1px 0 0 #fff;
    background:
        radial-gradient(50% 80% at 50% 0%, #f5ebd8 0%, rgba(253, 252, 242, 0) 100%),
        radial-gradient(50% 80% at 50% 100%, #f5ebd8 0%, rgba(253, 252, 242, 0) 100%);
}

.platform_inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 72px;
}

.pltaform_top {
    max-width: 764px;
    text-align: center;

}


.platform_list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}


.platform_card {
    display: flex;
    flex-direction: column;
    align-items: start;
    padding: 26px 26px 0;
    background: #f5f0e3;
    border: 1px solid #EBE1C7;
    border-radius: 28px;
    max-width: 486px;
    pointer-events: none;
}

.platform_card-top {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.platform_card-title {
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 26px;
    line-height: 154%;
}

.platform_card-descript {
    font-family: var(--first-family);
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    margin-bottom: 32px;
}

.platform_card-img-list {
    display: flex;
    gap: 10px;
}

.platform_card-img-item {
    border: 1px solid #EBE1C7;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
    height: 192px;
    width: 100%;
    border-bottom: none;
}

.platform_card-img-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}