
















.bg-darker {
    background-color: var(--color-bg-darker);
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.text-gold { color: var(--color-gold); }
.text-green { color: var(--color-success); }
.relative { position: relative; }
.z-10 { z-index: 10; }
.overflow-hidden { overflow: hidden; }

/* ==========================================================================
   Typography
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-family: var(--font-display);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin-bottom: 3rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 100px;
    background: var(--color-gold-dim);
    color: var(--color-gold);
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: background-color var(--transition-normal), color var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal), transform var(--transition-normal);
    border: none;
    will-change: transform, box-shadow;
    position: relative;
}

.btn:active {
    transform: translateY(0) scale(0.98) !important;
}

.btn i, .btn svg {
    transition: transform var(--transition-normal);
}

.btn:hover i, .btn:hover svg {
    transform: translateX(3px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-gold-gradient-start, #d4af37) 0%, var(--color-gold-gradient-end, #b89324) 100%);
    color: #000;
    font-weight: 600;
    box-shadow: 0 4px 15px var(--color-gold-dim);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 28px rgba(212, 175, 55, 0.45), 0 8px 24px -4px rgba(212, 175, 55, 0.3);
}

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

.btn-secondary:hover {
    background: var(--bg-glass-card-hover, rgba(255, 255, 255, 0.1));
    border-color: var(--color-gold-dim);
    box-shadow: var(--shadow-ambient);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border-glass, rgba(255, 255, 255, 0.2));
    color: var(--color-text-primary);
}

.btn-outline:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
    box-shadow: 0 0 16px -4px var(--color-gold-dim);
    transform: translateY(-2px);
}

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

.btn-full {
    width: 100%;
}

.bg-dark {
    background-color: var(--color-bg-darker) !important;
}

/* ==========================================================================
   Navbar & Scroll Padding
   ========================================================================== */
html {
    scroll-padding-top: 100px;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    border-bottom: 1px solid transparent;
    background: rgba(5, 8, 16, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.navbar.nav-hidden {
    transform: translateY(-100%);
}

.navbar.scrolled {
    background: rgba(5, 8, 16, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

/* Light mode navbar */
[data-theme='light'] .navbar {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

[data-theme='light'] .navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}


.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.logo-icon {
    width: 28px;
    height: 28px;
    color: var(--color-gold);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    padding-bottom: 0.25rem;
    transition: var(--transition-fast);
}

.nav-links a:hover,
.nav-links a.active,
.nav-links a.current,
.nav-links a[aria-current="page"] {
    color: var(--color-text-primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--color-gold), #e6c875);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
    opacity: 0;
}

.nav-links a:hover::after,
.nav-links a.active::after,
.nav-links a.current::after,
.nav-links a[aria-current="page"]::after {
    transform: scaleX(1);
    opacity: 1;
}

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--color-text-primary);
    cursor: pointer;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 140px;
    padding-bottom: 60px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    background: radial-gradient(circle at 50% 30%, rgba(20, 30, 55, 0.45) 0%, var(--color-bg-primary) 70%),
                linear-gradient(180deg, var(--color-bg-primary) 0%, rgba(5, 8, 16, 0.95) 100%);
    background-image: 
        radial-gradient(circle at 50% 30%, rgba(20, 30, 55, 0.45) 0%, var(--color-bg-primary) 70%),
        radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 100% 100%, 32px 32px;
}

@keyframes float-orb {
    0%, 100% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    50% {
        transform: translate3d(-30px, 20px, 0) scale(1.08);
    }
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(130px);
    opacity: 0.35;
    will-change: transform;
    animation: float-orb 16s ease-in-out infinite;
}

.orb-1 {
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, var(--color-gold) 0%, transparent 70%);
    top: -150px;
    right: -150px;
    opacity: 0.22;
}

.orb-2 {
    width: 850px;
    height: 850px;
    background: radial-gradient(circle, var(--color-accent-blue) 0%, transparent 70%);
    bottom: -350px;
    left: -250px;
    opacity: 0.25;
    animation-delay: -8s;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 900px;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 4.5rem;
    font-family: var(--font-display);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-title span {
    color: var(--color-gold);
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    max-width: 700px;
    margin-bottom: 3rem;
}

.hero-cta-group {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 5rem;
    justify-content: center;
    width: 100%;
}

.trust-indicators {
    display: flex;
    gap: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 3rem;
    width: 100%;
    justify-content: center;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.trust-value {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--color-gold);
    line-height: 1;
}

.trust-val-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.2rem;
    margin-bottom: 0.5rem;
}

.trust-suffix {
    font-size: 1.5rem;
    color: var(--color-gold);
    font-weight: 600;
}

.trust-label {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================================================
   Ticker
   ========================================================================== */
.market-ticker {
    background: var(--color-bg-darker);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem 0;
    overflow: hidden;
    display: flex;
    white-space: nowrap;
}

.ticker-track {
    display: flex;
    animation: scroll-ticker 35s linear infinite;
    will-change: transform;
}

.ticker-track:hover {
    animation-play-state: paused;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 2rem;
    border-right: 1px solid var(--border-glass, rgba(255, 255, 255, 0.1));
    transition: background var(--transition-fast);
    border-radius: var(--radius-sm);
}

.ticker-item:hover {
    background: var(--bg-glass-card-hover, rgba(255, 255, 255, 0.05));
}

.ticker-item .asset {
    font-weight: 600;
}

.ticker-item .price {
    color: var(--color-text-muted);
}

.ticker-item .change.positive {
    color: var(--color-success);
}

.ticker-item .change.negative {
    color: var(--color-danger);
}

@keyframes scroll-ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.image-placeholder {
    width: 100%;
    height: 600px;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    position: relative;
}

.image-placeholder::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.1);
    border-radius: var(--radius-2xl);
    pointer-events: none;
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%) brightness(0.8);
    transition: var(--transition-normal);
}

