/* ============================================================
   NAVVFLOW WEALTH — PREMIUM INVESTOR PERSONALITY QUIZ
   Luxury Fintech Design System
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,700&family=Inter:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
    --navy-950: #060e1a;
    --navy-900: #0a1628;
    --navy-850: #0d1d35;
    --navy-800: #12233f;
    --navy-700: #1a3158;
    --navy-600: #264573;
    --navy-500: #3b5f8f;
    --navy-400: #5a82b5;
    --navy-300: #8aadd6;
    --navy-200: #b8cff0;
    --navy-100: #e0eafa;
    --emerald-600: #059669;
    --emerald-500: #10B981;
    --emerald-400: #34D399;
    --emerald-300: #6EE7B7;
    --emerald-200: #A7F3D0;
    --emerald-100: #D1FAE5;
    --emerald-glow: rgba(16, 185, 129, 0.15);
    --accent-gold: #D4AF37;
    --accent-gold-light: #F0D878;
    --white: #FFFFFF;
    --white-90: rgba(255,255,255,0.9);
    --white-70: rgba(255,255,255,0.7);
    --white-50: rgba(255,255,255,0.5);
    --white-40: rgba(255,255,255,0.4);
    --white-30: rgba(255,255,255,0.3);
    --white-20: rgba(255,255,255,0.2);
    --white-10: rgba(255,255,255,0.1);
    --white-05: rgba(255,255,255,0.05);
    --glass: rgba(255,255,255,0.03);
    --glass-border: rgba(255,255,255,0.08);
    --glass-hover: rgba(255,255,255,0.06);
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    --radius: 20px;
    --radius-lg: 28px;
    --radius-sm: 14px;
    --shadow-soft: 0 4px 24px rgba(0,0,0,0.15);
    --shadow-card: 0 8px 32px rgba(0,0,0,0.2);
    --shadow-glow: 0 0 60px rgba(16,185,129,0.08);
    --shadow-gold: 0 0 40px rgba(212,175,55,0.1);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background: var(--navy-950);
    color: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    min-height: 100vh;
}
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(16,185,129,0.03) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(59,95,143,0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; border: none; background: none; color: inherit; }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy-950); }
::-webkit-scrollbar-thumb { background: var(--navy-700); border-radius: 3px; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.display-xl { font-family: var(--font-display); font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 700; line-height: 1.05; letter-spacing: -0.03em; }
.display-lg { font-family: var(--font-display); font-size: clamp(2rem, 4.5vw, 3.5rem); font-weight: 600; line-height: 1.1; }
.display-md { font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.5rem); font-weight: 600; line-height: 1.2; }
.display-sm { font-family: var(--font-display); font-size: clamp(1.3rem, 2.5vw, 2rem); font-weight: 600; line-height: 1.25; }
.title-lg { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; line-height: 1.3; }
.body-lg { font-size: 1.1rem; line-height: 1.75; color: var(--white-70); }
.body-md { font-size: 1rem; line-height: 1.7; color: var(--white-70); }
.caption-label { font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.2em; color: var(--emerald-400); }

/* ============================================================
   LAYOUT
   ============================================================ */
