/* Course Page Styles */

/* Hero */
.course-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 50%, var(--navy-light) 100%);
    color: var(--white);
    padding: 5rem 1.5rem 6rem;
    text-align: center;
    position: relative;
}

.course-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 30% 20%, rgba(237, 137, 54, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(66, 153, 225, 0.15) 0%, transparent 40%);
    pointer-events: none;
}

.course-hero .container {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.course-hero .hero-badge {
    display: inline-block;
    background: rgba(237, 137, 54, 0.25);
    color: var(--amber-light);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(237, 137, 54, 0.4);
}

.course-hero h1 {
    font-size: 3.25rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.25rem;
    line-height: 1.15;
}

.course-hero .hero-sub {
    font-size: 1.2rem;
    opacity: 0.92;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.course-hero .hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

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

.stat-num {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--amber);
    line-height: 1;
}

.stat-text {
    font-size: 0.85rem;
    opacity: 0.85;
    margin-top: 0.25rem;
}

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

.course-hero .btn-outline {
    border-color: var(--white);
    color: var(--white);
}

.course-hero .btn-outline:hover {
    background: var(--white);
    color: var(--navy);
}

.course-hero .guarantee {
    color: var(--white);
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Problem Section */
.problem-section {
    padding: 5rem 1.5rem;
    background: var(--gray-50);
}

.problem-section h2 {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 0.75rem;
}

.section-intro {
    text-align: center;
    color: var(--gray-600);
    margin-bottom: 3rem;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.problem-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s;
}

.problem-card:hover {
    transform: translateY(-4px);
}

.problem-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.problem-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.problem-card p {
    color: var(--gray-600);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Solution Section */
.solution-section {
    padding: 5rem 1.5rem;
    background: var(--white);
}

.solution-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.solution-content .badge {
    display: inline-block;
    background: var(--navy);
    color: var(--white);
    padding: 0.375rem 0.875rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.solution-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.25rem;
}

.solution-content .lead {
    font-size: 1.2rem;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
}

.solution-content > p {
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.solution-features {
    list-style: none;
    text-align: left;
    max-width: 400px;
    margin: 0 auto;
}

.solution-features li {
    padding: 0.625rem 0;
    font-size: 1.05rem;
    color: var(--gray-700);
}

/* Curriculum Section */
.curriculum-section {
    padding: 5rem 1.5rem;
    background: var(--gray-50);
}

.curriculum-section h2 {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 0.75rem;
}

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

.module-card {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 1.25rem;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.module-card:hover {
    box-shadow: var(--shadow);
    border-color: var(--amber);
    transform: translateY(-2px);
}

.module-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--amber);
    line-height: 1;
    flex-shrink: 0;
    width: 50px;
}

.module-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--navy);
}

.module-content p {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.module-duration {
    font-size: 0.8rem;
    color: var(--gray-500);
    font-weight: 500;
}

/* Included Section */
.included-section {
    padding: 5rem 1.5rem;
    background: var(--white);
}

.included-section h2 {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 3rem;
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.included-card {
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    background: var(--gray-50);
}

.included-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.included-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.included-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: 0;
}

/* Testimonials */
.testimonials-section {
    padding: 5rem 1.5rem;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.25rem;
    color: var(--white);
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.testimonial-stars {
    color: var(--amber);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    color: var(--navy);
}

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--gray-500);
}

/* Pricing */
.pricing-section {
    padding: 5rem 1.5rem;
    background: var(--gray-50);
}

.pricing-card {
    max-width: 500px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border: 2px solid var(--amber);
}

.pricing-header {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--white);
    padding: 2.5rem;
    text-align: center;
}

.pricing-badge {
    display: inline-block;
    background: var(--amber);
    color: var(--white);
    padding: 0.375rem 0.875rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.pricing-header h2 {
    color: var(--white);
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.pricing-amount .price-current {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
}

.pricing-amount .price-original {
    font-size: 1.5rem;
    color: rgba(255,255,255,0.6);
    text-decoration: line-through;
}

.pricing-amount .price-discount {
    background: var(--success);
    color: var(--white);
    padding: 0.25rem 0.625rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
}

.price-desc {
    font-size: 0.95rem;
    opacity: 0.9;
}

.pricing-features {
    padding: 2rem;
}

.pricing-features h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-align: center;
}

.pricing-features ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.pricing-features li {
    padding: 0.625rem 0;
    font-size: 0.95rem;
    color: var(--gray-700);
    border-bottom: 1px solid var(--gray-100);
}

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

.btn-block {
    display: block;
    width: 100%;
}

.secure-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-top: 1rem;
}

/* FAQ */
.faq-section {
    padding: 5rem 1.5rem;
    background: var(--white);
}

.faq-section h2 {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 3rem;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: 1.5rem;
}

.faq-item {
    padding: 1.5rem;
    background: var(--gray-50);
    border-radius: 12px;
}

.faq-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--navy);
}

.faq-item p {
    font-size: 0.95rem;
    color: var(--gray-600);
    margin-bottom: 0;
    line-height: 1.6;
}

/* Final CTA */
.final-cta {
    padding: 5rem 1.5rem;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    text-align: center;
    color: var(--white);
}

.final-cta h2 {
    color: var(--white);
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.15rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.final-cta .guarantee {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    opacity: 0.85;
}

/* Responsive */
@media (max-width: 768px) {
    .course-hero h1 {
        font-size: 2.25rem;
    }
    
    .course-hero .hero-stats {
        gap: 2rem;
    }
    
    .stat-num {
        font-size: 1.75rem;
    }
    
    .curriculum-grid {
        grid-template-columns: 1fr;
    }
    
    .module-card {
        flex-direction: column;
    }
    
    .module-number {
        width: auto;
    }
}
