/* --- CSS Variables & Design System --- */
:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-card: #ffffff;
    
    --accent-color: #3b82f6; /* Bright Blue */
    --accent-glow: rgba(59, 130, 246, 0.25);
    --accent-hover: #2563eb;
    
    --gradient-primary: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
    
    --text-primary: #0f172a;
    --text-secondary: #475569;
    
    --font-main: 'Outfit', sans-serif;
    
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Bouncy transition */
    --border-radius: 16px;
}

/* --- Reset & Base --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-main); background-color: var(--bg-primary); color: var(--text-primary); line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* --- Typography & Utilities --- */
h1, h2, h3, h4 { font-weight: 800; line-height: 1.2; margin-bottom: 1rem; color: #0f172a; letter-spacing: -0.5px; }
h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); letter-spacing: -1.5px; }
h2 { font-size: clamp(2rem, 4vw, 3rem); }

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}
.accent-text { color: var(--accent-color); }

/* --- Layout --- */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 6rem 0; position: relative; }
.bg-darker { 
    background: linear-gradient(135deg, #f4f9ff 0%, #e0efff 100%); 
    position: relative; 
    overflow: hidden;
}
.bg-darker::before {
    content: ''; position: absolute; top: -20%; left: -10%; width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    border-radius: 50%; pointer-events: none; z-index: 0;
}
.bg-darker::after {
    content: ''; position: absolute; bottom: -20%; right: -10%; width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    border-radius: 50%; pointer-events: none; z-index: 0;
}
.bg-darker > .container { position: relative; z-index: 1; }
.text-center { text-align: center; }
.mt-5 { margin-top: 3rem; }

/* --- Elite Buttons --- */
.btn { 
    display: inline-flex; justify-content: center; align-items: center; gap: 8px;
    padding: 0.875rem 1.75rem; border-radius: 50px; font-weight: 700; font-size: 1rem; 
    cursor: pointer; transition: all 0.3s ease; border: 2px solid transparent; 
    text-align: center; position: relative; overflow: hidden;
}
.btn-large { padding: 1.125rem 2.5rem; font-size: 1.125rem; }
.btn-block { display: flex; width: 100%; }

.btn-primary { 
    background: var(--gradient-primary); color: #ffffff; 
    box-shadow: 0 10px 20px var(--accent-glow); border: none;
}
.btn-primary::after {
    content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: rgba(255,255,255,0.2); transform: rotate(45deg) translate(-150%, 0);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-primary:hover { 
    transform: translateY(-3px) scale(1.02); 
    box-shadow: 0 15px 30px rgba(59, 130, 246, 0.4); 
}
.btn-primary:hover::after { transform: rotate(45deg) translate(150%, 0); }

.btn-outline { 
    background-color: transparent; border-color: #cbd5e1; color: var(--text-primary); 
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}
.btn-outline:hover { 
    border-color: var(--accent-color); color: var(--accent-color); 
    transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.05); 
}

/* --- Navigation --- */
.navbar { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; padding: 1rem 0; transition: all 0.3s ease; border-bottom: 1px solid transparent; background-color: rgba(255,255,255,0.8); backdrop-filter: blur(20px); }
.navbar.scrolled { padding: 0.75rem 0; background-color: rgba(255, 255, 255, 0.97); border-bottom: 1px solid #e2e8f0; box-shadow: 0 4px 20px rgba(0,0,0,0.05); }
.nav-container { display: flex; justify-content: space-between; align-items: center; }

/* Corporate Elite Logo */
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; transition: opacity 0.2s ease; }
.logo:hover { opacity: 0.85; transform: none; }
.logo img { 
    height: 55px !important; 
    width: auto !important;
}
.logo-wordmark { display: none; }
.logo-name { color: var(--text-primary); font-size: 1.4rem; font-weight: 900; letter-spacing: -0.5px; }
.logo-name span { color: var(--accent-color); }
.logo-tagline { display: none; }

/* Mobile nav logo — injected via JS, only visible inside drawer */
.mobile-nav-logo-wrap {
    display: flex; justify-content: center; align-items: center;
    padding: 1.5rem 0 1rem; border-bottom: 1px solid #e2e8f0;
    margin-bottom: 0.5rem; width: 100%;
}
.mobile-nav-logo-wrap img { height: 48px; width: auto; }

.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a:not(.btn) { font-weight: 500; font-size: 0.9rem; color: var(--text-secondary); transition: color 0.3s ease; position: relative; letter-spacing: 0.02em; }
.nav-links a:not(.btn)::after { content: ''; position: absolute; width: 0; height: 2px; bottom: -4px; left: 0; background: var(--gradient-primary); transition: width 0.3s ease; border-radius: 2px; }
.nav-links a:not(.btn):hover { color: var(--text-primary); }
.nav-links a:not(.btn):hover::after { width: 100%; }

/* Mobile Menu */
.mobile-menu-btn { display: none; background: none; border: none; cursor: pointer; width: 30px; height: 20px; position: relative; z-index: 1001; }
.mobile-menu-btn span { display: block; width: 100%; height: 2px; background-color: var(--text-primary); position: absolute; transition: all 0.3s ease; border-radius: 2px; }
.mobile-menu-btn span:nth-child(1) { top: 0; }
.mobile-menu-btn span:nth-child(2) { top: 9px; }
.mobile-menu-btn span:nth-child(3) { top: 18px; }

/* --- Hero Section --- */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding-top: 80px; overflow: hidden; background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%); }
.grid-overlay { 
    position: absolute; top: 0; left: 0; width: 200%; height: 200%; 
    background-image: linear-gradient(rgba(59, 130, 246, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(59, 130, 246, 0.05) 1px, transparent 1px); 
    background-size: 60px 60px; z-index: 1; transform: perspective(500px) rotateX(60deg) translateY(-100px) translateZ(-200px);
    animation: panGrid 20s linear infinite;
}
@keyframes panGrid { 0% { transform: perspective(500px) rotateX(60deg) translateY(0) translateZ(-200px); } 100% { transform: perspective(500px) rotateX(60deg) translateY(60px) translateZ(-200px); } }

.glow-sphere { 
    position: absolute; top: 10%; left: 50%; width: 600px; height: 600px; 
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, rgba(59, 130, 246, 0.1) 40%, transparent 70%); 
    z-index: 1; border-radius: 50%; filter: blur(40px); pointer-events: none;
    animation: floatSphere 15s ease-in-out infinite alternate;
}
.glow-sphere-2 {
    position: absolute; bottom: 10%; right: -10%; width: 500px; height: 500px; 
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%); 
    z-index: 1; border-radius: 50%; filter: blur(40px); pointer-events: none;
    animation: floatSphere 20s ease-in-out infinite alternate-reverse;
}
@keyframes floatSphere { 0% { transform: translate(-50%, 0) scale(1); } 100% { transform: translate(-30%, 50px) scale(1.1); } }

