/* --- Ambient White Edge Glow (Scroll Animated) --- */
.page-content::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: var(--glow-intensity, 0.15);
    transition: opacity 0.6s ease;
    background:
        /* Top edge line */
        linear-gradient(to bottom, rgba(255, 255, 255, 0.50) 0%, transparent 5%),
        /* Bottom edge line */
        linear-gradient(to top, rgba(255, 255, 255, 0.50) 0%, transparent 5%),
        /* Left edge line */
        linear-gradient(to right, rgba(255, 255, 255, 0.50) 0%, transparent 5%),
        /* Right edge line */
        linear-gradient(to left, rgba(255, 255, 255, 0.50) 0%, transparent 5%);
}

/* --- Splash Overlay --- */
.splash-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #020408;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999999;
    transition: opacity 1.5s ease;
}

.splash-overlay.fade-out {
    opacity: 0;
    pointer-events: none;
}

.splash-overlay .splash-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 16px;
    opacity: 0;
    transform: scale(0.7);
}

.splash-overlay.ready .splash-logo {
    animation: splash-logo-in 1s ease 0.1s forwards;
}

.splash-overlay.ready .splash-letter {
    animation: splash-letter-in 0.5s ease forwards;
}

.splash-overlay .splash-text {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 8px;
    text-transform: uppercase;
    display: flex;
    gap: 2px;
}

.splash-overlay .splash-sub {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-top: 8px;
    display: flex;
    gap: 2px;
}

.splash-letter {
    opacity: 0;
    transform: translateY(15px);
}

@keyframes splash-logo-in {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes splash-letter-in {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes splash-hint-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* --- Page-specific overrides --- */
html,
body {
    background: #020408 !important;
    min-height: 100vh;
    /* Ensure NO scrollbars during splash */
    overflow: hidden !important;
}

/* Allow scrolling ONLY after splash is done */
html.splash-done,
body.splash-done {
    overflow: auto !important;
    overflow-x: hidden !important;
    /* Prevent horizontal scroll always */
}

/* Content fades in after splash */
.page-content {
    opacity: 0;
    transition: opacity 1.5s ease;
    background: #020408;
    min-height: 100vh;
}

.page-content.visible {
    opacity: 1;
}

/* --- Mouse glow effect --- */
.mouse-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mouse-glow.active {
    opacity: 1;
}

/* --- Click ripple effect --- */
.click-ripple {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent 70%);
    transform: scale(0);
    animation: ripple-expand 0.6s ease-out forwards;
}

@keyframes ripple-expand {
    0% {
        transform: scale(0);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 0;
    }
}

/* Ensure content is above the glow */
.sticky-cta-wrap,
.bp-hero,
.bp-section,
.bp-cta-section,
.bp-footer,
.splash-overlay {
    position: relative;
    z-index: 2;
}

/* --- Sticky CTA Bar --- */
/* ===== NAV (Sticky CTA Bar Style) - UPDATED ===== */
.sticky-cta-wrap {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    padding: 8px 24px;
    background: transparent;
    pointer-events: none;
    opacity: 1;
    visibility: visible;
    transition: opacity 1s ease, visibility 1s;
    display: flex;
    justify-content: center;
}

.bp-cta-bar {
    pointer-events: auto;
    width: auto;
    padding: 6px 8px 6px 16px;
    background: rgba(10, 10, 20, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.bar-left {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

/* Scroll progress bar at top of viewport */
.scroll-progress-track {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.06);
    z-index: 10000;
}

.scroll-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transition: width 0.1s linear;
    box-shadow: 0 0 6px var(--gold);
}

.bar-promo {
    color: #F0F4F8;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}

.bar-promo strong {
    font-weight: 800;
}

.bar-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 20px;
    background: var(--gradient-primary, linear-gradient(135deg, #4F7DF3, #7C3AED));
    color: #fff !important;
    font-weight: 700;
    font-size: 0.88rem;
    border-radius: 50px;
    transition: var(--transition);
    white-space: nowrap;
    text-decoration: none;
    flex-shrink: 0;
    box-shadow: 0 2px 12px rgba(124, 58, 237, 0.3);
}

.bar-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(124, 58, 237, 0.5);
    filter: brightness(1.1);
}

.bar-cta-btn .btn-arrow {
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.7rem;
}

/* --- Hero override for this page --- */
.bp-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.bp-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.bp-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(46, 204, 113, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

/* --- Section styling --- */
.bp-section {
    padding: 100px 0;
    position: relative;
}

.bp-section+.bp-section {
    border-top: 1px solid var(--border);
}

.section-badge {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 20px;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto 40px;
}

/* --- Glass cards --- */
.bp-card {
    background: var(--glass-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 24px;
    transition: var(--transition);
}

.bp-card:hover {
    background: var(--glass-bg-hover);
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.bp-card .card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.4rem;
    color: var(--gold);
}

.bp-card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.bp-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* --- Grids --- */
.bp-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.bp-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.bp-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* --- CTA button --- */
.bp-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy) !important;
    font-weight: 700;
    font-size: 1.05rem;
    border-radius: var(--radius-full);
    transition: var(--transition);
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.bp-cta:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.bp-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--gold) !important;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-full);
    transition: var(--transition);
    text-decoration: none;
}

.bp-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--gold);
}