/*.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 2rem; position: relative; z-index: 1; }*/
.section { padding: 6rem 0; position: relative; }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 3rem; }
.section-header .caption-label { margin-bottom: 1.25rem; display: block; }
.section-header h2 { margin-bottom: 1.25rem; }
.section-header p { color: var(--white-70); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
    padding: 1rem 2rem; font-size: 0.95rem; font-weight: 600;
    border-radius: 999px; transition: var(--transition); cursor: pointer;
    position: relative; overflow: hidden; white-space: nowrap;
}
.btn-primary {
    background: linear-gradient(135deg, var(--emerald-500), var(--emerald-600));
    color: #fff; box-shadow: 0 4px 20px rgba(16,185,129,0.35), inset 0 1px 0 rgba(255,255,255,0.1);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(16,185,129,0.45); }
.btn-primary:active { transform: translateY(0); }
.btn-gold {
    background: linear-gradient(135deg, #c9a227, #D4AF37);
    color: var(--navy-950); box-shadow: 0 4px 20px rgba(212,175,55,0.3);
    font-weight: 700;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(212,175,55,0.4); }
.btn-outline {
    border: 1.5px solid var(--white-20); color: var(--white); background: transparent;
}
.btn-outline:hover { background: var(--white-05); border-color: var(--white-40); }
.btn-white { background: var(--white); color: var(--navy-950); font-weight: 600; }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,0.3); }
.btn-sm { padding: 0.75rem 1.5rem; font-size: 0.875rem; }
.btn-lg { padding: 1.1rem 2.5rem; font-size: 1rem; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 1.25rem 0;
    transition: var(--transition); background: transparent;
}
.navbar.scrolled {
    background: rgba(6,14,26,0.9); backdrop-filter: blur(30px) saturate(1.2);
    border-bottom: 1px solid var(--glass-border); padding: 0.875rem 0;
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; }
.nav-logo img { height: 42px; width: auto; border-radius: 4px; display: block; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { font-size: 0.88rem; font-weight: 500; color: var(--white-70); transition: var(--transition); }
.nav-links a:hover { color: var(--white); }
.mobile-menu-btn { display: none; flex-direction: column; gap: 5px; padding: 0.5rem; background: none; }
.mobile-menu-btn span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }

/* ============================================================
   MOBILE MENU
   ============================================================ */
.mobile-menu {
    position: fixed; inset: 0; z-index: 99; background: rgba(6,14,26,0.98);
    backdrop-filter: blur(30px); display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 2rem;
    opacity: 0; visibility: hidden; transition: var(--transition);
}
.mobile-menu.active { opacity: 1; visibility: visible; }
.mobile-menu a { font-size: 1.5rem; font-weight: 500; color: var(--white); }
.mobile-menu-close { position: absolute; top: 1.5rem; right: 1.5rem; font-size: 2rem; color: var(--white); background: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero { min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; padding-top: 100px; }
.hero-globe {
    position: absolute; right: -15%; top: 50%; transform: translateY(-50%);
    width: 70vw; height: 70vw; max-width: 900px; max-height: 900px;
    border-radius: 50%; opacity: 0.5;
    background: radial-gradient(circle at 30% 30%, rgba(59,95,143,0.3), transparent 60%),
                radial-gradient(circle at 70% 70%, rgba(16,185,129,0.1), transparent 50%);
    animation: globePulse 10s ease-in-out infinite;
}
.hero-globe::before { content: ''; position: absolute; inset: -25%; border-radius: 50%; border: 1px solid rgba(139,180,224,0.06); }
.hero-globe::after { content: ''; position: absolute; inset: -45%; border-radius: 50%; border: 1px solid rgba(139,180,224,0.03); }
@keyframes globePulse { 0%,100% { transform: translateY(-50%) scale(1); opacity: 0.5; } 50% { transform: translateY(-50%) scale(1.04); opacity: 0.7; } }

.hero .container { display: grid; grid-template-columns: 1.1fr 1fr; gap: 4rem; align-items: center; position: relative; z-index: 1; }
.hero-content { max-width: 580px; }
.hero .caption-label { margin-bottom: 1.5rem; }
.hero h1 { margin-bottom: 1.5rem; }
.hero h1 em { color: var(--emerald-400); font-style: italic; }
.hero-subtitle { font-size: 1.15rem; color: var(--white-70); margin-bottom: 2.5rem; max-width: 480px; line-height: 1.7; }
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-trust { display: flex; gap: 2rem; flex-wrap: wrap; }
.hero-trust-item { display: flex; align-items: center; gap: 0.6rem; font-size: 0.8rem; color: var(--white-50); }
.hero-trust-item svg { width: 18px; height: 18px; color: var(--emerald-400); flex-shrink: 0; }

/* ============================================================
   SECTION CARDS
   ============================================================ */
.glass-card {
    background: var(--glass); border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg); padding: 2.5rem;
    transition: var(--transition); 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.1), transparent);
}
.glass-card:hover { background: var(--glass-hover); border-color: rgba(255,255,255,0.12); transform: translateY(-4px); box-shadow: var(--shadow-card); }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps { background: linear-gradient(180deg, var(--navy-950), var(--navy-900)); }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.step-card { composes: glass-card; text-align: center; }
.step-num { font-family: var(--font-display); font-size: 3.5rem; font-weight: 700; color: var(--emerald-500); opacity: 0.2; line-height: 1; margin-bottom: 1rem; }
.step-card h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.step-card p { color: var(--white-70); font-size: 0.9rem; line-height: 1.7; }

