        /* ===== RESET & BASE STYLES ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-color: #22c55e;
            --primary-dark: #16a34a;
            --secondary-color: #3b82f6;
            --dark-bg: #0f172a;
            --dark-secondary: #1e293b;
            --dark-tertiary: #334155;
            --text-primary: #ffffff;
            --text-secondary: #cbd5e1;
            --text-muted: #94a3b8;
            --border-color: #334155;
            --gradient-primary: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
            --gradient-secondary: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
            --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
            --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
            --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
            --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background-color: var(--dark-bg);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            max-width: 600px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* ===== BUTTONS ===== */
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 24px;
            border: none;
            border-radius: 8px;
            font-weight: 500;
            font-size: 14px;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .btn-primary {
            background: var(--gradient-primary);
            color: white;
        }

        .btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }

        .btn-outline {
            background: transparent;
            color: var(--text-primary);
            border: 1px solid var(--primary-color);
        }

        .btn-outline:hover {
            background: var(--dark-secondary);
            border-color: var(--border-color);
            transform: translateY(-2px);
        }

        .btn-large {
            padding: 16px 32px;
            font-size: 16px;
        }

        .btn-full {
            width: 100%;
            justify-content: center;
        }

        /* ===== NAVIGATION ===== */
        /* Navbar styles moved to nav.blade.php for better organization */
        
        .vision-hero{
            padding-top: 200px;
        }
        .vision-hero h1{
            font-size: 10px;
            font-weight: 800;
            margin-bottom: 24px;
            text-align: center;
        }

.nav-logo {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 24px;
            font-weight: 800;
            color: var(--primary-color);
        }

        /* ===== SIDEBAR LOGO ===== */
        .sidebar-logo {
            padding: 1.5rem 1rem;
            border-bottom: 1px solid var(--border-color);
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .logo-link {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            padding: 8px;
            border-radius: 12px;
            transition: all 0.3s ease;
        }
        
        .logo-link:hover {
            background: rgba(34, 197, 94, 0.1);
            transform: translateY(-2px);
        }
        
        .logo-image {
            width: 40px;
            border-radius: 8px;
            object-fit: cover;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }
        
        .logo-text {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }
        
        .logo-primary {
            font-size: 20px;
            font-weight: 700;
            color: var(--primary-color);
            line-height: 1.2;
        }
        
        .logo-secondary {
            font-size: 12px;
            font-weight: 500;
            color: var(--text-muted);
            line-height: 1;
        }

        .nav-logo i {
            font-size: 28px;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 32px;
        }

        .nav-link {
            color: var(--text-secondary);
            text-decoration: none;
            font-weight: 500;
            padding: 8px 0;
            position: relative;
            transition: color 0.3s ease;
        }

        .nav-link:hover,
        .nav-link.active {
            color: var(--primary-color);
        }

        .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--gradient-primary);
            border-radius: 1px;
        }

        .nav-buttons {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .language-selector {
            display: flex;
            align-items: center;
            gap: 4px;
            color: var(--text-secondary);
            cursor: pointer;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
        }

        .section {
    padding: 80px 20px;
    background: #0f172a;
    color: #f8fafc;
}

.section .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.section .section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--primary-color, #22c55e);
}

.section .section-header p {
    font-size: 1.2rem;
    opacity: 0.8;
}

.card-section {
    /* background: rgba(30, 41, 59, 0.7); */
    border-radius: 20px;
    padding: 40px;
    /* box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4); */
    backdrop-filter: blur(15px);
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.card-grid .card {
    background: #1e293b;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

.card-grid .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(34, 197, 94, 0.2);
}

.card-grid .card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--primary-color, #22c55e);
}

.card-grid .card p {
    font-size: 1rem;
    opacity: 0.85;
    line-height: 1.5;
}

.why-invest {
    margin-top: 50px;
    background: #1e293b;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.why-invest h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary-color, #22c55e);
}

.why-invest ul {
    list-style: none;
    padding: 0;
    margin: 20px auto;
    max-width: 900px;
    text-align: left;
}

