.home-hero {
    padding: 0 3rem 3rem 3rem;
}

.home-hero__media-shell {
    position: relative;
    width: 100%;
    min-height: clamp(420px, 62vw, 640px);
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-dark-blue);
}

.home-hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.52);
}

.home-hero__content {
    position: relative;
    z-index: 2;
    width: min(780px, 92%);
    text-align: center;
    color: var(--color-white);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.home-hero__pre-title {
    margin: 0 0 12px;
    font-size: clamp(0.95rem, 1.8vw, 1.35rem);
    font-weight: 600;
    line-height: 1.3;
}

.home-hero__title {
    margin: 0 0 12px;
    font-size: clamp(2rem, 5.2vw, 4rem);
    font-weight: 600;
    line-height: 1.05;
    color: var(--color-white);
}

.home-hero__text {
    margin: 0 0 26px;
    font-size: clamp(1rem, 1.9vw, 1.3rem);
    line-height: 1.45;
    max-width: 720px;
}

.home-hero__text p {
    margin: 1rem 0;
}

.button-cta.home-hero__cta {
    min-height: 52px;
    padding: 0.85rem 2rem;
    font-size: 0.95rem;
}

@media (max-width: 767px) {
    .home-hero {
        padding: 10px;
    }

    .home-hero__media-shell {
        min-height: 500px;
        border-radius: 14px;
    }

    .home-hero__content {
        width: min(92%, 520px);
    }

    .home-hero__pre-title {
        margin-bottom: 10px;
    }

    .home-hero__title {
        margin-bottom: 10px;
        line-height: 1.12;
    }

    .home-hero__text {
        margin-bottom: 20px;
        font-size: 1rem;
        line-height: 1.5;
    }

    .button-cta.home-hero__cta {
        min-height: 48px;
        padding: 0.75rem 1.6rem;
    }
}
