.service-hero {
    background: #FCF5FC;
    padding-top: 40px;
    margin-bottom: 0 !important;
}

.service-hero__inner {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    min-height: 664px;
    display: flex;
    align-items: center;
    background: #D0D0D0;
}

.service-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.service-hero__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.service-hero__card {
    position: relative;
    z-index: 2;
    background: #FFFFFF;
    border-radius: 25px;
    padding: 40px;
    width: 610px;
    min-height: 584px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 40px 40px;
}

.service-hero__title {
    font-family: Manrope, sans-serif;
    font-weight: 600;
    font-size: 55px;
    line-height: 64px;
    letter-spacing: -0.01em;
    color: #5C075E;
    margin: 0 0 29px 0;
}

.service-hero__description {
    font-family: Manrope, sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 30px;
    color: #5C075E;
    margin: 0;
    flex: 1;
}

.service-hero__footer {
    display: flex;
    align-items: center;
    gap: 35px;
    margin-top: 29px;
}

.service-hero__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 26px;
    width: 240px;
    height: 53px;
    background: linear-gradient(180deg, #C05FC2 0%, #8D2A8F 100%);
    border-radius: 10px;
    font-family: Manrope, sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 25px;
    color: #FFFFFF;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-hero__button:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(141, 42, 143, 0.35);
}

.service-hero__button--mobile {
    display: none;
}

