/* ============================================================
   Elite Real Estate Pro - Sleek, Ambitious, High-Energy
   Palette: Near-black (#0b0b1a) + Electric purple (#8b5cf6) + Blue (#3b82f6) + Green (#10b981) + White
   Vibe: Premium fintech - Robinhood / Revolut
   ============================================================ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Space Grotesk', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #0b0b1a; color: #c8c8e0; line-height: 1.7; overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; }

/* Geometric grid pattern */
body::before {
    content: ''; position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none;
    background-image:
        linear-gradient(rgba(139, 92, 246, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 92, 246, 0.03) 1px, transparent 1px);
    background-size: 48px 48px;
}
body > * { position: relative; z-index: 1; }

/* ========== ANIMATIONS ========== */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}
@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(139, 92, 246, 0.3), 0 0 40px rgba(139, 92, 246, 0.1); }
    50% { box-shadow: 0 0 30px rgba(139, 92, 246, 0.5), 0 0 60px rgba(139, 92, 246, 0.2); }
}
@keyframes neonPulse {
    0%, 100% { box-shadow: 0 0 5px rgba(139, 92, 246, 0.3), 0 0 20px rgba(139, 92, 246, 0.1), inset 0 0 5px rgba(139, 92, 246, 0.05); }
    50% { box-shadow: 0 0 10px rgba(139, 92, 246, 0.5), 0 0 40px rgba(139, 92, 246, 0.15), inset 0 0 10px rgba(139, 92, 246, 0.08); }
}
@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.05); }
    66% { transform: translate(-20px, 10px) scale(0.95); }
}
@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-25px, 15px) scale(0.95); }
    66% { transform: translate(15px, -25px) scale(1.05); }
}
@keyframes gradientText {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
@keyframes borderRotate {
    0% { --angle: 0deg; }
    100% { --angle: 360deg; }
}

.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.stagger > *:nth-child(1) { transition-delay: 0s; }
.stagger > *:nth-child(2) { transition-delay: 0.12s; }
.stagger > *:nth-child(3) { transition-delay: 0.24s; }
.stagger > *:nth-child(4) { transition-delay: 0.36s; }
.stagger > *:nth-child(5) { transition-delay: 0.48s; }

/* ========== NAVIGATION ========== */
.nav {
    position: fixed; top: 0; width: 100%; z-index: 1000;
    background: rgba(11, 11, 26, 0.8);
    backdrop-filter: blur(24px) saturate(1.8); -webkit-backdrop-filter: blur(24px) saturate(1.8);
    border-bottom: 1px solid rgba(139, 92, 246, 0.08);
    transition: all 0.4s;
}
.nav.scrolled {
    background: rgba(11, 11, 26, 0.95);
    border-bottom-color: rgba(139, 92, 246, 0.15);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}
.nav-container {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between;
    height: 80px; transition: height 0.3s;
}
.nav.scrolled .nav-container { height: 64px; }
.nav-brand a { font-size: 1.5rem; font-weight: 800; color: #fff; letter-spacing: -0.03em; }
.brand-accent { color: #8b5cf6; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: rgba(200, 200, 224, 0.7); font-weight: 500; font-size: 0.9rem; transition: color 0.3s; position: relative; }
.nav-links a:hover { color: #fff; }
.nav-links a::after {
    content: ''; position: absolute; bottom: -6px; left: 50%; width: 0; height: 2px;
    background: linear-gradient(90deg, #8b5cf6, #3b82f6);
    transition: width 0.3s, left 0.3s; border-radius: 1px;
}
.nav-links a:hover::after { width: 100%; left: 0; }
.nav-cta {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed) !important; color: #fff !important;
    padding: 10px 24px !important; border-radius: 10px; font-weight: 700 !important;
    transition: transform 0.3s, box-shadow 0.3s !important; border: none;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 30px rgba(139, 92, 246, 0.4);
}
.nav-mobile { display: none; }
.menu-toggle { background: none; border: none; color: #fff; font-size: 1.5rem; cursor: pointer; padding: 8px; }

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

.section-divider-wide {
    height: 1px; width: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.2), rgba(59, 130, 246, 0.2), transparent);
}

/* ========== BUTTONS ========== */
.btn-primary {
    display: inline-block; padding: 16px 36px; border-radius: 12px;
    font-weight: 700; font-size: 1rem; color: #fff;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative; overflow: hidden; animation: pulseGlow 3s ease-in-out infinite;
    border: none; cursor: pointer;
}
.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.45);
}
.btn-primary::before {
    content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.6s;
}
.btn-primary:hover::before { left: 100%; }
.btn-secondary {
    display: inline-block; padding: 16px 36px; border-radius: 12px;
    font-weight: 600; font-size: 1rem; color: #8b5cf6;
    border: 2px solid rgba(139, 92, 246, 0.3); background: rgba(139, 92, 246, 0.04);
    transition: all 0.3s; backdrop-filter: blur(10px);
}
.btn-secondary:hover {
    border-color: #8b5cf6; background: rgba(139, 92, 246, 0.12);
    transform: translateY(-3px); box-shadow: 0 8px 30px rgba(139, 92, 246, 0.15);
}
.btn-outline {
    display: inline-block; padding: 14px 32px; border-radius: 10px;
    font-weight: 600; color: #c8c8e0; border: 1px solid rgba(139, 92, 246, 0.3);
    background: rgba(139, 92, 246, 0.04); transition: all 0.3s;
}
.btn-outline:hover { background: rgba(139, 92, 246, 0.12); border-color: #8b5cf6; transform: translateY(-2px); }
.btn-large { padding: 20px 48px; font-size: 1.15rem; }
.btn-submit {
    display: inline-block; padding: 16px 36px; border-radius: 12px;
    font-weight: 700; font-size: 1rem; color: #fff; cursor: pointer;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed); border: none;
    transition: transform 0.3s, box-shadow 0.3s;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(139, 92, 246, 0.4); }
.path-btn {
    display: inline-block; padding: 12px 28px; border-radius: 10px;
    font-weight: 700; color: #fff;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    transition: transform 0.3s, box-shadow 0.3s;
}
.path-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(139, 92, 246, 0.3); }

/* ========== TYPOGRAPHY ========== */
h1 { font-size: 3.4rem; font-weight: 900; line-height: 1.05; color: #fff; margin-bottom: 24px; letter-spacing: -0.04em; }
h2 { font-size: 2.6rem; font-weight: 800; line-height: 1.12; color: #fff; margin-bottom: 16px; letter-spacing: -0.03em; }
h3 { font-size: 1.4rem; font-weight: 700; color: #fff; margin-bottom: 12px; }
h4 { font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
p { color: #8a8aa8; }
.accent { color: #8b5cf6; }
.accent-gold, .gold { color: #f59e0b; }
.section-subtitle { font-size: 1.15rem; color: #6a6a88; text-align: center; margin-bottom: 48px; max-width: 600px; margin-left: auto; margin-right: auto; }
.gradient-text {
    background: linear-gradient(135deg, #8b5cf6, #3b82f6, #10b981);
    background-size: 200% 200%;
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; animation: gradientText 4s ease infinite;
}
.hero-accent {
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-gradient {
    background: linear-gradient(135deg, #8b5cf6, #3b82f6, #10b981);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}

.icon-glow {
    display: inline-flex; align-items: center; justify-content: center;
    width: 64px; height: 64px; border-radius: 16px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.12), rgba(59, 130, 246, 0.08));
    font-size: 1.8rem; margin-bottom: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}
.icon-glow:hover { transform: scale(1.1) rotate(5deg); box-shadow: 0 0 30px rgba(139, 92, 246, 0.2); }

/* ========== HERO ========== */
.hero {
    padding: 160px 0 120px; position: relative; overflow: hidden; min-height: 100vh;
    display: flex; align-items: center;
    background: linear-gradient(135deg, #0b0b1a 0%, #0f0e24 25%, #12102e 50%, #0f0e24 75%, #0b0b1a 100%);
    background-size: 400% 400%; animation: gradientShift 20s ease infinite;
}
.hero::before {
    content: ''; position: absolute; top: -40%; right: -15%; width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    animation: orbFloat1 12s ease-in-out infinite;
}
.hero::after {
    content: ''; position: absolute; bottom: -20%; left: -10%; width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.06) 0%, transparent 70%);
    animation: orbFloat2 15s ease-in-out infinite;
}
.hero-container, .hero-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 60px; align-items: center;
    position: relative; z-index: 1;
}
.hero-content h1 { font-size: 3.8rem; margin-bottom: 24px; line-height: 1.05; }
.hero-sub, .hero-subtitle { font-size: 1.2rem; color: #6a6a88; margin-bottom: 36px; line-height: 1.8; max-width: 540px; }
.hero-ctas { display: flex; gap: 16px; margin-bottom: 40px; flex-wrap: wrap; }
.hero-proof { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.proof-item {
    font-weight: 600; font-size: 0.85rem; color: #8b5cf6;
    padding: 8px 16px; background: rgba(139, 92, 246, 0.06);
    border-radius: 24px; border: 1px solid rgba(139, 92, 246, 0.12);
}

.hero-visual { display: flex; justify-content: center; position: relative; }
.hero-card {
    background: rgba(15, 14, 36, 0.7); border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: 20px; padding: 32px; width: 100%; max-width: 380px;
    backdrop-filter: blur(20px); animation: float 6s ease-in-out infinite;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4), 0 0 60px rgba(139, 92, 246, 0.06);
}
.card-header { font-size: 0.85rem; color: #6a6a88; margin-bottom: 16px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; }
.card-stat { margin-bottom: 20px; }
.stat-number { display: block; font-size: 2.2rem; font-weight: 800; color: #10b981; line-height: 1; }
.stat-label { font-size: 0.85rem; color: #6a6a88; }
.card-progress { background: rgba(139, 92, 246, 0.08); height: 6px; border-radius: 3px; margin-bottom: 16px; overflow: hidden; }
.progress-bar { background: linear-gradient(90deg, #8b5cf6, #10b981); height: 100%; border-radius: 3px; }
.card-footer { font-size: 0.85rem; color: #6a6a88; }
.card-tag {
    display: inline-block; padding: 4px 12px; border-radius: 20px;
    font-size: 0.75rem; font-weight: 600; margin-bottom: 16px;
    background: rgba(139, 92, 246, 0.12); color: #8b5cf6;
}

/* ========== SECTIONS ========== */
.problem { padding: 120px 0; background: rgba(8, 8, 20, 0.6); }
.problem h2 { text-align: center; margin-bottom: 56px; }
.problem-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; }
.problem-item {
    text-align: center; padding: 40px 28px;
    background: rgba(139, 92, 246, 0.03); border: 1px solid rgba(139, 92, 246, 0.08);
    border-radius: 20px; transition: transform 0.4s, box-shadow 0.4s, border-color 0.4s;
    backdrop-filter: blur(10px);
}
.problem-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 50px rgba(139, 92, 246, 0.08);
    border-color: rgba(139, 92, 246, 0.2);
}
.problem-item h3 { color: #ef4444; margin-bottom: 12px; }
.problem-item p { color: #6a6a88; line-height: 1.7; font-size: 0.95rem; }

.solution { padding: 120px 0; }
.solution h2 { text-align: center; margin-bottom: 12px; }
.solution-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 56px 0; }
.solution-card {
    background: rgba(139, 92, 246, 0.03); border: 1px solid rgba(139, 92, 246, 0.08);
    border-radius: 20px; padding: 36px; position: relative;
    transition: transform 0.4s, box-shadow 0.4s, border-color 0.4s;
    backdrop-filter: blur(10px);
}
.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 40px rgba(139, 92, 246, 0.1), 0 16px 50px rgba(0,0,0,0.2);
    border-color: rgba(139, 92, 246, 0.3);
}
.solution-card.featured { border-color: rgba(139, 92, 246, 0.3); animation: neonPulse 4s ease-in-out infinite; }
.card-badge {
    position: absolute; top: -12px; left: 30px;
    background: linear-gradient(135deg, #8b5cf6, #3b82f6); color: #fff;
    padding: 6px 18px; border-radius: 20px; font-size: 0.8rem; font-weight: 700;
}
.solution-card h3 { margin-bottom: 12px; }
.solution-card p { color: #6a6a88; margin-bottom: 20px; }
.card-results { margin-bottom: 24px; padding: 16px; background: rgba(139, 92, 246, 0.06); border-radius: 12px; text-align: center; }
.result-stat { display: block; font-size: 1.6rem; font-weight: 800; color: #8b5cf6; line-height: 1; }
.result-desc { font-size: 0.85rem; color: #6a6a88; }
.card-benefits li { padding: 10px 0 10px 28px; color: #8a8aa8; position: relative; border-bottom: 1px solid rgba(139, 92, 246, 0.04); }
.card-benefits li:last-child { border-bottom: none; }
.card-benefits li::before { content: "\2713"; position: absolute; left: 0; color: #10b981; font-weight: 700; }
.solution-guarantee {
    text-align: center; padding: 36px; background: rgba(16, 185, 129, 0.04);
    border: 1px solid rgba(16, 185, 129, 0.12); border-radius: 20px; margin-top: 40px;
}
.solution-guarantee h4 { color: #10b981; margin-bottom: 12px; font-size: 1.2rem; }
.solution-guarantee p { color: #6a6a88; font-size: 1.05rem; }

.services-preview { padding: 120px 0; background: rgba(8, 8, 20, 0.6); }
.services-preview h2 { text-align: center; margin-bottom: 12px; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; margin: 56px 0; }
.services-grid-detailed { display: grid; grid-template-columns: 1fr; gap: 24px; margin: 56px 0; }
.service-item, .service-card, .service-card-detailed {
    background: rgba(139, 92, 246, 0.03); border: 1px solid rgba(139, 92, 246, 0.08);
    border-radius: 20px; padding: 36px; text-align: center;
    transition: transform 0.4s, box-shadow 0.4s, border-color 0.4s;
    backdrop-filter: blur(10px);
}
.service-item:hover, .service-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.1), 0 20px 60px rgba(0,0,0,0.2);
    border-color: rgba(139, 92, 246, 0.25);
}
.service-item h3 { margin-bottom: 12px; }
.service-item p { color: #6a6a88; line-height: 1.7; font-size: 0.95rem; }
.services-cta { text-align: center; margin-top: 48px; }
.service-header { margin-bottom: 16px; }
.service-details li, .service-list li, .service-features li { padding: 8px 0 8px 24px; color: #8a8aa8; position: relative; }
.service-details li::before, .service-list li::before, .service-features li::before { content: "\2713"; position: absolute; left: 0; color: #10b981; font-weight: 700; }

.testimonials { padding: 120px 0; }
.testimonials h2 { text-align: center; margin-bottom: 56px; }
.steps-flow { max-width: 800px; margin: 0 auto; position: relative; }
.steps-flow::before {
    content: ''; position: absolute; left: 32px; top: 0; bottom: 0; width: 2px;
    background: linear-gradient(to bottom, #8b5cf6, #3b82f6, #10b981);
}
.deliver-step { display: flex; gap: 24px; margin-bottom: 48px; position: relative; }
.deliver-step:last-child { margin-bottom: 0; }
.step-num {
    flex-shrink: 0; width: 64px; height: 64px; border-radius: 50%;
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    display: flex; align-items: center; justify-content: center;
    font-weight: 900; font-size: 1.4rem; color: #fff; position: relative; z-index: 1;
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.3);
}
.step-body {
    background: rgba(139, 92, 246, 0.03); border: 1px solid rgba(139, 92, 246, 0.08);
    border-radius: 20px; padding: 28px; flex: 1;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    backdrop-filter: blur(10px);
}
.step-body:hover { transform: translateX(8px); border-color: rgba(139, 92, 246, 0.2); box-shadow: 0 0 20px rgba(139, 92, 246, 0.06); }
.step-body h3 { color: #8b5cf6; margin-bottom: 8px; font-size: 1.2rem; }
.step-body p { color: #6a6a88; line-height: 1.7; font-size: 0.95rem; }
.social-proof-note { text-align: center; margin-top: 40px; }
.social-proof-note p { color: #4a4a68; font-style: italic; }
.social-proof-note a { color: #8b5cf6; font-weight: 600; }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 24px; }
.testimonial { background: rgba(139, 92, 246, 0.03); border: 1px solid rgba(139, 92, 246, 0.08); border-radius: 20px; padding: 32px; }
.testimonial-content p { color: #8a8aa8; font-style: italic; line-height: 1.7; margin-bottom: 20px; }
.testimonial-author strong { color: #fff; }
.testimonial-author span { color: #4a4a68; font-size: 0.9rem; }

/* Timeline */
.timeline-section { padding: 120px 0; }
.timeline { max-width: 800px; margin: 0 auto; position: relative; }
.timeline::before {
    content: ''; position: absolute; left: 20px; top: 0; bottom: 0; width: 2px;
    background: linear-gradient(to bottom, #8b5cf6, #3b82f6, #10b981);
}
.timeline-item { display: flex; gap: 24px; margin-bottom: 32px; position: relative; }
.timeline-marker {
    flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%;
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 0.9rem; color: #fff; z-index: 1;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}
.timeline-body {
    background: rgba(139, 92, 246, 0.03); border: 1px solid rgba(139, 92, 246, 0.08);
    border-radius: 16px; padding: 24px; flex: 1;
    transition: all 0.3s;
}
.timeline-body:hover { border-color: rgba(139, 92, 246, 0.2); transform: translateX(6px); }
.timeline-body h3 { color: #8b5cf6; margin-bottom: 8px; }
.timeline-body p { color: #6a6a88; }

/* Paths section */
.paths { padding: 120px 0; }
.paths-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 56px 0; }
.path-card {
    background: rgba(139, 92, 246, 0.03); border: 1px solid rgba(139, 92, 246, 0.08);
    border-radius: 20px; padding: 36px; text-align: center;
    transition: transform 0.4s, box-shadow 0.4s, border-color 0.4s;
    backdrop-filter: blur(10px);
}
.path-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 40px rgba(139, 92, 246, 0.1), 0 16px 50px rgba(0,0,0,0.2);
    border-color: rgba(139, 92, 246, 0.25);
}
.path-card.featured { border-color: rgba(139, 92, 246, 0.3); animation: neonPulse 4s ease-in-out infinite; }
.path-icon { font-size: 3rem; margin-bottom: 16px; display: block; }
.path-hook { color: #8b5cf6; font-weight: 700; margin: 12px 0; font-size: 1.1rem; }
.gold-border { border-color: rgba(245, 158, 11, 0.3); }
.green-border { border-color: rgba(16, 185, 129, 0.3); }
.purple-border { border-color: rgba(139, 92, 246, 0.3); }

/* FAQ */
.faq { padding: 120px 0; background: rgba(8, 8, 20, 0.6); }
.faq h2 { text-align: center; margin-bottom: 56px; }
.faq-list, .faq-grid { max-width: 800px; margin: 0 auto; }
.faq-item {
    background: rgba(139, 92, 246, 0.03); border: 1px solid rgba(139, 92, 246, 0.08);
    border-radius: 16px; margin-bottom: 12px; overflow: hidden;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.faq-item:hover { border-color: rgba(139, 92, 246, 0.2); box-shadow: 0 0 20px rgba(139, 92, 246, 0.05); }
.faq-question {
    padding: 22px 28px; cursor: pointer; display: flex; align-items: center; justify-content: space-between;
    font-weight: 600; color: #fff; font-size: 1.05rem; user-select: none; transition: color 0.2s;
}
.faq-question:hover { color: #8b5cf6; }
.faq-arrow { font-size: 1.2rem; color: #8b5cf6; transition: transform 0.3s; flex-shrink: 0; margin-left: 16px; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s; padding: 0 28px; }
.faq-item.open .faq-answer { max-height: 300px; padding: 0 28px 22px; }
.faq-answer p { color: #6a6a88; line-height: 1.7; }
.faq-item h3 { color: #8b5cf6; margin-bottom: 12px; }
.faq-item p { color: #6a6a88; line-height: 1.7; }

/* Final CTA */
.final-cta {
    padding: 120px 0; text-align: center;
    background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.06) 0%, transparent 60%);
}
.final-cta h2 { margin-bottom: 16px; }
.final-cta > .container > p { font-size: 1.15rem; color: #6a6a88; margin-bottom: 36px; }
.cta-guarantee {
    margin-top: 28px; padding: 24px 32px;
    background: rgba(139, 92, 246, 0.04); border: 1px solid rgba(139, 92, 246, 0.1);
    border-radius: 16px; display: inline-block;
}
.cta-guarantee p { color: #8a8aa8; font-size: 1rem; margin: 0; }
.cta-box, .cta-section {
    padding: 60px 40px; text-align: center; margin: 40px 0;
    background: rgba(139, 92, 246, 0.03); border: 1px solid rgba(139, 92, 246, 0.08);
    border-radius: 20px; backdrop-filter: blur(10px);
}
.cta-box h2, .cta-box h3, .cta-section h2, .cta-section h3 { margin-bottom: 16px; }
.cta-box p, .cta-section p { color: #6a6a88; margin-bottom: 24px; }
.cta-btn { display: inline-block; }

/* Footer */
.footer { background: #060612; padding: 0; }
.footer-divider { height: 2px; background: linear-gradient(90deg, transparent, #8b5cf6, #3b82f6, #10b981, transparent); }
.footer-inner { padding: 60px 0 30px; }
.footer-content { display: grid; grid-template-columns: 1.2fr 2fr; gap: 60px; margin-bottom: 40px; }
.footer-brand h3 { margin-bottom: 12px; font-size: 1.3rem; color: #fff; }
.footer-brand p { color: #4a4a68; line-height: 1.7; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.footer-column h4 { color: #8b5cf6; font-size: 1rem; margin-bottom: 16px; font-weight: 700; }
.footer-column ul li { margin-bottom: 10px; }
.footer-column ul li a { color: #4a4a68; transition: color 0.3s; font-size: 0.9rem; }
.footer-column ul li a:hover { color: #8b5cf6; }
.footer-bottom { border-top: 1px solid rgba(139, 92, 246, 0.08); padding-top: 24px; text-align: center; }
.footer-bottom p { color: #2a2a48; font-size: 0.85rem; }

/* Page header */
.page-header {
    padding: 160px 0 80px; text-align: center;
    background: radial-gradient(ellipse at 50% 0%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
    min-height: 50vh; display: flex; align-items: center; justify-content: center;
}
.page-header .container { width: 100%; }
.page-header h1 { margin-bottom: 16px; }
.page-header p { font-size: 1.2rem; color: #6a6a88; max-width: 600px; margin: 0 auto; }

/* Contact */
.contact { padding: 80px 0; }
.contact-content, .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-form {
    background: rgba(139, 92, 246, 0.03); border: 1px solid rgba(139, 92, 246, 0.08);
    border-radius: 20px; padding: 40px; backdrop-filter: blur(10px);
}
.contact-info { padding: 20px 0; }
.form-group { margin-bottom: 24px; }
.form-group label { display: block; color: #c8c8e0; font-weight: 600; margin-bottom: 8px; font-size: 0.95rem; }
.form-group input, .form-group textarea, .form-group select {
    width: 100%; padding: 14px 18px; background: rgba(11, 11, 26, 0.8);
    border: 1px solid rgba(139, 92, 246, 0.12); border-radius: 12px;
    color: #c8c8e0; font-size: 1rem; font-family: inherit;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    outline: none; border-color: #8b5cf6;
    box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.08);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-submit { text-align: center; margin-top: 8px; }

/* Blog */
.blog-header {
    padding: 140px 0 40px; text-align: center;
    background: radial-gradient(ellipse at 50% 0%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
}
.blog-header h1 { margin-bottom: 12px; }
.blog-header p { color: #6a6a88; font-size: 1.1rem; }
.articles-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px; padding: 60px 0; max-width: 1200px; margin: 0 auto;
}
.article-card {
    background: rgba(139, 92, 246, 0.03); border: 1px solid rgba(139, 92, 246, 0.08);
    border-radius: 20px; padding: 32px; display: flex; flex-direction: column;
    transition: transform 0.4s, box-shadow 0.4s, border-color 0.4s;
}
.article-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.08), 0 16px 50px rgba(0,0,0,0.2);
    border-color: rgba(139, 92, 246, 0.2);
}
.article-card h3 { font-size: 1.2rem; margin-bottom: 12px; }
.article-card h3 a { color: #fff; transition: color 0.2s; }
.article-card h3 a:hover { color: #8b5cf6; }
.article-card p { color: #6a6a88; font-size: 0.95rem; line-height: 1.7; flex-grow: 1; }
.article-card .meta { font-size: 0.85rem; color: #4a4a68; margin-bottom: 12px; }
.article-card .read-more { color: #8b5cf6; font-weight: 600; margin-top: 16px; display: inline-block; }
.badge { display: inline-block; padding: 4px 12px; border-radius: 20px; font-size: 0.75rem; font-weight: 600; margin-bottom: 12px; }
.pillar-badge { background: rgba(139, 92, 246, 0.12); color: #8b5cf6; }
.pillar-feature { border-color: rgba(139, 92, 246, 0.2); }

.article-header {
    padding: 140px 0 40px; text-align: center;
    background: radial-gradient(ellipse at 50% 0%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
}
.article-header h1 { font-size: 2.4rem; max-width: 800px; margin: 0 auto 16px; }
.article-header .meta { color: #4a4a68; font-size: 0.95rem; }
.article-content {
    max-width: 760px; margin: 0 auto; padding: 60px 24px 80px;
    font-size: 1.05rem; line-height: 1.85; color: #8a8aa8;
}
.article-content h2 { font-size: 1.8rem; margin: 48px 0 20px; color: #fff; }
.article-content h3 { font-size: 1.3rem; margin: 36px 0 16px; color: #c8c8e0; }
.article-content p { margin-bottom: 20px; color: #8a8aa8; }
.article-content a { color: #8b5cf6; text-decoration: underline; text-underline-offset: 3px; }
.article-content a:hover { color: #3b82f6; }
.article-content ul, .article-content ol { margin: 16px 0 20px 24px; }
.article-content li { margin-bottom: 8px; color: #8a8aa8; list-style: disc; }
.article-content ol li { list-style: decimal; }
.article-content blockquote {
    border-left: 3px solid #8b5cf6; padding: 16px 24px; margin: 24px 0;
    background: rgba(139, 92, 246, 0.04); border-radius: 0 12px 12px 0;
    font-style: italic; color: #6a6a88;
}
.article-content strong { color: #c8c8e0; }
.toc { background: rgba(139, 92, 246, 0.04); border: 1px solid rgba(139, 92, 246, 0.08); border-radius: 16px; padding: 24px 32px; margin-bottom: 40px; }
.toc h3 { color: #8b5cf6; font-size: 1rem; margin-bottom: 12px; }
.toc ol { margin-left: 20px; } .toc li { margin-bottom: 6px; }
.toc a { color: #8b5cf6; text-decoration: none; } .toc a:hover { text-decoration: underline; }
.inline-cta { background: rgba(139, 92, 246, 0.04); border: 1px solid rgba(139, 92, 246, 0.08); border-radius: 16px; padding: 32px; text-align: center; margin: 40px 0; }
.inline-cta h3 { color: #fff; margin-bottom: 12px; }
.inline-cta p { color: #6a6a88; margin-bottom: 20px; }

/* Misc */
.green { color: #10b981; } .blue { color: #3b82f6; } .purple { color: #8b5cf6; }
.positive { color: #10b981; } .negative { color: #ef4444; }
.about-story { padding: 80px 0; }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.story-text p { color: #6a6a88; line-height: 1.8; margin-bottom: 16px; }
.story-visual { text-align: center; }
.values-section { padding: 80px 0; }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; }
.value-item, .value-card {
    background: rgba(139, 92, 246, 0.03); border: 1px solid rgba(139, 92, 246, 0.08);
    border-radius: 20px; padding: 32px; text-align: center;
    transition: transform 0.3s, border-color 0.3s;
}
.value-item:hover, .value-card:hover { transform: translateY(-4px); border-color: rgba(139, 92, 246, 0.2); }
.value-icon { font-size: 2.5rem; margin-bottom: 16px; display: block; }
.benefit-item {
    background: rgba(139, 92, 246, 0.03); border: 1px solid rgba(139, 92, 246, 0.08);
    border-radius: 16px; padding: 24px; transition: all 0.3s;
}
.benefit-item:hover { border-color: rgba(139, 92, 246, 0.2); transform: translateY(-4px); }
.benefit-icon { font-size: 2rem; margin-bottom: 12px; display: block; }
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.phase-section, .services-phase { padding: 80px 0; }
.phase-badge { display: inline-block; padding: 6px 16px; border-radius: 20px; font-size: 0.8rem; font-weight: 700; margin-bottom: 16px; }
.phase-header { margin-bottom: 24px; }
.phase-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.phase-intro { color: #6a6a88; margin-bottom: 24px; }
.phase1 { border-left: 3px solid #8b5cf6; padding-left: 20px; }
.phase2 { border-left: 3px solid #3b82f6; padding-left: 20px; }
.what-you-get, .understand-list, .addons { margin-top: 16px; }
.what-you-get li, .understand-list li, .addons li { padding: 8px 0 8px 24px; color: #8a8aa8; position: relative; }
.what-you-get li::before, .understand-list li::before, .addons li::before { content: "\2713"; position: absolute; left: 0; color: #10b981; font-weight: 700; }
.week1, .week23, .week4, .ongoing, .advanced { margin-top: 16px; }
.blog-link { color: #8b5cf6; font-weight: 600; }
.alt { background: rgba(8, 8, 20, 0.6); }
.free-audit, .free-audit-box { padding: 40px; background: rgba(139, 92, 246, 0.04); border: 1px solid rgba(139, 92, 246, 0.08); border-radius: 20px; text-align: center; margin: 40px 0; }
.free-audit h3, .free-audit-box h3 { color: #fff; margin-bottom: 12px; }
.free-audit p, .free-audit-box p { color: #6a6a88; margin-bottom: 20px; }
.info-card { background: rgba(139, 92, 246, 0.03); border: 1px solid rgba(139, 92, 246, 0.08); border-radius: 20px; padding: 32px; margin-bottom: 24px; transition: border-color 0.3s; }
.info-card:hover { border-color: rgba(139, 92, 246, 0.2); }
.guarantee-content { background: rgba(16, 185, 129, 0.04); border: 1px solid rgba(16, 185, 129, 0.1); border-radius: 20px; padding: 32px; }
.comparison-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 900px; margin: 0 auto; }
.comparison-item { padding: 36px; border-radius: 20px; background: rgba(139, 92, 246, 0.03); border: 1px solid rgba(139, 92, 246, 0.08); }
.narrow { max-width: 800px; margin: 0 auto; }
.how-it-works { padding: 80px 0; }
.founder { padding: 80px 0; }
.founder-inner { display: flex; gap: 40px; align-items: center; max-width: 800px; margin: 0 auto; }
.founder-avatar { width: 120px; height: 120px; border-radius: 50%; background: linear-gradient(135deg, #8b5cf6, #3b82f6); display: flex; align-items: center; justify-content: center; font-size: 3rem; flex-shrink: 0; }
.our-story, .our-mission { padding: 80px 0; }
.about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.stats-card, .impact-stat { background: rgba(139, 92, 246, 0.04); border-radius: 16px; padding: 24px; text-align: center; }
.flow-arrow { text-align: center; font-size: 2rem; color: #8b5cf6; padding: 16px 0; }

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        position: absolute; top: 100%; left: 0; width: 100%;
        background: rgba(11, 11, 26, 0.98); backdrop-filter: blur(24px);
        flex-direction: column; padding: 24px; gap: 20px;
        transform: translateY(-10px); opacity: 0; visibility: hidden;
        transition: all 0.3s;
    }
    .nav-links.active { transform: translateY(0); opacity: 1; visibility: visible; }
    .nav-mobile { display: block; }
    .hero { padding: 120px 0 80px; min-height: auto; }
    .hero-container, .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .hero-content h1 { font-size: 2.4rem; }
    .hero-sub, .hero-subtitle { margin-left: auto; margin-right: auto; }
    .hero-ctas { justify-content: center; }
    .hero-proof { justify-content: center; }
    .hero-visual { display: none; }
    .solution-cards { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .paths-grid { grid-template-columns: 1fr; }
    .steps-flow::before { left: 20px; }
    .step-num { width: 40px; height: 40px; font-size: 1rem; }
    .timeline::before { left: 12px; }
    .timeline-marker { width: 28px; height: 28px; font-size: 0.7rem; }
    .footer-content { grid-template-columns: 1fr; gap: 32px; }
    .footer-links { grid-template-columns: 1fr; gap: 24px; }
    .about-content, .contact-content, .contact-grid, .story-grid { grid-template-columns: 1fr; }
    .comparison-grid { grid-template-columns: 1fr; }
    .founder-inner { flex-direction: column; text-align: center; }
    h1 { font-size: 2.2rem; } h2 { font-size: 1.8rem; }
    .problem, .solution, .services-preview, .testimonials, .faq, .final-cta, .paths { padding: 80px 0; }
    .articles-grid { grid-template-columns: 1fr; padding: 40px 24px; }
    .article-content { padding: 40px 20px 60px; }
    .article-header h1 { font-size: 1.8rem; }
    .page-header { padding: 120px 0 60px; min-height: auto; }
}
@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-content h1 { font-size: 2rem; }
    .hero-ctas { flex-direction: column; align-items: center; }
    .problem-grid { grid-template-columns: 1fr; }
    .phase-grid { grid-template-columns: 1fr; }
    .benefits-grid { grid-template-columns: 1fr; }
}