.image-placeholder:hover .main-image {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.05);
}

.glass-card {
    background: rgba(20, 25, 40, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.absolute-stat {
    position: absolute;
    bottom: -30px;
    right: -30px;
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 10;
    max-width: 250px;
}

.feature-list {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    list-style: none;
    padding: 0;
}

.feature-list li {
    display: block;
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.85rem;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--color-text-primary);
}

.feature-list li i,
.feature-list li svg,
.feature-list li::before {
    position: absolute;
    left: 0;
    top: 0.2rem;
    width: 20px;
    height: 20px;
    color: var(--color-gold);
    stroke: var(--color-gold);
    flex-shrink: 0;
}



/* ==========================================================================
   Categories / Portfolio
   ========================================================================== */
.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.category-card {
    background: var(--bg-glass-card, rgba(20, 25, 40, 0.65));
    border: 1px solid var(--border-glass, rgba(255, 255, 255, 0.08));
    border-radius: var(--radius-2xl);
    overflow: hidden;
    transition: background-color var(--transition-normal), color var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal), transform var(--transition-normal);
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    will-change: transform, box-shadow;
}

.category-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-border-gold, rgba(212, 175, 55, 0.4));
    box-shadow: var(--shadow-card-hover);
    background: var(--bg-glass-card-hover, rgba(26, 33, 52, 0.85));
}

.card-image {
    height: 240px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow), filter var(--transition-normal);
    filter: brightness(0.8) contrast(1.05);
    will-change: transform;
}

.category-card:hover .card-image img {
    transform: scale(1.08);
    filter: brightness(1) contrast(1.05);
}

.card-content {
    padding: 2.5rem 2rem;
    position: relative;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--color-bg-darker);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -30px;
    color: var(--color-gold);
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

.card-content h3 {
    font-size: 1.5rem;
    font-family: var(--font-display);
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.card-content p {
    color: var(--color-text-muted);
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
    min-height: 80px;
}

.card-stats {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat .value {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-gold);
}

.stat .label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--color-text-muted);
    letter-spacing: 1px;
}

/* ==========================================================================
   Investment Plans
   ========================================================================== */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: center;
}

.plan-card {
    background: var(--bg-glass-card, rgba(20, 25, 40, 0.65));
    border: 1px solid var(--border-glass, rgba(255, 255, 255, 0.08));
    border-radius: var(--radius-2xl);
    padding: 3rem 2rem;
    transition: background-color var(--transition-normal), color var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal), transform var(--transition-normal);
    position: relative;
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    will-change: transform, box-shadow;
}

.plan-card:hover {
    border-color: var(--color-border-gold, rgba(212, 175, 55, 0.45));
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-6px);
    background: var(--bg-glass-card-hover, rgba(26, 33, 52, 0.85));
}

.plan-card.featured {
    background: linear-gradient(180deg, rgba(26, 34, 56, 0.95) 0%, rgba(12, 17, 34, 0.95) 100%);
    border: 1.5px solid var(--color-gold);
    transform: scale(1.05);
    box-shadow: var(--shadow-gold-glow);
    z-index: 2;
}

.plan-card.featured:hover {
    transform: scale(1.05) translateY(-6px);
    box-shadow: 0 0 36px -4px rgba(212, 175, 55, 0.5), 0 12px 32px -4px rgba(212, 175, 55, 0.3);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-gold);
    color: #000;
    padding: 4px 16px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plan-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.plan-header h3 {
    font-size: 1.75rem;
    font-family: var(--font-display);
    margin-bottom: 0.5rem;
}

