/* ==========================================================================
   Landing Page (Front Page) - Additional Styles
   ========================================================================== */

/* Vimeo Video Responsive Container */
.bss-landing-page .video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(200, 75, 108, 0.15);
}

.bss-landing-page .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Webinar section video wrapper */
.bss-landing-page .webinar-video-wrapper .video-container {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Pricing section highlight for landing */
.bss-landing-page .pricing-card {
    position: relative;
    overflow: hidden;
}

.bss-landing-page .pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-pink), var(--accent-pink));
}

/* Landing page specific CTA pulse animation */
.bss-landing-page .hero-cta {
    animation: slideInLeft 1s ease-out 0.4s backwards;
}

.bss-landing-page .final-cta-button {
    position: relative;
}

/* Kompass section on landing - subtle differentiation */
.bss-landing-page .course-outcomes[style*="background: var(--white)"] .outcome-check {
    background: var(--primary-pink);
    color: var(--white);
    font-weight: 700;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.9rem;
}
