* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-red: #FF5252;
    --primary-blue: #2196F3;
    --primary-green: #4CAF50;
    --primary-yellow: #FFC107;
    --primary-orange: #FF9800;
    --dark-text: #1a1a1a;
    --light-text: #666;
    --background-light: #f8f9fa;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #FF5252 0%, #FF9800 50%, #4CAF50 100%);
    --gradient-secondary: linear-gradient(135deg, #2196F3 0%, #FF5252 100%);
    --shadow-light: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-medium: 0 4px 20px rgba(0,0,0,0.15);
    --shadow-heavy: 0 8px 30px rgba(0,0,0,0.2);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
    box-shadow: var(--shadow-light);
}

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

.logo {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-text);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

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

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark-text);
    margin: 3px 0;
    transition: var(--transition);
}

/* Buttons */
.cta-btn {
    padding: 14px 28px;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.cta-btn.primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-medium);
}

.cta-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
}

.cta-btn.secondary {
    background: var(--white);
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
}

.cta-btn.secondary:hover {
    background: var(--primary-red);
    color: var(--white);
}

.cta-btn.large {
    padding: 18px 36px;
    font-size: 18px;
}

.cta-btn.full-width {
    width: 100%;
    justify-content: center;
}

/* Module Header Styles */
.module-header {
    padding: 120px 0 80px 0;
    background: linear-gradient(135deg, var(--background-light) 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.module-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    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="%23e0e0e0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.module-header-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.module-number-large {
    width: 120px;
    height: 120px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 800;
    box-shadow: var(--shadow-heavy);
    flex-shrink: 0;
}

.module-header-info h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

.module-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.module-chapters,
.module-duration,
.module-level {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--light-text);
    font-weight: 500;
}

.module-chapters i {
    color: var(--primary-blue);
}

.module-duration i {
    color: var(--primary-orange);
}

.module-level i {
    color: var(--primary-green);
}

.module-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--light-text);
}

/* Module Content Section */
.module-content-section {
    padding: 6rem 0;
    background: var(--white);
}

.module-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.curriculum-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--dark-text);
}

.chapters-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.chapter-item {
    background: var(--background-light);
    border-radius: var(--border-radius);
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    transition: var(--transition);
    border-left: 4px solid transparent;
}

.chapter-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    border-left-color: var(--primary-red);
}

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

.chapter-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--dark-text);
}

.chapter-content p {
    color: var(--light-text);
    line-height: 1.6;
}

/* Module Sidebar */
.module-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.enrollment-card {
    background: var(--gradient-secondary);
    color: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-medium);
}

.enrollment-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.enrollment-card p {
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.module-features {
    background: var(--background-light);
    padding: 2rem;
    border-radius: var(--border-radius);
}

.module-features h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--dark-text);
}

.module-features ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.module-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--light-text);
}

.module-features li i {
    color: var(--primary-green);
    font-size: 1.125rem;
}

.other-modules {
    background: var(--white);
    border: 1px solid #e0e0e0;
    padding: 2rem;
    border-radius: var(--border-radius);
}

.other-modules h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--dark-text);
}

.module-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.module-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--background-light);
    border-radius: var(--border-radius);
    text-decoration: none;
    color: var(--dark-text);
    transition: var(--transition);
}

.module-link:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: translateX(5px);
}

.module-num {
    width: 30px;
    height: 30px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.module-link:hover .module-num {
    background: var(--white);
    color: var(--primary-red);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 120px 0 80px 0;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    z-index: 1;
}

.bg-pattern {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--dark-text);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.hero-title .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight {
    position: relative;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--light-text);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.credibility-line {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 2rem;
    color: var(--light-text);
    font-weight: 500;
}

.credibility-line i {
    color: var(--primary-green);
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.urgency-text {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-red);
    font-weight: 600;
    font-size: 14px;
}

.video-placeholder {
    background: var(--gradient-secondary);
    border-radius: var(--border-radius);
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
    transition: var(--transition);
}

.video-placeholder:hover {
    transform: scale(1.02);
}

.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: 2rem;
    color: var(--primary-red);
    transition: var(--transition);
}

.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: var(--white);
    padding: 2rem;
}

.video-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Authority Section */
.authority {
    padding: 6rem 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--light-text);
}

.authority-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: var(--background-light);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--light-text);
    font-weight: 600;
}

/* Mentor Showcase */
.mentor-showcase {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.mentor-photo {
    position: relative;
    display: flex;
    justify-content: center;
}

.mentor-image {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: var(--shadow-heavy);
    border: 5px solid var(--white);
    transition: var(--transition);
}

.mentor-image:hover {
    transform: scale(1.05);
}

.mentor-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-medium);
}

.mentor-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

