﻿/* =========================================
   AUREUS LANDING PAGE STYLES
   Premium Dark Theme with Lime Accent
   ========================================= */

:root {
    /* Colors - Matching App */
    --bg-dark: #09090b;
    --bg-darker: #000000;
    --bg-card: rgba(24, 24, 27, 0.7);
    --bg-card-hover: rgba(39, 39, 42, 0.9);

    --primary-lime: #D4F458;
    --primary-lime-hover: #E2FF6F;
    --primary-glow: rgba(212, 244, 88, 0.4);
    --primary-rgb: 212, 244, 88;

    /* Finance OS Gold Accent */
    --accent-gold: #FFD700;
    --accent-gold-light: #FFED4A;
    --accent-gold-glow: rgba(255, 215, 0, 0.4);
    --accent-gold-rgb: 255, 215, 0;

    --text-white: #FAFAFA;
    --text-gray: #A1A1AA;
    --text-dark: #000000;

    /* Macro Colors */
    --macro-cal: #00E676;
    --macro-fat: #FFD740;
    --macro-prot: #448AFF;
    --macro-carb: #FF4081;
    --macro-purine: #D500F9;

    --border-color: rgba(255, 255, 255, 0.08);
    --border-glow: rgba(255, 255, 255, 0.15);

    /* Spacing */
    --section-padding: 100px 0;
    --container-width: 1200px;

    /* Radius */
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 12px;
    --radius-full: 100px;
}


/* Reset */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:visited {
    color: inherit;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Animated Background Particles */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(2px 2px at 20px 30px, rgba(212, 244, 88, 0.15), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255, 255, 255, 0.1), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(212, 244, 88, 0.2), transparent),
        radial-gradient(2px 2px at 130px 80px, rgba(255, 255, 255, 0.08), transparent),
        radial-gradient(1px 1px at 160px 120px, rgba(212, 244, 88, 0.1), transparent);
    background-size: 200px 200px;
    animation: particleFloat 20s linear infinite;
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
}

@keyframes particleFloat {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-200px);
    }
}

.micro-grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
    z-index: 0;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-lime);
}

/* =========================================
   NAVIGATION (FLOATING PILL) ðŸ’Š
   ========================================= */
.navbar-pill {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    background: rgba(20, 20, 22, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: auto;
    max-width: 90%;
    gap: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-pill.scrolled {
    background: rgba(10, 10, 12, 0.95);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
    top: 16px;
    width: auto;
}

.nav-brand-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-left: 12px;
    text-decoration: none;
}

.nav-logo-pill {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    /* Circle looks better for nautilus */
    position: relative;
    transition: all 0.3s ease;
    object-fit: contain;
}

.nav-logo-pill:hover {
    transform: scale(1.1);
}

/* Golden Nautilus Pulse Animation */
@keyframes logoGoldenPulse {

    0%,
    100% {
        filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.3)) drop-shadow(0 0 10px rgba(255, 180, 0, 0.2));
    }

    50% {
        filter: drop-shadow(0 0 12px rgba(255, 215, 0, 0.6)) drop-shadow(0 0 20px rgba(255, 180, 0, 0.4)) drop-shadow(0 0 30px rgba(212, 175, 55, 0.2));
    }
}

.nav-brand-text-pill {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: -0.5px;
}

.nav-links-pill {
    display: flex;
    gap: 4px;
    /* Pill-like internal links */
    background: rgba(255, 255, 255, 0.03);
    border-radius: 100px;
    padding: 4px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-links-pill a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 20px;
    border-radius: 100px;
    transition: all 0.3s;
}

.nav-links-pill a:hover {
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.1);
}

/* =========================================
   NAV DROPDOWN STYLES ðŸŽ›ï¸
   ========================================= */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-trigger {
    color: var(--text-gray);
    background: transparent;
    border: none;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 20px;
    border-radius: 100px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s;
}

.nav-dropdown-trigger:hover,
.nav-dropdown:hover .nav-dropdown-trigger {
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.1);
}

.nav-dropdown-trigger i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .nav-dropdown-trigger i {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 16px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(24, 24, 27, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 12px;
    min-width: 320px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
}

.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-bottom-color: rgba(24, 24, 27, 0.98);
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.2s;
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.06);
}

.dropdown-item-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    transition: all 0.3s;
}

.dropdown-item-icon.fit-icon {
    background: #1a1e0b;
    /* Darker olive/green background */
    color: var(--primary-lime);
    border: 1px solid rgba(212, 244, 88, 0.1);
}

.dropdown-item:hover .dropdown-item-icon.fit-icon {
    background: #1a1e0b;
    /* Keep dark background */
    border: 2px solid var(--primary-lime);
    /* Bright border */
    box-shadow: 0 0 25px rgba(212, 244, 88, 0.5);
    /* Stronger glow */
    transform: scale(1.05);
    /* Interactivity scale */
}

.dropdown-item-icon.finance-icon {
    background: #1e1a0b;
    /* Darker gold/brown background */
    color: var(--accent-gold);
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.dropdown-item:hover .dropdown-item-icon.finance-icon {
    background: #1e1a0b;
    /* Keep dark background */
    border: 2px solid var(--accent-gold);
    /* Bright border */
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.5);
    /* Stronger glow */
    transform: scale(1.05);
    /* Interactivity scale */
}

.dropdown-item-icon.ambassadors-icon {
    background: #1e1b4b;
    /* Dark indigo background */
    color: #818cf8;
    /* Indigo color */
    border: 1px solid rgba(129, 140, 248, 0.1);
}

.dropdown-item:hover .dropdown-item-icon.ambassadors-icon {
    background: #1e1b4b;
    border: 2px solid #818cf8;
    box-shadow: 0 0 25px rgba(129, 140, 248, 0.5);
    transform: scale(1.05);
}

.dropdown-item-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.dropdown-item-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-white);
}

.dropdown-item-desc {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.4;
}

.dropdown-item-logo {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.mobile-app-logo {
    width: 20px;
    height: 20px;
    object-fit: contain;
    margin-right: 4px;
}

.nav-actions-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-right: 4px;
}

.lang-toggle-pill {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-gray);
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.lang-toggle-pill:hover {
    border-color: var(--text-white);
    color: var(--text-white);
}

.btn-pill-cta {
    background: var(--text-white);
    color: var(--bg-dark);
    padding: 10px 28px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.btn-pill-cta:hover {
    transform: scale(1.05);
    background: var(--primary-lime);
}

/* =========================================
   DOWNLOAD CTA SECTION 🚀
   ========================================= */
.download-cta {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background: var(--bg-darker);
    border-top: 1px solid var(--border-color);
}

.cta-glow-container {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.cta-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
}

.cta-glow-1 {
    top: -200px;
    right: -100px;
    background: var(--primary-lime);
}

.cta-glow-2 {
    bottom: -200px;
    left: -100px;
    background: var(--accent-gold);
}

.cta-premium-card {
    position: relative;
    z-index: 10;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 48px;
    padding: 100px 40px;
    text-align: center;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
    background-image: radial-gradient(circle at top right, rgba(var(--primary-rgb), 0.05), transparent 40%);
}

.cta-premium-card .section-tag {
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary-lime);
    margin-bottom: 24px;
}