.why-invest ul li {
    font-size: 1rem;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.why-invest ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: var(--primary-color, #22c55e);
}

.why-invest .btn {
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 1rem;
    border-radius: 8px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    text-decoration: none;
    transition: background 0.3s ease;
}

.why-invest .btn:hover {
    background: #15803d;
}

        .hamburger span {
            width: 24px;
            height: 2px;
            background: var(--text-primary);
            transition: all 0.3s ease;
        }

        /* ===== HERO SECTION ===== */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            overflow: hidden;
            background: 
                radial-gradient(circle at 20% 80%, rgba(34, 197, 94, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
                linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-secondary) 100%);
        }

        /* Animated Background */
        .hero-bg-animation {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .floating-particles {
            position: absolute;
            width: 100%;
            height: 100%;
        }

        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: var(--primary-color);
            border-radius: 50%;
            opacity: 0.6;
            animation: float 20s infinite linear;
        }

        .particle:nth-child(1) {
            top: 20%;
            left: 10%;
            animation-delay: 0s;
            animation-duration: 25s;
        }

        .particle:nth-child(2) {
            top: 60%;
            left: 85%;
            animation-delay: -5s;
            animation-duration: 30s;
        }

        .particle:nth-child(3) {
            top: 80%;
            left: 20%;
            animation-delay: -10s;
            animation-duration: 35s;
        }

        .particle:nth-child(4) {
            top: 40%;
            left: 90%;
            animation-delay: -15s;
            animation-duration: 20s;
        }

        .particle:nth-child(5) {
            top: 10%;
            left: 70%;
            animation-delay: -20s;
            animation-duration: 40s;
        }

        .particle:nth-child(6) {
            top: 90%;
            left: 50%;
            animation-delay: -25s;
            animation-duration: 28s;
        }

        @keyframes float {
            0% {
                transform: translateY(0px) translateX(0px) scale(0);
                opacity: 0;
            }
            10% {
                opacity: 0.6;
                transform: scale(1);
            }
            90% {
                opacity: 0.6;
                transform: scale(1);
            }
            100% {
                transform: translateY(-100vh) translateX(50px) scale(0);
                opacity: 0;
            }
        }

        .gradient-orbs {
            position: absolute;
            width: 100%;
            height: 100%;
        }

        .orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(100px);
            opacity: 0.3;
            animation: pulse 8s ease-in-out infinite;
        }

        .orb-1 {
            width: 400px;
            height: 400px;
            background: var(--gradient-primary);
            top: 10%;
            right: 10%;
            animation-delay: 0s;
        }

        .orb-2 {
            width: 300px;
            height: 300px;
            background: var(--gradient-secondary);
            bottom: 20%;
            left: 10%;
            animation-delay: -2s;
        }

        .orb-3 {
            width: 250px;
            height: 250px;
            background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
            top: 50%;
            right: 50%;
            animation-delay: -4s;
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
                opacity: 0.3;
            }
            50% {
                transform: scale(1.2);
                opacity: 0.5;
            }
        }

        /* Trading Interface (Right Side) */
        .hero-trading-interface {
            position: absolute;
            top: 50%;
            right: 15%;
            transform: translateY(-50%);
            z-index: 10;
            width: 350px;
        }

        .trading-dashboard {
            /* background: rgba(30, 41, 59, 0.9); */
            /* backdrop-filter: blur(20px); */
            /* border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 24px; */
            padding: 24px;
            width: 500px;
            /* box-shadow: 
                0 25px 50px -12px rgba(0, 0, 0, 0.5),
                0 0 0 1px rgba(255, 255, 255, 0.05); */
            /* animation: dashboardFloat 6s ease-in-out infinite; */
        }

        @keyframes dashboardFloat {
            0%, 100% {
                transform: translateY(0px) rotate(0deg);
            }
            50% {
                transform: translateY(-10px) rotate(1deg);
            }
        }

        .dashboard-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }

        .live-indicator {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 12px;
            font-weight: 600;
            color: var(--primary-color);
        }

        .live-dot {
            width: 8px;
            height: 8px;
            background: var(--primary-color);
            border-radius: 50%;
            animation: livePulse 2s ease-in-out infinite;
        }

        @keyframes livePulse {
            0%, 100% {
                opacity: 1;
                transform: scale(1);
            }
            50% {
                opacity: 0.5;
                transform: scale(1.2);
            }
        }

        .dashboard-time {
            font-size: 12px;
            color: var(--text-muted);
            font-family: monospace;
        }

        .price-display {
            margin-bottom: 20px;
        }

        .main-asset {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: rgba(15, 23, 42, 0.6);
            border-radius: 16px;
            padding: 16px;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .asset-info {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .asset-icon {
            font-size: 24px;
        }

        .asset-details {
            display: flex;
            flex-direction: column;
        }

        .asset-name {
            font-weight: 600;
            color: var(--text-primary);
        }

        .asset-type {
            font-size: 12px;
            color: var(--text-muted);
        }

        .price-info {
            text-align: right;
        }

        .current-price {
            font-size: 20px;
            font-weight: 700;
            color: var(--text-primary);
            font-family: monospace;
        }

        .price-change {
            font-size: 12px;
            font-weight: 500;
        }

        .price-change.positive {
            color: var(--primary-color);
        }

        .price-change.negative {
            color: #ef4444;
        }

        /* Live Chart Container */
        .live-chart-container {
            margin-bottom: 40px;
            height: 280px;
            background: rgba(15, 23, 42, 0.4);
            border-radius: 12px;
            padding: 12px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            position: relative;
            overflow: hidden;
        }

        .chart-svg {
            width: 100%;
            height: 100%;
        }

        .chart-line {
            fill: none;
            stroke: var(--primary-color);
            stroke-width: 2;
            filter: drop-shadow(0 0 4px rgba(34, 197, 94, 0.5));
        }

        .chart-area {
            fill: url(#gradient);
            opacity: 0.3;
        }

        .chart-dot {
            fill: var(--primary-color);
            r: 3;
            filter: drop-shadow(0 0 6px rgba(34, 197, 94, 0.8));
        }

        .quick-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
            margin-bottom: 20px;
        }

        .stat-item {
            text-align: center;
            padding: 8px;
            background: rgba(15, 23, 42, 0.4);
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .stat-item .label {
            display: block;
            font-size: 10px;
            color: var(--text-muted);
            margin-bottom: 4px;
            text-transform: uppercase;
        }

        .stat-item .value {
            font-size: 12px;
            font-weight: 600;
            color: var(--text-primary);
            font-family: monospace;
        }

        .trade-actions {
            display: flex;
            gap: 12px;
        }

        .trade-btn {
            flex: 1;
            padding: 12px;
            border: none;
            border-radius: 12px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .buy-btn {
            background: var(--gradient-primary);
            color: white;
        }

        .buy-btn:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(34, 197, 94, 0.3);
        }

        .sell-btn {
            background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
            color: white;
        }

        .sell-btn:hover {
            background: #dc2626;
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(239, 68, 68, 0.3);
        }

        /* Floating Cards */
        .floating-card {
            position: absolute;
            background: rgba(30, 41, 59, 0.8);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 12px 16px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
            animation: cardFloat 8s ease-in-out infinite;
        }

        .card-1 {
            top: -60px;
            right: -40px;
            animation-delay: 0s;
        }

        .card-2 {
            bottom: -40px;
            left: -60px;
            animation-delay: -2s;
        }

        .card-3 {
            top: 50%;
            left: -80px;
            animation-delay: -4s;
        }

        @keyframes cardFloat {
            0%, 100% {
                transform: translateY(0px) rotate(0deg);
                opacity: 0.8;
            }
            50% {
                transform: translateY(-15px) rotate(2deg);
                opacity: 1;
            }
        }

        .card-content {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 12px;
            font-weight: 500;
            color: var(--text-primary);
            white-space: nowrap;
        }

        .card-content i {
            color: var(--primary-color);
        }

        /* Hero Content */
        .hero-content {
            position: relative;
            z-index: 5;
            padding: 120px 60px 60px;
            width: 100%;
        }

        .hero-main {
            max-width: 650px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(34, 197, 94, 0.1);
            border: 1px solid rgba(34, 197, 94, 0.3);
            color: var(--primary-color);
            padding: 8px 16px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 24px;
            animation: badgeGlow 3s ease-in-out infinite;
        }

        @keyframes badgeGlow {
            0%, 100% {
                box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.3);
            }
            50% {
                box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);
            }
        }

        .hero-title {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 24px;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .title-line-1 {
            color: var(--text-primary);
            animation: titleSlideIn 1s ease-out;
        }

        .title-line-2 {
            animation: titleSlideIn 1s ease-out 0.2s both;
        }

        @keyframes titleSlideIn {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .highlight-text {
            background: linear-gradient(135deg, var(--primary-color) 0%, #3b82f6 50%, #8b5cf6 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            background-size: 200% 200%;
            animation: gradientShift 4s ease-in-out infinite;
        }

        @keyframes gradientShift {
            0%, 100% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
        }

        .hero-description {
            font-size: 18px;
            color: var(--text-secondary);
            margin-bottom: 40px;
            line-height: 1.7;
            animation: fadeInUp 1s ease-out 0.4s both;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            margin-bottom: 48px;
            flex-wrap: wrap;
            animation: fadeInUp 1s ease-out 0.6s both;
        }

        .btn-glow {
            position: relative;
            overflow: hidden;
        }

        .btn-glow::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s ease;
        }

        .btn-glow:hover::before {
            left: 100%;
        }

        .btn-shine {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 100px;
            height: 100px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
            transform: translate(-50%, -50%) scale(0);
            border-radius: 50%;
            animation: shine 2s ease-in-out infinite;
        }

        @keyframes shine {
            0%, 100% {
                transform: translate(-50%, -50%) scale(0);
                opacity: 0;
            }
            50% {
                transform: translate(-50%, -50%) scale(1);
                opacity: 1;
            }
        }

        .hero-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
            animation: fadeInUp 1s ease-out 0.8s both;
        }

        .stat-card {
            display: flex;
            align-items: center;
            gap: 12px;
            background: rgba(30, 41, 59, 0.5);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            padding: 16px;
            transition: all 0.3s ease;
        }

        .stat-card:hover {
            transform: translateY(-4px);
            background: rgba(30, 41, 59, 0.8);
            border-color: rgba(34, 197, 94, 0.3);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }

        .stat-icon {
            font-size: 24px;
        }

        .stat-info {
            display: flex;
            flex-direction: column;
        }

        .stat-number {
            font-size: 20px;
            font-weight: 700;
            color: var(--primary-color);
            font-family: monospace;
        }

        .stat-label {
            font-size: 12px;
            color: var(--text-muted);
        }

        .trust-indicators {
            display: flex;
            gap: 32px;
            flex-wrap: wrap;
            animation: fadeInUp 1s ease-out 1s both;
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--text-secondary);
            font-size: 14px;
        }

        .trust-item i {
            color: var(--primary-color);
        }

        /* Scroll Indicator */
        .scroll-indicator {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            text-align: center;
            color: var(--text-muted);
            animation: scrollBounce 2s ease-in-out infinite;
        }

        .scroll-text {
            font-size: 12px;
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .scroll-arrow i {
            font-size: 16px;
            animation: arrowBounce 2s ease-in-out infinite;
        }

        @keyframes scrollBounce {
            0%, 100% {
                transform: translateX(-50%) translateY(0);
                opacity: 0.7;
            }
            50% {
                transform: translateX(-50%) translateY(-10px);
                opacity: 1;
            }
        }

        @keyframes arrowBounce {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(5px);
            }
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 1200px) {
            .hero {
                flex-direction: column;
                padding: 120px 20px 60px;
            }
            
            .hero-content {
                max-width: 100%;
                text-align: center;
                padding: 60px 20px 40px;
                order: 1;
            }
            
            .hero-trading-interface {
                max-width: 100%;
                width: 90%;
                padding: 1px;
                order: 2;
                position: static;
                transform: none;
                margin: 0 auto;
            }
            
            .hero-main {
                max-width: 100%;
                text-align: center;
            }
            
            .floating-card {
                display: none;
            }
            
            .orb {
                display: none;
            }
            
            .trust-indicators {
                justify-content: center;
            }
        }

        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }
            
            .hamburger {
                display: flex;
            }
            
            .nav-buttons {
                gap: 8px;
            }
            
            .nav-buttons .btn {
                padding: 8px 16px;
                font-size: 12px;
            }
            
            /* Mobile-first hero layout with text first, then chart */
            .hero-content {
                padding: 100px 0 40px;
                display: flex;
                flex-direction: column;
            }
            
            .hero-main {
                order: 1;
                text-align: center;
                margin-bottom: 30px;
            }
            
            .hero-trading-interface {
                order: 2;
                position: static;
                transform: none;
                width: 100%;
                max-width: 350px;
                margin: 0 auto;
            }
            
            .hero-title {
                font-size: clamp(1.8rem, 6vw, 2.5rem);
                margin-bottom: 16px;
            }
            
            .hero-description {
                font-size: 16px;
                margin-bottom: 24px;
                padding: 0 10px;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: stretch;
                gap: 12px;
                margin-bottom: 32px;
            }
            
            .hero-stats {
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
                margin-bottom: 24px;
            }
            
            .trust-indicators {
                flex-direction: column;
                align-items: center;
                gap: 16px;
            }
            
            /* .trading-dashboard {
                padding: 20px;
            } */
            
            .quick-stats {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 1px;
            }
            
            .hero-title {
                font-size: 1.75rem;
                line-height: 1.2;
            }
            
            .hero-description {
                font-size: 14px;
                line-height: 1.6;
            }
            
            .hero-stats {
                grid-template-columns: 1fr;
                gap: 12px;
            }
            
            .stat-card {
                padding: 12px;
            }
            
            .trading-dashboard {
                padding: 16px;
                margin: 20px auto 0;
            }
            
            .particle {
                display: none;
            }
            
            .hero-badge {
                font-size: 12px;
                padding: 6px 12px;
            }
        }

        /* Market data styles moved to nav.blade.php for secondary navbar */

       /* Improved Modal Styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 9999;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(12px);
            animation: fadeIn 0.3s ease-out;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .modal-content {
            position: relative;
            background: var(--dark-secondary);
            margin: 3% auto;
            padding: 0;
            border: 1px solid var(--border-color);
            border-radius: 16px;
            width: 99%;
            max-width: 900px;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
            overflow: hidden;
            animation: modalZoomIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            transform-origin: center center;
        }

        /* @keyframes modalZoomIn {
            from {
                opacity: 0;
                transform: scale(0.7) translateY(-20px);
            }
            to {
                opacity: 1;
                transform: scale(1) translateY(0);
            }
        } */

       .modal-header {
    display: flex;
    align-items: center;
    justify-content: center; /* Center the logo */
    padding: 16px;
    border-bottom: 1px solid var(--border-color, #334155);
    position: relative;
}
@media (max-width: 768px) {
    .modal-header .close {
        font-size: 1.6rem;
        width: 28px;
        height: 28px;
        padding-bottom: 30px;
    }
}

        .modal-title {
            font-size: 20px;
            font-weight: 700;
            color: var(--text-primary);
            margin: 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .modal-title i {
            color: var(--primary-color);
        }

        .close {
            color: var(--text-muted);
            font-size: 24px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            background: none;
            border: none;
            padding: 8px;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }

        .close:hover {
            color: var(--text-primary);
            background: rgba(255, 255, 255, 0.1);
            transform: rotate(90deg);
        }

        .modal-body {
            padding-bottom: 10px;
          
        }

        .video-container {
            position: relative;
            width: 100%;
            height: 0;
            padding-bottom: 56.25%; /* 16:9 aspect ratio */
            background: #000;
            overflow: hidden;
        }

        .video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }

        .video-placeholder {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--dark-secondary), var(--dark-tertiary));
            color: var(--text-primary);
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .video-placeholder:hover {
            background: linear-gradient(135deg, var(--dark-tertiary), var(--dark-secondary));
        }

        .video-placeholder i {
            font-size: 64px;
            color: var(--primary-color);
            margin-bottom: 16px;
            transition: all 0.3s ease;
        }

        .video-placeholder:hover i {
            transform: scale(1.1);
            color: #16a34a;
        }

        .video-placeholder h3 {
            margin: 0 0 8px 0;
            font-size: 24px;
            font-weight: 700;
        }

        .video-placeholder p {
            margin: 0;
            font-size: 16px;
            color: var(--text-muted);
        }

        .modal-footer {
            padding: 20px;
            text-align: center;
            background: var(--dark-secondary);
            border-top: 1px solid var(--border-color);
        }

        .btn {
            background: linear-gradient(135deg, var(--primary-color), #16a34a);
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 8px;
            cursor: pointer;
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
        }

        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(34, 197, 94, 0.3);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .modal-content {
                margin: 5% auto;
                width: 98%;
            }

            .modal-title {
                font-size: 18px;
            }

            .video-placeholder i {
                font-size: 48px;
            }

            .video-placeholder h3 {
                font-size: 20px;
            }
        }

        /* Loading indicator */
        .loading-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
        }

        .spinner {
            width: 40px;
            height: 40px;
            border: 4px solid var(--border-color);
            border-top: 4px solid var(--primary-color);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }


        .infrastructure-section {
        background: var(--dark-tertiary);
    }

    .vision-section {
        background: var(--dark-secondary);
    }

    .revolution-section {
        background: var(--dark-tertiary);
    }

    .why-invest {
        background: var(--dark-secondary);
        border-radius: 20px;
        padding: 40px;
        margin-top: 40px;
        text-align: center;
        border: 1px solid rgba(0, 255, 136, 0.2);
    }

    .why-invest h3 {
        font-size: 2rem;
        margin-bottom: 30px;
        background: var(--gradient-primary);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .why-invest ul {
        list-style: none;
        margin-bottom: 30px;
        text-align: left;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .why-invest ul li {
        margin-bottom: 15px;
        padding-left: 30px;
        position: relative;
        color: var(--text-secondary);
    }

    .why-invest ul li::before {
        /* content: '🚀'; */
        position: absolute;
        left: 0;
        font-size: 1.2rem;
    }

    .why-invest p {
        font-size: 1.2rem;
        color: var(--text-secondary);
        margin-bottom: 30px;
        font-style: italic;
    }

    @media (max-width: 768px) {
        .section {
            padding: 60px 0;
        }

        .section-header h2 {
            font-size: 2rem;
        }

        .card-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .card {
            padding: 30px 20px;
        }

        .container {
            padding: 0 15px;
        }
    }
        .video-placeholder {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: var(--text-secondary);
        }

        .video-placeholder i {
            font-size: 64px;
            color: var(--primary-color);
            margin-bottom: 16px;
        }

        .video-placeholder h3 {
            font-size: 20px;
            margin-bottom: 8px;
            color: var(--text-primary);
        }

        .video-placeholder p {
            font-size: 14px;
            color: var(--text-muted);
        }

        @media (max-width: 768px) {
            .modal-content {
                width: 95%;
                margin: 10% auto;
            }
            
            .modal-header,
            .modal-body {
                padding: 20px;
            }
            
            .modal-title {
                font-size: 20px;
            }
        }


/* Floating Cards */
.floating-card {
    position: absolute;
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 12px 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    animation: cardFloat 8s ease-in-out infinite;
}

.card-1 {
    top: -60px;
    right: -40px;
    animation-delay: 0s;
}

.card-2 {
    bottom: -40px;
    left: -60px;
    animation-delay: -2s;
}

.card-3 {
    top: 50%;
    left: -80px;
    animation-delay: -4s;
}

@keyframes cardFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-15px) rotate(2deg);
        opacity: 1;
    }
}