/* --- Hero trust bar --- */
.hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 32px;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.hero-trust i {
    color: var(--green);
    margin-right: 4px;
}

/* --- Stats --- */
.stat-card {
    text-align: center;
    padding: 32px 16px;
}

.stat-value {
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 8px;
}

/* --- Partner logos --- */
.partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.partner-card {
    text-align: center;
    padding: 24px 16px;
}

.partner-card p {
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

/* --- Investment Table --- */
.invest-table-wrap {
    overflow-x: auto;
    margin: 40px auto;
    max-width: 800px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
}

.invest-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.95rem;
    background: var(--glass-bg);
}

.invest-table thead tr {
    background: rgba(255, 255, 255, 0.1);
}

.invest-table th,
.invest-table td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
}

.invest-table th {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.invest-table td {
    color: var(--text-secondary);
}

.invest-table tbody tr:hover {
    background: var(--glass-bg-hover);
}

/* --- Calculator box --- */
.calc-box {
    max-width: 500px;
    margin: 40px auto 0;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    padding: 40px;
    text-align: center;
}

.calc-box .calc-title {
    font-size: 1.1rem;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.calc-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.calc-row:last-child {
    border-bottom: none;
    padding-top: 16px;
    margin-top: 8px;
    border-top: 2px solid var(--gold);
}

.calc-label {
    color: var(--text-muted);
}

.calc-value {
    color: var(--text-primary);
    font-weight: 700;
}

.calc-row:last-child .calc-value {
    color: var(--green);
    font-size: 1.3rem;
}

/* --- FAQ --- */
.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    overflow: hidden;
    background: var(--glass-bg);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-family: var(--font);
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--gold);
}

.faq-question i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 24px 20px;
}

.faq-answer p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* --- CTA Section --- */
.bp-cta-section {
    padding: 120px 0;
    text-align: center;
    background: linear-gradient(180deg, var(--navy), rgba(255, 255, 255, 0.03));
    position: relative;
}

/* --- Footer --- */
.bp-footer {
    padding: 48px 0 32px;
    border-top: 1px solid var(--border);
}

.bp-footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 32px;
}

.bp-footer-brand {
    font-size: 1.4rem;
    font-weight: 700;
}

.bp-footer-brand span {
    color: var(--gold);
}