.download-cta .cta-title {
    font-size: 64px;
    font-weight: 900;
    color: var(--text-white);
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -2px;
}

.download-cta .cta-title .highlight {
    background: linear-gradient(135deg, var(--primary-lime), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.download-cta .cta-text {
    font-size: 22px;
    color: var(--text-gray);
    max-width: 650px;
    margin: 0 auto 48px;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.btn-cta-premium {
    position: relative;
    background: var(--text-white);
    color: var(--bg-dark);
    font-size: 18px;
    font-weight: 800;
    padding: 22px 60px;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.1);
}

.btn-cta-premium:hover {
    transform: translateY(-5px) scale(1.02);
    background: var(--primary-lime);
    box-shadow: 0 20px 50px rgba(var(--primary-rgb), 0.3);
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.6),
            transparent);
    transition: all 0.6s;
}

.btn-cta-premium:hover .btn-shine {
    left: 100%;
}

.cta-trust-text {
    font-size: 14px;
    color: var(--text-gray);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.7;
}

/* =========================================
   PLATFORM MODAL 📲
   ========================================= */
.platform-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.platform-modal-overlay.active {
    opacity: 1;
    visibility: visible;
    background: rgba(0, 0, 0, 0.85);
}

.platform-modal {
    background: linear-gradient(135deg, rgba(20, 20, 22, 0.95), rgba(10, 10, 12, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    padding: 50px 36px 36px;
    width: 90%;
    max-width: 900px;
    position: relative;
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.8),
        inset 0 0 80px rgba(255, 255, 255, 0.02);
    transform: translateY(30px) scale(0.95);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
}

.platform-modal-overlay.active .platform-modal {
    transform: translateY(0) scale(1);
}

/* Close Button Enhancement */
.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-gray);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10;
}

.modal-close:hover {
    background: rgba(255, 50, 50, 0.1);
    color: #ff4d4d;
    transform: rotate(90deg);
    border-color: rgba(255, 50, 50, 0.2);
}

.modal-header {
    margin-bottom: 40px;
    animation: fadeInDown 0.8s ease backwards 0.2s;
}

.modal-title {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 10px;
    background: linear-gradient(to bottom, #fff, #a1a1aa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
}

.modal-subtitle {
    color: var(--text-gray);
    font-size: 16px;
    opacity: 0.8;
}

.platform-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.platform-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 28px;
    padding: 40px;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.platform-card:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.card-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.03), transparent 70%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s;
}

.platform-card:hover .card-glow {
    opacity: 1;
}

.highlight-card {
    border-color: rgba(212, 244, 88, 0.3);
    background: rgba(212, 244, 88, 0.02);
}

.highlight-card:hover {
    border-color: var(--primary-lime);
    box-shadow: 0 20px 60px rgba(212, 244, 88, 0.1);
}

.highlight-card .card-glow {
    background: radial-gradient(circle at center, rgba(212, 244, 88, 0.05), transparent 70%);
}

.platform-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--text-white);
    transition: all 0.5s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.platform-card:hover .platform-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--text-white);
    color: black;
}

.highlight-card:hover .platform-icon {
    background: var(--primary-lime);
    color: black;
    box-shadow: 0 0 30px rgba(212, 244, 88, 0.4);
}

.platform-card h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 4px;
}

.platform-desc {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 8px;
}

/* Store Badges Premium */
.store-badges {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-store {
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    padding: 10px 20px;
    border-radius: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s;
    text-align: left;
}

.btn-store i {
    font-size: 24px;
}

.btn-store-text {
    display: flex;
    flex-direction: column;
}

.btn-store-text span {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.7;
}

.btn-store-text strong {
    font-size: 16px;
    font-weight: 600;
}

.btn-store:hover {
    background: #111;
    border-color: white;
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

/* Launch Web App Premium */
.btn-launch-web {
    width: 100%;
    background: var(--primary-lime);
    color: black;
    font-weight: 800;
    padding: 18px;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.btn-launch-web:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 40px rgba(212, 244, 88, 0.4);
}

.btn-launch-web .btn-shine {
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.6), transparent);
}

.btn-launch-web:hover .btn-shine {
    animation: shine 0.8s ease;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* Features List Premium */
.platform-features {
    list-style: none;
    padding-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.platform-features li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 14px;
    color: var(--text-gray);
    transition: all 0.3s;
}

.platform-features li i {
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
    width: 20px;
    text-align: center;
}

.platform-card:hover .platform-features li {
    color: var(--text-white);
}

.platform-card:hover .platform-features li i {
    color: var(--primary-lime);
    transform: scale(1.2);
}

.modal-footer {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-gray);
    font-size: 13px;
    opacity: 0.6;
    animation: fadeInUp 0.8s ease backwards 0.6s;
}

.modal-footer i {
    margin-right: 6px;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#card-mobile {
    animation: fadeInUp 0.8s ease backwards 0.3s;
}

#card-web {
    animation: fadeInUp 0.8s ease backwards 0.4s;
}

/* Responsive Modal */
@media (max-width: 900px) {
    .platform-options {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .platform-modal {
        padding: 40px 24px;
        margin: 20px;
        max-height: 90vh;
        overflow-y: auto;
    }

    .modal-title {
        font-size: 32px;
    }

    .store-badges {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .btn-store {
        flex: 1;
        min-width: 160px;
    }
}

/* Mobile Modal */
@media (max-width: 768px) {
    .platform-options {
        grid-template-columns: 1fr;
    }

    .cta-title {
        font-size: 32px;
    }
}

/* =========================================
   BETA REGISTRATION SECTION 🚀
   ========================================= */
.beta-registration {
    position: relative;
    background: #000;
    padding: 100px 0;
    overflow: hidden;
    text-align: center;
}

.beta-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.05) 1px, transparent 0);
    background-size: 32px 32px;
    mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
    pointer-events: none;
}

.beta-content {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 0 24px;
}

.beta-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 24px;
    color: #fff;
    letter-spacing: -1.5px;
}

.beta-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 60px;
    line-height: 1.6;
}

.beta-form {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 32px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    gap: 32px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

.form-group-beta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
}

.beta-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-gray);
    margin-left: 4px;
}

.form-group-beta input {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 18px 24px;
    color: #fff;
    font-family: inherit;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-group-beta input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-lime);
    box-shadow: 0 0 20px rgba(212, 244, 88, 0.1);
}

.form-group-beta input::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.btn-beta-submit {
    background: var(--primary-lime);
    color: #000;
    border: none;
    border-radius: 18px;
    padding: 20px;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    margin-top: 10px;
}

.btn-beta-submit:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 40px rgba(212, 244, 88, 0.4);
}

.btn-beta-submit .btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    transition: all 0.6s;
}

.btn-beta-submit:hover .btn-shine {
    left: 100%;
}