.card-content {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-primary);
    white-space: nowrap;
}

.card-content i {
    color: var(--primary-color);
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 5;
    padding: 150px 60px 60px;
    width: 100%;
}
 /* .hero {
    position: relative;
    z-index: -1;
    padding: 120px 0 60px;
    width: 100%;
    background: url('/oil_silhouette.svg') no-repeat center bottom;
    background-size: cover;
    opacity: 0.15; 
} */
 

.hero::before {
    content: "";
    position: absolute;
    top: var(--navbar-height, 80px);
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/oil_silhouette.svg') no-repeat center bottom;
    background-size: cover;
    opacity: 0.10; 
    z-index: -1;
}
@media (max-width: 768px) {
    /* Show the SVG background on all devices */
    .hero::before {
        display: block;
        opacity: 0.08; /* Lower opacity on mobile for better text readability */
    }

    /* Show trading interface on all screen sizes - override previous rule */
    .hero-trading-interface {
        display: block !important;
        position: relative;
        transform: none;
        width: 100%;
        max-width: 400px;
        margin: 1px;
    }
}

.hero-main {
    max-width: 650px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    animation: badgeGlow 3s ease-in-out infinite;
}

@keyframes badgeGlow {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.3);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);
    }
}

.hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.title-line-1 {
    color: var(--text-primary);
    animation: titleSlideIn 1s ease-out;
}

