    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: #0a0a0f;
            color: #fff;
            overflow-x: hidden;
        }

        /* Animated Background */
        .stars {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
        }

        .star {
            position: absolute;
            width: 2px;
            height: 2px;
            background: white;
            border-radius: 50%;
            animation: twinkle 3s infinite;
        }

        @keyframes twinkle {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 1; }
        }

        /* Promo Banner */
        .promo-banner {
            background: linear-gradient(135deg, #ff0844 0%, #ffb199 100%);
            padding: 12px 20px;
            text-align: center;
            position: relative;
            z-index: 100;
            animation: slideDown 0.6s ease-out;
        }

        @keyframes slideDown {
            from {
                transform: translateY(-100%);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .promo-banner h2 {
            font-size: 1.5rem;
            font-weight: 800;
            color: #fff;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            animation: pulse 2s ease-in-out infinite;
        }

        .promo-banner p {
            font-size: 0.9rem;
            margin-top: 4px;
            color: #fff;
            font-weight: 600;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        /* Header */
        header {
            position: relative;
            z-index: 10;
            padding: 20px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: rgba(10, 10, 15, 0.8);
            backdrop-filter: blur(10px);
        }

        .logo img {
            height: 50px;
            filter: drop-shadow(0 0 20px rgba(99, 102, 241, 0.5));
        }

        nav a {
            color: #fff;
            text-decoration: none;
            margin-left: 30px;
            font-weight: 500;
            transition: color 0.3s;
        }

        nav a:hover {
            color: #6366f1;
        }

        /* Hero Section */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 80px 5%;
            overflow: hidden;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 1400px;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .hero-left h1 {
            font-size: 3.1rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #fff 0%, #6366f1 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: fadeInUp 0.8s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-tagline {
            font-size: 1.3rem;
            color: #a5b4fc;
            margin-bottom: 15px;
            font-weight: 600;
            animation: fadeInUp 0.8s ease-out 0.2s backwards;
        }

        .hero-description {
            font-size: 1.1rem;
            color: #cbd5e1;
            line-height: 1.6;
            margin-bottom: 25px;
            animation: fadeInUp 0.8s ease-out 0.4s backwards;
        }

        .rating {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 25px;
            animation: fadeInUp 0.8s ease-out 0.6s backwards;
        }

        .stars-rating {
            color: #fbbf24;
            font-size: 1.2rem;
        }

        .rating-text {
            color: #94a3b8;
            font-size: 0.95rem;
        }

        .hero-features {
            list-style: none;
            margin-bottom: 35px;
            animation: fadeInUp 0.8s ease-out 0.8s backwards;
        }

        .hero-features li {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 12px;
            font-size: 1.05rem;
            color: #e2e8f0;
        }

        .hero-features i {
            color: #10b981;
            font-size: 1.2rem;
        }

        .cta-buttons {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
            animation: fadeInUp 0.8s ease-out 1s backwards;
        }

        .btn {
            padding: 16px 32px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1rem;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .btn-primary {
            background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
            color: #fff;
            box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(99, 102, 241, 0.6);
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
            border: 2px solid rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.2);
            border-color: rgba(255, 255, 255, 0.4);
        }

        .hero-right {
            position: relative;
            animation: fadeInRight 1s ease-out;
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .hero-image {
            width: 100%;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(99, 102, 241, 0.3);
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        /* Badges */
        .badges {
            display: flex;
            gap: 15px;
            margin-bottom: 30px;
            flex-wrap: wrap;
            animation: fadeInUp 0.8s ease-out 0.5s backwards;
        }

        .badge {
            background: rgba(99, 102, 241, 0.2);
            border: 1px solid rgba(99, 102, 241, 0.4);
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            color: #a5b4fc;
            backdrop-filter: blur(10px);
        }

        /* Use Cases Section */
        .use-cases {
            padding: 100px 5%;
            position: relative;
            z-index: 2;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 60px;
            background: linear-gradient(135deg, #fff 0%, #6366f1 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .use-cases-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .use-case-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 40px;
            backdrop-filter: blur(10px);
            transition: all 0.4s;
            animation: fadeIn 0.8s ease-out;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .use-case-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(99, 102, 241, 0.3);
            border-color: rgba(99, 102, 241, 0.5);
        }

        .use-case-card.reviews {
            border-left: 4px solid #fbbf24;
        }

        .use-case-card.social {
            border-left: 4px solid #ec4899;
        }

        .use-case-card.payments {
            border-left: 4px solid #10b981;
        }

        .use-case-icon {
            font-size: 3rem;
            margin-bottom: 20px;
        }

        .use-case-card.reviews .use-case-icon {
            color: #fbbf24;
        }

        .use-case-card.social .use-case-icon {
            color: #ec4899;
        }

        .use-case-card.payments .use-case-icon {
            color: #10b981;
        }

        .use-case-card h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .use-case-card p {
            color: #cbd5e1;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .use-case-benefits {
            list-style: none;
        }

        .use-case-benefits li {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
            color: #e2e8f0;
        }

        .use-case-benefits i {
            color: #10b981;
            font-size: 1rem;
        }

        /* Products Section */
        .products {
            padding: 100px 5%;
            position: relative;
            z-index: 2;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .product-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            overflow: hidden;
            backdrop-filter: blur(10px);
            transition: all 0.4s;
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(99, 102, 241, 0.3);
        }

        .product-image {
            width: 100%;
            height: 300px;
            object-fit: cover;
        }

        .product-info {
            padding: 30px;
        }

        .product-info h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .product-info p {
            color: #cbd5e1;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        /* Shop Section */
        .shop-section {
            padding: 100px 5%;
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .shop-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
            margin-top: 40px;
        }

        .shop-btn {
            padding: 20px 40px;
            border-radius: 15px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 12px;
        }

        .shop-btn.amazon {
            background: linear-gradient(135deg, #ff9900 0%, #ffb84d 100%);
            color: #000;
            box-shadow: 0 10px 30px rgba(255, 153, 0, 0.4);
        }

        .shop-btn.etsy {
            background: linear-gradient(135deg, #f56400 0%, #ff8533 100%);
            color: #fff;
            box-shadow: 0 10px 30px rgba(245, 100, 0, 0.4);
        }

        .shop-btn.ebay {
            background: linear-gradient(135deg, #0064d2 0%, #3385e0 100%);
            color: #fff;
            box-shadow: 0 10px 30px rgba(0, 100, 210, 0.4);
        }

        .shop-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(99, 102, 241, 0.6);
        }

        /* ✅ FAQ ACCORDION STYLES */
        .faq {
            padding: 100px 5%;
            position: relative;
            z-index: 2;
            max-width: 900px;
            margin: 0 auto;
        }

        .faq h2 {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 50px;
            background: linear-gradient(135deg, #fff 0%, #6366f1 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .faq-item {
            background: rgba(15, 23, 42, 0.6);
            border: 1px solid rgba(99, 102, 241, 0.3);
            border-radius: 16px;
            margin-bottom: 16px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            border-color: rgba(99, 102, 241, 0.6);
            box-shadow: 0 8px 24px rgba(99, 102, 241, 0.2);
        }

        .faq-question {
            width: 100%;
            padding: 22px 26px;
            background: none;
            border: none;
            color: #e2e8f0;
            font-size: 1.05rem;
            font-weight: 600;
            text-align: left;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: color 0.3s;
        }

        .faq-question:hover {
            color: #a5b4fc;
        }

        .faq-question span {
            flex: 1;
            padding-right: 15px;
        }

        .faq-icon {
            font-size: 1.3rem;
            color: #6366f1;
            transition: transform 0.3s ease;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            padding: 0 26px;
            color: #cbd5e1;
            font-size: 0.98rem;
            line-height: 1.7;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }

        .faq-item.active .faq-answer {
            max-height: 400px;
            padding-bottom: 22px;
        }

        .faq-item.active .faq-icon {
            transform: rotate(90deg);
        }

        /* Footer */
        footer {
            background: rgba(10, 10, 15, 0.9);
            padding: 40px 5%;
            text-align: center;
            position: relative;
            z-index: 2;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        footer p {
            color: #94a3b8;
        }

        /* Responsive */
        @media (max-width: 968px) {
            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-left h1 {
                font-size: 2.3rem;
            }

            .cta-buttons {
                justify-content: center;
            }

            .badges {
                justify-content: center;
            }

            .hero-features {
                display: inline-block;
                text-align: left;
            }

            nav a {
                margin-left: 15px;
                font-size: 0.9rem;
            }
        }
    </style>