.hero-content { position: relative; z-index: 2; text-align: center; max-width: 900px; }
.hero-badge { 
    display: inline-flex; align-items: center; gap: 0.5rem; background: #ffffff; 
    border: 1px solid #e2e8f0; color: var(--text-primary); padding: 0.5rem 1.25rem; 
    border-radius: 50px; font-size: 0.875rem; margin-bottom: 2rem; font-weight: 600; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); animation: floatBadge 3s ease-in-out infinite;
}
@keyframes floatBadge { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
.pulse-dot { 
    width: 10px; height: 10px; background-color: #10b981; border-radius: 50%; 
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); animation: pulseGreen 2s infinite; 
}
@keyframes pulseGreen { 70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); } 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); } }

.hero-subtitle { font-size: 1.25rem; color: var(--text-secondary); margin-bottom: 3rem; max-width: 700px; margin-left: auto; margin-right: auto; line-height: 1.8; }
.hero-cta { display: flex; gap: 1rem; justify-content: center; margin-bottom: 2rem; }

.hero-guarantee-box {
    display: inline-flex; align-items: center; justify-content: center; gap: 1rem;
    margin-bottom: 3rem; padding: 0.75rem 1.5rem; background: #ffffff;
    border: 1px solid #e2e8f0; border-left: 4px solid var(--accent-color); border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.03); text-align: left; transition: var(--transition);
}
.hero-guarantee-box:hover { transform: translateY(-3px); box-shadow: 0 15px 30px rgba(0,0,0,0.05); }
.hero-guarantee-icon {
    display: flex; align-items: center; justify-content: center;
    background: #f0f7ff; width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
}
.hero-guarantee-content { display: flex; flex-direction: column; }
.hero-guarantee-content strong { color: var(--text-primary); font-size: 0.95rem; line-height: 1.2; }
.hero-guarantee-content span { color: var(--text-secondary); font-size: 0.8rem; margin-top: 2px; }

