/* ============================================
   HIDDEN LEGACY - PREMIUM TRADING WEBSITE
   Design: Glassmorphism Noir/Bleu/Or
   Performance: 60 FPS animations
   ============================================ */

/* ============================================
   VARIABLES & RESET
   ============================================ */

:root {
    /* Colors */
    --primary-gold: #D4AF37;
    --primary-blue: #0EA5E9;
    --dark-bg: #0A0A0F;
    --dark-card: #111118;
    --dark-card-hover: #1A1A24;
    --accent-blue: #3B82F6;
    --accent-gold: #FFD700;
    --text-primary: #FFFFFF;
    --text-secondary: #A1A1AA;
    --text-muted: #71717A;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #0EA5E9 0%, #3B82F6 100%);
    --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #FFD700 100%);
    --gradient-premium: linear-gradient(135deg, #0EA5E9 0%, #D4AF37 100%);
    
    /* Glassmorphism */
    --glass-bg: rgba(17, 17, 24, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 30px rgba(14, 165, 233, 0.3);
    
    /* Fonts */
    --font-primary: 'Sora', sans-serif;
    --font-secondary: 'Inter', sans-serif;
    
    /* Spacing */
    --container-width: 1280px;
    --section-padding: 120px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    background: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   CUSTOM CURSOR
   ============================================ */

.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 10000;
    border-radius: 50%;
    transition: transform 0.15s ease, opacity 0.15s ease;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-gold);
    transform: translate(-50%, -50%);
}

.cursor-outline {
    width: 32px;
    height: 32px;
    border: 2px solid var(--primary-blue);
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
}

@media (max-width: 768px) {
    .cursor-dot,
    .cursor-outline {
        display: none;
    }
}

/* ============================================
   LOADING SCREEN
   ============================================ */

.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

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

.loading-logo {
    font-size: 80px;
    animation: pulse 2s ease-in-out infinite;
}

.loading-text {
    font-family: var(--font-primary);
    font-size: 32px;
    font-weight: 700;
    margin-top: 20px;
    background: var(--gradient-premium);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.loading-bar {
    width: 300px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin: 30px auto 0;
    overflow: hidden;
}

.loading-progress {
    height: 100%;
    background: var(--gradient-premium);
    animation: loading 2s ease-in-out infinite;
}

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

@keyframes loading {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 20px 0;
    z-index: 1000;
    transition: padding 0.3s ease, background 0.3s ease;
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(10, 10, 15, 0.95);
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-primary);
    font-size: 22px;
    font-weight: 700;
    cursor: pointer;
    flex-shrink: 0;
}

.logo-icon {
    font-size: 28px;
}

.logo-text {
    background: var(--gradient-premium);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    flex: 1;
    justify-content: center;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    position: relative;
    transition: color 0.3s ease;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-premium);
    transition: width 0.3s ease;
}

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

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--gradient-premium);
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

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

.nav-cta {
    display: flex;
    align-items: center;
    gap: 20px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-shrink: 0;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 73px;
    left: 0;
    width: 100%;
    height: calc(100vh - 73px);
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 40px 24px;
}

.mobile-link {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    padding: 12px 0;
    border-bottom: 1px solid var(--glass-border);
    transition: color 0.3s ease;
}

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

@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }
    
    .nav-cta .btn-primary {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu {
        display: block;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 24px 80px;
    overflow: hidden;
}

#particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-gold);
    margin-bottom: 30px;
}

.hero-title {
    font-family: var(--font-primary);
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.gradient-text {
    background: var(--gradient-premium);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 40px;
    background: var(--gradient-premium);
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 240px;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(14, 165, 233, 0.4);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 40px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 2px solid var(--primary-blue);
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    border-radius: 12px;
    transition: all 0.3s ease;
    min-width: 240px;
}

.btn-hero-secondary:hover {
    background: var(--primary-blue);
    transform: translateY(-3px);
}

.hero-concepts {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.concept-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.concept-pill:hover {
    background: var(--dark-card-hover);
    color: var(--primary-blue);
    border-color: var(--primary-blue);
    transform: translateY(-2px);
}

.concept-pill i {
    color: var(--primary-blue);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 500;
    animation: bounce 2s ease-in-out infinite;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--primary-blue), transparent);
}

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

