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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Utility Classes */
.highlight {
    background: linear-gradient(135deg, #10b981, #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.btn-primary.large {
    padding: 20px 40px;
    font-size: 18px;
}

.btn-primary.pulse {
    animation: pulse 2s infinite;
}

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

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1f2937;
}

.section-header p {
    font-size: 1.2rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #10b981;
}

.logo i {
    font-size: 2rem;
}

.nav {
    display: flex;
    gap: 32px;
}

.nav a {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #10b981;
}

.btn-header {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%2310b981" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    color: #92400e;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-5px); }
    60% { transform: translateY(-3px); }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #1f2937;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #10b981;
    font-weight: 500;
}

.feature i {
    font-size: 1.2rem;
}

.hero-cta {
    margin-bottom: 40px;
}

.price-info {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 16px;
}

.old-price {
    text-decoration: line-through;
    color: #9ca3af;
    font-size: 1.1rem;
}

.new-price {
    color: #10b981;
    font-size: 1.5rem;
    font-weight: 700;
}

.social-proof {
    display: flex;
    gap: 32px;
}

.proof-item {
    text-align: center;
}

.proof-item strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #10b981;
}

.proof-item span {
    font-size: 0.9rem;
    color: #6b7280;
}

.hero-image {
    position: relative;
}

.image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.floating-card {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: white;
    padding: 16px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.floating-card i {
    color: #10b981;
    font-size: 1.5rem;
}

.floating-card strong {
    display: block;
    font-weight: 600;
    color: #1f2937;
}

.floating-card span {
    font-size: 0.9rem;
    color: #6b7280;
}

/* Urgency Timer */
.urgency-timer {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    padding: 20px 0;
    text-align: center;
}

.timer-content h3 {
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.time-unit {
    text-align: center;
}

.time-unit span {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 8px;
    min-width: 60px;
}

.time-unit label {
    font-size: 0.9rem;
    margin-top: 4px;
    opacity: 0.9;
}

/* Benefits Section */
.benefits {
    padding: 100px 0;
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.benefit-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f3f4f6;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.benefit-icon i {
    color: white;
    font-size: 1.5rem;
}

.benefit-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1f2937;
}

.benefit-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Course Content */
.course-content {
    padding: 100px 0;
    background: #f9fafb;
}

.modules {
    display: grid;
    gap: 32px;
    margin-bottom: 60px;
}

.module {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.module-header {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.module-number {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.module-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

.module-content {
    padding: 32px;
}

.module-topics {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 12px;
}

.module-topics li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
}

.module-topics i {
    color: #10b981;
    font-size: 1.1rem;
}

.course-bonus {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
}

.course-bonus h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: #92400e;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.bonus-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 16px;
    border-radius: 12px;
    font-weight: 500;
    color: #92400e;
}

.bonus-item i {
    font-size: 1.2rem;
}

/* Instructor Section */
.instructor {
    padding: 100px 0;
    background: white;
}

.instructor-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

.instructor-image {
    position: relative;
}

.instructor-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.instructor-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.instructor-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1f2937;
}

.instructor-title {
    color: #10b981;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.instructor-description {
    margin-bottom: 32px;
}

.instructor-description p {
    margin-bottom: 16px;
    color: #6b7280;
    line-height: 1.6;
}

.instructor-achievements {
    display: flex;
    gap: 32px;
}

.achievement {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #10b981;
    font-weight: 500;
}

.achievement i {
    font-size: 1.2rem;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: #f9fafb;
}

.pricing-card {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    border: 2px solid #10b981;
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    padding: 8px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
}

.pricing-header {
    text-align: center;
    margin-bottom: 32px;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1f2937;
}

.price-comparison {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 8px;
}

.price-comparison .old-price {
    text-decoration: line-through;
    color: #9ca3af;
    font-size: 1.2rem;
}

.price-comparison .new-price {
    color: #10b981;
    font-size: 2.5rem;
    font-weight: 700;
}

.discount {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    color: #92400e;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-features {
    margin-bottom: 32px;
}

.pricing-features .feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f3f4f6;
}

.pricing-features .feature:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: #10b981;
    font-size: 1.1rem;
}

.payment-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 32px;
}