.beta-footer {
    margin-top: 40px;
}

.beta-contact-link {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0.6;
    transition: all 0.3s;
}

.beta-contact-link:hover {
    opacity: 1;
    color: #fff;
}

/* Success Overlay */
.beta-success-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.beta-success-overlay.active {
    display: flex;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.success-card {
    background: #0a0a0c;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px 40px;
    border-radius: 40px;
    max-width: 450px;
    width: 100%;
    text-align: center;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
    transform: scale(0.9);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.beta-success-overlay.active .success-card {
    transform: scale(1);
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-lime);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 30px;
    box-shadow: 0 0 30px rgba(212, 244, 88, 0.3);
}

.success-card h3 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #fff;
}

.success-card p {
    color: var(--text-gray);
    font-size: 16px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.btn-close-success {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 16px 40px;
    border-radius: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-close-success:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .beta-title {
        font-size: 36px;
    }

    .beta-form {
        padding: 30px 20px;
    }
}

/* =========================================
   INTEGRATIONS MARQUEE
   ========================================= */
.integrations-marquee {
    padding: 40px 0;
    text-align: center;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.4));
    overflow: hidden;
    margin-bottom: 20px;
}

.marquee-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-gray);
    margin-bottom: 24px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
    display: flex;
    gap: 60px;
    width: max-content;
    animation: marqueeScroll 25s linear infinite;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-gray);
    white-space: nowrap;
    transition: color 0.3s;
    flex-shrink: 0;
}

.marquee-item:hover {
    color: var(--text-white);
}

.marquee-item i {
    font-size: 24px;
    color: var(--primary-lime);
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Old Navbar removal context (cleaned up) */
.navbar,
.nav-container {
    display: none;
}

.btn-nav-cta {
    background: var(--primary-lime);
    color: var(--text-dark);
    padding: 12px 24px;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--primary-glow);
    background: var(--primary-lime-hover);
}

.mobile-menu-btn {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-white);
    font-size: 20px;
    cursor: pointer;
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.15) 0%, transparent 70%);
    pointer-events: none;
    animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {

    0%,
    100% {
        opacity: 0.5;
        transform: translateX(-50%) scale(1);
    }

    50% {
        opacity: 0.8;
        transform: translateX(-50%) scale(1.1);
    }
}

.hero-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 50;
}

.hero-content {
    max-width: 700px;
    position: relative;
    z-index: 50;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(var(--primary-rgb), 0.5);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-lime);
    margin-bottom: 28px;
    animation: fadeInUp 0.6s ease-out;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-badge i {
    font-size: 16px;
    filter: drop-shadow(0 0 6px rgba(var(--primary-rgb), 0.5));
}

.hero-title {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -3px;
    margin-bottom: 28px;
    background: linear-gradient(180deg, #FFFFFF 0%, #E4E4E7 50%, #A1A1AA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.1s both;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    filter: drop-shadow(0 2px 20px rgba(0, 0, 0, 0.4));
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--primary-lime) 0%, #F0FF6B 50%, #FFFFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    filter: drop-shadow(0 0 30px rgba(var(--primary-rgb), 0.4));
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 36px;
    animation: fadeInUp 0.6s ease-out 0.2s both;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    max-width: 500px;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.btn-primary-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-lime) 0%, #E8F87B 50%, #C2E246 100%);
    color: var(--text-dark);
    padding: 18px 36px;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 25px rgba(var(--primary-rgb), 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border: none;
}

.btn-primary-hero:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 40px rgba(var(--primary-rgb), 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.4);
    filter: brightness(1.1);
}

