.mgu-home-hero,
.mgu-home-hero * {
    box-sizing: border-box;
}

.mgu-home-hero {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    overflow: hidden;
    background: #fbfaf5;
    padding: 88px 20px 92px;
    isolation: isolate;
}

.mgu-home-hero__inner {
    position: relative;
    z-index: 2;
    max-width: 1250px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    align-items: center;
    gap: 70px;
}

.mgu-home-hero__content {
    max-width: 680px;
}

.mgu-home-hero__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    margin-bottom: 26px;
    border-radius: 999px;
    background: #07404b;
    color: #ffffff;
    font-size: 14px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.mgu-home-hero__title {
    margin: 0 0 24px;
    max-width: 690px;
    color: #073f49;
    font-size: clamp(36px, 4vw, 58px);
    line-height: 1.16;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.mgu-home-hero__text {
    margin: 0;
    max-width: 665px;
    color: #4c565a;
    font-size: 17px;
    line-height: 2.05;
    font-weight: 500;
}

.mgu-home-hero__buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    margin-top: 34px;
}

.mgu-home-hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 30px;
    border-radius: 6px;
    text-decoration: none !important;
    font-size: 15px;
    font-weight: 800;
    line-height: 1;
    transition: all 0.2s ease;
}

.mgu-home-hero__btn--primary {
    background: #07404b;
    border: 2px solid #07404b;
    color: #ffffff !important;
}

.mgu-home-hero__btn--primary:hover {
    background: #0b5967;
    border-color: #0b5967;
    color: #ffffff !important;
    transform: translateY(-2px);
}

.mgu-home-hero__btn--outline {
    background: transparent;
    border: 2px solid #07404b;
    color: #07404b !important;
}

.mgu-home-hero__btn--outline:hover {
    background: #07404b;
    color: #ffffff !important;
    transform: translateY(-2px);
}

.mgu-home-hero__media {
    position: relative;
}

.mgu-home-hero__media img {
    display: block;
    width: 100%;
    aspect-ratio: 1.45 / 1;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 24px 55px rgba(7, 64, 75, 0.15);
}

.mgu-home-hero__shape {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

.mgu-home-hero__shape--top {
    width: 300px;
    height: 300px;
    top: -95px;
    right: -18px;
    background: #eee7d9;
}

.mgu-home-hero__shape--bottom {
    width: 245px;
    height: 245px;
    left: -90px;
    bottom: -95px;
    background: #e8eceb;
}

@media (max-width: 1024px) {
    .mgu-home-hero {
        padding: 70px 20px 76px;
    }

    .mgu-home-hero__inner {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .mgu-home-hero__content {
        max-width: 760px;
    }

    .mgu-home-hero__media {
        max-width: 720px;
    }
}

@media (max-width: 767px) {
    .mgu-home-hero {
        padding: 52px 16px 58px;
    }

    .mgu-home-hero__badge {
        padding: 10px 16px;
        font-size: 13px;
        margin-bottom: 20px;
    }

    .mgu-home-hero__title {
        font-size: 34px;
        line-height: 1.18;
        margin-bottom: 18px;
    }

    .mgu-home-hero__text {
        font-size: 15px;
        line-height: 1.8;
    }

    .mgu-home-hero__buttons {
        gap: 12px;
        margin-top: 28px;
    }

    .mgu-home-hero__btn {
        width: 100%;
        min-height: 52px;
    }

    .mgu-home-hero__media img {
        border-radius: 16px;
        aspect-ratio: 1.25 / 1;
    }

    .mgu-home-hero__shape--top {
        width: 210px;
        height: 210px;
        top: -80px;
        right: -90px;
    }

    .mgu-home-hero__shape--bottom {
        width: 180px;
        height: 180px;
        left: -95px;
        bottom: -80px;
    }
}