/* ============================================
   SECTION STYLES
   ============================================ */

section {
    padding: var(--section-padding) 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-gold);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-family: var(--font-primary);
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================
   APPROACH SECTION
   ============================================ */

.section-approach {
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-card) 100%);
}

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

.approach-card {
    padding: 40px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    transition: all 0.4s ease;
}

.approach-card:hover {
    background: var(--dark-card-hover);
    border-color: var(--primary-blue);
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
}

.approach-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-premium);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 24px;
}

.approach-card h3 {
    font-family: var(--font-primary);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
}

.approach-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   CONCEPTS SECTION
   ============================================ */

.section-concepts {
    background: var(--dark-bg);
}

.concepts-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.concept-detail {
    position: relative;
    padding: 40px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    display: flex;
    gap: 30px;
    transition: all 0.4s ease;
}

.concept-detail:hover {
    background: var(--dark-card-hover);
    border-color: var(--primary-blue);
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.concept-number {
    font-family: var(--font-primary);
    font-size: 80px;
    font-weight: 800;
    background: var(--gradient-premium);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
    line-height: 1;
}

.concept-content {
    flex: 1;
}

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

.concept-icon-box {
    width: 56px;
    height: 56px;
    background: var(--gradient-premium);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.concept-content h3 {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 4px;
}

.concept-category {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(14, 165, 233, 0.15);
    color: var(--primary-blue);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.concept-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.concept-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    padding: 6px 14px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--primary-gold);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .concept-detail {
        flex-direction: column;
        gap: 20px;
    }
    
    .concept-number {
        font-size: 48px;
    }
}

/* ============================================
   PROGRAM SECTION
   ============================================ */

.section-program {
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-card) 100%);
}

.program-modules {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.module-card {
    padding: 40px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    transition: all 0.4s ease;
}

.module-card:hover {
    background: var(--dark-card-hover);
    border-color: var(--primary-blue);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

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

.module-number {
    padding: 10px 20px;
    background: var(--gradient-premium);
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 700;
}

.module-header h3 {
    flex: 1;
    font-family: var(--font-primary);
    font-size: 26px;
    font-weight: 700;
}

.module-level {
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.module-level.beginner {
    background: rgba(34, 197, 94, 0.15);
    color: #22C55E;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.module-level.intermediate {
    background: rgba(14, 165, 233, 0.15);
    color: var(--primary-blue);
    border: 1px solid rgba(14, 165, 233, 0.3);
}

.module-level.advanced {
    background: rgba(168, 85, 247, 0.15);
    color: #A855F7;
    border: 1px solid rgba(168, 85, 247, 0.3);
}

.module-level.expert {
    background: rgba(212, 175, 55, 0.15);
    color: var(--primary-gold);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.module-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.module-topics {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.topic-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.topic-item:hover {
    background: rgba(14, 165, 233, 0.1);
    transform: translateX(8px);
}

.topic-item i {
    color: var(--primary-blue);
    margin-top: 2px;
}

.topic-item span {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================
   MENTORSHIP SECTION
   ============================================ */

.section-mentorship {
    background: var(--dark-bg);
}

.mentorship-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.mentorship-card {
    padding: 40px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
}

.mentorship-card:hover {
    background: var(--dark-card-hover);
    border-color: var(--primary-gold);
    transform: translateY(-8px);
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.3);
}

.mentorship-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 24px;
}

.mentorship-card h3 {
    font-family: var(--font-primary);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
}

.mentorship-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.mentorship-cta {
    padding: 60px 40px;
    background: var(--gradient-premium);
    border-radius: 20px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.mentorship-cta-content h3 {
    font-family: var(--font-primary);
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
}

.mentorship-cta-content p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.btn-large {
    padding: 20px 50px;
    font-size: 18px;
    border-radius: 12px;
}

/* ============================================
   JOURNEY SECTION
   ============================================ */

.section-journey {
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-card) 100%);
}

.journey-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.journey-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-blue), var(--primary-gold));
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-marker {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.timeline-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-premium);
    border: 4px solid var(--dark-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 700;
}

.timeline-content {
    flex: 1;
    padding: 30px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    transition: all 0.4s ease;
}

.timeline-content:hover {
    background: var(--dark-card-hover);
    border-color: var(--primary-blue);
    transform: scale(1.03);
}

.timeline-content h3 {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.timeline-subtitle {
    color: var(--primary-gold);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.timeline-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.timeline-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-small {
    padding: 4px 12px;
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid rgba(14, 165, 233, 0.3);
    color: var(--primary-blue);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .journey-timeline::before {
        left: 30px;
    }
    
    .timeline-item,
    .timeline-item:nth-child(even) {
        flex-direction: row;
        padding-left: 80px;
    }
    
    .timeline-marker {
        position: absolute;
        left: 0;
    }
}

/* ============================================
   METHODOLOGY SECTION
   ============================================ */

.section-methodology {
    background: var(--dark-bg);
}

.methodology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.methodology-card {
    position: relative;
    padding: 40px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    transition: all 0.4s ease;
}

.methodology-card:hover {
    background: var(--dark-card-hover);
    border-color: var(--primary-gold);
    transform: translateY(-8px);
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.3);
}

.methodology-number {
    position: absolute;
    top: -15px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

.methodology-icon {
    width: 64px;
    height: 64px;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary-gold);
    margin-bottom: 24px;
}

.methodology-card h3 {
    font-family: var(--font-primary);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
}

.methodology-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   COMMUNITY SECTION
   ============================================ */

.section-community {
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-card) 100%);
}

