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

:root {
    --primary-blue: #3b82f6;
    --primary-green: #10b981;
    --primary-red: #dc2626;
    --primary-yellow: #fbbf24;
    --dark-bg: #0f172a;
    --dark-bg-light: #1e293b;
    --text-dark: #334155;
    --text-light: #ffffff;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background: var(--text-light);
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Header Styles */
header {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-bg-light) 100%);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo {
    color: var(--text-light);
    font-size: 24px;
    font-weight: 900;
    text-decoration: none;
}

.header-cta {
    background: linear-gradient(135deg, var(--primary-green), #059669);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.header-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.4);
}

/* Hero Section */
.hero {
    margin-top: 80px;
    padding: 80px 20px;
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-bg-light) 100%);
    color: var(--text-light);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 60px;
    align-items: center;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.hero-content {
    text-align: left;
}

.hero h1 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-badge {
    display: inline-block;
    background: var(--primary-red);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-topics {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--primary-yellow);
    font-weight: 700;
}

.hero-cta {
    background: linear-gradient(135deg, var(--primary-red), #991b1b);
    color: white;
    padding: 20px 50px;
    border: none;
    border-radius: 30px;
    font-size: 20px;
    font-weight: 900;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: pulse 2s infinite;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 15px 35px rgba(220, 38, 38, 0.4);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-cta:hover {
    background: linear-gradient(135deg, #991b1b, #7f1d1d);
    transform: scale(1.08);
}

/* Bonus Section */
.bonus-section {
    padding: 40px 20px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

.bonus-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.bonus-badge {
    display: inline-block;
    background: rgba(220, 38, 38, 0.9);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.bonus-title {
    font-size: 32px;
    font-weight: 900;
    color: #7c2d12;
    margin-bottom: 15px;
}

.bonus-description {
    font-size: 18px;
    color: #92400e;
    font-weight: 600;
}

/* Video Section */
.video-section {
    padding: 80px 20px;
    background: #f8fafc;
}

.section-title {
    font-size: 36px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 50px;
    color: var(--dark-bg);
}

.section-subtitle {
    font-size: 18px;
    text-align: center;
    margin-top: -30px;
    margin-bottom: 40px;
    color: var(--text-dark);
    opacity: 0.8;
}

.video-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 50px;
    align-items: start;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-bg-light) 100%);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.video-wrapper {
    width: 100%;
    max-width: 380px; /* Optimized for portrait video */
    position: relative;
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.play-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.play-button {
    width: 80px;
    height: 80px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.5);
}

.play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(220, 38, 38, 0.7);
}

.play-icon {
    width: 0;
    height: 0;
    border-left: 25px solid white;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    margin-left: 5px;
}

.video-content {
    text-align: left;
    color: rgba(255,255,255,0.95);
    padding: 20px;
}

.video-content-title {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--text-light);
}

.video-description {
    color: rgba(255,255,255,0.9);
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.video-benefits {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.video-benefits li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: rgba(255,255,255,0.85);
    font-size: 16px;
}

.video-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-yellow);
    font-weight: bold;
}

/* Features Section */
.features-section {
    padding: 80px 20px;
    background: #f8fafc;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-blue);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}


.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-green), #059669);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
}


.feature-title {
    font-size: 24px;
    font-weight: 900;
    color: var(--primary-red);
    margin-bottom: 15px;
}

.feature-description {
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-dark);
}


/* Benefits Section */
.benefits-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-bg-light) 100%);
    color: white;
}

.benefits-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-item {
    text-align: center;
    padding: 30px;
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.1);
}

.benefit-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--primary-yellow);
    margin-bottom: 15px;
}

.benefit-text {
    font-size: 18px;
    line-height: 1.5;
}

/* FAQ Section */
.faq-section {
    padding: 80px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-container {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 20px;
}

.faq-question {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-bg);
    cursor: pointer;
    padding: 15px;
    background: #f3f4f6;
    border-radius: 10px;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background: #e5e7eb;
}

.faq-toggle {
    font-size: 24px;
    color: var(--primary-blue);
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 15px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

/* Footer Section */
footer {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-bg-light) 100%);
    padding: 60px 20px;
    text-align: center;
    color: white;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.footer-title {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 20px;
}

.footer-description {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.footer-cta {
    background: linear-gradient(135deg, var(--primary-green), #059669);
    color: white;
    padding: 20px 60px;
    border: none;
    border-radius: 30px;
    font-size: 20px;
    font-weight: 900;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
    animation: cta-glow 2s infinite;
}

@keyframes cta-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(16, 185, 129, 0.5); }
    50% { box-shadow: 0 0 40px rgba(16, 185, 129, 0.8); }
}

.footer-cta:hover {
    transform: scale(1.05);
    background: linear-gradient(135deg, #059669, #047857);
}

.footer-legal {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-image {
        max-width: 300px;
        margin: 0 auto;
    }

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

    .hero h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-topics {
        font-size: 16px;
    }

    .section-title {
        font-size: 28px;
    }

    .video-layout {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 20px;
    }

    .video-wrapper {
        max-width: 100%;
        margin: 0 auto;
    }

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

    .video-content-title {
        font-size: 24px;
    }

    nav {
        flex-direction: column;
        gap: 15px;
    }

    .header-cta {
        padding: 10px 20px;
        font-size: 14px;
    }

    .hero-badge {
        font-size: 12px;
        padding: 6px 15px;
    }

    .bonus-title {
        font-size: 24px;
    }

    .bonus-description {
        font-size: 16px;
    }
}