/* ============================================================
   PERSONALITY PREVIEW CARDS
   ============================================================ */
.profiles-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.5rem; margin-bottom: 4rem; align-items: stretch; }
.profile-card {
    background: var(--glass); border: 1px solid var(--glass-border); border-radius: var(--radius);
    padding: 1.75rem 1.25rem; text-align: center; transition: var(--transition); cursor: pointer; position: relative;
    display: flex; flex-direction: column; align-items: center;
}
.profile-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.profile-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin: 0 auto 0.75rem; font-size: 1.5rem; flex-shrink: 0; }
.profile-card h3 { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.5rem; line-height: 1.3; min-height: 2.6em; display: flex; align-items: center; justify-content: center; }
.profile-type { font-size: 0.68rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.75rem; line-height: 1.4; min-height: 2.8em; display: flex; align-items: center; justify-content: center; }
.profile-card .card-body { font-size: 0.78rem; color: var(--white-70); line-height: 1.6; flex: 1; display: flex; align-items: flex-start; justify-content: center; }

/* Stats */
.stats-bar { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.stat-item { text-align: center; padding: 2rem; background: var(--glass); border: 1px solid var(--glass-border); border-radius: var(--radius); }
.stat-num { font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; color: var(--emerald-400); line-height: 1; margin-bottom: 0.75rem; }
.stat-label { font-size: 0.8rem; font-weight: 600; color: var(--white-90); margin-bottom: 0.5rem; }
.stat-desc { font-size: 0.7rem; color: var(--white-50); }

/* ============================================================
   PHILOSOPHY
   ============================================================ */
.philosophy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.philosophy-insights { display: flex; flex-direction: column; gap: 1.25rem; }
.insight-card { display: flex; gap: 1rem; padding: 1.5rem; background: var(--glass); border: 1px solid var(--glass-border); border-radius: var(--radius); transition: var(--transition); }
.insight-card:hover { border-color: var(--emerald-500); }
.insight-icon { width: 44px; height: 44px; border-radius: 12px; background: rgba(16,185,129,0.08); display: flex; align-items: center; justify-content: center; color: var(--emerald-400); flex-shrink: 0; }
.insight-card h4 { font-size: 1rem; margin-bottom: 0.25rem; }
.insight-card p { font-size: 0.82rem; color: var(--white-70); line-height: 1.6; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--navy-900); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; align-items: stretch; }
.testimonial-card { background: var(--glass); border: 1px solid var(--glass-border); border-radius: var(--radius); padding: 2.5rem; position: relative; transition: var(--transition); display: flex; flex-direction: column; }
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.testimonial-quote { font-family: var(--font-display); font-size: 4rem; color: var(--emerald-500); opacity: 0.15; line-height: 1; margin-bottom: 0.5rem; flex-shrink: 0; }
.testimonial-card .quote-text { color: var(--white-90); font-size: 0.92rem; line-height: 1.75; margin-bottom: 1.5rem; font-style: italic; flex: 1; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--navy-600), var(--navy-500)); display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: 0.85rem; }
.testimonial-author h4 { font-size: 0.88rem; }
.testimonial-author span { font-size: 0.78rem; color: var(--white-50); }
.testimonial-type { margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px solid var(--glass-border); font-size: 0.7rem; font-weight: 600; color: var(--emerald-400); text-transform: uppercase; letter-spacing: 0.06em; flex-shrink: 0; }

/* ============================================================
   CTA SECTION — CENTERED
   ============================================================ */