.plan-header p {
    color: var(--color-text-muted);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.plan-price {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.plan-price .currency {
    font-size: 1.5rem;
    color: var(--color-gold);
    margin-top: 0.25rem;
}

.plan-price .amount {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.plan-price .minimum {
    display: block;
    width: 100%;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

.plan-features {
    margin-bottom: 2.5rem;
}

.plan-features li {
    display: block;
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.85rem;
    font-size: 0.9375rem;
    line-height: 1.5;
}

.plan-features li i,
.plan-features li svg {
    position: absolute;
    left: 0;
    top: 0.1rem;
    width: 18px;
    height: 18px;
    color: var(--color-gold);
    stroke: var(--color-gold);
}

.plan-features li.disabled {
    color: var(--color-text-muted);
    opacity: 0.5;
}

.plan-features li.disabled i {
    color: var(--color-text-muted);
}

/* ==========================================================================
   Dashboard Preview
   ========================================================================== */
.dashboard-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.metrics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.metric h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--color-gold);
}

.metric p {
    color: var(--color-text-muted);
    font-size: 0.875rem;
}

.dashboard-visual {
    position: relative;
}

.mockup-window {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
    transition: transform 0.5s ease;
    box-shadow: -20px 20px 50px rgba(0,0,0,0.5);
    background: var(--color-bg-primary);
}

.mockup-window:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.mockup-header {
    height: 40px;
    background: #111;
    display: flex;
    align-items: center;
    padding: 0 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.mockup-header .dots {
    display: flex;
    gap: 6px;
}

.mockup-header .dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #444;
}

.mockup-header .dots span:nth-child(1) { background: #ff5f56; }
.mockup-header .dots span:nth-child(2) { background: #ffbd2e; }
.mockup-header .dots span:nth-child(3) { background: #27c93f; }

.mockup-title {
    flex: 1;
    text-align: center;
    font-size: 0.75rem;
    color: #888;
}

.mockup-body {
    display: flex;
    flex: 1;
    overflow: hidden;
}

.mockup-sidebar {
    width: 60px;
    border-right: 1px solid rgba(255,255,255,0.05);
    padding: 1rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.mockup-nav-item {
    width: 30px;
    height: 30px;
    border-radius: 6px;
    background: rgba(255,255,255,0.05);
}

.mockup-nav-item.active {
    background: var(--color-gold-dim);
    border: 1px solid var(--color-gold);
}

.mockup-main {
    flex: 1;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mockup-top-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.m-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
}

.m-label {
    font-size: 0.75rem;
    color: #888;
    margin-bottom: 0.25rem;
}

.m-value {
    font-size: 1.25rem;
    font-weight: 600;
}

.mockup-chart-container {
    flex: 1;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px;
    padding: 1rem;
    position: relative;
}

/* ==========================================================================
   Why Choose Us
   ========================================================================== */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.advantage-card {
    padding: 2rem;
    background: rgba(255,255,255,0.02);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition-normal);
}

.advantage-card:hover {
    background: rgba(255,255,255,0.05);
    transform: translateY(-5px);
}

.advantage-card .icon-wrapper {
    width: 50px;
    height: 50px;
    background: var(--color-gold-dim);
    color: var(--color-gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.advantage-card h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.advantage-card p {
    color: var(--color-text-muted);
    font-size: 0.9375rem;
}

/* ==========================================================================
   Security Section
   ========================================================================== */
.security-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.shield-container {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.giant-shield {
    width: 120px;
    height: 120px;
    color: var(--color-gold);
    z-index: 2;
    filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.4));
}

.orbit {
    position: absolute;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.orbit::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    border: 1px dashed rgba(255,255,255,0.05);
    border-radius: 50%;
}

.orbit-icon {
    position: absolute;
    width: 40px;
    height: 40px;
    background: var(--color-bg-primary);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    padding: 8px;
}

.icon-1 { top: -20px; left: 50%; transform: translateX(-50%); }
.icon-2 { bottom: 40px; right: -10px; }
.icon-3 { bottom: 40px; left: -10px; }

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

.security-list {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sec-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.sec-item i {
    margin-top: 4px;
}

.sec-item strong {
    display: block;
    margin-bottom: 0.25rem;
}

.sec-item span {
    color: var(--color-text-muted);
    font-size: 0.9375rem;
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.testimonial-card {
    background: var(--color-bg-card);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 2.5rem;
    border-radius: var(--radius-2xl);
    position: relative;
}

.quote-icon {
    position: absolute;
    top: 2rem;
    right: 2rem;
    color: rgba(212, 175, 55, 0.15);
}

.quote-icon i {
    width: 40px;
    height: 40px;
}

.testimonial-text {
    font-size: 1.125rem;
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--color-gold-dim);
    color: var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-family: var(--font-display);
}

.author-avatar-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.author-info h4 {
    margin: 0;
    font-size: 1rem;
}

.author-info span {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
}

.faq-header {
    position: sticky;
    top: 100px;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.125rem;
    font-family: var(--font-sans);
    font-weight: 500;
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--color-gold);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding-bottom: 1.5rem;
    max-height: 300px;
}

.faq-answer p {
    color: var(--color-text-muted);
}

/* ==========================================================================
   CTA Section
   ========================================================================== */
.cta-section {
    position: relative;
    overflow: hidden;
    padding: 10rem 0;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(5,8,16,1) 0%, rgba(212,175,55,0.05) 50%, rgba(5,8,16,1) 100%), url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?q=80&w=2070&auto=format&fit=crop') no-repeat center center;
    background-size: cover;
    filter: grayscale(100%) brightness(0.2);
}

.cta-title {
    font-size: 3.5rem;
    font-family: var(--font-display);
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* ==========================================================================
   Newsletter Section (Phase 2 Overhaul)
   ========================================================================== */

.newsletter-banner {
    padding: 4rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.12) 0%, transparent 60%),
                var(--bg-glass-card);
    border: 1px solid var(--color-border-gold, rgba(212, 175, 55, 0.3));
    box-shadow: 0 0 40px -10px rgba(212, 175, 55, 0.15), var(--shadow-card);
}

.newsletter-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: var(--color-gold-dim);
    border: 1px solid var(--color-border-gold);
    border-radius: var(--radius-full);
    color: var(--color-gold);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.newsletter-form-elevated {
    max-width: 540px;
    margin: 0 auto 1.5rem auto;
}

.newsletter-input-group {
    display: flex;
    align-items: center;
    background: var(--color-bg-primary);
    border: 1px solid var(--border-glass, rgba(255, 255, 255, 0.15));
    border-radius: var(--radius-lg);
    padding: 0.35rem;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: background-color var(--transition-normal), color var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal), transform var(--transition-normal);
}

.newsletter-input-group:focus-within {
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px var(--color-gold-dim), inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.newsletter-icon {
    width: 20px;
    height: 20px;
    color: var(--color-text-muted);
    margin-left: 1rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-icon svg,
.newsletter-icon i {
    width: 20px;
    height: 20px;
}

.newsletter-input-group input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 0.85rem 1rem;
    color: var(--color-text-primary);
    font-size: var(--text-sm);
    outline: none;
}

.newsletter-input-group input::placeholder {
    color: var(--color-text-muted);
}

.newsletter-input-group .btn {
    margin: 0;
    padding: 0.75rem 1.5rem;
    white-space: nowrap;
}

.newsletter-trust-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    color: var(--color-text-muted);
    font-size: var(--text-xs);
    opacity: 0.8;
}

.newsletter-trust-row span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

@media (max-width: 640px) {
    .newsletter-banner {
        padding: 2.5rem 1.5rem;
    }
    .newsletter-input-group {
        flex-direction: column;
        padding: 0.75rem;
        gap: 0.75rem;
    }
    .newsletter-icon {
        display: none;
    }
    .newsletter-input-group input {
        width: 100%;
        text-align: center;
        padding: 0.5rem;
    }
    .newsletter-input-group .btn {
        width: 100%;
    }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background: #020305;
    padding-top: 5rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

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

.footer-brand .logo {
    margin-bottom: 1.5rem;
}

.footer-desc {
    color: var(--color-text-muted);
    font-size: 0.9375rem;
    margin-bottom: 2rem;
    max-width: 300px;
}

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

.social-links 

.social-links a:hover {
    background: var(--color-gold);
    color: #000;
}

.footer-links h4, .footer-contact h4 {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.footer-links ul li {
    margin-bottom: 0.75rem;
}

.footer-links 

.footer-links a:hover {
    color: var(--color-gold);
}

.footer-contact ul li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1rem;
    color: var(--color-text-muted);
    font-size: 0.9375rem;
    word-break: break-word;
    overflow-wrap: break-word;
}

.footer-contact i {
    width: 20px;
    color: var(--color-gold);
    flex-shrink: 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--color-text-muted);
    font-size: 0.875rem;
}

.legal-links {
    display: flex;
    gap: 2rem;
}

.legal-links a:hover {
    color: var(--color-text-primary);
}

.risk-warning {
    padding: 1.5rem 0 3rem;
    font-size: 0.75rem;
    color: #555;
    text-align: justify;
    line-height: 1.6;
}

/* ==========================================================================
   Advanced UI/UX Enhancements
   ========================================================================== */
.cursor-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212,175,55,0.06) 0%, rgba(0,0,0,0) 60%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 10;
    transition: width 0.3s, height 0.3s;
    mix-blend-mode: screen;
}

.reveal {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ROI Calculator */
.roi-calculator { margin-top: 4rem; }
.calculator-glass {
    background: var(--color-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-2xl);
    padding: 3rem;
    position: relative;
    overflow: hidden;
}
.calc-header { margin-bottom: 2rem; text-align: center; }
.calc-slider-area { margin-bottom: 2.5rem; }
.calc-tier-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding: 1rem 1.4rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(15, 23, 42, 0.6) 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2), inset 0 1px 1px rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    transition: var(--transition-normal);
}
.calc-tier-header:hover {
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.15), inset 0 1px 1px rgba(255, 255, 255, 0.1);
}
.calc-tier-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.tier-icon-badge {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--color-gold, #d4af37) 0%, #a88220 100%);
    color: #050810;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.35);
    flex-shrink: 0;
}
.tier-icon-badge svg,
.tier-icon-badge i {
    width: 22px;
    height: 22px;
    stroke-width: 2.2;
}
.tier-text-group {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}
.calc-tier-label {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-text-primary, #fff);
    letter-spacing: 0.3px;
}
.calc-tier-subtitle {
    font-size: 0.8rem;
    color: var(--color-gold, #d4af37);
    font-weight: 500;
}
.slider-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    font-weight: 500;
}
.tier-badge {
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.1) 100%);
    color: var(--color-gold);
    padding: 0.45rem 1.15rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    border: 1px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.custom-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100% !important;
    height: 10px;
    border-radius: 99px;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.4) 0%, rgba(255, 255, 255, 0.08) 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    outline: none;
    margin: 1rem 0 0.5rem;
    cursor: pointer;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.4);
    transition: background 0.3s ease;
}

