/* ====================
   ROOT VARIABLES & RESET
   ==================== */
:root {
    /* Colors - Advanced Purple-Pink Gradient Scheme */
    --primary-gradient: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
    --secondary-gradient: linear-gradient(135deg, #3B82F6 0%, #8B5CF6 50%, #EC4899 100%);
    --accent-gradient: linear-gradient(135deg, #06B6D4 0%, #3B82F6 50%, #8B5CF6 100%);
    
    --primary-purple: #8B5CF6;
    --primary-pink: #EC4899;
    --primary-blue: #3B82F6;
    --primary-cyan: #06B6D4;
    
    /* Glass Background Colors */
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: rgba(0, 0, 0, 0.1);
    
    /* Dark Theme Colors */
    --bg-primary: #0F0F23;
    --bg-secondary: #1A1A2E;
    --bg-tertiary: #16213E;
    
    /* Text Colors */
    --text-primary: #FFFFFF;
    --text-secondary: #E2E8F0;
    --text-muted: #94A3B8;
    --text-accent: #F8FAFC;
    
    /* Success/Error Colors */
    --success: #10B981;
    --error: #EF4444;
    --warning: #F59E0B;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 20px rgba(139, 92, 246, 0.3);
    
    /* Transitions */
    --transition-fast: 0.2s ease-out;
    --transition-normal: 0.3s ease-out;
    --transition-slow: 0.5s ease-out;
    
    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2rem;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

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

/* ====================
   LOADING SCREEN
   ==================== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

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

.loading-content {
    text-align: center;
    animation: loadingPulse 2s ease-in-out infinite;
}

.loading-logo h1 {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.loading-logo span {
    color: var(--text-secondary);
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    margin: 2rem auto 1rem;
    border: 3px solid rgba(139, 92, 246, 0.3);
    border-top: 3px solid var(--primary-purple);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loading-text {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 1rem;
    animation: loadingText 2s ease-in-out infinite;
}

@keyframes loadingPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

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

@keyframes loadingText {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* ====================
   SCROLL PROGRESS BAR
   ==================== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1000;
}

.progress-bar {
    height: 100%;
    background: var(--primary-gradient);
    width: 0%;
    transition: width 0.1s ease-out;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
}

/* ====================
   FLOATING NAVIGATION DOTS
   ==================== */
.floating-nav {
    position: fixed;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.floating-nav.visible {
    opacity: 1;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.nav-dot.active {
    background: var(--primary-gradient);
    transform: scale(1.2);
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.6);
}

.nav-dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.1);
}

/* ====================
   CUSTOM CURSOR
   ==================== */
.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    pointer-events: none;
    z-index: 9998;
    mix-blend-mode: difference;
    transition: transform 0.2s ease-out;
}

.cursor-inner {
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    border-radius: 50%;
    transform: scale(1);
    transition: transform 0.2s ease-out;
}

.custom-cursor.cursor-hover .cursor-inner {
    transform: scale(2);
}

/* ====================
   PARTICLE BACKGROUND
   ==================== */
#particles-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(139, 92, 246, 0.6);
    border-radius: 50%;
    animation: float 20s infinite linear;
}

@keyframes float {
    0% {
        transform: translateY(100vh) translateX(0px);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(100px);
        opacity: 0;
    }
}

/* ====================
   GRADIENT ORBS
   ==================== */
.gradient-orbs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    animation: orbFloat 20s ease-in-out infinite;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.3) 0%, transparent 70%);
    top: 20%;
    right: 20%;
    animation-delay: -5s;
}

.orb-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
    bottom: 30%;
    left: 20%;
    animation-delay: -10s;
}

.orb-4 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.3) 0%, transparent 70%);
    bottom: 10%;
    right: 10%;
    animation-delay: -15s;
}

.orb-5 {
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.4) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    animation-delay: -8s;
}

@keyframes orbFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(30px, -30px) scale(1.1);
    }
    50% {
        transform: translate(-20px, 20px) scale(0.9);
    }
    75% {
        transform: translate(20px, 10px) scale(1.05);
    }
}

/* ====================
   NAVIGATION
   ==================== */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all var(--transition-normal);
    background: rgba(15, 15, 35, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}

.navbar.scrolled {
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(30px);
    box-shadow: var(--shadow-lg);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-image {
    height: 40px;
    width: auto;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.3);
    transition: all var(--transition-normal);
}

