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

:root {
    --primary: #7c3aed;
    --secondary: #a855f7;
    --light: #f3e8ff;
    --dark: #581c87;
    --midnight-blue: #1e293b;
    --charcoal: #1e293b;
    --soft-white: #f8fafc;
    --gold: #fbbf24;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-light: #94a3b8;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--soft-white);
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 1);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 0;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.1);
    border-bottom: 1px solid rgba(15, 23, 42, 0.05);
}

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

.nav-logo h2 {
    color: var(--midnight-blue);
    font-weight: 800;
    font-size: 1.5rem;
}

/* Logo Image Styles */
.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    max-height: 48px;
    max-width: 200px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.logo-img:hover {
    opacity: 0.8;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--midnight-blue);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    color: white;
    padding: 150px 0 80px;
    text-align: center;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-title .highlight {
    color: var(--secondary);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    font-weight: 400;
    color: #cbd5e1;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-button.primary {
    background: #ffffff;
    color: var(--primary);
    border-color: #ffffff;
}

.cta-button.primary:hover {
    background: var(--light);
    color: var(--dark);
    transform: translateY(-2px);
}

.cta-button.secondary {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.cta-button.secondary:hover {
    background: #ffffff;
    color: var(--primary);
    border-color: #ffffff;
}

.cta-button.large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

.trust-bar {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    opacity: 0.8;
}

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

.trust-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.25rem;
}

.trust-text {
    font-size: 0.9rem;
    color: #94a3b8;
}

/* Program Preview Section */
.programs {
    padding: 120px 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--midnight-blue);
    letter-spacing: -0.02em;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.program-blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.program-block {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.program-block:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.1);
}

.program-block.featured {
    border-color: var(--primary);
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    color: white;
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--secondary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.program-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.program-number {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.program-block.featured .program-number {
    background: white;
    color: var(--primary);
}

.program-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--midnight-blue);
}

.program-block.featured .program-name {
    color: white;
}

.program-desc {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.program-block.featured .program-desc {
    color: #cbd5e1;
}

.program-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.feature {
    background: #f1f5f9;
    color: var(--text-primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
}

.program-block.featured .feature {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.program-cta {
    color: var(--primary);
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
}

.program-block.featured .program-cta {
    color: var(--secondary);
}



/* Footer */
.footer {
    background: white;
    color: var(--text-primary);
    padding: 3rem 0 1rem;
    border-top: 1px solid #e2e8f0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo h3 {
    color: var(--midnight-blue);
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.footer-logo p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-links h4 {
    margin-bottom: 1rem;
    color: var(--midnight-blue);
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid #e2e8f0;
    padding-top: 1rem;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Program Page Styles */
.program-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 150px 0 100px;
    text-align: center;
}

.program-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.program-hero .subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    font-weight: 300;
}

.program-details {
    padding: 100px 0;
    background: white;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.detail-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #667eea;
}

.detail-card h3 {
    color: #1a202c;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.detail-card p {
    color: #718096;
    line-height: 1.6;
}

.timeline {
    padding: 100px 0;
    background: #f8fafc;
}

.timeline-item {
    display: flex;
    margin-bottom: 2rem;
    align-items: flex-start;
    gap: 1rem;
}

.timeline-number {
    background: #667eea;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.timeline-content h3 {
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #718096;
}

/* Founder Journey Timeline */
.journey {
    padding: 120px 0 30px;
    background: var(--soft-white);
}

.timeline {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.timeline-step {
    text-align: center;
    max-width: 200px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.timeline-step h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--midnight-blue);
    margin-bottom: 0.5rem;
}

.timeline-step p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.timeline-arrow {
    font-size: 2rem;
    color: var(--primary);
    font-weight: bold;
}

/* Social Proof Section */
.social-proof {
    padding: 120px 0;
    background: white;
}

.metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
    text-align: center;
}

.metric h3 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.metric p {
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.testimonial {
    background: var(--soft-white);
    padding: 2.5rem;
    border-radius: 16px;
    border-left: 4px solid var(--primary);
}

.testimonial p {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-style: italic;
    line-height: 1.6;
}

.testimonial-author {
    color: var(--text-secondary);
    font-weight: 500;
}

/* Bonus Stack Section */
.bonus-stack {
    padding: 120px 0;
    background: var(--midnight-blue);
    color: white;
}

.bonus-stack .section-title,
.bonus-stack .section-subtitle {
    color: white;
}

.bonus-stack .section-subtitle {
    color: #cbd5e1;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.bonus-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(251, 191, 36, 0.2);
    transition: all 0.3s ease;
}

.bonus-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
    transform: translateY(-4px);
}

.bonus-item h4 {
    color: var(--secondary);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.bonus-item p {
    color: #cbd5e1;
    line-height: 1.5;
}

/* Guarantee Section */
.guarantee {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    color: white;
    text-align: center;
}

.guarantee-content {
    max-width: 600px;
    margin: 0 auto;
}

.guarantee-badge {
    display: inline-block;
    margin-bottom: 2rem;
}

.badge-text {
    background: white;
    color: var(--primary);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
}

.guarantee h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.guarantee p {
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* Final CTA Section */
.final-cta {
    padding: 120px 0;
    background: var(--primary);
    color: white;
    text-align: center;
}

.final-cta .section-title,
.final-cta .section-subtitle {
    color: white;
}

.final-cta .section-subtitle {
    color: #cbd5e1;
    margin-bottom: 3rem;
}

.final-ctas {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Icon Styles for Font Awesome */
.fas, .far, .fab {
    font-size: inherit;
    vertical-align: middle;
}

/* Audience icons */
.audience-icon i {
    font-size: 2.5rem;
    color: var(--primary);
}

/* Offer icons */
.offer-icon i {
    font-size: 2.5rem;
    color: var(--primary);
}

/* Section title icons */
.section-title i {
    margin-right: 0.5rem;
    color: var(--primary);
}

/* Bonus item icons */
.bonus-item h4 i {
    margin-right: 0.5rem;
    color: var(--secondary);
}

/* Small inline icons */
.payment-info i,
.scarcity-block h3 i {
    margin-right: 0.5rem;
    color: var(--secondary);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.25rem;
    }
    
    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }
    
    .final-ctas {
        flex-direction: column;
        align-items: center;
    }
    
    .program-blocks {
        grid-template-columns: 1fr;
    }
    
    .metrics {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .testimonials {
        grid-template-columns: 1fr;
    }
    
    .bonus-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline {
        flex-direction: column;
        gap: 1rem;
    }
    
    .timeline-arrow {
        transform: rotate(90deg);
    }
    
    .trust-bar {
        gap: 1.5rem;
    }
    
    .trust-number {
        font-size: 1.25rem;
    }
    
    .metric h3 {
        font-size: 2.5rem;
    }
}