.title-line-2 {
    animation: titleSlideIn 1s ease-out 0.2s both;
}

@keyframes titleSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.highlight-text {
    background: linear-gradient(135deg, var(--primary-color) 0%, #3b82f6 50%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 4s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.hero-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.7;
    animation: fadeInUp 1s ease-out 0.4s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.btn-glow {
    position: relative;
    overflow: hidden;
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-glow:hover::before {
    left: 100%;
}

.btn-shine {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%) scale(0);
    border-radius: 50%;
    animation: shine 2s ease-in-out infinite;
}

@keyframes shine {
    0%, 100% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0;
    }
    50% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 16px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    background: rgba(30, 41, 59, 0.8);
    border-color: rgba(34, 197, 94, 0.3);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.stat-icon {
    font-size: 24px;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    font-family: monospace;
}

.stat-label {
    font-size: 12px;
    color: var(--text-muted);
}

.trust-indicators {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 1s both;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 14px;
}

.trust-item i {
    color: var(--primary-color);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--text-muted);
    animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-text {
    font-size: 12px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-arrow i {
    font-size: 16px;
    animation: arrowBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
        opacity: 0.7;
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
        opacity: 1;
    }
}

@keyframes arrowBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(5px);
    }
}


/* Market data styles moved to nav.blade.php for secondary navbar */