.btn-secondary-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--text-white);
    padding: 18px 32px;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.btn-secondary-hero:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-lime);
    color: var(--primary-lime);
    box-shadow: 0 4px 20px rgba(var(--primary-rgb), 0.2);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    animation: fadeInUp 0.6s ease-out 0.4s both;
    width: fit-content;
    background: transparent;
    padding: 0;
    border: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.stat-card {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 215, 0, 0.25);
    border-radius: 16px;
    padding: 24px 32px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    min-width: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 215, 0, 0.6);
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.15);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-number {
    display: block;
    font-size: 38px;
    font-weight: 800;
    background: linear-gradient(135deg, #FFDF00 0%, #FDB931 50%, #996515 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.4));
    margin-bottom: 4px;
    line-height: 1.1;
}

.stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Phone Mockup */
.hero-visual {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

/* Hero Visual Abstract */
.hero-visual-abstract {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.abstract-art {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: screen;
    filter: drop-shadow(0 0 80px rgba(var(--accent-gold-rgb), 0.5));
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

.abstract-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(var(--accent-gold-rgb), 0.2) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
    z-index: 1;
}

/* Redefine float animation if not global */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* Hide floating cards styles as they are removed from HTML */
.floating-card {
    display: none;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-gray);
    font-size: 20px;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* =========================================
   SOCIAL PROOF
   ========================================= */
.social-proof {
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 40px 0;
}

.proof-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.proof-container>p {
    color: var(--text-gray);
    font-size: 15px;
    margin-bottom: 24px;
}

.proof-icons {
    display: flex;
    justify-content: center;
    gap: 28px;
    flex-wrap: nowrap;
}

.proof-icon {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-gray);
    font-size: 14px;
    padding: 10px 16px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid transparent;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: default;
}

.proof-icon:hover {
    transform: translateY(-5px) scale(1.05);
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-white);
}

.proof-icon i {
    font-size: 22px;
    transition: all 0.3s ease;
}

/* Colores Ãºnicos para cada tipo de cliente */
.proof-icon:nth-child(1) i {
    color: #00E676;
}

/* Nutricionistas - Verde */
.proof-icon:nth-child(2) i {
    color: #FF4081;
}

/* Atletas - Rosa */
.proof-icon:nth-child(3) i {
    color: #FF5252;
}

/* Pacientes - Rojo */
.proof-icon:nth-child(4) i {
    color: #448AFF;
}

/* Profesionales - Azul */
.proof-icon:nth-child(5) i {
    color: #FFD740;
}

/* Gimnasios - Amarillo */
.proof-icon:nth-child(6) i {
    color: #E040FB;
}

/* DiabÃ©ticos - PÃºrpura */
.proof-icon:nth-child(7) i {
    color: #FF6E40;
}

/* Emprendedores - Naranja */
.proof-icon:nth-child(8) i {
    color: #64FFDA;
}

/* Familias - Cyan */

/* Efectos de hover con glow por color */
.proof-icon:nth-child(1):hover {
    border-color: rgba(0, 230, 118, 0.4);
    box-shadow: 0 8px 25px rgba(0, 230, 118, 0.2);
}

.proof-icon:nth-child(2):hover {
    border-color: rgba(255, 64, 129, 0.4);
    box-shadow: 0 8px 25px rgba(255, 64, 129, 0.2);
}

.proof-icon:nth-child(3):hover {
    border-color: rgba(255, 82, 82, 0.4);
    box-shadow: 0 8px 25px rgba(255, 82, 82, 0.2);
}

.proof-icon:nth-child(4):hover {
    border-color: rgba(68, 138, 255, 0.4);
    box-shadow: 0 8px 25px rgba(68, 138, 255, 0.2);
}

.proof-icon:nth-child(5):hover {
    border-color: rgba(255, 215, 64, 0.4);
    box-shadow: 0 8px 25px rgba(255, 215, 64, 0.2);
}

.proof-icon:nth-child(6):hover {
    border-color: rgba(224, 64, 251, 0.4);
    box-shadow: 0 8px 25px rgba(224, 64, 251, 0.2);
}

.proof-icon:nth-child(7):hover {
    border-color: rgba(255, 110, 64, 0.4);
    box-shadow: 0 8px 25px rgba(255, 110, 64, 0.2);
}

.proof-icon:nth-child(8):hover {
    border-color: rgba(100, 255, 218, 0.4);
    box-shadow: 0 8px 25px rgba(100, 255, 218, 0.2);
}

/* AnimaciÃ³n de pulso sutil en hover */
.proof-icon:hover i {
    animation: iconPulse 0.6s ease-in-out;
}

@keyframes iconPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

/* =========================================
   SECTIONS COMMON
   ========================================= */
.section-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary-lime);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 20px;
    background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0.6) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title .highlight {
    background: linear-gradient(135deg, var(--primary-lime) 0%, #C2E246 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* =========================================
   FEATURES SECTION
   ========================================= */
.features {
    padding: var(--section-padding);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    perspective: 2000px;
}

.feature-card {
    background: rgba(24, 24, 27, 0.3);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 32px;
    padding: 48px 36px;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    box-shadow:
        0 4px 24px -1px rgba(0, 0, 0, 0.2),
        inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.feature-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(800px circle at var(--mouse-x) var(--mouse-y), rgba(212, 244, 88, 0.08), transparent 40%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
    z-index: 0;
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-16px) scale(1.04) rotateX(2deg);
    background: rgba(30, 30, 34, 0.5);
    border-color: rgba(var(--accent-gold-rgb), 0.4);
    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(var(--accent-gold-rgb), 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.feature-card.featured {
    background: linear-gradient(145deg, rgba(var(--primary-rgb), 0.05), var(--bg-card));
    position: relative;
    z-index: 1;
    border: 1px solid transparent;
}

.feature-card.featured::before {
    content: "";
    position: absolute;
    inset: -1px;
    z-index: -1;
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, rgba(var(--primary-rgb), 0.4), transparent 60%);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.feature-card.featured:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 24px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 1;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 20px rgba(var(--primary-rgb), 0.2);
}

.feature-icon.cal {
    background: rgba(0, 230, 118, 0.15);
    color: var(--macro-cal);
}

.feature-icon.prot {
    background: rgba(68, 138, 255, 0.15);
    color: var(--macro-prot);
}

.feature-icon.carb {
    background: rgba(255, 64, 129, 0.15);
    color: var(--macro-carb);
}

.feature-icon.fat {
    background: rgba(255, 215, 64, 0.15);
    color: var(--macro-fat);
}

.feature-icon.purine {
    background: rgba(213, 0, 249, 0.15);
    color: var(--macro-purine);
}

.feature-icon.special {
    background: rgba(var(--primary-rgb), 0.15);
    color: var(--primary-lime);
}

.feature-icon.finance-icon {
    background: rgba(var(--accent-gold-rgb), 0.25);
    color: var(--accent-gold);
    box-shadow: 0 0 20px rgba(var(--accent-gold-rgb), 0.3);
    border: 1px solid rgba(var(--accent-gold-rgb), 0.4);
}

.feature-icon.finance-icon.yellow {
    background: #FFD740;
    color: #000;
    box-shadow: 0 0 20px rgba(255, 215, 64, 0.5);
    border: none;
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    color: var(--text-white);
}

.feature-card p {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.8;
}

/* Color variations for icons */
.feature-icon.finance-icon.yellow {
    background: rgba(255, 215, 64, 0.15);
    color: #FFD740;
}

.feature-icon.finance-icon.blue {
    background: rgba(0, 229, 255, 0.15);
    color: #00E5FF;
}

.feature-icon.finance-icon.indigo {
    background: rgba(121, 134, 203, 0.15);
    color: #7986CB;
}

.feature-icon.finance-icon.green {
    background: rgba(102, 187, 106, 0.15);
    color: #66BB6A;
}

.feature-icon.finance-icon.orange {
    background: rgba(255, 167, 38, 0.15);
    color: #FFA726;
}

.feature-icon.finance-icon.cyan {
    background: rgba(38, 198, 218, 0.15);
    color: #26C6DA;
}

.feature-icon.finance-icon.purple {
    background: rgba(171, 71, 188, 0.15);
    color: #AB47BC;
}

.feature-icon.finance-icon.lime {
    background: rgba(212, 244, 88, 0.15);
    color: var(--primary-lime);
}

.feature-icon.finance-icon.red {
    background: rgba(239, 83, 80, 0.15);
    color: #EF5350;
}

.feature-icon.finance-icon.gold {
    background: rgba(255, 215, 0, 0.15);
    color: var(--accent-gold);
}

/* App Features Headers */
.features-spacer {
    height: 80px;
    width: 100%;
}

/* Enhanced App Features Headers */
.app-features-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
    padding: 12px 28px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.app-features-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.05),
            transparent);
    transition: 0.5s;
}

.app-features-header:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.app-features-header:hover::before {
    left: 100%;
    transition: 0.8s ease-in-out;
}

.app-header-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.app-features-header:hover .app-header-icon {
    transform: scale(1.2);
}

.app-header-title {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.text-fit {
    color: var(--primary-lime);
}

.text-finance {
    color: var(--accent-gold);
}

/* Finance Card Hover */
.feature-card.finance:hover {
    border-color: rgba(var(--accent-gold-rgb), 0.5);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(var(--accent-gold-rgb), 0.15);
}

.feature-card.finance h3 {
    background: linear-gradient(135deg, var(--text-white) 20%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.feature-card.finance:hover .feature-icon.finance-icon {
    background: var(--accent-gold);
    color: var(--text-dark);
}

/* =========================================
   APPS SECTION
   ========================================= */
.apps-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(var(--primary-rgb), 0.03) 50%, var(--bg-dark) 100%);
}

.apps-showcase {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 40px;
}

.app-card {
    flex: 1;
    max-width: 400px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    /* Lighter border base */
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Bouncy elegant transition */
    backdrop-filter: blur(10px);
    /* Enhanced glassmorphism */
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

.app-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.app-card-glow {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 300px;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.3;
}

.fit-glow {
    background: radial-gradient(circle, var(--primary-lime) 0%, transparent 70%);
}

.finance-glow {
    background: radial-gradient(circle, var(--accent-gold) 0%, transparent 70%);
}

.app-icon-large {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
}

.app-icon-large img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.app-icon-large i {
    font-size: 48px;
    color: var(--macro-prot);
}

.app-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.app-tagline {
    display: inline-block;
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary-lime);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.app-finance .app-tagline {
    background: rgba(var(--accent-gold-rgb), 0.15);
    color: var(--accent-gold);
}

.app-features-list {
    list-style: none;
    text-align: left;
    position: relative;
    z-index: 1;
}

.app-features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
    color: var(--text-gray);
}

.app-features-list li:last-child {
    border-bottom: none;
}

.app-features-list i {
    color: var(--primary-lime);
    font-size: 14px;
}

.app-finance .app-features-list i {
    color: var(--accent-gold);
}

.apps-plus {
    display: flex;
    align-items: center;
    justify-content: center;
}

.plus-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-lime), #C2E246);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--text-dark);
    box-shadow: 0 10px 30px var(--primary-glow);
}