.logo-image:hover {
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(139, 92, 246, 0.5);
}

.logo-text-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
}

.logo-subtitle {
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: -2px;
}

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

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all var(--transition-fast);
    position: relative;
    padding: 0.5rem 0;
}

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

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

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

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: all var(--transition-fast);
    transform-origin: center;
}

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

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

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

/* ====================
   BUTTONS
   ==================== */
.btn-primary,
.btn-secondary,
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    user-select: none;
}

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

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

.btn-primary.btn-glow {
    box-shadow: var(--shadow-glow), var(--shadow-xl);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl), 0 0 20px rgba(37, 211, 102, 0.3);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

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

.btn-icon {
    font-size: 1.1em;
}

/* Magnetic Effect */
.magnetic-btn {
    transition: transform var(--transition-fast);
}

/* Ripple Effect */
.ripple-effect {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: scale(0);
    animation: rippleAnimation 0.6s linear;
    pointer-events: none;
}

@keyframes rippleAnimation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* ====================
   GLASS MORPHISM CARDS
   ==================== */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
}

/* ====================
   SECTIONS
   ==================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
    position: relative;
    z-index: 1;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(139, 92, 246, 0.1);
    color: var(--primary-purple);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
}

.section-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    position: static;
    transform: none !important;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.glowing-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.glowing-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    filter: blur(10px);
    opacity: 0.5;
}

/* ====================
   HERO SECTION
   ==================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    z-index: 10;
    position: relative;
}

.hero-badge {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    margin-bottom: 2rem;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: var(--shadow-md);
}

.hero-title {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.title-line {
    display: block;
    margin-bottom: 0.5rem;
}

.hero-subtitle {
    margin-bottom: 3rem;
}

.subtitle-main {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.subtitle-emphasis {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

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

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-purple);
    display: block;
}

.stat-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

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

.trust-line {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.trust-item {
    color: var(--success);
}

.trust-separator {
    margin: 0 1rem;
    color: var(--text-muted);
}

/* Floating Cards */
.floating-cards {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    padding: 1.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    animation: cardFloat 6s ease-in-out infinite;
    min-width: 200px;
}

.card-1 {
    top: 20%;
    left: 5%;
    animation-delay: 0s;
}

.card-2 {
    top: 15%;
    right: 5%;
    animation-delay: 2s;
}

.card-3 {
    bottom: 25%;
    left: 10%;
    animation-delay: 4s;
}

.card-header {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-purple);
    margin-bottom: 0.5rem;
}

.card-status {
    font-size: 0.8rem;
    color: var(--success);
}

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

/* ====================
   PROFIT CALCULATOR
   ==================== */
.profit-calculator {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
}

.profit-calculator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-gradient);
}

.calculator-header {
    text-align: center;
    margin-bottom: 2rem;
}

.calculator-header h4 {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.calculator-header p {
    color: var(--text-muted);
}

.calculator-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.calculator-select {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 1rem;
    backdrop-filter: blur(10px);
    transition: all var(--transition-normal);
}

.calculator-select:focus {
    outline: none;
    border-color: var(--primary-purple);
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.3);
}

.calculator-results {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.calc-result {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.calc-label {
    color: var(--text-secondary);
    font-weight: 500;
}

.calc-value {
    color: var(--primary-purple);
    font-weight: 700;
    font-size: 1.2rem;
}

.calc-value.highlight {
    color: var(--success);
    font-size: 1.5rem;
    text-shadow: 0 0 10px rgba(16, 185, 129, 0.3);
}

.calc-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.8rem;
    font-style: italic;
    margin-top: 1rem;
}

/* ====================
   TESTIMONIALS CAROUSEL
   ==================== */
.testimonials-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.testimonial-slide {
    display: none;
    animation: slideIn 0.5s ease-in-out;
}

.testimonial-slide.active {
    display: block;
}

.testimonial-card.featured {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
    border: 2px solid rgba(139, 92, 246, 0.3);
    transform: scale(1.02);
    box-shadow: var(--shadow-xl), 0 0 30px rgba(139, 92, 246, 0.2);
}

.author-avatar.gradient {
    background: var(--primary-gradient);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.4);
}