.stats-row { 
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; 
    background: #ffffff; padding: 2rem; border-radius: var(--border-radius);
    box-shadow: 0 20px 40px rgba(0,0,0,0.04); border: 1px solid #e2e8f0;
}
.stat-card h3 { font-size: 3rem; background: var(--gradient-primary); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 0.25rem; }
.stat-card p { color: var(--text-secondary); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; font-size: 0.875rem; }

/* --- Results Section --- */
.section-header { margin-bottom: 4rem; position: relative; z-index: 2; }
.section-desc { color: var(--text-secondary); font-size: 1.125rem; max-width: 600px; margin: 0 auto; }

.highlight-result { 
    display: grid; grid-template-columns: 1.2fr 1fr; gap: 4rem; align-items: center; 
    background: #ffffff; border: 1px solid #e2e8f0; border-radius: 24px; padding: 4rem; 
    box-shadow: 0 20px 50px rgba(0,0,0,0.06); position: relative; overflow: hidden;
}
.highlight-result::before {
    content: ''; position: absolute; top: 0; right: 0; width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(59,130,246,0.1), transparent); border-radius: 50%;
}
.result-text h3 { font-size: 3rem; margin-bottom: 1.5rem; color: var(--text-primary); }
.result-text p { color: var(--text-secondary); font-size: 1.125rem; line-height: 1.8; }

.glow-effect { position: relative; perspective: 1000px; }
.result-img { border-radius: 12px; box-shadow: 0 20px 40px rgba(0,0,0,0.15); width: 100%; transition: transform 0.5s ease; transform: rotateY(-5deg) rotateX(5deg); }
.glow-effect:hover .result-img { transform: rotateY(0) rotateX(0) translateY(-5px); }