.community-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.community-card {
    padding: 40px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    transition: all 0.4s ease;
}

.community-card:hover {
    background: var(--dark-card-hover);
    border-color: var(--primary-blue);
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
}

.community-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-premium);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin-bottom: 24px;
}

.community-card h3 {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.community-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.community-stats {
    display: flex;
    gap: 20px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(14, 165, 233, 0.1);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
}

.stat-item i {
    color: var(--primary-blue);
}

.community-cta {
    text-align: center;
    padding: 60px 40px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 2px solid var(--primary-blue);
    border-radius: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.community-cta h3 {
    font-family: var(--font-primary);
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 32px;
}

/* ============================================
   RESOURCES SECTION
   ============================================ */

.section-resources {
    background: var(--dark-bg);
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.resource-card {
    padding: 40px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    transition: all 0.4s ease;
}

.resource-card:hover {
    background: var(--dark-card-hover);
    border-color: var(--primary-blue);
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
}

.resource-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-premium);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 24px;
}

.resource-card h3 {
    font-family: var(--font-primary);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
}

.resource-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   PRICING SECTION
   ============================================ */

.section-pricing {
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-card) 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto 40px;
}

.pricing-card {
    position: relative;
    padding: 50px 40px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 2px solid var(--glass-border);
    border-radius: 24px;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    background: var(--dark-card-hover);
    border-color: var(--primary-blue);
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
}

.pricing-card-premium {
    border-color: var(--primary-gold);
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.2);
}

.pricing-card-premium:hover {
    border-color: var(--primary-gold);
    box-shadow: 0 12px 48px rgba(212, 175, 55, 0.4);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    right: 30px;
    padding: 6px 20px;
    background: var(--gradient-premium);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.pricing-badge.premium {
    background: var(--gradient-gold);
}

.pricing-header h3 {
    font-family: var(--font-primary);
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 8px;
}

.pricing-subtitle {
    color: var(--text-secondary);
    font-size: 15px;
    margin-bottom: 30px;
}

.pricing-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
}

