
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #0ea5e9 0%, #3b82f6 50%, #8b5cf6 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero::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 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
        }

        .hero-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-text {
            color: white;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            padding: 12px 24px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 30px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .hero-title {
            font-size: 3.8rem;
            font-weight: 900;
            margin-bottom: 20px;
            line-height: 1.1;
            background: linear-gradient(45deg, #fff, #fbbf24);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: 1.4rem;
            margin-bottom: 20px;
            opacity: 0.95;
            font-weight: 400;
            line-height: 1.5;
        }

        .hero-problem {
            background: rgba(239, 68, 68, 0.15);
            border: 1px solid rgba(239, 68, 68, 0.3);
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 30px;
            backdrop-filter: blur(10px);
        }

        .problem-title {
            font-weight: 700;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            margin-bottom: 40px;
        }

        .btn {
            padding: 18px 36px;
            border-radius: 14px;
            font-weight: 700;
            font-size: 16px;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            text-align: center;
        }

        .btn-primary {
            background: linear-gradient(45deg, #f59e0b, #d97706);
            color: white;
            box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4);
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.1);
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(10px);
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
        }

        .payment-methods {
            display: flex;
            align-items: center;
            gap: 15px;
            flex-wrap: wrap;
        }

        .payment-badge {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 600;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .hero-visual {
            position: relative;
        }

        .sales-mockup {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-radius: 24px;
            padding: 30px;
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.3);
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-15px) rotate(1deg); }
        }

        .mockup-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 2px solid #f1f5f9;
        }

        .mockup-title {
            font-size: 1.1rem;
            font-weight: 800;
            color: #1e293b;
        }

        .mockup-revenue {
            background: linear-gradient(45deg, #10b981, #059669);
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 700;
        }

        .product-preview {
            background: linear-gradient(135deg, #0ea5e9, #3b82f6);
            border-radius: 16px;
            padding: 25px;
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .product-preview::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
            background-size: 20px 20px;
            animation: shimmer 10s linear infinite;
        }

        @keyframes shimmer {
            0% { transform: translate(-50%, -50%) rotate(0deg); }
            100% { transform: translate(-50%, -50%) rotate(360deg); }
        }

        .product-title {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 10px;
            position: relative;
            z-index: 1;
        }

        .product-price {
            font-size: 2rem;
            font-weight: 900;
            margin-bottom: 15px;
            position: relative;
            z-index: 1;
        }

        .buy-button {
            background: rgba(255, 255, 255, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: white;
            padding: 12px 24px;
            border-radius: 12px;
            font-weight: 600;
            backdrop-filter: blur(10px);
            position: relative;
            z-index: 1;
        }

        /* Problem Section */
        .problem-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #fef3c7, #fed7aa);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .problem-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .problem-content h2 {
            font-size: 2.5rem;
            font-weight: 800;
            color: #92400e;
            margin-bottom: 30px;
        }

        .problem-list {
            list-style: none;
            margin-bottom: 30px;
        }

        .problem-list li {
            padding: 15px 0;
            padding-left: 40px;
            position: relative;
            font-size: 1.1rem;
            color: #92400e;
            font-weight: 500;
        }

        .problem-list li::before {
            content: '❌';
            position: absolute;
            left: 0;
            top: 15px;
            font-size: 1.2rem;
        }

        .problem-visual {
            text-align: center;
            padding: 40px;
            background: rgba(239, 68, 68, 0.1);
            border-radius: 20px;
            border: 2px dashed #ef4444;
        }

        .blocked-icon {
            font-size: 4rem;
            margin-bottom: 20px;
            opacity: 0.7;
        }

        /* Solution Section */
        .solution-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #ecfdf5, #d1fae5);
        }

        .solution-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .solution-content h2 {
            font-size: 2.5rem;
            font-weight: 800;
            color: #065f46;
            margin-bottom: 30px;
        }

        .solution-list {
            list-style: none;
            margin-bottom: 30px;
        }

        .solution-list li {
            padding: 15px 0;
            padding-left: 40px;
            position: relative;
            font-size: 1.1rem;
            color: #065f46;
            font-weight: 500;
        }

        .solution-list li::before {
            content: '✅';
            position: absolute;
            left: 0;
            top: 15px;
            font-size: 1.2rem;
        }

        .solution-visual {
            text-align: center;
            padding: 40px;
            background: rgba(16, 185, 129, 0.1);
            border-radius: 20px;
            border: 2px solid #10b981;
        }

        .success-icon {
            font-size: 4rem;
            margin-bottom: 20px;
        }

        /* Features Section */
        .features {
            padding: 100px 0;
            background: linear-gradient(135deg, #f8fafc, #e2e8f0);
        }

        .section-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .section-badge {
            display: inline-block;
            background: linear-gradient(45deg, #3b82f6, #8b5cf6);
            color: white;
            padding: 10px 24px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .section-title {
            font-size: 2.8rem;
            font-weight: 900;
            color: #1e293b;
            margin-bottom: 20px;
        }

        .section-subtitle {
            font-size: 1.3rem;
            color: #64748b;
            max-width: 700px;
            margin: 0 auto;
            font-weight: 400;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
        }

        .feature-card {
            background: white;
            padding: 40px;
            border-radius: 24px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.5);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(45deg, #f59e0b, #d97706);
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            margin-bottom: 25px;
            background: linear-gradient(45deg, #3b82f6, #8b5cf6);
            color: white;
            box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
        }

        .feature-title {
            font-size: 1.5rem;
            font-weight: 800;
            color: #1e293b;
            margin-bottom: 15px;
        }

        .feature-description {
            color: #64748b;
            line-height: 1.7;
            font-size: 1.05rem;
        }

        /* Payment Methods Section */
        .payment-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #1e293b, #334155);
            color: white;
        }

        .payment-grid {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 60px;
            align-items: center;
        }

        .payment-content h2 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 30px;
        }

        .payment-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            opacity: 0.9;
            line-height: 1.6;
        }

        .payment-logos {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 20px;
        }

        .payment-logo {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 20px;
            border-radius: 16px;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }

        .payment-logo:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-5px);
        }

        .payment-logo-icon {
            font-size: 2rem;
            margin-bottom: 10px;
            display: block;
        }

        .payment-logo-name {
            font-weight: 600;
            font-size: 0.9rem;
        }

        /* CTA Section */
        .cta-section {
            padding: 120px 0;
            background: linear-gradient(135deg, #0ea5e9 0%, #3b82f6 50%, #8b5cf6 100%);
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: moveBackground 25s linear infinite;
        }

        @keyframes moveBackground {
            0% { transform: translate(0, 0); }
            100% { transform: translate(50px, 50px); }
        }

        .cta-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
        }

        .cta-title {
            font-size: 3.2rem;
            font-weight: 900;
            margin-bottom: 25px;
            line-height: 1.2;
        }

        .cta-subtitle {
            font-size: 1.4rem;
            margin-bottom: 50px;
            opacity: 0.95;
            font-weight: 400;
        }

        .early-access-form {
            display: flex;
            max-width: 500px;
            margin: 0 auto 30px;
            gap: 15px;
        }

        .form-input {
            flex: 1;
            padding: 18px 24px;
            border: none;
            border-radius: 14px;
            font-size: 16px;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
        }

        .form-input::placeholder {
            color: #64748b;
        }

        .cta-features {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-top: 40px;
            flex-wrap: wrap;
        }

        .cta-feature {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 600;
        }

        /* Africa Flag Colors */
        .africa-colors {
            background: linear-gradient(45deg, #059669, #f59e0b, #dc2626);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 900;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-content, .problem-grid, .solution-grid, .payment-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .hero-title {
                font-size: 2.8rem;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .payment-logos {
                grid-template-columns: repeat(2, 1fr);
            }

            .early-access-form {
                flex-direction: column;
            }

            .cta-title {
                font-size: 2.2rem;
            }

            .cta-features {
                flex-direction: column;
                gap: 20px;
            }
        }

        /* Floating elements */
        .floating-money {
            position: fixed;
            font-size: 2rem;
            opacity: 0.1;
            pointer-events: none;
            z-index: 0;
            animation: floatMoney 20s infinite ease-in-out;
        }

        .money1 {
            top: 15%;
            left: 5%;
            animation-delay: 0s;
        }

        .money2 {
            top: 70%;
            right: 10%;
            animation-delay: 7s;
        }

        .money3 {
            bottom: 25%;
            left: 15%;
            animation-delay: 14s;
        }

        @keyframes floatMoney {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            33% { transform: translateY(-30px) rotate(120deg); }
            66% { transform: translateY(15px) rotate(240deg); }
        }