/* Hero section */
.hero-section {
    position: relative;
    overflow: hidden;
    min-height: calc(80vh - 74px);
    padding: 80px 0;
    color: #fff;
    background: radial-gradient(
            circle at top left,
            #cde6fe 10%,
            transparent 25%
        ),
        linear-gradient(90deg, #f4f8fe 0%, #f4f8fe 100%);
}

.hero-title {
    font-size: 60px;
    line-height: 1.02;
    letter-spacing: -0.01em;
}

.video-card {
    width: 100%;
    max-width: 500px;
    position: relative;
}

.video-thumbnail {
    position: relative;
    cursor: pointer;
}

.video-thumbnail img {
    width: 100%;
    border-radius: 12px;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    cursor: pointer;
}

.video-player {
    border-radius: 12px;
}

/* Media Queries */
@media (max-width: 991.98px) {
    .hero-section {
        padding: 0px 0;
        padding-top: 40px;
        height: fit-content !important;
        background: radial-gradient(
                circle at top left,
                #cde6fe 10%,
                transparent 25%
            ),
            linear-gradient(90deg, #ffffff, #ffffff);
    }
    .hero-section .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
    .hero-section .container .row {
        display: flex;
        flex-direction: column-reverse !important;
    }
    .video-card {
        margin-bottom: 40px;
    }
    .hero-title {
        font-size: 40px;
        line-height: 1.02;
        letter-spacing: -0.01em;
    }
    .hero-card {
        margin-top: 30px;
    }
    .hero-ctas {
        margin-top: 30px !important;
    }
    .hero-ctas .btn {
        width: 100%;
    }

    .support-link {
        display: flex;
        justify-content: center;
    }
}