.currency {
    font-size: 28px;
    font-weight: 700;
    margin-top: 8px;
}

.amount {
    font-family: var(--font-primary);
    font-size: 64px;
    font-weight: 800;
    line-height: 1;
    background: var(--gradient-premium);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-card-premium .amount {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.period {
    font-size: 14px;
    color: var(--text-muted);
    align-self: flex-end;
    margin-bottom: 8px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 40px;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    color: var(--text-secondary);
    line-height: 1.6;
}

.pricing-features i {
    color: var(--primary-blue);
    margin-top: 2px;
}

.pricing-card-premium .pricing-features i {
    color: var(--primary-gold);
}

.btn-pricing {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 20px 32px;
    background: var(--gradient-premium);
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 17px;
    border-radius: 12px;
    transition: all 0.3s ease;
    margin-top: auto;
}

.btn-pricing:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-pricing.premium {
    background: var(--gradient-gold);
}

.btn-pricing.premium:hover {
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.4);
}

.pricing-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.pricing-note i {
    color: var(--primary-blue);
}

/* ============================================
   FAQ SECTION
   ============================================ */

.section-faq {
    background: var(--dark-bg);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-blue);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 30px;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 600;
    flex: 1;
}

.faq-question i {
    color: var(--primary-blue);
    font-size: 18px;
    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.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 30px 24px;
}

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

/* ============================================
   FINAL CTA SECTION
   ============================================ */

.section-final-cta {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(212, 175, 55, 0.1) 100%);
}

.final-cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.final-cta-content h2 {
    font-family: var(--font-primary);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    margin-bottom: 20px;
}

.final-cta-content p {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.final-cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 700px;
    margin: 0 auto;
}

.btn-cta-primary,
.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 22px 45px;
    font-weight: 700;
    font-size: 18px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 260px;
}

.btn-cta-primary {
    background: var(--gradient-gold);
    color: var(--text-primary);
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.4);
}

.btn-cta-secondary {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 2px solid var(--primary-blue);
    color: var(--text-primary);
}

.btn-cta-secondary:hover {
    background: var(--primary-blue);
    transform: translateY(-3px);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--dark-card);
    padding: 80px 0 30px;
    border-top: 1px solid var(--glass-border);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-description {
    color: var(--text-secondary);
    line-height: 1.7;
}

.footer-column h4 {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

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

.footer-links li {
    margin-bottom: 12px;
}

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

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--glass-border);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 12px;
}

.footer-disclaimer {
    font-size: 12px;
    max-width: 900px;
    margin: 0 auto;
}

/* ============================================
   ANIMATIONS (AOS will be initialized in JS)
   ============================================ */

[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
    transition-duration: 0.6s;
    transition-timing-function: ease-out;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: none;
}

[data-aos="fade-up"] {
    transform: translateY(40px);
}

[data-aos="fade-down"] {
    transform: translateY(-40px);
}

[data-aos="fade-left"] {
    transform: translateX(-40px);
}

[data-aos="fade-right"] {
    transform: translateX(40px);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }
    
    .hero {
        padding: 120px 20px 60px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .methodology-grid,
    .resources-grid,
    .community-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
        width: 100%;
        gap: 16px;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
        padding: 18px 32px;
    }
    
    .final-cta-buttons {
        flex-direction: column;
        width: 100%;
        gap: 16px;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        justify-content: center;
        padding: 18px 32px;
    }
    
    .mentorship-cta,
    .community-cta {
        padding: 40px 24px;
    }
    
    .pricing-card {
        padding: 40px 24px;
    }
}

/* ============================================
   PERFORMANCE OPTIMIZATIONS
   ============================================ */

* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

/* Will-change for animated elements */
.navbar,
.cursor-dot,
.cursor-outline,
.loading-screen {
    will-change: transform;
}

/* GPU acceleration for smooth animations */
.concept-detail,
.module-card,
.approach-card,
.pricing-card {
    transform: translateZ(0);
    backface-visibility: hidden;
}