/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    background: #000000;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.top-nav {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(125, 211, 252, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #7dd3fc 0%, #38bdf8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Thank You Banner */
.thank-you-banner {
    background: linear-gradient(90deg, #fbbf24 0%, #f59e0b 100%);
    color: #000;
    text-align: center;
    padding: 12px 24px;
    font-weight: 600;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    text-align: center;
}

.badge {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(125, 211, 252, 0.15);
    border: 1px solid rgba(125, 211, 252, 0.4);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 32px;
    text-transform: uppercase;
    color: #7dd3fc;
}

.badge-light {
    background: rgba(125, 211, 252, 0.1);
    border-color: rgba(125, 211, 252, 0.3);
    color: #bae6fd;
}

.badge-testimonial {
    background: rgba(125, 211, 252, 0.15);
    border-color: rgba(125, 211, 252, 0.5);
    color: #7dd3fc;
}

.main-headline {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.highlight {
    background: linear-gradient(135deg, #7dd3fc 0%, #38bdf8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subheadline {
    font-size: 22px;
    line-height: 1.6;
    color: #bae6fd;
    max-width: 800px;
    margin: 0 auto 48px;
}

/* Video Wrapper */
.video-wrapper {
    max-width: 900px;
    margin: 0 auto 48px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(125, 211, 252, 0.25);
    border: 2px solid rgba(125, 211, 252, 0.3);
}

.video-placeholder {
    aspect-ratio: 16/9;
    background: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-content {
    text-align: center;
}

.play-icon {
    margin-bottom: 16px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.play-icon:hover {
    opacity: 1;
}

.placeholder-text {
    color: #7dd3fc;
    font-size: 14px;
}

/* Scroll Indicator */
.scroll-indicator,
.scroll-indicator-small {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: -8px;
    cursor: pointer;
    margin-top: 48px;
}

.scroll-indicator-small {
    margin: 64px auto;
    width: fit-content;
}

.chevron {
    opacity: 0.6;
    animation: bounce 2s infinite;
}

.chevron:nth-child(2) {
    animation-delay: 0.2s;
}

.chevron:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(8px);
    }
}

/* Section Styles */
.calendar-section,
.qualification-section,
.testimonials-section {
    padding: 100px 0;
    text-align: center;
}

.section-headline {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-subheadline {
    font-size: 20px;
    color: #bae6fd;
    max-width: 700px;
    margin: 0 auto 48px;
    line-height: 1.7;
}

/* Qualification Section */
.qualification-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 64px;
    text-align: left;
}

.qual-side {
    background: rgba(10, 10, 10, 0.8);
    border-radius: 20px;
    padding: 40px;
    border: 2px solid rgba(125, 211, 252, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.qual-side:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 50px -12px rgba(125, 211, 252, 0.4);
}

.qual-perfect-fit {
    border-color: rgba(16, 185, 129, 0.5);
    background: linear-gradient(135deg, rgba(5, 46, 22, 0.2) 0%, rgba(10, 10, 10, 0.8) 100%);
}

.qual-not-fit {
    border-color: rgba(239, 68, 68, 0.5);
    background: linear-gradient(135deg, rgba(69, 10, 10, 0.2) 0%, rgba(10, 10, 10, 0.8) 100%);
}

.qual-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.qual-title {
    font-size: 24px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 32px;
    color: #fff;
}

.qual-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.qual-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.item-marker {
    font-size: 24px;
    font-weight: 700;
    min-width: 24px;
    flex-shrink: 0;
    margin-top: -2px;
}

.qual-perfect-fit .item-marker {
    color: #10b981;
}

.qual-not-fit .item-marker {
    color: #ef4444;
}

.qual-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #bae6fd;
    margin: 0;
}

/* Testimonials Section */
.testimonials-section {
    background: rgba(0, 0, 0, 0.5);
}

.testimonial-single {
    max-width: 900px;
    margin: 48px auto 0;
}

.testimonial-video-large {
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid rgba(125, 211, 252, 0.4);
    box-shadow: 0 25px 50px -12px rgba(125, 211, 252, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-video-large:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 60px -15px rgba(125, 211, 252, 0.5);
}

.video-placeholder-testimonial {
    aspect-ratio: 16/9;
    background: #0a0a0a;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px;
}

.video-placeholder-testimonial .play-icon {
    margin-bottom: 20px;
}

.video-placeholder-testimonial .placeholder-text {
    color: #7dd3fc;
    font-size: 16px;
}

/* CTA Buttons */
.cta-button,
.cta-button-large {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(135deg, #38bdf8 0%, #0ea5e9 100%);
    color: #000;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-button:hover,
.cta-button-large:hover {
    background: linear-gradient(135deg, #7dd3fc 0%, #38bdf8 100%);
    box-shadow: 0 10px 25px -5px rgba(125, 211, 252, 0.5);
    transform: translateY(-2px);
}

.cta-button-large {
    padding: 18px 48px;
    font-size: 16px;
}

.cta-center {
    margin-top: 48px;
}

/* Calendly Container */
.calendly-container {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(125, 211, 252, 0.2);
    border: 1px solid rgba(125, 211, 252, 0.2);
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.9);
    padding: 32px 0;
    text-align: center;
    border-top: 1px solid rgba(125, 211, 252, 0.3);
}

.footer p {
    color: #7dd3fc;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .main-headline {
        font-size: 36px;
    }

    .section-headline {
        font-size: 32px;
    }

    .subheadline,
    .section-subheadline {
        font-size: 18px;
    }

    .qualification-split {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .qual-side {
        padding: 28px;
    }

    .qual-title {
        font-size: 20px;
    }

    .qual-item p {
        font-size: 15px;
    }

    .nav-container {
        flex-direction: column;
        gap: 16px;
    }

    .cta-button-large {
        padding: 16px 36px;
        font-size: 14px;
    }
}