.bp-footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.bp-footer-links a {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.bp-footer-links a:hover {
    color: var(--gold);
}

.bp-footer-bottom {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    text-align: center;
}

.bp-footer-bottom p {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* --- Animations --- */
.animate-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 768px) {

    .bp-grid-2,
    .bp-grid-3,
    .bp-grid-4 {
        grid-template-columns: 1fr;
    }

    .partner-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .sticky-cta-wrap {
        padding: 0 8px;
    }

    .bp-cta-bar {
        border-radius: 20px;
        padding: 12px 16px;
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .bar-left {
        display: none;
    }

    .bar-progress-wrap {
        display: none;
    }

    .bar-promo {
        font-size: 0.75rem;
        text-align: center;
        white-space: normal;
    }

    .hero-trust {
        flex-wrap: wrap;
        gap: 12px;
    }

    .bp-hero {
        padding: 60px 0 80px;
    }

    .bp-section {
        padding: 60px 0;
    }

    .calc-box {
        padding: 24px;
    }
}

/* --- CTA Pulse Animation --- */
@keyframes cta-pulse-glow {
    0% {
        filter: brightness(1);
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    50% {
        filter: brightness(1.25);
        transform: scale(1.03);
        box-shadow: 0 0 25px rgba(255, 215, 0, 0.5);
    }

    100% {
        filter: brightness(1);
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }
}

.bar-cta-btn,
.bp-cta,
.bottom-popup-cta {
    animation: cta-pulse-glow 2.5s infinite ease-in-out;
}

/* Pause on hover to let the user interact comfortably */
.bar-cta-btn:hover,
.bp-cta:hover,
.bottom-popup-cta:hover {
    animation: none;
    filter: brightness(1.1);
    transform: translateY(-2px);
}

/* --- Skip Navigation (Accessibility) --- */
.skip-nav {
    position: absolute;
    top: -100px;
    left: 16px;
    background: var(--gold, #D4AF37);
    color: #020408;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 100000;
    text-decoration: none;
    transition: top 0.3s ease;
}

.skip-nav:focus {
    top: 16px;
}

/* --- Focus Visible Styles (Accessibility) --- */
*:focus-visible {
    outline: 2px solid var(--gold, #D4AF37);
    outline-offset: 2px;
}

button:focus-visible,
a:focus-visible {
    outline: 2px solid var(--gold, #D4AF37);
    outline-offset: 3px;
}

.quiz-overlay {
    position: fixed;
    inset: 0;
    background: rgba(2, 4, 8, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.quiz-overlay.active {
    opacity: 1;
    visibility: visible;
}

.quiz-box {
    background: linear-gradient(145deg, #0A0F18, #020408);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 12px;
    padding: 40px 36px;
    max-width: 520px;
    width: 92%;
    position: relative;
    transform: translateY(20px) scale(0.97);
    transition: transform 0.35s ease;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6), 0 0 30px rgba(212, 175, 55, 0.04);
}

.quiz-overlay.active .quiz-box {
    transform: translateY(0) scale(1);
}

.quiz-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid rgba(240, 244, 248, 0.1);
    background: rgba(240, 244, 248, 0.04);
    color: rgba(240, 244, 248, 0.4);
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.quiz-close:hover {
    background: rgba(240, 244, 248, 0.1);
    color: #F0F4F8;
}

/* Progress Bar */
.quiz-progress {
    display: flex;
    gap: 6px;
    margin-bottom: 28px;
}

.quiz-progress-step {
    flex: 1;
    height: 3px;
    background: rgba(240, 244, 248, 0.08);
    border-radius: 2px;
    transition: background 0.4s ease;
}

.quiz-progress-step.active {
    background: #D4AF37;
}

.quiz-progress-step.done {
    background: #D4AF37;
}

/* Step Header */
.quiz-step-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #94A3B8;
    margin-bottom: 8px;
}

.quiz-step-question {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #F0F4F8;
    margin-bottom: 24px;
    line-height: 1.3;
}

/* Options */
.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.quiz-option {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: rgba(240, 244, 248, 0.03);
    border: 1px solid rgba(240, 244, 248, 0.08);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.25s ease;
    color: #94A3B8;
    font-size: 0.95rem;
    font-weight: 500;
}

.quiz-option:hover {
    border-color: rgba(212, 175, 55, 0.3);
    background: rgba(212, 175, 55, 0.04);
    color: #F0F4F8;
}

.quiz-option.selected {
    border-color: #D4AF37;
    background: rgba(212, 175, 55, 0.08);
    color: #F0F4F8;
}

.quiz-option-icon {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
    flex-shrink: 0;
}

.quiz-option-check {
    margin-left: auto;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(240, 244, 248, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    color: transparent;
    transition: all 0.25s ease;
    flex-shrink: 0;
}

.quiz-option.selected .quiz-option-check {
    border-color: #D4AF37;
    background: #D4AF37;
    color: #020408;
}

/* Navigation */
.quiz-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 24px;
}

.quiz-back {
    background: none;
    border: none;
    color: #94A3B8;
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
    padding: 8px 0;
}

.quiz-back:hover {
    color: #F0F4F8;
}

.quiz-next {
    padding: 12px 28px;
    background: linear-gradient(135deg, #D4AF37, #AA8A2E);
    color: #020408;
    font-weight: 700;
    font-size: 0.9rem;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.4;
    pointer-events: none;
}

.quiz-next.enabled {
    opacity: 1;
    pointer-events: auto;
}

.quiz-next.enabled:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

/* Slide animation */
.quiz-slide {
    display: none;
}

.quiz-slide.active {
    display: block;
    animation: quizSlideIn 0.3s ease;
}

@keyframes quizSlideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Result Card */
.quiz-result-tier {
    text-align: center;
    padding: 24px 0;
}

.quiz-result-icon {
    font-size: 2.5rem;
    color: #D4AF37;
    margin-bottom: 12px;
}

.quiz-result-badge {
    display: inline-block;
    padding: 5px 16px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 100px;
    color: #D4AF37;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 14px;
}

.quiz-result-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #F0F4F8;
    margin-bottom: 6px;
}

.quiz-result-subtitle {
    color: #94A3B8;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.quiz-result-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.quiz-result-stat {
    background: rgba(240, 244, 248, 0.03);
    border: 1px solid rgba(240, 244, 248, 0.06);
    border-radius: 8px;
    padding: 14px 8px;
    text-align: center;
}

.quiz-result-stat-val {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: #D4AF37;
}

.quiz-result-stat-label {
    font-size: 0.65rem;
    color: #94A3B8;
    margin-top: 2px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.quiz-result-ctas {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.quiz-result-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    background: linear-gradient(135deg, #D4AF37, #AA8A2E);
    color: #020408;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 2px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.quiz-result-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
    color: #020408;
}

.quiz-result-cta-sec {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    background: transparent;
    border: 1px solid rgba(240, 244, 248, 0.12);
    color: #F0F4F8;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 2px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quiz-result-cta-sec:hover {
    border-color: #D4AF37;
    color: #D4AF37;
}

@media (max-width: 768px) {
    .quiz-box {
        padding: 28px 20px;
    }

    .quiz-result-stats {
        grid-template-columns: 1fr;
    }
}

.bp-footer-social {
    display: flex;
    justify-content: center;
    gap: 16px;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 24px;
}

.bp-footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.45);
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.bp-footer-social a:hover {
    color: #D4A843;
    border-color: rgba(212, 168, 67, 0.4);
    background: rgba(212, 168, 67, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(212, 168, 67, 0.15);
}

.info-helper-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 20px;
    background: rgba(212, 175, 55, 0.04);
    border: 1px solid rgba(212, 175, 55, 0.12);
    border-radius: 12px;
    margin-top: 20px;
    gap: 12px;
}

.info-helper-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-helper-title {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: #D4AF37;
    line-height: 1.2;
}

.info-helper-desc {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.3;
    margin-top: 2px;
}

/* Toggle Switch */
.info-switch {
    position: relative;
    display: inline-block;
    width: 46px;
    height: 24px;
    flex-shrink: 0;
}

.info-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.info-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    transition: 0.3s;
}

.info-slider:before {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    left: 3px;
    bottom: 3px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    transition: 0.3s;
}

.info-switch input:checked+.info-slider {
    background: rgba(74, 222, 128, 0.3);
}

.info-switch input:checked+.info-slider:before {
    transform: translateX(20px);
    background: #4ade80;
    box-shadow: 0 0 8px rgba(74, 222, 128, 0.5);
}

/* --- Modal Styles --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 24px;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-box {
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px;
    max-width: 480px;
    width: 100%;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-overlay.active .modal-box {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.8rem;
    cursor: pointer;
    transition: color 0.2s;
    line-height: 1;
}

.modal-close:hover {
    color: #fff;
}

.modal-label {
    display: block;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
    margin-top: 16px;
}

.modal-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 12px 16px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s;
}

.modal-input:focus {
    border-color: rgba(255, 255, 255, 0.3);
}

.modal-textarea {
    resize: vertical;
    min-height: 80px;
}

.time-slots {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-top: 4px;
}

.time-slot {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s;
}

.time-slot:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.time-slot.selected {
    background: rgba(255, 255, 255, 0.12);
    border-color: #fff;
    color: #fff;
    font-weight: 600;
}

.modal-submit {
    width: 100%;
    margin-top: 24px;
    padding: 14px 24px;
    background: #fff;
    color: #020408;
    border: none;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.modal-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.1);
}

@media (max-width: 480px) {
    .modal-box {
        padding: 24px;
    }

    .time-slots {
        grid-template-columns: repeat(3, 1fr);
    }
}

.social-sidebar {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 2px;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.social-sidebar.visible {
    opacity: 1;
}

.social-sidebar a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(10, 15, 24, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(240, 244, 248, 0.06);
    border-right: none;
    color: rgba(240, 244, 248, 0.4);
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-sidebar a:first-child {
    border-radius: 6px 0 0 0;
}

.social-sidebar a:last-child {
    border-radius: 0 0 0 6px;
}

.social-sidebar a:hover {
    width: 44px;
}

/* Instagram — gradient pink */
.social-sidebar a[title="Instagram"]:hover {
    background: rgba(225, 48, 108, 0.12);
    color: #E1306C;
    border-color: rgba(225, 48, 108, 0.3);
    box-shadow: -4px 0 16px rgba(225, 48, 108, 0.15);
}

/* Facebook — blue */
.social-sidebar a[title="Facebook"]:hover {
    background: rgba(24, 119, 242, 0.12);
    color: #1877F2;
    border-color: rgba(24, 119, 242, 0.3);
    box-shadow: -4px 0 16px rgba(24, 119, 242, 0.15);
}

/* LinkedIn — blue */
.social-sidebar a[title="LinkedIn"]:hover {
    background: rgba(10, 102, 194, 0.12);
    color: #0A66C2;
    border-color: rgba(10, 102, 194, 0.3);
    box-shadow: -4px 0 16px rgba(10, 102, 194, 0.15);
}

/* TikTok — dark/white */
.social-sidebar a[title="TikTok"]:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: -4px 0 16px rgba(255, 255, 255, 0.08);
}

/* YouTube — red */
.social-sidebar a[title="YouTube"]:hover {
    background: rgba(255, 0, 0, 0.1);
    color: #FF0000;
    border-color: rgba(255, 0, 0, 0.25);
    box-shadow: -4px 0 16px rgba(255, 0, 0, 0.12);
}

/* X / Twitter — dark/white */
.social-sidebar a[title="X / Twitter"]:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: -4px 0 16px rgba(255, 255, 255, 0.08);
}

@media (max-width: 768px) {
    .social-sidebar {
        display: none;
    }
}

.protected-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 50, 50, 0.3);
    border-radius: 20px;
    padding: 40px 48px;
    text-align: center;
    z-index: 999999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(255, 50, 50, 0.1);
}

.protected-popup.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
}

.protected-popup .pp-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    display: block;
}

.protected-popup .pp-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: #e63946;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.protected-popup .pp-sub {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
}