.results-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; }
.result-card { 
    background: #ffffff; border-radius: var(--border-radius); overflow: hidden; 
    border: 1px solid #e2e8f0; transition: var(--transition); box-shadow: 0 4px 10px rgba(0,0,0,0.03); 
}
.result-card:hover { transform: translateY(-10px) scale(1.02); border-color: #bfdbfe; box-shadow: 0 20px 40px rgba(59, 130, 246, 0.1); }
.card-img-wrapper { height: 200px; overflow: hidden; background: #f8fafc; position: relative; }
.card-img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.result-card:hover .card-img-wrapper img { transform: scale(1.08); }
.card-body { padding: 1.5rem; border-top: 1px solid #e2e8f0; }
.card-body h4 { margin-bottom: 0.25rem; font-size: 1.25rem; color: var(--text-primary); }
.card-body .date { color: var(--accent-color); font-weight: 600; font-size: 0.875rem; }

/* --- Services Section --- */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2.5rem; max-width: 1000px; margin: 0 auto; }
.pricing-card { 
    background: #ffffff; border-radius: 24px; padding: 3.5rem 2.5rem; border: 1px solid #e2e8f0; 
    display: flex; flex-direction: column; position: relative; transition: var(--transition); 
    box-shadow: 0 10px 20px rgba(0,0,0,0.03); 
}
.pricing-card:hover { transform: translateY(-10px); box-shadow: 0 30px 60px rgba(0,0,0,0.08); }

/* The Elite Premium Card */
.pricing-card.premium { border: none; background: transparent; box-shadow: 0 20px 50px rgba(59, 130, 246, 0.15); transform: scale(1.05); z-index: 1; }
.pricing-card.premium:hover { transform: scale(1.05) translateY(-10px); }
.pricing-card.premium::before {
    content: ""; position: absolute; inset: -4px; border-radius: 28px;
    background: linear-gradient(45deg, #3b82f6, #6366f1, #3b82f6, #8b5cf6);
    background-size: 300% 300%; z-index: -2; animation: gradientBorder 4s ease infinite;
}
.pricing-card.premium::after {
    content: ""; position: absolute; inset: 0; border-radius: 24px;
    background: #ffffff; z-index: -1;
}
@keyframes gradientBorder { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }

.premium-badge { 
    position: absolute; top: -15px; left: 50%; transform: translateX(-50%); 
    background: var(--gradient-primary); color: #ffffff; padding: 0.5rem 1.5rem; 
    border-radius: 30px; font-size: 0.875rem; font-weight: 800; text-transform: uppercase; 
    box-shadow: 0 4px 15px rgba(59,130,246,0.4); letter-spacing: 1px; z-index: 2;
}

/* Mentorship Capacity Status */
.mentorship-status {
    margin: 1.5rem 0 1rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}
.status-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    color: #64748b;
}
.status-labels .spots-left {
    color: #ef4444;
}
.status-bar-bg {
    height: 6px;
    background: #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
}
.status-bar-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
}
.card-header { text-align: center; margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid #e2e8f0; }
.card-header h3 { font-size: 1.75rem; color: var(--text-primary); margin-bottom: 0; }
.price { 
    display: flex; justify-content: center; align-items: flex-start; 
    font-size: 3.5rem; font-weight: 900; color: var(--text-primary); 
    margin: 1.5rem 0; line-height: 1; letter-spacing: -2px; 
}
.price span:first-child { 
    font-size: 1.5rem; font-weight: 700; color: var(--text-secondary); 
    letter-spacing: 0; margin-top: 0.5rem; margin-right: 4px;
}
.price .period { 
    font-size: 1.125rem; color: var(--text-secondary); font-weight: 600; 
    letter-spacing: 0; align-self: flex-end; margin-bottom: 0.5rem; margin-left: 4px;
}
.card-header p { color: var(--text-secondary); font-size: 1rem; margin: 0; }
.features-list { margin-bottom: 3rem; }
.features-list li { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.25rem; color: var(--text-primary); font-weight: 500; }
.icon-check { 
    color: #ffffff; background: var(--gradient-primary); font-style: normal; font-weight: bold; 
    width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; 
    border-radius: 50%; font-size: 0.75rem; flex-shrink: 0; margin-top: 2px;
}

/* --- Testimonials --- */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.testimonial-card { 
    background: #ffffff; padding: 2.5rem 2rem; border-radius: var(--border-radius); 
    border: 1px solid #e2e8f0; border-top: 4px solid var(--accent-color); 
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); position: relative; overflow: hidden;
    transition: var(--transition);
}
.timeline-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; position: relative; z-index: 2;
}
.timeline-grid::before {
    content: ''; position: absolute; top: 40px; left: 10%; right: 10%; height: 2px;
    background: linear-gradient(90deg, transparent, #bfdbfe, transparent); z-index: -1;
}
.timeline-step {
    background: transparent; padding: 1.5rem; border: none; box-shadow: none; text-align: center; transition: var(--transition);
}
.timeline-step:hover { transform: translateY(-5px); }
.step-number {
    width: 60px; height: 60px; background: #ffffff; color: var(--accent-color);
    border: 2px solid var(--accent-color); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; font-weight: 800; margin: 0 auto 1.5rem; box-shadow: 0 10px 20px rgba(59, 130, 246, 0.15); transition: all 0.3s ease;
}
.timeline-step:hover .step-number { background: var(--gradient-primary); color: white; transform: scale(1.1); box-shadow: 0 15px 30px rgba(59, 130, 246, 0.3); }
.timeline-step h4 { color: var(--text-primary); font-size: 1.25rem; margin-bottom: 0.5rem; }
.timeline-step p { color: var(--text-secondary); font-size: 1rem; }

.guarantee-box {
    max-width: 850px; margin: 4rem auto 0; background: #ffffff;
    border: 1px solid #e2e8f0; border-left: 6px solid var(--accent-color);
    border-radius: 16px; padding: 3rem; display: flex; gap: 2.5rem; align-items: flex-start;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05); position: relative; overflow: hidden;
}
.guarantee-box::after {
    content: '🛡️'; position: absolute; right: -20px; bottom: -40px;
    font-size: 15rem; opacity: 0.02; line-height: 1; pointer-events: none;
}
.guarantee-icon { display: flex; align-items: center; justify-content: center; flex-shrink: 0; background: #f0f7ff; width: 70px; height: 70px; border-radius: 50%; box-shadow: inset 0 0 0 2px rgba(59, 130, 246, 0.1); }
.guarantee-content h4 { font-size: 1.5rem; color: var(--text-primary); margin-bottom: 0.5rem; margin-top: 0.5rem; }
.guarantee-content p { color: var(--text-secondary); font-size: 1.05rem; margin: 0; line-height: 1.6; }
.testimonial-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); }
.testimonial-card::before { content: '"'; position: absolute; top: -10px; right: 20px; font-size: 8rem; color: #f8fafc; font-family: serif; line-height: 1; z-index: 0; transition: color 0.3s ease; }
.testimonial-card:hover::before { color: #eff6ff; }
.stars { color: #fbbf24; font-size: 1.25rem; margin-bottom: 1rem; position: relative; z-index: 1;}
.testimonial-text { font-size: 1.125rem; font-style: italic; margin-bottom: 1.5rem; color: var(--text-primary); position: relative; z-index: 1; line-height: 1.7; }
.client-profile { display: flex; align-items: center; gap: 1rem; margin-top: 1.5rem; position: relative; z-index: 1; }
.client-avatar { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; border: 2px solid #e2e8f0; }
.client-avatar-placeholder { width: 50px; height: 50px; border-radius: 50%; background: var(--gradient-primary); color: white; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.25rem; }
.client-info strong { display: block; color: var(--text-primary); font-size: 1.125rem; font-weight: 800; }
.client-info span { font-size: 0.875rem; color: var(--accent-color); font-weight: 600; text-transform: uppercase; }

/* --- FAQ --- */
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { background: #ffffff; border: 1px solid #e2e8f0; border-radius: 12px; margin-bottom: 1rem; overflow: hidden; box-shadow: 0 4px 6px rgba(0,0,0,0.02); transition: var(--transition); }
.faq-item:hover { box-shadow: 0 10px 20px rgba(0,0,0,0.05); border-color: #cbd5e1; }
.faq-item summary { 
    padding: 1.5rem 2rem; font-size: 1.125rem; font-weight: 700; cursor: pointer; list-style: none; 
    display: flex; justify-content: space-between; align-items: center; transition: var(--transition); 
    background: #ffffff; color: var(--text-primary); 
}
.faq-item summary:hover { background: #f8fafc; color: var(--accent-color); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { 
    content: '▼'; color: var(--accent-color); font-size: 0.875rem; font-weight: 900; 
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1); 
    background: #eff6ff; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; border-radius: 50%;
}
.faq-item[open] summary::after { transform: rotate(-180deg); background: var(--accent-color); color: white; }
.faq-item[open] summary { border-bottom: 1px solid #e2e8f0; background: #f8fafc; }
.faq-content { padding: 2rem; color: var(--text-secondary); line-height: 1.7; animation: fadeInDown 0.4s ease-out; font-size: 1.05rem; }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }

/* --- Contact Section --- */
.cta-box { 
    background: var(--gradient-primary); border-radius: 24px; padding: 5rem 3rem; text-align: center; 
    position: relative; overflow: hidden; box-shadow: 0 20px 50px rgba(59, 130, 246, 0.3); color: white;
}
.cta-box::before { 
    content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; 
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 60%); pointer-events: none; 
}
.cta-content { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
.cta-content h2 { color: white; }
.cta-content p { color: rgba(255,255,255,0.9); margin-bottom: 2.5rem; font-size: 1.125rem; }
.contact-form { text-align: left; background: white; padding: 2rem; border-radius: 16px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.form-group { margin-bottom: 1.5rem; }
.contact-form input, .contact-form select { 
    width: 100%; padding: 1.25rem; background: #f8fafc; border: 1px solid #e2e8f0; 
    border-radius: 8px; color: var(--text-primary); font-family: var(--font-main); font-size: 1rem; 
    transition: var(--transition); font-weight: 500;
}
.contact-form input:focus, .contact-form select:focus { outline: none; border-color: var(--accent-color); background: white; box-shadow: 0 0 0 4px rgba(59,130,246,0.1); }
.contact-form .btn { margin-top: 1rem; }

/* --- Footer --- */
.footer { background-color: #f8fafc; padding: 6rem 0 3rem; border-top: 1px solid #e2e8f0; position: relative; }
.footer-content { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 4rem; margin-bottom: 4rem; align-items: start; }
.footer-brand { display: flex; flex-direction: column; gap: 1.5rem; }
.footer-brand p { color: var(--text-secondary); margin: 0; max-width: 320px; font-size: 0.95rem; line-height: 1.7; }
.footer-email { color: var(--text-primary); font-weight: 700; font-size: 0.95rem; display: flex; align-items: center; gap: 0.6rem; text-decoration: none; transition: color 0.3s ease; }
.footer-email:hover { color: var(--accent-color); }
.footer-links h4, .footer-social h4, .footer-newsletter h4 { margin-bottom: 1.25rem; font-size: 0.85rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-primary); }
.footer-links a { display: block; color: var(--text-secondary); margin-bottom: 0.75rem; transition: var(--transition); font-weight: 500; font-size: 0.9rem; text-decoration: none; }
.footer-links a:hover { color: var(--accent-color); transform: translateX(5px); }
.footer-newsletter p { color: var(--text-secondary); font-size: 0.9rem; margin-bottom: 1.25rem; line-height: 1.5; }
.footer-form { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-form input { padding: 0.8rem 1rem; border: 1px solid #e2e8f0; border-radius: 8px; font-family: inherit; font-size: 0.9rem; transition: border-color 0.3s ease; }
.footer-form input:focus { outline: none; border-color: var(--accent-color); }
.footer-form .btn { padding: 0.8rem; font-size: 0.85rem; }
.social-icons { display: flex; gap: 0.75rem; }
.social-icons a { width: 38px; height: 38px; background: #ffffff; border: 1px solid #e2e8f0; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--text-primary); transition: var(--transition); font-weight: 700; font-size: 0.75rem; text-decoration: none; }
.social-icons a:hover { background: var(--accent-color); color: #ffffff; border-color: var(--accent-color); transform: translateY(-3px); box-shadow: 0 8px 16px var(--accent-glow); }
.footer-disclaimer { color: #94a3b8; font-size: 0.75rem; text-align: justify; padding: 2rem 0; border-top: 1px solid #e2e8f0; border-bottom: 1px solid #e2e8f0; margin-bottom: 1.5rem; line-height: 1.6; }
.footer-bottom { text-align: center; color: var(--text-secondary); font-size: 0.8rem; font-weight: 500; }
.footer .logo span { color: var(--text-primary) !important; }

/* --- Stats Dashboard --- */
.stats-dashboard {
    background: #0f172a;
    border-radius: 24px;
    padding: 3rem;
    color: white;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 2rem;
    align-items: center;
}

.stats-card-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.stat-mini-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 1.25rem;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-mini-card .label {
    font-size: 0.75rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-icon {
    width: 14px;
    height: 14px;
    border: 1px solid currentColor;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    opacity: 0.5;
}

.stat-mini-card .value {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
}

.account-status-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 20px;
    position: relative;
}

.status-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 2rem;
}

.account-type .tag {
    background: #4f46e5;
    color: white;
    font-size: 0.7rem;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
}

.account-type h4 {
    margin-top: 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.status-tag {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.status-tag.active {
    background: rgba(34, 197, 94, 0.1);
    color: #4ade80;
    border: 1px solid rgba(74, 222, 128, 0.2);
}

.balance-stats {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.balance-item .label {
    display: block;
    font-size: 0.8rem;
    color: #94a3b8;
    margin-bottom: 0.5rem;
}

.balance-item .value {
    font-size: 1.25rem;
    font-weight: 700;
}

.balance-item .value.highlighted {
    font-size: 2.25rem;
    color: var(--accent-color);
    letter-spacing: -0.02em;
}

.progress-bar-container {
    background: rgba(255,255,255,0.05);
    height: 8px;
    border-radius: 4px;
    position: relative;
    margin-bottom: 0.75rem;
}

.progress-bar {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 4px;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.5);
}

.progress-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 600;
}

.gauge-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
}

.gauge-container {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
}

.gauge-ring {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: conic-gradient(#22c55e 0deg 273deg, #1e293b 273deg 360deg);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gauge-ring::before {
    content: '';
    position: absolute;
    width: 130px;
    height: 130px;
    background: #0f172a;
    border-radius: 50%;
}

.gauge-center {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
}

.gauge-center .excellent {
    font-size: 0.75rem;
    color: white;
    font-weight: 700;
    background: rgba(255,255,255,0.1);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    margin-bottom: 0.25rem;
}

.gauge-center .rate {
    font-size: 2rem;
    font-weight: 800;
    color: white;
}

.gauge-center .subtext {
    font-size: 0.7rem;
    color: #64748b;
    text-transform: uppercase;
    font-weight: 700;
}

.dashboard-footer {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.verified-badge {
    color: #4ade80;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.last-updated {
    color: #64748b;
    font-size: 0.85rem;
}

@media (max-width: 1200px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    .stats-card-group {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .stats-card-group {
        grid-template-columns: repeat(2, 1fr);
    }
    .stats-dashboard {
        padding: 1.25rem;
        overflow: hidden;
    }
    /* Stack the 3-col dashboard grid to single column */
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    /* Fix account status card — stack balance items vertically and reduce font sizes */
    .account-status-card {
        padding: 1.25rem;
    }
    .balance-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 1rem;
    }
    .balance-item .value.highlighted {
        font-size: 1.75rem;
    }
    .balance-item .value {
        font-size: 1rem;
    }
    .status-header {
        margin-bottom: 1rem;
    }
    .account-type h4 {
        font-size: 1rem;
    }
    .progress-labels {
        font-size: 0.65rem;
    }
}

/* --- Animations & Utilities --- */
.reveal { opacity: 0; transform: translateY(40px); transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }
.fade-in-up { animation: fadeInUp 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards; opacity: 0; }
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }

/* --- Responsive --- */
@media (max-width: 992px) { 
    .highlight-result { grid-template-columns: 1fr; gap: 2rem; padding: 2.5rem; } 
    .footer-content { grid-template-columns: 1fr; gap: 2.5rem; } 
    .pricing-card.premium { transform: none; }
    .pricing-card.premium:hover { transform: translateY(-10px); }
}
.mobile-sticky-cta { display: none; }

@media (max-width: 768px) {
    .hero-cta { flex-direction: column; }
    .stats-row { grid-template-columns: 1fr; gap: 1.5rem; padding: 1.5rem; }
    .mobile-menu-btn { display: block; }
    .nav-links { position: fixed; top: 0; right: -100%; width: 80%; max-width: 300px; height: 100vh; background: rgba(255,255,255,0.98); backdrop-filter: blur(20px); flex-direction: column; justify-content: center; transition: 0.4s cubic-bezier(0.77, 0, 0.175, 1); box-shadow: -10px 0 30px rgba(0,0,0,0.1); z-index: 1000; border-left: 1px solid #e2e8f0; }
    .nav-links.active { right: 0; }
    .mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg); top: 9px; }
    .mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
    .mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg); top: 9px; }
    
    .guarantee-box { flex-direction: column; text-align: center; gap: 1.5rem; padding: 2.5rem 1.5rem; align-items: center; border-left: 1px solid #e2e8f0; border-top: 4px solid var(--accent-color); }
    .guarantee-box::after { display: none; }
    
    .mobile-sticky-cta {
        display: block; position: fixed; bottom: 0; left: 0; width: 100%;
        background: rgba(255, 255, 255, 0.98); backdrop-filter: blur(10px);
        padding: 1rem; box-shadow: 0 -10px 30px rgba(0,0,0,0.1); z-index: 1000;
        border-top: 1px solid #e2e8f0;
    }
    .mobile-sticky-cta .btn { width: 100%; box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3); }
    body { padding-bottom: 80px; }
    
    /* Show logo at top of mobile drawer — injected via JS */
    
    .highlight-result { padding: 1.5rem; gap: 1.5rem; }
    .results-grid { grid-template-columns: 1fr; }
    .section { padding: 4rem 0; }
}

/* --- Verified Equity Curve Dashboard --- */
.equity-curve-section {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 2.5rem;
    margin-top: 3rem;
}

.curve-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.curve-title .tag {
    background: rgba(139, 92, 246, 0.1);
    color: #a78bfa;
    font-size: 0.7rem;
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
}

.curve-title h3 {
    margin-top: 0.75rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
}

.curve-stats {
    display: flex;
    gap: 3rem;
}

.c-stat .c-label {
    display: block;
    font-size: 0.75rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.c-stat .c-value {
    font-size: 1.25rem;
    font-weight: 800;
    color: white;
}

.c-stat.highlight .c-value {
    color: #4ade80;
}

.curve-graph-container {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: 1fr auto;
    gap: 1rem;
    position: relative;
    padding-left: 1rem;
}

.y-axis {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 10px 0;
    color: #64748b;
    font-size: 0.7rem;
    font-weight: 700;
    text-align: right;
    min-width: 45px;
}

.x-axis {
    grid-column: 2;
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    color: #64748b;
    font-size: 0.7rem;
    font-weight: 700;
}

.curve-graph-placeholder {
    grid-column: 2;
    height: 300px;
    width: 100%;
    position: relative;
    background: linear-gradient(to bottom, rgba(30, 41, 59, 0.3), transparent);
    border-bottom: 2px solid rgba(255,255,255,0.1);
    border-left: 2px solid rgba(255,255,255,0.1);
    overflow: hidden;
}

.curve-graph-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}

.graph-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.graph-fill {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(59, 130, 246, 0.2), transparent);
    clip-path: polygon(0% 90%, 15% 85%, 30% 88%, 45% 75%, 60% 80%, 75% 40%, 90% 25%, 100% 10%, 100% 100%, 0% 100%);
    z-index: 1;
}

.graph-points .point {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #3b82f6;
    border: 2px solid #0f172a;
    border-radius: 50%;
    transform: translate(-50%, 50%);
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.8);
    z-index: 3;
}

@media (max-width: 992px) {
    .curve-stats { gap: 1.5rem; }
    .curve-header { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
}

@media (max-width: 768px) {
    .equity-curve-section { padding: 1rem; width: 100%; box-sizing: border-box; margin-top: 2rem; overflow: hidden; }
    .curve-graph-container { padding-left: 0; gap: 0.25rem; overflow: hidden; }
    .curve-graph-placeholder { height: 200px; }
    .y-axis { min-width: 30px; font-size: 0.55rem; }
    .x-axis { font-size: 0.55rem; }
    .curve-stats { flex-wrap: wrap; gap: 0.75rem; }
    .c-stat .c-value { font-size: 1rem; }
    .curve-header { gap: 1rem; }
    
    /* Reduce logo size on mobile so it doesn't cover hero content */
    .logo img { height: 38px !important; }
    .navbar { padding: 0.6rem 0; }
    
    /* Push hero down enough for smaller mobile navbar */
    .hero { padding-top: 100px; }
    
    /* Fix payout image cards — remove fixed height so images show fully */
    .card-img-wrapper { height: auto; }
    .card-img-wrapper img { height: auto; object-fit: contain; }
    
    /* Fix dashboard stats overflow on small screens */
    .c-stat { display: flex; justify-content: space-between; align-items: center; }
    .c-stat .c-label { margin-bottom: 0; }
    
    /* Add extra bottom padding to footer so sticky CTA doesn't cover it */
    footer { padding-bottom: 90px; }
}