.service-hero__prices {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.service-hero__price-new {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 14px;
    background: #FCF5FC;
    border-radius: 44px;
    font-family: Manrope, sans-serif;
    font-weight: 700;
    font-size: 30px;
    line-height: 41px;
    color: #5C075E;
}

.service-hero__price-old {
    font-family: Manrope, sans-serif;
    font-weight: 400;
    font-size: 22px;
    line-height: 30px;
    color: #8E468F;
    text-decoration: line-through;
}

@media (max-width: 1024px) {
    .service-hero { padding-top: 20px !important; }

    .service-hero__inner {
        min-height: 399px;
        border-radius: 20px;
    }

    .service-hero__card {
        width: 420px;
        min-height: auto;
        padding: 30px;
        border-radius: 20px;
        margin: 30px;
        gap: 10px;
    }

    .service-hero__title {
        font-size: 34px;
        line-height: 46px;
        letter-spacing: -0.01em;
        margin-bottom: 10px;
    }

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

    .service-hero__button {
        width: auto;
        font-size: 12px;
        line-height: 16px;
        padding: 10px 22px;
        height: 36px;
        border-radius: 8px;
    }

    .service-hero__footer {
        margin-top: 15px;
        flex-wrap: wrap;
    }

    .service-hero__price-new {
        font-size: 20px;
        line-height: 27px;
        padding: 4px 10px;
    }

    .service-hero__price-old {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .service-hero {
        padding: 0;
        background: #FFFFFF;
    }

    .service-hero__inner {
        flex-direction: column;
        min-height: auto;
        border-radius: 0;
        background: #FFFFFF;
    }

    .service-hero__bg {
        position: relative;
        height: 274px;
        flex-shrink: 0;
        order: 2;
        margin: 0 20px;
        border-radius: 20px;
        overflow: hidden;
    }

    .service-hero__bg-img {
        border-radius: 20px;
    }

    .service-hero__card {
        position: relative;
        width: 100%;
        min-height: auto;
        border-radius: 0;
        margin: 0;
        padding: 35px 20px;
        gap: 15px;
        background: #FFFFFF;
        order: 1;
    }

    .service-hero__title {
        font-size: 24px;
        line-height: 27px;
        margin-bottom: 0;
    }

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

    .service-hero__footer {
        flex-direction: column;
        align-items: flex-start;
        margin-top: 0;
        gap: 15px;
    }

    .service-hero__card .service-hero__button {
        display: none;
    }

    .service-hero__button--mobile {
        display: flex;
        order: 3;
        font-size: 12px;
        line-height: 16px;
        padding: 10px 22px;
        height: 36px;
        border-radius: 8px;
        margin: 20px 20px 35px;
        box-sizing: border-box;
        width: calc(100% - 40px);
    }

    .service-hero__price-new {
        font-size: 18px;
        line-height: 25px;
    }

    .service-hero__price-old {
        font-size: 14px;
    }
}

.service-hero--side .service-hero__inner {
    background: none;   
    gap: 25px;
    align-items: stretch;
    overflow: visible;
}

.service-hero--side .service-hero__card {
    width: 652px;
    min-height: 584px;
    margin: 0;
    flex-shrink: 1;
}

@media (max-width: 1200px) {
    .service-hero--side .service-hero__card {
        width: 50%;
        min-height: 460px;
    }

    .service-hero--side .service-hero__photo {
        min-height: 460px;
    }
}

.service-hero--side .service-hero__photo {
    flex: 1;
    min-height: 584px;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    background: #E0E0DF;
}

.service-hero--side .service-hero__photo-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

@media (max-width: 1024px) {
    .service-hero--side .service-hero__inner {
        gap: 22px;
    }

    .service-hero--side .service-hero__card {
        width: 382px;
        min-height: 386px;
        padding: 30px;
        border-radius: 20px;
        gap: 10px;
    }

    .service-hero--side .service-hero__card .service-hero__title {
        font-size: 34px;
        line-height: 40px;
        margin-bottom: 10px;
    }

    .service-hero--side .service-hero__card .service-hero__description {
        font-size: 12px;
        line-height: 18px;
    }

    .service-hero--side .service-hero__card .service-hero__button {
        font-size: 12px;
        line-height: 16px;
        padding: 10px 22px;
        height: 36px;
        border-radius: 8px;
        width: auto;
    }

    .service-hero--side .service-hero__photo {
        min-height: 386px;
        border-radius: 20px;
    }

    .service-hero--side .service-hero__card .service-hero__footer {
        margin-top: auto;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        gap: 10px;
    }

    .service-hero--side .service-hero__prices {
        flex-direction: column;
        gap: 2px;
        margin-left: 20px;
    }

    .service-hero--side .service-hero__card .service-hero__price-new {
        font-size: 20px;
        line-height: 27px;
    }

    .service-hero--side .service-hero__card .service-hero__price-old {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .service-hero--side .service-hero__inner {
        flex-direction: column;
        gap: 20px;
    }

    .service-hero--side .service-hero__card {
        width: 100%;
        min-height: auto;
        order: 2;
    }

    .service-hero--side .service-hero__photo {
        min-height: 274px;
        flex: none;
        width: 100%;
        border-radius: 20px;
        order: 1;
    }
}

@media (max-width: 576px) {
    .service-hero--side .service-hero__inner {
        padding: 0;
        background: #FFFFFF;
    }

    .service-hero--side .service-hero__card {
        padding: 0 0 15px;
        border-radius: 0;
        background: #FFFFFF;
        gap: 15px;
    }

    .service-hero--side .service-hero__card .service-hero__title {
        font-size: 24px;
        line-height: 27px;
        margin-bottom: 0;
    }

    .service-hero--side .service-hero__card .service-hero__description {
        font-size: 12px;
        line-height: 18px;
    }

    .service-hero--side .service-hero__card .service-hero__footer {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 12px;
    }

    .service-hero--side .service-hero__card .service-hero__button {
        width: 100%;
        font-size: 12px;
        line-height: 16px;
        padding: 10px 22px;
        height: 36px;
        border-radius: 8px;
        order: 2;
        display: flex !important;
    }

    .service-hero--side .service-hero__card .service-hero__prices {
        order: 1;
        flex-direction: row;
        gap: 12px;
    }

    .service-hero--side .service-hero__button--mobile {
        display: none !important;
    }

    .service-hero--side .service-hero__card .service-hero__price-new {
        font-size: 18px;
        line-height: 25px;
        padding: 2px 8px;
    }

    .service-hero--side .service-hero__card .service-hero__price-old {
        font-size: 14px;
        line-height: 19px;
    }

    .service-hero--side .service-hero__photo {
        border-radius: 20px;
        min-height: 274px;
        margin-top: 35px;
    }
}