.author-badge {
    background: var(--success);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    font-size: 0.7rem;
    margin-top: 0.25rem;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.carousel-btn {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-normal);
    backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    background: var(--primary-gradient);
    transform: scale(1.1);
    box-shadow: var(--shadow-glow);
}

.carousel-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.dot.active,
.dot:hover {
    background: var(--primary-purple);
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
}

/* ====================
   FTMO TIMELINE
   ==================== */
.ftmo-timeline {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.ftmo-timeline h4 {
    margin-bottom: 3rem;
    color: var(--text-secondary);
}

.timeline-container {
    position: relative;
    padding: 2rem 0;
}

.timeline-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-purple), var(--primary-pink));
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.3);
}

.timeline-step {
    display: flex;
    align-items: center;
    margin: 3rem 0;
    position: relative;
}

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

.timeline-step:nth-child(even) .timeline-content {
    text-align: right;
}

.timeline-marker {
    position: relative;
    z-index: 10;
    margin: 0 2rem;
}

.marker-inner {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.4);
    position: relative;
}

.marker-pulse {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid var(--primary-purple);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.timeline-content {
    flex: 1;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    max-width: 350px;
}

.timeline-content h5 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.timeline-content p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.timeline-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.timeline-stats span {
    background: rgba(139, 92, 246, 0.1);
    color: var(--primary-purple);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.account-sizes-enhanced {
    margin-top: 3rem;
    text-align: center;
}

.account-sizes-enhanced h5 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.size-options {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.size-option {
    padding: 0.75rem 1.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-weight: 600;
    transition: all var(--transition-normal);
    backdrop-filter: blur(10px);
}

.size-option:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.size-option.popular {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(236, 72, 153, 0.2) 100%);
    border: 2px solid var(--primary-purple);
    position: relative;
}

.size-option.popular::before {
    content: '🔥 פופולרי';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-gradient);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.7rem;
    white-space: nowrap;
}

.size-option.premium {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 193, 7, 0.1) 100%);
    border: 2px solid #FFD700;
    color: #FFD700;
}

/* ====================
   ENHANCED ANIMATIONS
   ==================== */
@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* ====================
   ENHANCED STEP STYLING
   ==================== */
.step-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* ====================
   ADVANCED SCROLL EFFECTS
   ==================== */
.scroll-triggered-element {
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-zoom-in {
    transform: scale(0.9);
    opacity: 0;
}

.scroll-zoom-in.in-view {
    transform: scale(1);
    opacity: 1;
}

.scroll-slide-diagonal {
    transform: translate(-50px, 50px);
    opacity: 0;
}

.scroll-slide-diagonal.in-view {
    transform: translate(0, 0);
    opacity: 1;
}

.scroll-rotate-in {
    transform: rotate(-10deg) scale(0.8);
    opacity: 0;
}

.scroll-rotate-in.in-view {
    transform: rotate(0deg) scale(1);
    opacity: 1;
}

/* ====================
   ENHANCED HOVER EFFECTS
   ==================== */
.hover-lift {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hover-lift:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), var(--shadow-glow);
}

.hover-glow:hover {
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.4),
                0 0 60px rgba(139, 92, 246, 0.2),
                0 0 90px rgba(139, 92, 246, 0.1);
}

/* ====================
   FLOATING ELEMENTS
   ==================== */
.float-element {
    animation: float 6s ease-in-out infinite;
}

.float-element:nth-child(2n) {
    animation-delay: -2s;
}

.float-element:nth-child(3n) {
    animation-delay: -4s;
}

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

/* ====================
   PRICING ENHANCEMENTS
   ==================== */
.pricing-card {
    position: relative;
    overflow: hidden;
}

.pricing-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.pricing-card:hover::after {
    left: 100%;
}

.pricing-card.featured::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(236, 72, 153, 0.3), rgba(59, 130, 246, 0.3));
    border-radius: inherit;
    z-index: -1;
    opacity: 0.6;
}

/* ====================
   MOBILE OPTIMIZATIONS
   ==================== */
@media (max-width: 768px) {
    .logo-image {
        height: 30px;
    }
    
    .timeline-step {
        flex-direction: column !important;
        text-align: center !important;
    }
    
    .timeline-step:nth-child(even) .timeline-content {
        text-align: center !important;
    }
    
    .timeline-line {
        display: none;
    }
    
    .timeline-marker {
        margin: 1rem 0 !important;
    }
    
    .timeline-content {
        max-width: 100% !important;
    }
    
    .carousel-controls {
        gap: 1rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
}

/* ====================
   SOCIAL MEDIA LINKS
   ==================== */

/* Social Links in Navigation */
.social-links-nav {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    margin-left: 1rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-primary);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity var(--transition-normal);
    border-radius: inherit;
}