.custom-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f5d77f 0%, #c59b27 100%);
    border: 2px solid #ffffff;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.8), 0 2px 6px rgba(0, 0, 0, 0.5);
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.custom-slider::-webkit-slider-thumb:hover {
    transform: scale(1.15);
    box-shadow: 0 0 22px rgba(212, 175, 55, 1), 0 4px 10px rgba(0, 0, 0, 0.6);
}

.custom-slider::-moz-range-thumb {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f5d77f 0%, #c59b27 100%);
    border: 2px solid #ffffff;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.8), 0 2px 6px rgba(0, 0, 0, 0.5);
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.custom-slider::-moz-range-thumb:hover {
    transform: scale(1.15);
    box-shadow: 0 0 22px rgba(212, 175, 55, 1), 0 4px 10px rgba(0, 0, 0, 0.6);
}

[data-theme='light'] .custom-slider {
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.4) 0%, rgba(0, 0, 0, 0.08) 100%);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.08);
}

.current-deposit { text-align: center; }
.current-deposit span { color: var(--color-text-muted); font-size: 0.875rem; text-transform: uppercase; letter-spacing: 1px; }
.deposit-val-display { font-size: 2.25rem; font-weight: 700; color: var(--color-text-primary); margin-top: 0.25rem; }
.calc-results { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.result-box { background: rgba(0,0,0,0.3); padding: 1.5rem; border-radius: var(--radius-md); text-align: center; border: 1px solid rgba(255,255,255,0.05); }
.result-box.highlighted { background: linear-gradient(180deg, rgba(20,25,40,1) 0%, rgba(10,15,30,1) 100%); border-color: var(--color-gold); }
.result-label { font-size: 0.75rem; text-transform: uppercase; color: var(--color-text-muted); display: block; margin-bottom: 0.5rem; }

/* Activity Feed */
.activity-feed {
    background: rgba(20, 25, 40, 0.4);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--radius-md);
    overflow: hidden;
}
.feed-header {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    background: rgba(0,0,0,0.2);
    font-size: 0.875rem;
    font-weight: 600;
}
.live-indicator { display: flex; align-items: center; gap: 0.5rem; color: var(--color-text-muted); }
.pulse { width: 8px; height: 8px; background: var(--color-success); border-radius: 50%; box-shadow: 0 0 10px var(--color-success); animation: pulse 2s infinite; }
.feed-list {
    max-height: 280px;
    overflow-y: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}
