 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', 'Segoe UI', sans-serif;
        }
        
        :root {
            --primary: #0ea5e9;
            --primary-dark: #0369a1;
            --secondary: #10b981;
            --accent: #f59e0b;
            --dark: #1e293b;
            --light: #f8fafc;
            --gray: #64748b;
            --border: #e2e8f0;
            --gradient: linear-gradient(135deg, #0ea5e9 0%, #10b981 100%);
        }
        
        body {
            background: linear-gradient(135deg, #f0f9ff 0%, #f8fafc 100%);
            color: var(--dark);
            line-height: 1.7;
            overflow-x: hidden;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Styles */
        header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(226, 232, 240, 0.8);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 18px 0;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .logo-icon {
            width: 46px;
            height: 46px;
            background: var(--gradient);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 800;
            font-size: 20px;
            box-shadow: 0 6px 16px rgba(14, 165, 233, 0.3);
        }
        
        .logo-text {
            font-size: 26px;
            font-weight: 800;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        nav ul {
            display: flex;
            list-style: none;
            gap: 35px;
        }
        
        nav ul li a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        nav ul li a:hover {
            color: var(--primary);
        }
        
        .header-actions {
            display: flex;
            gap: 16px;
        }
        
        .btn {
            padding: 12px 28px;
            border-radius: 12px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            border: none;
            font-size: 15px;
        }
        
        .btn-outline {
            border: 2px solid var(--primary);
            color: var(--primary);
            background: transparent;
        }
        
        .btn-outline:hover {
            background: rgba(14, 165, 233, 0.05);
            transform: translateY(-2px);
        }
        
        .btn-primary {
            background: var(--gradient);
            color: white;
            box-shadow: 0 6px 16px rgba(14, 165, 233, 0.3);
        }
        
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 24px rgba(14, 165, 233, 0.4);
        }
        
        /* Hero Section */
        .hero {
            padding: 160px 0 100px;
            position: relative;
            overflow: hidden;
        }
        
        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 15% 70%, rgba(14, 165, 233, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 85% 30%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
            z-index: -1;
        }
        
        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }
        
        .hero-text {
            max-width: 580px;
        }
        
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(16, 185, 129, 0.1);
            color: var(--secondary);
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 700;
            margin-bottom: 24px;
            border: 1px solid rgba(16, 185, 129, 0.2);
        }
        
        .hero-text h1 {
            font-size: 52px;
            line-height: 1.1;
            margin-bottom: 24px;
            color: var(--dark);
            font-weight: 800;
        }
        
        .hero-text h1 span {
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .hero-text p {
            font-size: 18px;
            color: var(--gray);
            margin-bottom: 32px;
            max-width: 500px;
        }
        
        .hero-actions {
            display: flex;
            gap: 16px;
            margin-bottom: 48px;
        }
        
        .hero-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
        }
        
        .stat {
            text-align: center;
        }
        
        .stat-value {
            font-size: 36px;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 4px;
        }
        
        .stat-label {
            font-size: 14px;
            color: var(--gray);
            font-weight: 600;
        }
        
        .hero-visual {
            position: relative;
        }
        
        .visual-card {
            background: white;
            border-radius: 20px;
            padding: 32px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.08);
            border: 1px solid rgba(226, 232, 240, 0.8);
            position: relative;
            overflow: hidden;
        }
        
        .visual-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient);
        }
        
        .card-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 24px;
        }
        
        .card-title {
            font-size: 18px;
            font-weight: 700;
            color: var(--dark);
        }
        
        .card-chart {
            height: 200px;
            background: linear-gradient(135deg, #f0f9ff 0%, #f8fafc 100%);
            border-radius: 12px;
            margin-bottom: 24px;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: flex-end;
            padding: 20px;
        }
        
        .chart-bar {
            flex: 1;
            background: var(--gradient);
            margin: 0 4px;
            border-radius: 4px 4px 0 0;
            animation: growBar 1.5s ease-out;
        }
        
        @keyframes growBar {
            from { height: 0%; }
            to { height: 100%; }
        }
        
        /* Image Cards Section */
        .image-cards {
            padding: 100px 0;
            background: white;
        }
        
        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 80px;
        }
        
        .section-subtitle {
            color: var(--primary);
            font-weight: 700;
            margin-bottom: 16px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            font-size: 14px;
        }
        
        .section-title {
            font-size: 42px;
            margin-bottom: 24px;
            color: var(--dark);
            font-weight: 800;
        }
        
        .section-description {
            color: var(--gray);
            font-size: 18px;
            line-height: 1.8;
        }
        
        .cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 32px;
        }
        
        .image-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            border: 1px solid rgba(226, 232, 240, 0.8);
        }
        
        .image-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.12);
        }
        
        .card-image {
            height: 240px;
            width: 100%;
            object-fit: cover;
        }
        
        .card-content {
            padding: 32px;
        }
        
        .card-content h3 {
            font-size: 22px;
            margin-bottom: 16px;
            color: var(--dark);
            font-weight: 700;
        }
        
        .card-content p {
            color: var(--gray);
            margin-bottom: 24px;
        }
        
        /* Features Section */
        .features {
            padding: 100px 0;
            background: linear-gradient(135deg, #f0f9ff 0%, #f8fafc 100%);
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 32px;
        }
        
        .feature-card {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            border: 1px solid rgba(226, 232, 240, 0.8);
            text-align: center;
        }
        
        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }
        
        .feature-icon {
            width: 80px;
            height: 80px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
            font-size: 32px;
            background: rgba(14, 165, 233, 0.1);
            color: var(--primary);
        }
        
        .feature-card h3 {
            font-size: 24px;
            margin-bottom: 16px;
            color: var(--dark);
            font-weight: 700;
        }
        
        .feature-card p {
            color: var(--gray);
            margin-bottom: 24px;
        }
        
        /* CTA Section */
        .cta {
            padding: 120px 0;
            background: var(--gradient);
            color: white;
            text-align: center;
            border-radius: 30px;
            margin: 0 20px;
            position: relative;
            overflow: hidden;
        }
        
        .cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.05)" points="0,1000 1000,0 1000,1000"/></svg>');
            background-size: cover;
        }
        
        .cta-content {
            max-width: 700px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        
        .cta h2 {
            font-size: 42px;
            margin-bottom: 24px;
            font-weight: 800;
        }
        
        .cta p {
            font-size: 18px;
            margin-bottom: 32px;
            opacity: 0.9;
        }
        
        .btn-light {
            background: white;
            color: var(--primary);
            border: none;
            font-weight: 700;
        }
        
        .btn-light:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(255,255,255,0.3);
        }
        
        /* Risk Disclosure */
        .risk-disclosure {
            padding: 60px 0;
            background: #fff8e1;
            border-top: 1px solid #ffecb3;
            margin-top: 80px;
        }
        
        .risk-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            color: #5d4037;
        }
        
        .risk-content h3 {
            margin-bottom: 20px;
            color: #e65100;
            font-weight: 700;
        }
        
        /* Footer */
        footer {
            background: var(--dark);
            color: white;
            padding: 80px 0 40px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 48px;
            margin-bottom: 60px;
        }
        
        .footer-column h3 {
            margin-bottom: 24px;
            font-size: 18px;
            font-weight: 700;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 12px;
        }
        
        .footer-column ul li a {
            color: #94a3b8;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-column ul li a:hover {
            color: white;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid #334155;
            color: #94a3b8;
            font-size: 14px;
        }
        
        /* Responsive Design */
        @media (max-width: 1024px) {
            .hero-content {
                grid-template-columns: 1fr;
                gap: 60px;
                text-align: center;
            }
            
            .hero-text {
                margin: 0 auto;
            }
            
            .hero-stats {
                justify-content: center;
            }
            
            nav ul {
                gap: 24px;
            }
        }
        
        @media (max-width: 768px) {
            .hero-text h1 {
                font-size: 42px;
            }
            
            .section-title {
                font-size: 36px;
            }
            
            .hero-actions {
                flex-direction: column;
                align-items: center;
            }
            
            .btn {
                width: 100%;
                max-width: 280px;
                text-align: center;
                justify-content: center;
            }
            
            .cards-grid,
            .features-grid {
                grid-template-columns: 1fr;
            }
            
            nav ul {
                display: none;
            }
        }
        
        .floating-button {
            position: fixed;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            color: var(--darker);
            border: none;
            padding: 16px 35px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(0, 217, 255, 0.5);
            z-index: 1000;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .floating-button:hover {
            transform: translateX(-50%) translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 217, 255, 0.7);
        }

        .floating-button:active {
            transform: translateX(-50%) translateY(0);
            box-shadow: 0 3px 15px rgba(0, 217, 255, 0.4);
        }


        @media (max-width: 768px) {
            .floating-button {
                width: 90%;
                max-width: 300px;
                justify-content: center;
                bottom: 20px;
            }
            
            h1 {
                font-size: 2rem;
            }
        }