.social-icon svg {
    position: relative;
    z-index: 1;
    transition: transform var(--transition-normal);
}

.social-icon:hover {
    transform: translateY(-3px);
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
}

.social-icon:hover::before {
    opacity: 1;
}

.social-icon:hover svg {
    transform: scale(1.1);
}

/* Social Links in Footer */
.social-links-footer {
    margin-top: 1.5rem;
}

.social-links-footer h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 600;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.social-icon-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity var(--transition-normal);
    border-radius: inherit;
}

.social-icon-footer svg {
    position: relative;
    z-index: 1;
    transition: transform var(--transition-normal);
}

.social-icon-footer:hover {
    transform: translateY(-5px) scale(1.05);
    border-color: rgba(139, 92, 246, 0.6);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
}

.social-icon-footer:hover::before {
    opacity: 1;
}

.social-icon-footer:hover svg {
    transform: scale(1.15) rotate(5deg);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .social-links-nav {
        display: none;
    }
    
    .nav-actions {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .social-icons {
        justify-content: flex-start;
    }
    
    .social-icon-footer {
        width: 40px;
        height: 40px;
    }
    
    /* Mobile Navigation Improvements */
    .nav-menu.active {
        animation: slideDown 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

/* ====================
   ENHANCED FTMO CARDS WITH COLORFUL TITLES
   ==================== */

/* Colorful gradient titles for FTMO cards */
.ftmo-card.card-left h3 {
    background: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.ftmo-card.card-center h3 {
    background: linear-gradient(135deg, #10B981 0%, #3B82F6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.ftmo-card.card-right h3 {
    background: linear-gradient(135deg, #F59E0B 0%, #EF4444 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

/* Enhanced card spacing and readability */
.ftmo-card .card-content {
    padding: 0.5rem 0;
}

.ftmo-card p {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    text-align: justify;
}

/* Add subtle icon glow effect */
.ftmo-card h3::first-line {
    text-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}

/* ====================
   FAQ WHATSAPP LINK STYLING
   ==================== */

.faq-whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    text-decoration: none;
    border-radius: var(--radius-lg);
    font-weight: 600;
    margin-top: 1rem;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.faq-whatsapp-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
}

.faq-whatsapp-link:active {
    transform: translateY(-1px);
}

/* Mobile responsiveness for WhatsApp link */
@media (max-width: 768px) {
    .faq-whatsapp-link {
        display: flex;
        justify-content: center;
        width: 100%;
    }
}

/* ====================
   PRE-FEATURES CTA BUTTON
   ==================== */

.pre-features-cta {
    text-align: center;
    margin-bottom: 3rem;
    margin-top: -2rem;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pre-features-cta .btn-primary,
.pre-features-cta .btn-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* ====================
   BUTTON STYLING - DESKTOP & MOBILE BASE
   ==================== */

/* Desktop buttons - professional base styling */
.btn-primary,
.btn-secondary,
.btn-whatsapp {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    width: auto;
    min-width: auto;
    white-space: nowrap;
}

.btn-large {
    padding: 0.9rem 2rem;
    font-size: 1rem;
}
    
    .btn-large {
        padding: 0.75rem 1.5rem !important;
        font-size: 0.95rem !important;
    }
    
    .hero-buttons .btn-primary {
        padding: 0.75rem 1.5rem !important;
    }
}

/* ====================
   POPULAR BADGE FIX
   ==================== */

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #F59E0B 0%, #EF4444 100%);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    white-space: nowrap;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

/* Make sure pricing card has enough top padding for the badge */
.pricing-card.featured {
    margin-top: 1rem;
    padding-top: 2.5rem !important;
}

/* Mobile responsive badge */
@media (max-width: 768px) {
    .popular-badge {
        font-size: 0.75rem;
        padding: 0.35rem 0.8rem;
        top: -12px;
    }
    
    .pricing-card.featured {
        margin-top: 0.8rem;
        padding-top: 2.2rem !important;
    }
}