.cta-final {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cta-final__video-container {
    position: absolute;
    inset: 0;
}

.cta-final__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: ctaVideoZoom 25s ease-in-out infinite alternate;
}

@keyframes ctaVideoZoom {
    0% { transform: scale(1.02); }
    100% { transform: scale(1.1); }
}

.cta-final__overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 70% at 50% 50%, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.85) 100%),
        linear-gradient(180deg, #023755 0%, rgba(0, 0, 0, 0.4) 20%, rgba(0, 0, 0, 0.4) 80%, #01253a 100%);
}

.cta-final__content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 var(--container-padding);
    max-width: 820px;
}

.cta-final__title {
    font-size: var(--text-5xl);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.05;
    margin-bottom: 24px;
}

.cta-final__title--gradient {
    background: var(--accent-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 100%;
    animation: shimmer 8s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.cta-final__subtitle {
    font-size: var(--text-xl);
    color: rgba(255,255,255,0.5);
    font-weight: 400;
    margin-bottom: 48px;
    letter-spacing: -0.01em;
}

@media (max-width: 768px) {
    .cta-final {
        min-height: 65vh;
    }
    .cta-final__title {
        font-size: var(--text-3xl);
    }
}