/* Info toggle styles moved to bottom popup */

/* Info Tooltip */
.info-tooltip {
    position: fixed;
    z-index: 999999;
    max-width: 320px;
    background: rgba(10, 10, 10, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(212, 168, 67, 0.3);
    border-radius: 14px;
    padding: 16px 20px;
    pointer-events: none;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 168, 67, 0.08);
}

.info-tooltip.visible {
    opacity: 1;
    transform: translateY(0);
}

.info-tooltip .itt-icon {
    font-size: 1rem;
    margin-bottom: 6px;
    display: block;
}

.info-tooltip .itt-title {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: #D4A843;
    margin-bottom: 6px;
}

.info-tooltip .itt-desc {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

/* Highlight ring on elements in info mode */
body.info-mode a:hover,
body.info-mode button:hover,
body.info-mode h1:hover,
body.info-mode h2:hover,
body.info-mode h3:hover,
body.info-mode p:hover,
body.info-mode .bp-card:hover,
body.info-mode .stat-card:hover,
body.info-mode .faq-item:hover,
body.info-mode .invest-table tr:hover,
body.info-mode .calc-box:hover,
body.info-mode .section-badge:hover,
body.info-mode .hero-trust:hover,
body.info-mode .waitlist-card:hover,
body.info-mode li:hover {
    outline: 2px dashed rgba(212, 168, 67, 0.5) !important;
    outline-offset: 4px;
}

.calendar-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(2, 4, 8, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.calendar-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.calendar-modal {
    background: var(--glass-bg, rgba(255, 255, 255, 0.03));
    border: 1px solid var(--border, rgba(255, 255, 255, 0.08));
    border-radius: var(--radius, 20px);
    padding: 40px;
    max-width: 500px;
    width: 90%;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.4s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.calendar-modal-overlay.active .calendar-modal {
    transform: translateY(0);
}

.calendar-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: var(--text-muted, #94A3B8);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.calendar-modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.calendar-modal .icon-top {
    width: 60px;
    height: 60px;
    background: rgba(229, 184, 11, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold, #E5B80B);
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.calendar-modal h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
    color: #fff;
    font-family: 'Outfit', sans-serif;
}

.calendar-modal p {
    color: var(--text-muted, #94A3B8);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 32px;
}

.calendar-form-group {
    margin-bottom: 20px;
}

.calendar-form-group input {
    width: 100%;
    padding: 14px 20px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border, rgba(255, 255, 255, 0.08));
    border-radius: 12px;
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.calendar-form-group input:focus {
    outline: none;
    border-color: var(--gold, #E5B80B);
    box-shadow: 0 0 0 3px rgba(229, 184, 11, 0.1);
}

.calendar-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--gold, #E5B80B), #AA8A2E);
    color: #000;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.calendar-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(229, 184, 11, 0.3);
}

body {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    pointer-events: none
}