/* =========================================
   HOW IT WORKS
   ========================================= */
.how-it-works {
    padding: var(--section-padding);
}

.steps-container {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 32px;
}

.step-card {
    flex: 1 1 0;
    /* Ensures identical width distribution regardless of content */
    max-width: 320px;
    text-align: center;
    padding: 48px 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
}

.step-number {
    width: 36px;
    height: 36px;
    background: transparent;
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: rgba(var(--primary-rgb), 0.1);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 32px;
    color: var(--primary-lime);
    transition: all 0.4s ease;
}

/* Vibrant Colorful Steps */
.step-card:nth-child(1) .step-icon {
    background: rgba(0, 229, 255, 0.1);
    color: #00e5ff;
    border: 1px solid rgba(0, 229, 255, 0.2);
}

.step-card:nth-child(1) .step-number {
    color: #00e5ff;
    border-color: #00e5ff;
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.2);
}

.step-card:nth-child(1):hover {
    border-color: rgba(0, 229, 255, 0.4);
    box-shadow: 0 20px 40px rgba(0, 229, 255, 0.1);
}

.step-card:nth-child(3) .step-icon {
    background: rgba(213, 0, 249, 0.1);
    color: #d500f9;
    border: 1px solid rgba(213, 0, 249, 0.2);
}

.step-card:nth-child(3) .step-number {
    color: #d500f9;
    border-color: #d500f9;
    box-shadow: 0 0 10px rgba(213, 0, 249, 0.2);
}

.step-card:nth-child(3):hover {
    border-color: rgba(213, 0, 249, 0.4);
    box-shadow: 0 20px 40px rgba(213, 0, 249, 0.1);
}

.step-card:nth-child(5) .step-icon {
    background: rgba(255, 171, 0, 0.1);
    color: #ffab00;
    border: 1px solid rgba(255, 171, 0, 0.2);
}

.step-card:nth-child(5) .step-number {
    color: #ffab00;
    border-color: #ffab00;
    box-shadow: 0 0 10px rgba(255, 171, 0, 0.2);
}

.step-card:nth-child(5):hover {
    border-color: rgba(255, 171, 0, 0.4);
    box-shadow: 0 20px 40px rgba(255, 171, 0, 0.1);
}

.step-card:hover .step-icon {
    transform: scale(1.1);
}

.step-card:hover .step-number {
    background: rgba(255, 255, 255, 0.05);
}

.step-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-white);
}

.step-card p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.6;
}

.step-connector {
    display: flex;
    align-items: center;
    padding-top: 50px;
    color: var(--text-gray);
    font-size: 20px;
    opacity: 0.5;
}

/* =========================================
   PRICING SECTION
   ========================================= */
.pricing {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(var(--primary-rgb), 0.05) 100%);
    overflow: visible;
}

.pricing .section-container {
    overflow: visible;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 32px;
    margin-bottom: 40px;
    padding: 20px;
    overflow: visible;
}

.pricing-card {
    flex: 1;
    max-width: 380px;
    background: rgba(20, 20, 22, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 32px;
    padding: 48px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    overflow: visible;
}

.pricing-card:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(30, 30, 35, 0.8);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
}

.pricing-card.featured {
    background: linear-gradient(165deg, rgba(30, 35, 20, 0.7), rgba(10, 10, 12, 0.9));
    border: 1px solid rgba(212, 244, 88, 0.3);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.7), inset 0 0 30px rgba(212, 244, 88, 0.05);
    z-index: 2;
}

.pricing-card.featured:hover {
    border-color: var(--primary-lime);
    box-shadow: 0 40px 90px rgba(0, 0, 0, 0.8), 0 0 40px rgba(212, 244, 88, 0.1);
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-lime);
    color: #000;
    padding: 6px 24px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    box-shadow: 0 0 20px rgba(212, 244, 88, 0.6);
    z-index: 10;
    border: 2px solid #000;
}

.pricing-header {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border-color);
}

.plan-name {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-gray);
    margin-bottom: 16px;
}

.price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
}

.price .currency {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-gray);
    margin-top: 8px;
}

.price .amount {
    font-size: 72px;
    font-weight: 800;
    line-height: 1;
    color: var(--text-white);
}

.price .period {
    font-size: 16px;
    color: var(--text-gray);
    margin-top: auto;
    margin-bottom: 8px;
}

.savings {
    display: inline-block;
    background: rgba(0, 230, 118, 0.15);
    color: var(--macro-cal);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    margin-top: 12px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 15px;
    color: var(--text-gray);
}

.pricing-features i {
    color: var(--primary-lime);
    font-size: 14px;
}

.pricing-features i.fa-star {
    color: var(--macro-fat);
}

.btn-pricing {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 18px;
    border-radius: 16px;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
    margin-top: auto;
}

.btn-pricing:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.btn-pricing.primary {
    background: var(--primary-lime);
    color: #000;
    border: none;
    box-shadow: 0 10px 30px rgba(212, 244, 88, 0.2);
}

.btn-pricing.primary:hover {
    background: #cbf046;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 244, 88, 0.4);
}

.pricing-note {
    text-align: center;
    font-size: 13px;
    color: var(--text-gray);
    margin-top: 16px;
}

.platforms-coming {
    text-align: center;
    color: var(--text-gray);
    font-size: 15px;
}

.platforms-coming p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 8px 0;
}

.platforms-coming .coming-soon {
    color: var(--primary-lime);
}

/* =========================================
   FAQ SECTION
   ========================================= */
.faq {
    padding: var(--section-padding);
}

.faq-container {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: rgba(var(--primary-rgb), 0.3);
}

.faq-item.active {
    border-color: var(--primary-lime);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-white);
    text-align: left;
    font-family: inherit;
}

.faq-question i {
    color: var(--primary-lime);
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* =========================================
   CONTACT CTA SECTION
   ========================================= */
.contact-cta {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(var(--primary-rgb), 0.08) 100%);
}

.cta-content {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.cta-content h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-content>p {
    color: var(--text-gray);
    font-size: 18px;
    margin-bottom: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.contact-form .form-group {
    width: 100%;
}

.contact-form input {
    width: 100%;
    padding: 16px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-white);
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s;
}

.contact-form input:focus {
    outline: none;
    border-color: var(--primary-lime);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.2);
}