/* ===== SECTIONS ===== */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-secondary);
    /* max-width: 600px; */
    margin: 0 auto;
}

/* ===== FEATURES ===== */
.features {
    padding: 100px 0;
    background: var(--dark-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.feature-card {
    background: var(--dark-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.feature-icon i {
    font-size: 24px;
    color: white;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
}

.feature-card p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
}

.feature-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.feature-link:hover {
    gap: 12px;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
    padding: 100px 0;
    background: var(--dark-secondary);
}

.content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.content-left h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.3;
}

.content-left p {
    color: var(--text-secondary);
    font-size: 18px;
    margin-bottom: 32px;
    line-height: 1.6;
}

.content-left small {
    color: var(--text-muted);
    display: block;
    margin-top: 8px;
}

.price-chart {
    margin-top: 32px;
    height: 200px;
    background: var(--dark-tertiary);
    border-radius: 12px;
    padding: 20px;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.step-card {
    background: var(--dark-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary-color);
}

.step-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-secondary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.step-icon i {
    color: white;
    font-size: 18px;
}

.step-card h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.step-card p {
    color: var(--text-secondary);
    font-size: 14px;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 100px 0;
    background: var(--dark-bg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.testimonial-card {
    background: var(--dark-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.user-info {
    display: flex;
    gap: 12px;
}

.user-avatar {
    width: 30px;
    height: 30px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
}

.user-details h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.user-details small {
    color: var(--text-muted);
    font-size: 12px;
}

.rating {
    display: flex;
    gap: 2px;
}

.rating i {
    color: #fbbf24;
    font-size: 14px;
}

.testimonial-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.read-more:hover {
    gap: 12px;
}

/* ===== MOBILE APP ===== */
.mobile-app {
    padding: 100px 0;
    background: var(--dark-secondary);
}

.phone-mockup {
    position: relative;
    width: 250px;
    height: 500px;
    background: linear-gradient(45deg, #1e293b, #334155);
    border-radius: 40px;
    padding: 20px;
    border: 8px solid #475569;
    box-shadow: var(--shadow-xl);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--dark-bg);
    border-radius: 32px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-rating {
    text-align: center;
}

.rating-badge {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.rating-score {
    display: block;
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.stars {
    display: flex;
    justify-content: center;
    gap: 4px;
}

.stars i {
    color: #fbbf24;
    font-size: 16px;
}

.mobile-app .content-right h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 24px;
}

.mobile-app .content-right p {
    color: var(--text-secondary);
    font-size: 18px;
    margin-bottom: 32px;
    line-height: 1.6;
}

.app-downloads {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.download-btn {
    display: block;
}

.download-btn img {
    height: 48px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.download-btn:hover img {
    transform: scale(1.05);
}

/* ===== FAQ ===== */
.faq {
    padding: 100px 0;
    background: var(--dark-bg);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-color);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    cursor: pointer;
    background: var(--dark-secondary);
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--dark-tertiary);
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
}

.faq-question i {
    color: var(--primary-color);
    font-size: 18px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 24px;
    max-height: 200px;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== NEWSLETTER ===== */
.newsletter {
    padding: 80px 0;
    background: var(--dark-primary);
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.newsletter-content p {
    color: var(--text-secondary);
    margin-bottom: 32px;
    font-size: 18px;
}

.newsletter-form {
    display: flex;
    gap: 16px;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: var(--dark-tertiary);
    color: var(--text-primary);
    font-size: 14px;
}

.newsletter-form input::placeholder {
    color: var(--text-muted);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark-bg);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.footer-logo i {
    font-size: 28px;
}

.footer-section p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 12px;
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--dark-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

/* ===== MODALS ===== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    backdrop-filter: blur(4px);
}

.modal-content {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--dark-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
 
    width: 90%;
    max-width: 800px;
    box-shadow: var(--shadow-xl);
}

.close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.close:hover {
    color: var(--text-primary);
}



.modal-header h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.modal-header p {
    color: var(--text-secondary);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: var(--dark-tertiary);
    color: var(--text-primary);
    font-size: 14px;
}

.form-group input::placeholder {
    color: var(--text-muted);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-secondary);
}

.checkbox-label input {
    width: auto !important;
    margin: 0;
}

.checkbox-label a {
    color: var(--primary-color);
    text-decoration: none;
}

.form-footer {
    text-align: center;
    margin-top: 20px;
    color: var(--text-secondary);
}

.form-footer a {
    color: var(--primary-color);
    text-decoration: none;
}

/* ===== UTILITY CLASSES ===== */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .content-split {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .hero-trading-interface {
        position: static;
        transform: none;
        width: 100%;
        max-width: 400px;
        margin: 40px auto 0;
    }
    
    .floating-card {
        display: none;
    }
    
    .orb {
        display: none;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-main {
        max-width: 100%;
    }
    
    .trust-indicators {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-buttons {
        gap: 8px;
    }
    
    .nav-buttons .btn {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 8vw, 3.5rem);
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .trust-indicators {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .trading-dashboard {
        padding: 20px;
    }
    
    .hero-trading-interface {
        width: 100%;
        max-width: 450px;
    }
    
    .quick-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .newsletter-form {
        flex-direction: column;
        max-width: 300px;
    }
    
    .market-ticker {
        gap: 2px;
    }
    
    .ticker-item {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-card {
        padding: 12px;
    }
    
    .trading-dashboard {
        padding: 16px;
        margin: 20px auto 0;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .feature-card {
        padding: 24px;
    }
    
    .modal-content {
        padding: 24px;
        margin: 20px;
    }
    
    .app-downloads {
        justify-content: center;
    }
    
    .phone-mockup {
        width: 200px;
        height: 400px;
    }
    
    .particle {
        display: none;
    }
    
    .hero-badge {
        font-size: 12px;
        padding: 6px 12px;
    }
}

.investment-analytics {
    padding: 60px 0;
    background: var(--bg-primary);
}
.analytics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}
.analytics-card {
    background: #2d3748;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.analytics-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.analytics-title {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
}
.analytics-icon {
    margin-right: 10px;
    font-size: 1.8rem;
}
.chart-wrapper {
    height: 300px;
}