.cta-centered { max-width: 640px; margin: 0 auto; padding: 5rem 1.5rem; text-align: center; }
.cta-centered .caption-label { display: block; margin-bottom: 1.5rem; text-align: center; }
.cta-centered h2 { margin-bottom: 1.5rem; line-height: 1.25; text-align: center; }
.cta-centered > p { color: var(--white-70); font-size: 1.1rem; line-height: 1.75; margin-bottom: 2.5rem; text-align: center; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.5rem; }
.cta-buttons .btn { min-width: 220px; justify-content: center; }
.cta-trust { display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; }
.cta-trust span { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; color: var(--white-50); }
.cta-trust span svg { color: var(--emerald-400); flex-shrink: 0; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item { background: var(--glass); border: 1px solid var(--glass-border); border-radius: var(--radius-sm); overflow: hidden; transition: var(--transition); }
.faq-item:hover { border-color: rgba(255,255,255,0.12); }
.faq-item.active { border-color: var(--emerald-500); background: rgba(255,255,255,0.03); }
.faq-question { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 1.25rem 1.5rem; font-size: 1rem; font-weight: 500; text-align: left; color: var(--white); cursor: pointer; background: none; }
.faq-question svg { width: 20px; height: 20px; color: var(--emerald-400); flex-shrink: 0; margin-left: 1rem; transition: var(--transition); }
.faq-item.active .faq-question svg { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; }
.faq-item.active .faq-answer { max-height: 300px; padding: 0 1.5rem 1.25rem; }
.faq-answer p { color: var(--white-70); font-size: 0.92rem; line-height: 1.7; }

/* ============================================================
   QUIZ — PREMIUM ONE-QUESTION-PER-SCREEN
   ============================================================ */
.quiz-page { padding-top: 100px; min-height: 100vh; display: flex; flex-direction: column; }
.quiz-container { max-width: 720px; margin: 0 auto; width: 100%; flex: 1; display: flex; flex-direction: column; padding: 2rem 1.5rem 4rem; }

/* Progress */
.quiz-top-bar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 3rem; padding-top: 1rem; }
.quiz-back-btn { display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; color: var(--white-50); background: none; cursor: pointer; transition: var(--transition); }
.quiz-back-btn:hover { color: var(--white); }
.quiz-section-label { font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em; color: var(--emerald-400); }

.quiz-progress-track { height: 4px; background: rgba(255,255,255,0.08); border-radius: 2px; margin-bottom: 3rem; overflow: hidden; }
.quiz-progress-fill { height: 100%; background: linear-gradient(90deg, var(--emerald-500), var(--emerald-300)); border-radius: 2px; transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1); }