.contact-form input::placeholder {
    color: var(--text-gray);
}

.btn-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--primary-lime), #C2E246);
    border: none;
    border-radius: var(--radius-md);
    color: var(--text-dark);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px var(--primary-glow);
}

.contact-info {
    display: flex;
    justify-content: center;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-gray);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s;
}

.contact-link:hover {
    color: var(--primary-lime);
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
    background: var(--bg-darker);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 0;
}

.footer-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.5fr 2fr 1fr;
    gap: 60px;
    padding-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.footer-logo {
    width: 94px;
    height: 94px;
    object-fit: contain;
}

.footer-brand-text {
    font-size: 24px;
    font-weight: 700;
}

.footer-tagline {
    color: var(--text-gray);
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 60px;
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column a {
    display: block;
    color: var(--text-gray);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 12px;
    transition: color 0.2s;
}

.footer-column a:hover {
    color: var(--primary-lime);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--primary-lime);
    border-color: var(--primary-lime);
    color: var(--text-dark);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 20px 24px;
    text-align: center;
    font-size: 14px;
    color: var(--text-gray);
}

/* =========================================
   MOBILE NAVIGATION
   ========================================= */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 1001;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100%;
    background: var(--bg-darker);
    border-left: 1px solid var(--border-color);
    padding: 24px;
    transition: right 0.3s;
    z-index: 1002;
    display: flex;
    flex-direction: column;
}

.mobile-nav-drawer.active {
    right: 0;
}

.drawer-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
}

.drawer-logo {
    width: 40px;
    height: 40px;
}

.drawer-header span {
    font-size: 20px;
    font-weight: 700;
    flex: 1;
}

.drawer-close {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-white);
    font-size: 18px;
    cursor: pointer;
}

.drawer-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.drawer-nav a {
    display: block;
    padding: 14px 16px;
    color: var(--text-gray);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: all 0.2s;
}

.drawer-nav a:hover {
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary-lime);
}

.btn-drawer-cta {
    display: block;
    background: var(--primary-lime);
    color: var(--text-dark);
    padding: 16px;
    border-radius: var(--radius-md);
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    margin-top: auto;
}

/* Mobile Dropdown Styles */
.mobile-dropdown {
    display: flex;
    flex-direction: column;
}

.mobile-dropdown-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 16px;
    background: transparent;
    border: none;
    color: var(--text-gray);
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 500;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
}

.mobile-dropdown-trigger:hover {
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary-lime);
}

.mobile-dropdown-trigger i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.mobile-dropdown.active .mobile-dropdown-trigger i {
    transform: rotate(180deg);
}

.mobile-dropdown-content {
    display: none;
    flex-direction: column;
    padding-left: 16px;
    margin-top: 4px;
    gap: 4px;
}

.mobile-dropdown.active .mobile-dropdown-content {
    display: flex;
}

.mobile-app-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: var(--text-gray);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: all 0.2s;
}

.mobile-app-link:hover {
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary-lime);
}

.mobile-app-link i {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-size: 14px;
}

/* =========================================
   RESPONSIVE DESIGN
   ========================================= */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-cta-group {
        justify-content: center;
    }

    .hero-stats {
        display: flex;
        align-items: center;
        gap: 24px;
        animation: fadeInUp 0.6s ease-out 0.4s both;
        width: fit-content;
        background: transparent;
        padding: 0;
        border: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .stat-card {
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 215, 0, 0.25);
        border-radius: 16px;
        padding: 24px 32px;
        text-align: center;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
        min-width: 140px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative;
        overflow: hidden;
    }

    .stat-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, transparent 100%);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .stat-card:hover {
        transform: translateY(-8px);
        border-color: rgba(255, 215, 0, 0.6);
        box-shadow: 0 12px 40px rgba(255, 215, 0, 0.15);
    }

    .stat-card:hover::before {
        opacity: 1;
    }

    .stat-number {
        display: block;
        font-size: 38px;
        font-weight: 800;
        background: linear-gradient(135deg, #FFDF00 0%, #FDB931 50%, #996515 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.4));
        margin-bottom: 4px;
        line-height: 1.1;
    }

    .stat-label {
        font-size: 12px;
        color: rgba(255, 255, 255, 0.85);
        text-transform: uppercase;
        letter-spacing: 1px;
        font-weight: 600;
    }

    .section-title {
        font-size: 32px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }

    .pricing-card {
        max-width: 100%;
    }

    .footer-links {
        flex-direction: column;
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 12px 16px;
    }

    .nav-logo {
        width: 36px;
        height: 36px;
    }

    .nav-brand-text {
        font-size: 18px;
    }

    .section-container {
        padding: 0 16px;
    }

    .hero {
        padding-top: 70px;
    }

    .hero-title {
        font-size: 32px;
    }

    .proof-icons {
        flex-direction: column;
        gap: 16px;
    }

    .app-card {
        padding: 24px;
    }
}

/* =========================================
   PREMIUM ENHANCEMENTS
   ========================================= */

/* App Card Enhanced Hover Effects */
.app-card.app-fit:hover {
    border-color: rgba(var(--primary-rgb), 0.5);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(var(--primary-rgb), 0.15);
}

.app-card.app-finance:hover {
    border-color: rgba(var(--accent-gold-rgb), 0.5);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(var(--accent-gold-rgb), 0.15);
}

/* Finance OS Card Title with Gold Gradient */
.app-finance h3 {
    background: linear-gradient(135deg, var(--text-white) 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Enhanced Logo Glow on Hover */
.app-icon-large img {
    transition: filter 0.3s ease, transform 0.3s ease;
}

.app-fit:hover .app-icon-large img {
    filter: drop-shadow(0 0 20px rgba(var(--primary-rgb), 0.6));
    transform: scale(1.05);
}

.app-finance:hover .app-icon-large img {
    filter: drop-shadow(0 0 20px rgba(var(--accent-gold-rgb), 0.6));
    transform: scale(1.05);
}

/* Shimmer Animation for Featured Pricing Card */
.pricing-card.featured::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(var(--primary-rgb), 0.1) 50%,
            transparent 100%);
    background-size: 200% 100%;
    background-position: -100% 0;
    animation: shimmer 3s ease-in-out infinite;
    pointer-events: none;
    border-radius: inherit;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

/* Feature Cards Enhanced Hover */
.feature-card:hover .feature-icon {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* Hero Stats Number Glow */
.stat-number {
    text-shadow: 0 0 20px rgba(var(--primary-rgb), 0.5);
}

/* Enhanced Button Ripple Effect */
.btn-primary-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-full);
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
}

.btn-primary-hero:hover::after {
    opacity: 1;
}

/* Navbar Brand Hover Effect */
.nav-brand:hover .nav-brand-text {
    color: var(--primary-lime);
    transition: color 0.3s ease;
}

/* Cleaned up corrupted section */

/* Newsletter Premium Styles */
.newsletter-inline input:focus {
    box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.3);
    border-color: var(--primary-color);
}