.mentor-info p {
    font-size: 1.125rem;
    color: var(--light-text);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.mentor-credentials {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 500;
    color: var(--dark-text);
}

.credential-item i {
    color: var(--primary-green);
    font-size: 1.25rem;
    width: 24px;
}

.authority-cta {
    text-align: center;
    margin-top: 2rem;
}

/* Transformation Section */
.transformation {
    padding: 6rem 0;
    background: var(--background-light);
}

.transformation-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.transformation-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border-left: 4px solid transparent;
}

.transformation-card:nth-child(1) { border-left-color: var(--primary-red); }
.transformation-card:nth-child(2) { border-left-color: var(--primary-blue); }
.transformation-card:nth-child(3) { border-left-color: var(--primary-green); }
.transformation-card:nth-child(4) { border-left-color: var(--primary-orange); }

.transformation-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: var(--white);
}

.transformation-card:nth-child(1) .card-icon { background: var(--primary-red); }
.transformation-card:nth-child(2) .card-icon { background: var(--primary-blue); }
.transformation-card:nth-child(3) .card-icon { background: var(--primary-green); }
.transformation-card:nth-child(4) .card-icon { background: var(--primary-orange); }

.transformation-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.transformation-card p {
    color: var(--light-text);
    line-height: 1.6;
}

.transformation-cta {
    text-align: center;
}

/* Social Proof */
.social-proof {
    padding: 6rem 0;
    background: var(--white);
}

.testimonials-carousel {
    position: relative;
    overflow: hidden;
    margin-bottom: 3rem;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: 100%;
    display: flex;
    gap: 2rem;
    padding: 2rem;
    background: var(--background-light);
    border-radius: var(--border-radius);
    margin: 0 1rem;
}

.testimonial-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-content {
    flex: 1;
}

.testimonial-content p {
    font-size: 1.125rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author strong {
    display: block;
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: var(--light-text);
    font-size: 0.875rem;
}

.result-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-top: 1rem;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    transform: scale(1.1);
}

/* Trading System */
.trading-system {
    padding: 6rem 0;
    background: var(--background-light);
}

.system-diagram {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    gap: 2rem;
}

.system-pillar {
    flex: 1;
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.system-pillar:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.pillar-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
}

.system-pillar h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.system-pillar p {
    color: var(--light-text);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.pillar-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.pillar-features span {
    background: var(--background-light);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--dark-text);
}

.system-arrow {
    font-size: 2rem;
    color: var(--primary-blue);
}

.system-cta {
    text-align: center;
}

/* Modules Section */
.modules-section {
    padding: 6rem 0;
    background: var(--white);
}

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

.module-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid #e0e0e0;
    position: relative;
}

.module-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.module-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.module-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    box-shadow: var(--shadow-medium);
}

.module-content {
    padding: 2rem;
}

.module-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-text);
    padding-right: 3rem;
}

.module-chapters {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.875rem;
}

.module-chapters i {
    font-size: 1rem;
}

.module-content p {
    color: var(--light-text);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.view-module-btn {
    background: var(--gradient-secondary);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.view-module-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Module Modal */
.module-modal-content {
    max-width: 800px;
    max-height: 100vh;
    overflow-y: auto;
}

.module-modal-header {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

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

.module-modal-title h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.module-modal-chapters {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.9;
    font-weight: 500;
}

.module-modal-body {
    overflow-y: auto;
    max-height: 60vh; /* or whatever height you want */
    scroll-behavior: auto;
    padding: 2rem;
}

.module-description {
    margin-bottom: 2rem;
}

.module-description p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--light-text);
}

.module-chapters-list {
    background: var(--background-light);
    border-radius: var(--border-radius);
    padding: 2rem;
    margin-bottom: 2rem;
}

.module-chapters-list h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--dark-text);
}

.chapter-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.chapter-item:last-child {
    border-bottom: none;
}

.chapter-title {
    font-weight: 500;
    color: var(--dark-text);
}

.module-modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.module-modal-actions .cta-btn {
    flex: 1;
    max-width: 250px;
}

/* Webinar Details */
.webinar-details {
    padding: 6rem 0;
    background: var(--white);
}

.details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 3rem;
}

.details-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.details-list {
    margin-bottom: 2rem;
}

.detail-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.detail-item i {
    color: var(--primary-green);
    font-size: 1.25rem;
    margin-top: 0.25rem;
}

.detail-item h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.detail-item p {
    color: var(--light-text);
    line-height: 1.6;
}

.target-audience {
    background: var(--background-light);
    padding: 2rem;
    border-radius: var(--border-radius);
}

.target-audience h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.target-audience ul {
    list-style: none;
}

.target-audience li {
    padding: 0.5rem 0;
    color: var(--light-text);
    position: relative;
    padding-left: 1.5rem;
}

.target-audience li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
}

.chart-image {
    width: 100%;
    max-width: 400px;
    height: auto;
}

.webinar-cta {
    text-align: center;
}