.payment-option {
    background: #f9fafb;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
}

.payment-option.highlight {
    background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
    border: 2px solid #10b981;
}

.payment-option h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #1f2937;
}

.payment-option p {
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.payment-option small {
    color: #6b7280;
    font-size: 0.9rem;
}

.guarantee {
    text-align: center;
    margin-top: 24px;
    color: #6b7280;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.guarantee i {
    color: #10b981;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: white;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

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

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #10b981;
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 24px;
}

.faq-answer p {
    color: #6b7280;
    line-height: 1.6;
}

/* Final CTA */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #1f2937, #111827);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #10b981;
    font-weight: 500;
}

.cta-feature i {
    font-size: 1.2rem;
}

.cta-security {
    margin-top: 24px;
    color: #9ca3af;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.cta-security i {
    color: #10b981;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-info .logo {
    color: #10b981;
    margin-bottom: 16px;
}

.footer-info p {
    margin-bottom: 8px;
    opacity: 0.8;
}

.footer-contact h4 {
    font-size: 1.2rem;
    margin-bottom: 16px;
    color: #10b981;
}

.footer-contact p {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.8;
}

.footer-contact i {
    color: #10b981;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #374151;
    opacity: 0.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .header-content {
        flex-direction: column;
        gap: 16px;
    }
    
    .nav {
        gap: 16px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-features {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .social-proof {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .instructor-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .instructor-achievements {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .payment-options {
        grid-template-columns: 1fr;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .countdown {
        gap: 16px;
    }
    
    .time-unit span {
        font-size: 1.5rem;
        padding: 6px 12px;
        min-width: 50px;
    }
}


/* Additional Conversion Elements */
.success-message, .error-message {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    max-width: 400px;
    padding: 16px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    animation: slideIn 0.3s ease;
}

.success-message {
    background: #10b981;
    color: white;
}

.error-message {
    background: #dc2626;
    color: white;
}

.success-content, .error-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Enhanced Mobile Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #374151;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Loading States */
.btn-primary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-primary .fa-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #374151;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.form-input.error {
    border-color: #dc2626;
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 16px 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
}

.sticky-cta.show {
    display: block;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.sticky-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.sticky-cta-text {
    flex: 1;
}

.sticky-cta-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: #1f2937;
}

.sticky-cta-text p {
    color: #6b7280;
    font-size: 0.9rem;
}

.sticky-cta .btn-primary {
    padding: 12px 24px;
    font-size: 14px;
}

/* Enhanced Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .countdown {
        gap: 12px;
    }
    
    .time-unit span {
        font-size: 1.3rem;
        padding: 6px 10px;
        min-width: 45px;
    }
    
    .module-topics {
        grid-template-columns: 1fr;
    }
    
    .bonus-grid {
        grid-template-columns: 1fr;
    }
    
    .sticky-cta-content {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 12px;
    }
    
    .countdown {
        gap: 8px;
    }
    
    .time-unit span {
        font-size: 1.1rem;
        padding: 4px 8px;
        min-width: 40px;
    }
    
    .benefit-card {
        padding: 24px;
    }
    
    .module-header {
        padding: 20px 24px;
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .module-content {
        padding: 24px;
    }
    
    .instructor-achievements {
        flex-direction: column;
        gap: 16px;
    }
    
    .payment-options {
        gap: 12px;
    }
    
    .payment-option {
        padding: 16px;
    }
}

/* Print Styles */
@media print {
    .header, .urgency-timer, .final-cta, .footer, .sticky-cta, .back-to-top {
        display: none !important;
    }
    
    .hero {
        padding: 20px 0;
    }
    
    .section {
        padding: 20px 0;
    }
    
    .btn-primary {
        display: none;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .btn-primary {
        border: 2px solid #000;
    }
    
    .benefit-card {
        border: 2px solid #000;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    :root {
        --bg-color: #1f2937;
        --text-color: #f9fafb;
        --card-bg: #374151;
    }
    
    body {
        background-color: var(--bg-color);
        color: var(--text-color);
    }
    
    .benefit-card, .module, .pricing-card {
        background-color: var(--card-bg);
        color: var(--text-color);
    }
    
    .header {
        background: rgba(31, 41, 55, 0.95);
    }
}


/* Videos Section */
.videos-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.video-player-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.main-video-player {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.main-video-player:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.video-frame {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
}

.video-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-info {
    padding: 25px;
}

.video-info h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
    line-height: 1.3;
}

.video-info p {
    color: #6b7280;
    line-height: 1.6;
    font-size: 1rem;
}

.playlist-sidebar {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: fit-content;
}

.playlist-header {
    margin-bottom: 20px;
}

.playlist-header h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1f2937;
    text-align: center;
}

.playlist-tabs {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.playlist-tab {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: #f8fafc;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    font-weight: 500;
    color: #374151;
}

.playlist-tab:hover {
    background: #f0f9ff;
    border-color: #10b981;
    transform: translateX(5px);
}

.playlist-tab.active {
    background: linear-gradient(135deg, #10b981, #059669);
    border-color: #10b981;
    color: white;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.playlist-tab i {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.playlist-description {
    padding: 15px;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 4px solid #10b981;
}

.playlist-description p {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.video-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.video-benefit {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-benefit:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.video-benefit i {
    font-size: 2.5rem;
    color: #10b981;
    margin-bottom: 15px;
    display: block;
}

.video-benefit h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
}

.video-benefit p {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Responsive Design for Videos Section */
@media (max-width: 1024px) {
    .video-player-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .playlist-sidebar {
        order: -1;
    }
    
    .playlist-tabs {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .playlist-tab {
        flex: 1;
        min-width: 150px;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .videos-section {
        padding: 60px 0;
    }
    
    .video-player-container {
        gap: 20px;
    }
    
    .main-video-player,
    .playlist-sidebar {
        padding: 20px;
    }
    
    .video-info h3 {
        font-size: 1.2rem;
    }
    
    .playlist-tabs {
        flex-direction: column;
    }
    
    .playlist-tab {
        padding: 12px;
        font-size: 0.9rem;
    }
    
    .video-benefits {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .video-benefit {
        padding: 25px 15px;
    }
    
    .video-benefit i {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .video-info {
        padding: 20px;
    }
    
    .video-info h3 {
        font-size: 1.1rem;
    }
    
    .video-info p {
        font-size: 0.95rem;
    }
    
    .playlist-sidebar {
        padding: 15px;
    }
    
    .playlist-header h4 {
        font-size: 1.1rem;
    }
    
    .playlist-tab {
        padding: 10px;
        font-size: 0.85rem;
    }
    
    .playlist-tab span {
        display: none;
    }
    
    .video-benefit {
        padding: 20px 10px;
    }
}

/* Loading Animation for Video */
.video-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 300px;
    background: #f8fafc;
    border-radius: 8px;
}

.video-loading::after {
    content: '';
    width: 40px;
    height: 40px;
    border: 4px solid #e5e7eb;
    border-top: 4px solid #10b981;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Accessibility Improvements */
.playlist-tab:focus {
    outline: 2px solid #10b981;
    outline-offset: 2px;
}

.video-frame:focus-within {
    outline: 2px solid #10b981;
    outline-offset: 2px;
}

/* Dark Mode Support for Videos */
@media (prefers-color-scheme: dark) {
    .videos-section {
        background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    }
    
    .main-video-player,
    .playlist-sidebar,
    .video-benefit {
        background: var(--card-bg);
        color: var(--text-color);
    }
    
    .video-info h3,
    .playlist-header h4,
    .video-benefit h4 {
        color: var(--text-color);
    }
    
    .playlist-tab {
        background: #374151;
        border-color: #4b5563;
        color: var(--text-color);
    }
    
    .playlist-tab:hover {
        background: #4b5563;
    }
    
    .playlist-description {
        background: #374151;
    }
}


/* Sales Video Section */
.sales-video {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.video-player {
    margin: 40px 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.video-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: #000;
}

.video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    opacity: 1;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.video-wrapper:hover .video-overlay {
    opacity: 0;
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
    background: white;
}

.video-benefits {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.video-benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-color);
    font-weight: 500;
}

.video-benefit i {
    color: var(--primary-color);
    font-size: 18px;
}

.video-cta {
    margin-top: 40px;
}

.video-cta .btn-primary {
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
    .sales-video {
        padding: 60px 0;
    }
    
    .video-benefits {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }
}


/* Social Proof Section */
.social-proof {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.social-proof .section-header h2,
.social-proof .section-header p {
    color: white;
}

.testimonial-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin: 60px 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-video .video-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.testimonial-video video {
    width: 100%;
    height: auto;
    display: block;
}

.testimonial-content {
    padding: 20px;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(255, 255, 255, 0.3);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
}

.testimonial-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

.rating {
    display: flex;
    align-items: center;
    gap: 5px;
}

.rating i {
    color: #ffd700;
    font-size: 16px;
}

.rating span {
    margin-left: 10px;
    font-weight: 600;
}

blockquote {
    font-size: 18px;
    line-height: 1.6;
    font-style: italic;
    margin: 30px 0;
    padding: 0;
    border: none;
}

.testimonial-results {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.result-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.result-item i {
    color: #ffd700;
    font-size: 18px;
}

.social-proof-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin: 60px 0;
    text-align: center;
}

.stat-item {
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: #ffd700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.social-proof-cta {
    text-align: center;
    margin-top: 60px;
}

.social-proof-cta h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: white;
}

.social-proof-cta .btn-primary {
    background: #ffd700;
    color: #333;
    font-weight: 700;
    padding: 18px 40px;
    font-size: 18px;
}

.social-proof-cta .btn-primary:hover {
    background: #ffed4e;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .social-proof {
        padding: 60px 0;
    }
    
    .testimonial-featured {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .social-proof-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .testimonial-results {
        flex-direction: column;
        gap: 15px;
    }
    
    .testimonial-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .stat-number {
        font-size: 28px;
    }
}


/* Lead Qualification Form Section */
.lead-form {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.lead-form .section-header h2,
.lead-form .section-header p {
    color: white;
}

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

.form-benefits h3 {
    font-size: 24px;
    margin-bottom: 30px;
    color: #ffd700;
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.benefit-item i {
    color: #ffd700;
    font-size: 20px;
    min-width: 20px;
}

.benefit-item span {
    font-size: 16px;
    font-weight: 500;
}

.qualification-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h3 {
    color: #333;
    font-size: 24px;
    margin-bottom: 10px;
}

.form-header p {
    color: #666;
    font-size: 16px;
}

.lead-form-fields {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 16px;
}

.form-group label i {
    color: #667eea;
    font-size: 18px;
}

.form-group input,
.form-group textarea {
    padding: 15px;
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
    color: #333;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.checkbox-group {
    margin: 10px 0;
}

.checkbox-label {
    display: flex !important;
    align-items: flex-start !important;
    gap: 12px !important;
    cursor: pointer;
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #667eea;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #667eea;
    border-color: #667eea;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: "✓";
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.form-submit {
    margin-top: 20px;
    padding: 18px 30px;
    font-size: 18px;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 12px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.form-submit:active {
    transform: translateY(0);
}

.form-security {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    color: #666;
    font-size: 14px;
}

.form-security i {
    color: #28a745;
}

.urgency-message {
    margin-top: 40px;
    text-align: center;
}

.urgency-content {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 215, 0, 0.2);
    padding: 20px 30px;
    border-radius: 15px;
    border: 2px solid #ffd700;
    backdrop-filter: blur(10px);
}

.urgency-content i {
    color: #ffd700;
    font-size: 24px;
}

.urgency-content h4 {
    margin: 0 0 5px 0;
    color: #ffd700;
    font-size: 18px;
}

.urgency-content p {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

/* Loading State */
.form-submit.loading {
    opacity: 0.7;
    cursor: not-allowed;
    pointer-events: none;
}

.form-submit.loading::after {
    content: "";
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 10px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Success Message */
.form-success {
    background: #28a745;
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    margin-top: 20px;
    display: none;
}

.form-success.show {
    display: block;
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .lead-form {
        padding: 60px 0;
    }
    
    .form-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .qualification-form {
        padding: 30px 20px;
    }
    
    .urgency-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .form-submit {
        font-size: 16px;
        padding: 16px 25px;
    }
}