.btn-pill-cta.success {
    background-color: #10b981 !important;
    border-color: #10b981 !important;
    color: white !important;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.4);
}

/* Pricing Included Features Section */
.included-features-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
}

.features-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

.feature-app-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    transition: transform 0.3s ease;
}

.feature-app-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.feature-app-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 20px;
}

.feature-app-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
}

.feature-list li i {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .features-two-col {
        grid-template-columns: 1fr;
    }
}

/* Why Pay Section Premium Redesign */
.why-pay-section {
    padding: 80px 0;
    position: relative;
}

.why-pay-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.why-pay-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 35px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.why-pay-card:hover {
    transform: translateY(-7px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.why-pay-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--gold);
    transition: all 0.3s ease;
}

.why-pay-card:hover .why-pay-icon {
    background: var(--gold);
    color: #000;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

.why-pay-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.why-pay-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Decorative elements */
.why-pay-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.why-pay-card:hover::before {
    opacity: 1;
}

/* --- PREMIUM GOLD OVERRIDE --- */
.why-pay-card {
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.95) 0%, rgba(30, 30, 30, 0.90) 100%) !important;
    border: 1px solid rgba(255, 215, 0, 0.15) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4) !important;
}

.why-pay-card:hover {
    transform: translateY(-10px) !important;
    border-color: rgba(255, 215, 0, 0.6) !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(255, 215, 0, 0.15) !important;
}

.wealth-bg {
    background: linear-gradient(135deg, rgba(255, 179, 0, 0.2), rgba(255, 179, 0, 0.05)),
        url('images/hero-abstract.png') center/cover;
}

.metabolic-bg {
    background: url('images/metabolic_mastery_bg.png') center/cover no-repeat;
    position: relative;
}

.metabolic-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
}

.nutrition-bg {
    background: url('images/nutrition_fasting_bg.png') center/cover no-repeat;
    position: relative;
}

.nutrition-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.finance-bg {
    background: url('images/finance_control_bg.png') center/cover no-repeat;
    position: relative;
}

.finance-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.why-pay-icon {
    width: 70px !important;
    height: 70px !important;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.02) 100%) !important;
    border: 1px solid rgba(255, 215, 0, 0.3) !important;
    color: #FFD700 !important;
}

.why-pay-card:hover .why-pay-icon {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%) !important;
    color: #000 !important;
    transform: scale(1.15) rotate(5deg) !important;
    box-shadow: 0 0 35px rgba(255, 215, 0, 0.6) !important;
}

.why-pay-card h3 {
    color: #fff !important;
    font-weight: 700 !important;
}

.why-pay-card p {
    opacity: 0.9 !important;
}

/* --- ROADMAP SECTION --- */
.roadmap-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.roadmap-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    padding: 40px 0;
}

.roadmap-track {
    position: relative;
}

.roadmap-track::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-50%);
    border-radius: 4px;
}

.roadmap-step {
    position: relative;
    margin-bottom: 60px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.roadmap-step:nth-child(odd) {
    justify-content: flex-start;
    padding-right: 50%;
}

.roadmap-step:nth-child(even) {
    justify-content: flex-end;
    padding-left: 50%;
}

.roadmap-step::after {
    content: '';
    position: absolute;
    left: 50%;
    width: 20px;
    height: 20px;
    background: var(--surface-dark);
    border: 4px solid var(--text-secondary);
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 2;
    transition: all 0.3s ease;
}

.roadmap-step.active::after {
    border-color: var(--primary-color);
    background: var(--primary-color);
    box-shadow: 0 0 15px var(--primary-color);
}

.step-header {
    margin-bottom: 10px;
}

.step-number {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.roadmap-step h3 {
    font-size: 1.5rem;
    color: var(--text-white);
    margin-bottom: 10px;
}

.roadmap-step p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 350px;
}

.step-icon-bottom {
    margin-top: 15px;
    font-size: 1.2rem;
    color: var(--text-secondary);
    opacity: 0.5;
}

/* Layout Content positioning */
.roadmap-step:nth-child(odd) .step-header,
.roadmap-step:nth-child(odd) h3,
.roadmap-step:nth-child(odd) p,
.roadmap-step:nth-child(odd) .step-icon-bottom {
    text-align: right;
    margin-left: auto;
    margin-right: 40px;
}

.roadmap-step:nth-child(even) .step-header,
.roadmap-step:nth-child(even) h3,
.roadmap-step:nth-child(even) p,
.roadmap-step:nth-child(even) .step-icon-bottom {
    text-align: left;
    margin-left: 40px;
}

/* Responsive */
@media (max-width: 768px) {
    .roadmap-track::before {
        left: 20px;
    }

    .roadmap-step {
        justify-content: flex-start !important;
        padding-left: 50px !important;
        padding-right: 0 !important;
    }

    .roadmap-step::after {
        left: 20px;
    }

    .roadmap-step:nth-child(odd) .step-header,
    .roadmap-step:nth-child(odd) h3,
    .roadmap-step:nth-child(odd) p,
    .roadmap-step:nth-child(odd) .step-icon-bottom {
        text-align: left;
        margin: 0;
    }

    .roadmap-step:nth-child(even) .step-header,
    .roadmap-step:nth-child(even) h3,
    .roadmap-step:nth-child(even) p,
    .roadmap-step:nth-child(even) .step-icon-bottom {
        text-align: left;
        margin: 0;
    }
}

/* --- COMPACT ROADMAP GRID REDESIGN --- */
.roadmap-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #111 0%, #000 100%);
}

.roadmap-wrapper {
    max-width: 1200px;
    padding: 0 24px;
    margin: 0 auto;
}

.roadmap-track {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    position: relative;
}

.roadmap-track::before {
    display: none;
}

/* Hide timeline line */
.roadmap-step {
    padding: 0;
    margin: 0;
    height: auto !important;
    width: 100%;
    display: block;
}

/* Remove zig-zag overrides */
.roadmap-step:nth-child(odd) {
    text-align: left;
    padding: 0;
}

.roadmap-step:nth-child(even) {
    text-align: left;
    padding: 0;
}

.roadmap-step:nth-child(odd) .step-card {
    margin: 0;
}

.roadmap-step:nth-child(even) .step-card {
    margin: 0;
}

/* Compact Card Style - Scoped to Roadmap */
.roadmap-step .step-card {
    width: 100%;
    height: 100%;
    padding: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 220px;
}

.roadmap-step .step-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.roadmap-step .step-number {
    font-size: 0.75rem;
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 8px;
    border-radius: 4px;
    display: inline-block;
}

.roadmap-step h3 {
    font-size: 1.1rem !important;
    margin-bottom: 8px !important;
    color: #fff;
    line-height: 1.4;
}

.roadmap-step p {
    font-size: 0.9rem;
    color: #aaa;
    line-height: 1.5;
    margin-bottom: 0;
    flex-grow: 1;
}