/* Bonus Section */
.bonus-section {
    padding: 6rem 0;
    background: var(--background-light);
}

.bonus-header {
    text-align: center;
    margin-bottom: 4rem;
}

.bonus-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.bonus-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.bonus-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
}

.bonus-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.bonus-card p {
    color: var(--light-text);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.bonus-value {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    display: inline-block;
}

.bonus-cta {
    text-align: center;
}

.bonus-disclaimer {
    margin-top: 1rem;
    color: var(--light-text);
    font-size: 0.875rem;
    font-style: italic;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: var(--white);
}

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

.faq-item {
    background: var(--background-light);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(255, 82, 82, 0.1);
}

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

.faq-question i {
    color: var(--primary-red);
    transition: var(--transition);
}

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

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

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: var(--light-text);
    line-height: 1.6;
}

/* Final CTA */
.final-cta {
    padding: 6rem 0;
    background: var(--gradient-secondary);
    color: var(--white);
    text-align: center;
}

.final-cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

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

.scarcity-elements {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
}

.seat-counter {
    font-size: 1.5rem;
    font-weight: 700;
}

.seat-counter span {
    color: var(--primary-yellow);
    font-size: 2rem;
}

.urgency-timer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
}

.guarantee {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: var(--dark-text);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    color: #ccc;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    gap: 3rem;
}

.link-group h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.link-group a {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.link-group a:hover {
    color: var(--white);
}

.footer-disclaimer {
    border-top: 1px solid #333;
    padding-top: 2rem;
    font-size: 0.875rem;
    color: #ccc;
    line-height: 1.6;
}

.copyright {
    margin-top: 1rem;
    text-align: center;
    font-size: 0.875rem;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: var(--white);
    margin: 3% auto;
    padding: 0;
    border-radius: var(--border-radius);
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: var(--shadow-heavy);
    animation: slideIn 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
}

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

.close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    color: var(--light-text);
    transition: var(--transition);
    z-index: 1;
}

.close:hover {
    color: var(--primary-red);
}

.modal-header {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 2rem;
    text-align: center;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.modal-header h2 {
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
    font-weight: 700;
}

.modal-header p {
    opacity: 0.9;
    font-size: 1rem;
}

.modal-body {
    padding: 2rem;
}

.webinar-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-text);
    font-size: 0.9rem;
}

.form-group input,
.form-group select {
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: var(--border-radius);
    font-size: 16px;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(255, 82, 82, 0.1);
    transform: translateY(-1px);
}

.webinar-form .cta-btn {
    background: var(--gradient-primary);
    color: var(--white);
    font-weight: 700;
    padding: 16px 24px;
    font-size: 18px;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.webinar-form .cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: var(--transition);
}

.webinar-form .cta-btn:hover::before {
    left: 100%;
}

.webinar-form .cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
}

.form-group input:valid {
    border-color: var(--primary-green);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .system-diagram {
        flex-direction: column;
        gap: 2rem;
    }
    
    .system-arrow {
        transform: rotate(90deg);
    }
    
    .details-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .authority-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mentor-showcase {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .mentor-image {
        width: 250px;
        height: 250px;
    }
    
    .transformation-grid {
        grid-template-columns: 1fr;
    }
    
    .bonus-grid {
        grid-template-columns: 1fr;
    }
    
    .modules-grid {
        grid-template-columns: 1fr;
    }

    .module-content-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .module-header-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .module-number-large {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px 0;
        min-height: 90vh;
    }
    
    .hero-title {
        font-size: 2.2rem;
        text-align: center;
    }

    .module-header {
        padding: 100px 0 60px 0;
    }

    .module-header-info h1 {
        font-size: 2rem;
    }

    .module-meta {
        justify-content: center;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: var(--transition);
        box-shadow: var(--shadow-medium);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .authority-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .mentor-image {
        width: 200px;
        height: 200px;
    }
    
    .mentor-credentials {
        align-items: center;
    }
    
    .testimonial-card {
        flex-direction: column;
        text-align: center;
    }
    
    .scarcity-elements {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .module-modal-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .module-modal-actions {
        flex-direction: column;
    }
    
    .module-modal-actions .cta-btn {
        max-width: none;
    }

    .chapter-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .chapter-number {
        align-self: center;
    }
}

@media (max-width: 480px) {
    .modal-content {
        margin: 5% auto;
        width: 95%;
    }
    
    .modal-header,
    .modal-body {
        padding: 1.5rem;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
    
    .module-modal-content {
        margin: 2% auto;
        width: 98%;
    }
    
    .module-modal-header,
    .module-modal-body {
        padding: 1.5rem;
    }
    
    .module-modal-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .module-modal-title h2 {
        font-size: 1.5rem;
    }

    .module-number-large {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    .module-header-info h1 {
        font-size: 1.75rem;
    }
}

/* Scroll Animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Loading Animations */
.loading {
    animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}