.home-hero {
    position: relative;
    min-height: 657px;
    display: flex;
    align-items: center;
    background-color: #013475;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.home-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(1, 21, 43, 0.72) 0%, rgba(1, 21, 43, 0.35) 45%, rgba(1, 21, 43, 0.05) 75%);
}

.home-hero__media {
    position: absolute;
    right: 0;
    bottom: 0;
    top: 0;
    width: 46%;
    max-width: 660px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    pointer-events: none;
}

.home-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom;
}

.home-hero__content {
    position: relative;
    z-index: 1;
    max-width: 790px;
    padding: 64px 0;
}

.home-hero__badge {
    display: inline-block;
    background: #fff;
    color: #013475;
    font-size: 26px;
    font-weight: 600;
    line-height: 1;
    padding: 12px 24px;
    border-radius: 15px;
    margin-bottom: 32px;
}

.home-hero__heading {
    color: #fff;
    font-size: 44px;
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 24px;
}

.home-hero__desc {
    color: #fff;
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 40px;
    max-width: 747px;
}

.home-hero__desc p {
    margin: 0 0 12px;
}

.home-hero__desc p:last-child {
    margin-bottom: 0;
}

.home-hero__button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #ff8800;
    color: #fff;
    height: 60px;
    padding: 0 24px;
    border-radius: 20px;
    transition: background-color 0.2s ease;
}

.home-hero__button:hover {
    background: #e67700;
}

.home-hero__button svg {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

.home-hero__button-text {
    font-size: 20px;
    font-weight: 600;
    white-space: nowrap;
}

/* Tablet */
@media (max-width: 1024px) {
    .home-hero {
        min-height: 560px;
    }

    .home-hero__media {
        width: 42%;
        opacity: 0.9;
    }

    .home-hero__content {
        max-width: 520px;
        padding: 48px 0;
    }

    .home-hero__heading {
        font-size: 36px;
    }

    .home-hero__desc {
        font-size: 18px;
        max-width: 100%;
    }

    .home-hero__badge {
        font-size: 20px;
        padding: 10px 20px;
    }
}

/* Mobile */
@media (max-width: 640px) {
    .home-hero {
        min-height: 0;
        padding: 0 16px;
        padding-top: 24px;
    }

    .home-hero__overlay {
        background: linear-gradient(180deg, rgba(1, 21, 43, 0.75) 0%, rgba(1, 21, 43, 0.55) 60%, rgba(1, 21, 43, 0.75) 100%);
    }

    .home-hero__media {
        position: relative;
        width: 70%;
        max-width: 280px;
        height: 220px;
        margin: 0 auto;
        top: unset;
        right: unset;
        bottom: unset;
    }

    .home-hero__content {
        max-width: 100%;
        padding: 24px 0 40px;
        text-align: center;
    }

    .home-hero__heading {
        font-size: 28px;
    }

    .home-hero__desc {
        font-size: 16px;
        margin-bottom: 28px;
    }

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

    .home-hero__button {
        width: 100%;
        justify-content: center;
        height: 52px;
    }

    .home-hero__button-text {
        font-size: 16px;
    }
}