/* Question Card */
.quiz-question-wrap { flex: 1; display: flex; flex-direction: column; }
.quiz-question-card { animation: fadeInUp 0.5s ease; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeOut { from { opacity: 1; } to { opacity: 0; } }

.quiz-question-num { font-size: 0.75rem; font-weight: 600; color: var(--white-50); margin-bottom: 0.5rem; letter-spacing: 0.05em; }
.quiz-question-text { font-family: var(--font-display); font-size: clamp(1.4rem, 3vw, 1.9rem); font-weight: 600; line-height: 1.25; margin-bottom: 0.75rem; }
.quiz-question-sub { font-size: 0.95rem; color: var(--white-70); margin-bottom: 2.5rem; }

/* Options */
.quiz-options { display: flex; flex-direction: column; gap: 0.75rem; }
.quiz-option {
    display: flex; align-items: center; gap: 1rem;
    padding: 1.15rem 1.5rem;
    background: rgba(255,255,255,0.03); border: 1.5px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-sm); cursor: pointer;
    transition: var(--transition); font-size: 1rem; color: var(--white); text-align: left; width: 100%;
}
.quiz-option:hover { border-color: var(--emerald-500); background: rgba(16,185,129,0.04); }
.quiz-option.selected { border-color: var(--emerald-500); background: rgba(16,185,129,0.08); }
.quiz-option-radio { width: 22px; height: 22px; border: 2px solid var(--navy-500); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: var(--transition); }
.quiz-option.selected .quiz-option-radio { border-color: var(--emerald-500); background: var(--emerald-500); }
.quiz-option-radio::after { content: ''; width: 8px; height: 8px; background: #fff; border-radius: 50%; opacity: 0; transition: opacity 0.2s; }
.quiz-option.selected .quiz-option-radio::after { opacity: 1; }

/* ============================================================
   LEAD CAPTURE GATE
   ============================================================ */
.lead-gate { max-width: 520px; margin: 0 auto; text-align: center; animation: fadeInUp 0.6s ease; }
.lead-gate-icon { width: 80px; height: 80px; border-radius: 24px; background: linear-gradient(135deg, var(--emerald-500), var(--emerald-600)); display: flex; align-items: center; justify-content: center; margin: 0 auto 2rem; font-size: 2rem; box-shadow: 0 8px 30px rgba(16,185,129,0.3); }
.lead-gate h2 { margin-bottom: 0.75rem; }
.lead-gate > p { color: var(--white-70); margin-bottom: 2.5rem; }

.lead-preview-cards { display: flex; gap: 0.75rem; justify-content: center; margin-bottom: 2.5rem; perspective: 600px; }
.lead-preview-card {
    width: 140px; height: 180px; border-radius: var(--radius-sm);
    background: var(--glass); border: 1px solid var(--glass-border);
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.5rem;
    font-size: 0.7rem; color: var(--white-50);
    filter: blur(3px) brightness(0.6); transition: var(--transition);
}
.lead-preview-cards:hover .lead-preview-card { filter: blur(1px) brightness(0.8); }

.lead-form { display: flex; flex-direction: column; gap: 1rem; text-align: left; }
.lead-form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.lead-form-group label { font-size: 0.8rem; font-weight: 500; color: var(--white-70); }
.lead-form-group label .optional { color: var(--white-50); font-weight: 400; }
.lead-form-group input {
    padding: 1rem 1.25rem; background: rgba(255,255,255,0.04);
    border: 1.5px solid var(--glass-border); border-radius: var(--radius-sm);
    color: var(--white); font-size: 1rem; font-family: var(--font-body);
    transition: var(--transition); outline: none;
}
.lead-form-group input:focus { border-color: var(--emerald-500); background: rgba(16,185,129,0.03); }
.lead-form-group input::placeholder { color: var(--white-30); }

.trust-badges { display: flex; justify-content: center; gap: 1.5rem; margin-top: 1.5rem; }
.trust-badge { display: flex; align-items: center; gap: 0.4rem; font-size: 0.72rem; color: var(--white-50); }
.trust-badge svg { width: 14px; height: 14px; color: var(--emerald-400); }

/* ============================================================
   RESULT PAGE
   ============================================================ */
.result-page { padding-top: 100px; min-height: 100vh; }
.result-hero { text-align: center; padding: 3rem 0 2rem; }
.result-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.5rem 1.25rem; border-radius: 999px; font-size: 0.8rem; font-weight: 600;
    margin-bottom: 1.5rem;
}
.result-hero h1 { margin-bottom: 0.75rem; }
.result-hero > p { color: var(--white-70); max-width: 500px; margin: 0 auto 2rem; }

/* Personality Card */
.personality-card {
    max-width: 700px; margin: 0 auto 3rem;
    background: var(--glass); border: 1px solid var(--glass-border); border-radius: var(--radius-lg);
    padding: 3rem; text-align: center; position: relative; overflow: hidden;
}
.personality-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--card-color, #10B981), transparent 70%);
}
.result-icon { width: 80px; height: 80px; border-radius: 24px; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; font-size: 2.5rem; }
.result-tagline { font-family: var(--font-display); font-size: 1.3rem; font-style: italic; margin-bottom: 1.5rem; }
.result-summary { color: var(--white-70); line-height: 1.8; max-width: 540px; margin: 0 auto 2rem; }

