.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(7, 58, 102, 0.85) 0%, rgba(11, 79, 138, 0.55) 55%, rgba(11, 79, 138, 0.25) 100%);
    z-index: 2;
}

.hero__content {
    position: relative;
    z-index: 3;
    max-width: 720px;
}

.hero__tag {
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 18px;
    border-radius: 30px;
    backdrop-filter: blur(4px);
}

.hero__title {
    color: var(--color-white);
    font-size: clamp(34px, 5vw, 58px);
    font-weight: 700;
    margin: 22px 0 18px;
}

.hero__subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 17px;
    margin-bottom: 36px;
}

.hero__buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.hero__scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    width: 26px;
    height: 44px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 20px;
}

.hero__scroll-indicator span {
    display: block;
    width: 5px;
    height: 5px;
    background: var(--color-white);
    border-radius: 50%;
    margin: 8px auto 0;
    animation: scrollDot 1.8s infinite;
}

@keyframes scrollDot {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    70% {
        transform: translateY(16px);
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 85vh;
        text-align: left;
    }
    .hero__buttons {
        flex-direction: column;
    }
    .btn {
        justify-content: center;
    }
}