.feed-item {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.02);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9375rem;
    animation: slideIn 0.5s ease-out forwards;
}
.feed-item:last-child { border-bottom: none; }
.feed-user { color: var(--color-text-primary); font-weight: 500; }
.feed-action { color: var(--color-text-muted); }
.feed-amount { color: var(--color-gold); font-family: monospace; font-size: 1rem; }
.feed-time { font-size: 0.75rem; color: var(--color-text-muted); }
@keyframes slideIn { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 0% { opacity: 0.5; box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); } 70% { opacity: 1; box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); } 100% { opacity: 0.5; box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); } }

/* ==========================================================================
   Premium Institutional Support Floating Button
   ========================================================================== */
.floating-support-btn {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 52px;
    height: 52px;
    padding: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-gold, #d4af37) 0%, #b89324 100%);
    color: #050810;
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 10px 28px rgba(212, 175, 55, 0.4), 0 4px 12px rgba(0, 0, 0, 0.4);
    cursor: pointer;
    z-index: 9990;
    transition: background-color 0.3s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.floating-support-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 16px 36px rgba(212, 175, 55, 0.55), 0 8px 18px rgba(0, 0, 0, 0.3);
}

.support-btn-pulse {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background-color: #10b981;
    border: 2px solid #050810;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: supportPulse 2s infinite;
}