.step-icon-bottom {
    position: relative;
    top: auto;
    right: auto;
    margin-top: 16px !important;
    text-align: right;
    opacity: 1;
    color: var(--primary-color);
    font-size: 1.2rem;
    align-self: flex-end;
}

.roadmap-step::after {
    display: none;
}

/* Hide timeline dots */


/* REPAIR HERO STATS */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 0;
    animation: fadeInUp 0.6s ease-out 0.4s both;
    width: fit-content;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 24px 32px;
    border-radius: 24px;
    margin-top: 32px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-width: 100px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.2), transparent);
    margin: 0 24px;
}


.stat-number {
    display: block;
    font-size: 38px;
    font-weight: 800;
    background: none;
    -webkit-text-fill-color: initial;
    color: var(--primary-lime);
    text-shadow: 0 0 15px rgba(212, 244, 88, 0.4);
    filter: none;
    margin-bottom: 4px;
    line-height: 1.1;
}


.feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}


/* UNIFY ALL FEATURE CARDS WITH PREMIUM EFFECT */
.feature-card {
    background: linear-gradient(145deg, rgba(var(--primary-rgb), 0.05), var(--bg-card));
    position: relative;
    z-index: 1;
    border: 1px solid transparent;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    z-index: -1;
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, rgba(var(--primary-rgb), 0.4), transparent 60%);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

/* Ensure no double borders from previous rules */
.feature-card:hover {
    border-color: transparent;
}


/* CONSOLIDATED VIBRANT ICON COLORS */
.feature-icon.yellow {
    background: #FFD740 !important;
    color: #000 !important;
    box-shadow: 0 0 20px rgba(255, 215, 64, 0.5);
    border: none !important;
}

.feature-icon.blue {
    background: #448AFF !important;
    color: #fff !important;
    box-shadow: 0 0 20px rgba(68, 138, 255, 0.5);
    border: none !important;
}

.feature-icon.green {
    background: #4CAF50 !important;
    color: #000 !important;
    box-shadow: 0 0 20px rgba(76, 175, 80, 0.5);
    border: none !important;
}

.feature-icon.purple {
    background: #9C27B0 !important;
    color: #fff !important;
    box-shadow: 0 0 20px rgba(156, 39, 176, 0.5);
    border: none !important;
}

.feature-icon.orange {
    background: #FF9800 !important;
    color: #000 !important;
    box-shadow: 0 0 20px rgba(255, 152, 0, 0.5);
    border: none !important;
}

.feature-icon.red {
    background: #f44336 !important;
    color: #fff !important;
    box-shadow: 0 0 20px rgba(244, 67, 54, 0.5);
    border: none !important;
}

.feature-icon.lime {
    background: #CDDC39 !important;
    color: #000 !important;
    box-shadow: 0 0 20px rgba(205, 220, 57, 0.5);
    border: none !important;
}

.feature-icon.pink {
    background: #FF4081 !important;
    color: #fff !important;
    box-shadow: 0 0 20px rgba(255, 64, 129, 0.5);
    border: none !important;
}

/* IMPROVED GRID DESIGN FOR NEW ELEMENTS */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
    padding: 20px 0;
}

.feature-card {
    min-height: 280px;
    justify-content: flex-start;
    /* Reset to top alignment but still centered horizontally */
    padding: 40px 32px;
}

.feature-card h3 {
    margin-top: 10px;
}


/* =========================================
   VIBRANT FINANCE ICON STYLES 👑
   ========================================= */
.finance-icon {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.feature-card.finance:hover .finance-icon {
    transform: scale(1.15) rotate(8deg) !important;
    filter: brightness(1.1) saturate(1.2);
}

/* Solid Vibrant Colors for Finance Icons */
.finance-icon.yellow {
    background: #FFD700 !important;
    color: #000 !important;
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
}

.finance-icon.blue {
    background: #3B82F6 !important;
    color: #fff !important;
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

.finance-icon.green {
    background: #10B981 !important;
    color: #fff !important;
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.3);
}

.finance-icon.orange {
    background: #F59E0B !important;
    color: #fff !important;
    box-shadow: 0 10px 20px rgba(245, 158, 11, 0.3);
}

.finance-icon.red {
    background: #EF4444 !important;
    color: #fff !important;
    box-shadow: 0 10px 20px rgba(239, 68, 68, 0.3);
}

.finance-icon.purple {
    background: #8B5CF6 !important;
    color: #fff !important;
    box-shadow: 0 10px 20px rgba(139, 92, 246, 0.3);
}

.finance-icon.lime {
    background: #D4F458 !important;
    color: #000 !important;
    box-shadow: 0 10px 20px rgba(212, 244, 88, 0.3);
}

.finance-icon.cyan {
    background: #06B6D4 !important;
    color: #fff !important;
    box-shadow: 0 10px 20px rgba(6, 182, 212, 0.3);
}

.finance-icon.pink {
    background: #EC4899 !important;
    color: #fff !important;
    box-shadow: 0 10px 20px rgba(236, 72, 153, 0.3);
}

.finance-icon.indigo {
    background: #6366F1 !important;
    color: #fff !important;
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.3);
}

/* Ensure icons are centered and sized correctly */
.feature-icon.finance-icon {
    width: 60px !important;
    height: 60px !important;
    border-radius: 16px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 24px !important;
    margin-bottom: 24px !important;
    border: none !important;
}

/* =========================================
   PERSONAS SECTION
   ========================================= */
.personas-section {
    padding: 80px 24px;
}

.personas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.persona-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.persona-card:hover {
    transform: translateY(-10px);
    background: var(--bg-card-hover);
    border-color: rgba(255, 255, 255, 0.2);
}

.persona-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 24px;
    color: var(--text-white);
}

/* =========================================
   ACADEMY SECTION
   ========================================= */
.academy-section {
    padding: 80px 0;
    background: var(--bg-dark);
}

.academy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.academy-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.academy-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.2);
}

.academy-image {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
}

.academy-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.academy-cat {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-gray);
    letter-spacing: 1px;
    margin-bottom: 12px;
    display: block;
}

.academy-content h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-white);
    line-height: 1.3;
}

.academy-content p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.academy-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.2s;
}

.academy-link:hover {
    gap: 12px;
    color: var(--primary-lime);
}

.text-bg {
    background: linear-gradient(135deg, #1e293b, #0f172a);
}

.fit-bg {
    background: linear-gradient(135deg, #365314, #1a2e05);
    color: var(--primary-lime);
}

.wealth-bg {
    background: linear-gradient(135deg, #451a03, #431407);
    color: var(--accent-gold);
}

/* =========================================
   MOBILE MENU BUTTON FIX (Added per user feedback)
   ========================================= */
.mobile-menu-btn-pill {
    display: none;
    /* Hidden by default on desktop */
    background: transparent;
    border: none;
    color: var(--text-white);
    font-size: 20px;
    cursor: pointer;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-btn-pill:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--text-white);
}

@media (max-width: 900px) {
    .nav-links-pill {
        display: none;
    }

    .mobile-menu-btn-pill {
        display: flex;
    }
}