/* Dimensions */
.dimensions-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-bottom: 3rem; }
.dimension-item { background: var(--glass); border: 1px solid var(--glass-border); border-radius: var(--radius-sm); padding: 1.5rem; }
.dimension-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.75rem; }
.dimension-label { font-size: 0.8rem; font-weight: 600; color: var(--white-90); }
.dimension-value { font-family: var(--font-mono); font-size: 0.85rem; font-weight: 600; color: var(--emerald-400); }
.dimension-bar { height: 6px; background: rgba(255,255,255,0.06); border-radius: 3px; overflow: hidden; }
.dimension-fill { height: 100%; border-radius: 3px; transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1); }

/* Content Sections */
.result-sections { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 1.5rem; }
.result-section { background: var(--glass); border: 1px solid var(--glass-border); border-radius: var(--radius); padding: 2rem; }
.result-section h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 1rem; display: flex; align-items: center; gap: 0.6rem; }
.result-section h3 svg { width: 20px; height: 20px; flex-shrink: 0; }
.result-section ul { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.result-section ul li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.92rem; color: var(--white-70); line-height: 1.6; }
.result-section ul li svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; }

/* Allocation */
.allocation-chart { display: flex; height: 36px; border-radius: 18px; overflow: hidden; margin: 1.5rem 0; }
.allocation-segment { display: flex; align-items: center; justify-content: center; font-size: 0.65rem; font-weight: 700; color: #fff; transition: width 1s ease; }
.allocation-legend { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.allocation-legend-item { display: flex; align-items: center; gap: 0.4rem; font-size: 0.8rem; color: var(--white-70); }
.allocation-dot { width: 10px; height: 10px; border-radius: 50%; }

/* Next Steps */
.next-steps { max-width: 800px; margin: 2rem auto 0; }
.next-steps-card { background: linear-gradient(135deg, var(--navy-800), var(--navy-700)); border: 1px solid var(--glass-border); border-radius: var(--radius-lg); padding: 2.5rem; text-align: center; position: relative; overflow: hidden; }
.next-steps-card::before { content: ''; position: absolute; top: -50%; right: -20%; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(16,185,129,0.08), transparent 70%); }
.next-steps-card h3 { font-size: 1.3rem; margin-bottom: 1rem; position: relative; }
.next-steps-card p { color: var(--white-70); margin-bottom: 1.5rem; position: relative; }
.next-steps-card .btn { position: relative; }

/* ============================================================
   COMPARE PAGE
   ============================================================ */
.compare-page { padding-top: 120px; min-height: 100vh; }
.compare-table-wrap { overflow-x: auto; margin-top: 2rem; border-radius: var(--radius); border: 1px solid var(--glass-border); }
.compare-table { width: 100%; border-collapse: collapse; min-width: 900px; }
.compare-table th { padding: 1rem 1.25rem; text-align: center; font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--white-70); background: rgba(255,255,255,0.04); border-bottom: 1px solid var(--glass-border); }
.compare-table th:first-child { text-align: left; }
.compare-table td { padding: 0.875rem 1.25rem; text-align: center; border-bottom: 1px solid rgba(255,255,255,0.04); font-size: 0.85rem; color: var(--white-90); }
.compare-table td:first-child { text-align: left; font-weight: 600; color: var(--white-90); }
.compare-table tr:hover td { background: rgba(255,255,255,0.02); }