@keyframes supportPulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.support-btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Light Mode Institutional Support Button */
[data-theme='light'] .floating-support-btn {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f172a 100%);
    color: #ffffff;
    border: 1px solid rgba(212, 175, 55, 0.45);
    box-shadow: 0 12px 30px rgba(26, 26, 46, 0.25), 0 4px 12px rgba(0, 0, 0, 0.08);
}

[data-theme='light'] .floating-support-btn:hover {
    box-shadow: 0 18px 40px rgba(26, 26, 46, 0.35), 0 0 0 2px rgba(212, 175, 55, 0.5);
}

[data-theme='light'] .floating-support-btn svg {
    color: var(--color-gold);
    stroke: var(--color-gold);
}

[data-theme='light'] .support-btn-pulse {
    border-color: #1a1a2e;
}

@media (max-width: 480px) {
    .floating-support-btn {
        bottom: 20px;
        right: 20px;
        width: 48px;
        height: 48px;
    }
}

/* ==========================================================================
   Responsive Architecture & Safety
   ========================================================================== */
html, body {
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
}

/* Card Grid Column Variants (default desktop) */
.card-grid-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Large Tablets / Small Desktops */
@media (max-width: 1200px) {
    .advantages-grid,
    .plans-grid,
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Tablets */
@media (max-width: 1024px) {
    .nav-links {
        gap: 1.25rem;
    }
    .nav-links a {
        font-size: 0.9rem;
    }
    .hero-title {
        font-size: 3.25rem;
    }
    .about-container,
    .dashboard-container,
    .security-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .category-grid,
    .plans-grid,
    .insights-grid,
    .pricing-grid,
    .testimonial-grid,
    .advantages-grid,
    .card-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    .mockup-sidebar {
        width: 200px;
    }
    .mockup-main {
        padding: 1.5rem;
    }
    .faq-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .faq-header {
        position: static;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    .trust-indicators {
        gap: 2rem;
    }
}

/* Small Tablets / Large Phones */
@media (max-width: 768px) {
    /* Mobile Navigation Dropdown */
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--color-bg-sidebar, #050810);
        flex-direction: column;
        padding: 1.5rem 2rem 1rem 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        z-index: 150;
        gap: 1.25rem;
    }
    .nav-links.active {
        display: flex;
    }
    .nav-actions {
        display: none;
        position: absolute;
        top: calc(100% + 185px);
        left: 0;
        width: 100%;
        background: var(--color-bg-sidebar, #050810);
        flex-direction: column;
        padding: 0.5rem 2rem 1.5rem 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 20px 30px rgba(0, 0, 0, 0.5);
        z-index: 150;
        gap: 1rem;
    }
    .nav-actions.active {
        display: flex;
    }
    .mobile-menu-btn {
        display: block;
        z-index: 200;
    }

    /* Light Mode Override for Mobile Menu */
    [data-theme='light'] .nav-links.active,
    [data-theme='light'] .nav-actions.active {
        background: #ffffff !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    }
    [data-theme='light'] .nav-links.active a {
        color: var(--color-text-primary, #1e293b) !important;
    }

    /* Global 1-Column Stacking for Cards & Containers */
    .about-container,
    .dashboard-container,
    .category-grid,
    .plans-grid,
    .insights-grid,
    .pricing-grid,
    .testimonial-grid,
    .advantages-grid,
    .trust-indicators,
    .card-grid,
    .calculator-section {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    .plans-grid {
        justify-items: center;
    }
    
    .plan-card {
        max-width: 400px;
        width: 100%;
        margin: 0 auto;
    }

    /* ─── Mobile Footer Redesign ─── */
    .footer {
        padding-top: 3rem;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 2rem 1.5rem !important;
        text-align: center;
    }
    .footer-brand {
        grid-column: 1 / -1;
        margin-bottom: 0.5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .footer-desc {
        max-width: 100%;
        margin-bottom: 1rem;
    }
    .footer-links h4,
    .footer-contact h4 {
        font-size: 0.875rem;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        margin-bottom: 0.75rem;
        color: var(--color-gold);
    }
    .footer-links ul li {
        margin-bottom: 0.5rem;
    }
    .footer-links ul li a {
        font-size: 0.875rem;
    }
    .footer-contact {
        grid-column: 1 / -1;
    }
    .footer-contact ul li {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
        gap: 0.75rem;
        justify-content: center;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 1.5rem 0;
    }
    .legal-links {
        gap: 1.25rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }
    .section-title,
    .cta-title {
        font-size: 2.25rem;
    }
    .hero-cta-group {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }
    .hero-cta-group .btn,
    .cta-buttons .btn {
        width: 100%;
        text-align: center;
    }
    .mockup-sidebar {
        display: none;
    }
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    .table-responsive {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        width: 100%;
    }
    .plan-card.featured {
        transform: none;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    .shield-container {
        width: 100%;
        height: 300px;
        overflow: hidden;
    }
    .orbit {
        width: 220px;
        height: 220px;
    }
    .orbit::before {
        width: 300px;
        height: 300px;
    }
    .absolute-stat {
        bottom: 1rem;
        right: 1rem;
        max-width: calc(100% - 2rem);
    }
    .image-placeholder {
        height: 400px;
    }
    .calculator-glass {
        padding: 1.5rem !important;
    }
    .calc-tier-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    .custom-slider {
        width: 100% !important;
    }
}

/* Phones */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .trust-value {
        font-size: 2rem;
    }
    .card-content {
        padding: 1.5rem;
    }
    .calculator-form input {
        width: 100%;
    }
    .calc-results {
        grid-template-columns: 1fr !important;
        gap: 0.75rem;
    }
    .deposit-val-display {
        font-size: 1.75rem;
    }

    /* Footer: single column on small phones */
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    .footer-contact {
        grid-column: 1;
    }
    .footer-brand {
        grid-column: 1;
    }
    .section-title,
    .cta-title {
        font-size: 1.75rem;
    }
    .section-label {
        font-size: 0.7rem;
    }
    .container {
        padding: 0 1rem;
    }
    .section {
        padding: 3rem 0;
    }
    .orbit {
        width: 180px;
        height: 180px;
    }
    .orbit::before {
        width: 240px;
        height: 240px;
    }
    .shield-container {
        height: 250px;
    }
}

/* ==========================================================================
   Custom Theme Toggle Switch
   ========================================================================== */
.theme-toggle {
    position: relative;
    width: 52px;
    height: 28px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 9999px;
    cursor: pointer;
    transition: background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    padding: 0 3px;
    flex-shrink: 0;
}

.theme-toggle:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(212, 175, 55, 0.3);
}

.theme-toggle-track {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    overflow: hidden;
}

.theme-toggle-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4af37, #f0d060);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.theme-toggle-thumb svg {
    width: 13px;
    height: 13px;
    color: #1a1a2e;
    transition: opacity 0.3s ease;
}

.theme-toggle .sun-icon,
.theme-toggle .moon-icon {
    position: absolute;
    width: 13px;
    height: 13px;
    transition: opacity 0.3s ease;
}

/* Dark mode: thumb on the left, show sun icon */
.theme-toggle .sun-icon {
    opacity: 1;
}
.theme-toggle .moon-icon {
    opacity: 0;
}
.theme-toggle .theme-toggle-thumb {
    transform: translateX(0);
}

/* Light mode: thumb slides right, show moon icon */
[data-theme='light'] .theme-toggle {
    background: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.1);
}

[data-theme='light'] .theme-toggle:hover {
    background: rgba(0, 0, 0, 0.07);
    border-color: rgba(184, 147, 36, 0.3);
}

[data-theme='light'] .theme-toggle .theme-toggle-thumb {
    transform: translateX(24px);
    background: linear-gradient(135deg, #1e293b, #334155);
}

[data-theme='light'] .theme-toggle .sun-icon {
    opacity: 0;
}

[data-theme='light'] .theme-toggle .moon-icon {
    opacity: 1;
}

[data-theme='light'] .theme-toggle-thumb svg {
    color: #f8fafc;
}

/* ==========================================================================
   Global Light Mode Overrides for style.css components
   ========================================================================== */

/* Hero section */
[data-theme='light'] .hero-bg {
    background: radial-gradient(circle at 50% 30%, rgba(184, 147, 36, 0.06) 0%, var(--color-bg-primary) 70%),
                linear-gradient(180deg, var(--color-bg-primary) 0%, var(--color-bg-darker) 100%);
    background-image:
        radial-gradient(circle at 50% 30%, rgba(184, 147, 36, 0.06) 0%, var(--color-bg-primary) 70%),
        radial-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 100% 100%, 32px 32px;
}

[data-theme='light'] .glow-orb {
    opacity: 0.3;
}

/* Cards and sections */
[data-theme='light'] .category-card,
[data-theme='light'] .plan-card {
    background: var(--bg-glass-card);
    border-color: var(--border-glass);
    box-shadow: var(--shadow-card);
}

[data-theme='light'] .category-card:hover,
[data-theme='light'] .plan-card:hover {
    box-shadow: var(--shadow-card-hover);
    border-color: var(--border-glass-hover);
}

/* Footer */
[data-theme='light'] .footer {
    background: var(--color-bg-darker);
    color: var(--color-text-primary);
}

[data-theme='light'] .footer-bottom {
    border-top-color: rgba(0, 0, 0, 0.06);
}

/* Ticker / marquee */
[data-theme='light'] .ticker {
    background: var(--color-bg-darker);
    border-color: rgba(0, 0, 0, 0.06);
}

/* Trust indicators */
[data-theme='light'] .trust-indicator {
    border-color: rgba(0, 0, 0, 0.06);
}

/* Section backgrounds */
[data-theme='light'] .bg-darker {
    background-color: var(--color-bg-darker);
}

/* About section */
[data-theme='light'] .about-feature {
    background: var(--bg-glass-card);
    border-color: var(--border-glass);
}

/* Testimonials */
[data-theme='light'] .testimonial-card {
    background: var(--bg-glass-card);
    border-color: var(--border-glass);
}

/* FAQ */
[data-theme='light'] .faq-item {
    background: var(--bg-glass-card);
    border-color: var(--border-glass);
}

/* Newsletter */
[data-theme='light'] .newsletter-card {
    background: var(--bg-glass-card);
    border-color: var(--border-glass);
}

/* Calculator */
[data-theme='light'] .calculator-widget,
[data-theme='light'] .calculator-glass {
    background: rgba(255, 255, 255, 0.88);
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

[data-theme='light'] .calc-tier-header {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(255, 255, 255, 0.9) 100%);
    border-color: rgba(212, 175, 55, 0.45);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

[data-theme='light'] .calc-tier-label {
    color: #0f172a !important;
}

[data-theme='light'] .tier-badge {
    background: linear-gradient(90deg, #d4af37 0%, #b89324 100%);
    color: #ffffff;
    border-color: #b89324;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* Market insight cards */
[data-theme='light'] .insight-card {
    background: var(--bg-glass-card);
    border-color: var(--border-glass);
}

/* Badges Light Mode */
[data-theme='light'] .badge,
[data-theme='light'] .section-badge {
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.35);
    color: #8c6b0c;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

/* About Section Card Container Light Mode */
[data-theme='light'] .about-content {
    background: rgba(255, 255, 255, 0.75);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

/* Glass Card & Absolute Stat Light Mode */
[data-theme='light'] .glass-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

[data-theme='light'] .absolute-stat,
[data-theme='light'] .absolute-stat * {
    color: var(--color-text-primary);
}

[data-theme='light'] .absolute-stat .text-gold {
    color: var(--color-gold) !important;
}

[data-theme='light'] .absolute-stat .text-muted {
    color: var(--color-text-muted) !important;
}

/* CTA Section Light Mode ("Ready to Elevate Your Portfolio?") */
[data-theme='light'] .cta-section {
    background: var(--color-bg-primary);
}

[data-theme='light'] .cta-background {
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.96) 0%, rgba(241, 245, 249, 0.96) 100%),
                radial-gradient(circle at 50% 50%, rgba(184, 147, 36, 0.08) 0%, transparent 60%);
    filter: none;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

[data-theme='light'] .cta-title {
    color: var(--color-text-primary);
}

[data-theme='light'] .cta-description {
    color: var(--color-text-muted);
}

[data-theme='light'] .cta-buttons .btn-outline.bg-dark {
    background: #ffffff !important;
    color: var(--color-text-primary) !important;
    border-color: rgba(0, 0, 0, 0.15) !important;
}

[data-theme='light'] .cta-buttons .btn-outline.bg-dark:hover {
    background: rgba(0, 0, 0, 0.04) !important;
    border-color: var(--color-gold) !important;
}

/* Live Activity Feed Light Mode */
[data-theme='light'] .activity-feed {
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}
[data-theme='light'] .feed-header {
    background: rgba(0, 0, 0, 0.03);
    border-bottom-color: rgba(0, 0, 0, 0.08);
}
[data-theme='light'] .feed-item {
    border-bottom-color: rgba(0, 0, 0, 0.06);
}

/* Subscribe Section Icon (Insights Page) */
.insights-subscribe-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.insights-subscribe-icon svg,
.insights-subscribe-icon i {
    width: 48px;
    height: 48px;
    color: var(--color-gold);
}
