.hero_serviceLanding {
    position: relative;
    overflow: hidden;
    padding: 0;
    background: #f7f9fc;
    color: var(--fontColor);
}

.hero_serviceLanding::before {
    content: "";
    display: none;
}

.hero_serviceLanding::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 6px;
    background: var(--main-color, var(--primaryColor));
    z-index: 3;
}

.hero_serviceLanding-wrap {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 0;
}

.hero_serviceLanding-content {
    padding: 58px 0 46px;
    position: relative;
    z-index: 2;
}

.hero_serviceLanding-eyebrow {
    margin-bottom: 12px;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 2.2rem;
    text-transform: uppercase;
}

.hero_serviceLanding-title {
    max-width: 680px;
}

.hero_serviceLanding-highlight {
    margin-bottom: 18px;
    color: var(--secondaryColor);
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.35;
}

.hero_serviceLanding-description {
    max-width: 520px;
}

.hero_serviceLanding-description p {
    margin-top: 0;
}

.hero_serviceLanding-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 26px;
}

.hero_serviceLanding-actions .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
}

.hero_serviceLanding-trust {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 34px;
}

.hero_serviceLanding-trustItem {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.hero_serviceLanding-trustIcon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
}

.hero_serviceLanding-trustIcon img {
    display: block;
    max-width: 38px;
    max-height: 38px;
    object-fit: contain;
}

.hero_serviceLanding-trustIcon.is-placeholder {
    border: 2px solid var(--main-color, var(--primaryColor));
    border-radius: 50%;
}

.hero_serviceLanding-trustIcon.is-placeholder::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--main-color, var(--primaryColor));
}

.hero_serviceLanding-trustText {
    display: flex;
    flex-direction: column;
    color: var(--fontColor);
    font-size: 1.3rem;
    line-height: 1.25;
}

.hero_serviceLanding-trustText strong {
    font-weight: 700;
}

.hero_serviceLanding-media {
    position: relative;
    min-height: 280px;
}

.hero_serviceLanding-media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    object-position: center;
}

@media (min-width: 576px) {
    .hero_serviceLanding-trust {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 768px) {
    .hero_serviceLanding {
        min-height: 560px;
    }

    .hero_serviceLanding::before {
        display: block;
        position: absolute;
        inset: 0;
        z-index: 1;
        background: linear-gradient(
            90deg,
            rgba(247, 249, 252, 0.98) 0%,
            rgba(247, 249, 252, 0.96) 34%,
            rgba(247, 249, 252, 0.78) 48%,
            rgba(247, 249, 252, 0.18) 66%,
            rgba(247, 249, 252, 0) 100%
        );
        pointer-events: none;
    }

    .hero_serviceLanding.is-no-media::before {
        display: none;
    }

    .hero_serviceLanding-wrap {
        display: block;
        min-height: 560px;
    }

    .hero_serviceLanding.is-no-media .hero_serviceLanding-wrap {
        max-width: 760px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero_serviceLanding-content {
        width: 48%;
        max-width: 680px;
        padding: 82px 36px 72px 0;
    }

    .hero_serviceLanding-media {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 6px;
        left: 0;
        z-index: 0;
        width: 100%;
        min-height: 0;
    }

    .hero_serviceLanding-media img {
        width: 100%;
        height: 100%;
        min-height: 0;
        object-fit: cover;
        object-position: center right;
    }
}

@media (min-width: 1200px) {
    .hero_serviceLanding-description {
        font-size: 1.6rem;
    }
}

@media (max-width: 767px) {
    .hero_serviceLanding-actions .btn {
        width: 100%;
    }
}