.profile-detail-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 1.5rem; margin-top: 3rem; align-items: stretch; }
.profile-detail-card { background: var(--glass); border: 1px solid var(--glass-border); border-radius: var(--radius); padding: 2rem; transition: var(--transition); display: flex; flex-direction: column; }
.profile-detail-card:hover { border-color: rgba(255,255,255,0.12); transform: translateY(-4px); }
.profile-detail-card .detail-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.profile-detail-card .detail-header > div:last-child { flex: 1; }
.profile-detail-card .detail-header h3 { font-size: 1.25rem; margin-bottom: 0.25rem; line-height: 1.3; }
.profile-detail-card .detail-desc { color: var(--white-70); margin-bottom: 1.25rem; font-size: 0.9rem; line-height: 1.7; }
.profile-detail-card .detail-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.25rem; }
.profile-detail-card .detail-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.25rem; }
.profile-detail-card .detail-sections { flex: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--navy-900); border-top: 1px solid rgba(255,255,255,0.05); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand > p { color: var(--white-70); font-size: 0.85rem; margin: 1rem 0 1.5rem; max-width: 280px; }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a { width: 36px; height: 36px; border-radius: 10px; background: var(--white-05); display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.footer-social a:hover { background: var(--emerald-500); transform: translateY(-2px); }
.footer-links h4 { font-size: 0.9rem; font-weight: 600; margin-bottom: 1.25rem; }
.footer-links ul li { margin-bottom: 0.625rem; }
.footer-links ul li a { font-size: 0.85rem; color: var(--white-70); transition: var(--transition); }
.footer-links ul li a:hover { color: var(--emerald-400); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 2rem; text-align: center; }
.footer-bottom p { font-size: 0.72rem; color: var(--navy-400); margin-bottom: 0.5rem; }

/* ============================================================
   WHATSAPP FAB
   ============================================================ */
.whatsapp-fab {
    position: fixed; bottom: 2rem; right: 2rem; z-index: 90;
    width: 56px; height: 56px; border-radius: 50%; background: #25D366;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4); transition: var(--transition);
    animation: fabPulse 3s ease-in-out infinite;
}
.whatsapp-fab:hover { transform: scale(1.1); }
@keyframes fabPulse { 0%,100%{box-shadow:0 4px 20px rgba(37,211,102,0.4)} 50%{box-shadow:0 4px 30px rgba(37,211,102,0.6)} }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp { from { opacity:0; transform:translateY(30px) } to { opacity:1; transform:translateY(0) } }
@keyframes fadeIn { from { opacity:0 } to { opacity:1 } }
@keyframes scaleIn { from { opacity:0; transform:scale(0.9) } to { opacity:1; transform:scale(1) } }
@keyframes slideInRight { from { opacity:0; transform:translateX(40px) } to { opacity:1; transform:translateX(0) } }
@keyframes shimmer { 0% { background-position: -200% 0 } 100% { background-position: 200% 0 } }

.animate { opacity: 0; }
.animate.fade-in-up { animation: fadeInUp 0.8s ease forwards; }
.animate.fade-in { animation: fadeIn 0.8s ease forwards; }
.animate.scale-in { animation: scaleIn 0.6s ease forwards; }
.animate.slide-in-right { animation: slideInRight 0.8s ease forwards; }
.delay-100 { animation-delay: 0.1s }
.delay-200 { animation-delay: 0.2s }
.delay-300 { animation-delay: 0.3s }
.delay-400 { animation-delay: 0.4s }
.delay-500 { animation-delay: 0.5s }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .profiles-grid { grid-template-columns: repeat(3, 1fr); }
    .philosophy-grid { gap: 3rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-menu-btn { display: flex; }
    .hero .container { grid-template-columns: 1fr; }
    .hero-globe { width: 120vw; height: 120vw; right: -60%; opacity: 0.25; }
    .display-xl { font-size: 2.5rem; }
    .steps-grid, .testimonials-grid, .stats-bar { grid-template-columns: 1fr; }
    .profiles-grid { grid-template-columns: repeat(2, 1fr); }
    .philosophy-grid { grid-template-columns: 1fr; }
    .compare-page .container { grid-template-columns: 1fr; }
    .cta-centered { padding: 3rem 1rem; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .cta-buttons .btn { min-width: 260px; }
    .cta-trust { gap: 1.25rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .section { padding: 3rem 0; }
    .container { padding: 0 1.25rem; }
    .quiz-container { padding: 1.5rem 1rem 3rem; }
    .dimensions-grid { grid-template-columns: 1fr; }
    .lead-preview-cards { display: none; }
    .allocation-chart { height: 28px; }
    .whatsapp-fab { bottom: 1rem; right: 1rem; width: 48px; height: 48px; }
}


.investment-assessment-section{
    padding-bottom: 100px
}