
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        body {
            background: #fff;
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
        }

        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }

        /* Header Specific CSS */
        .header-section {
            position: fixed;
            top: 0;
            width: 100%;
            background: linear-gradient(90deg, #6A0DAD, #9B59B6);
            padding: 20px 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            animation: slideGradient 5s infinite alternate;
        }

        .header-section.scrolled {
            background: linear-gradient(90deg, #5A0C9D, #8A4DA6);
        }

        .header-section h1 {
            color: #fff;
            font-size: 1.5rem;
            font-weight: 600;
        }

        .header-section h1 i {
            margin-right: 10px;
            color: #e0e0e0;
        }

        .header-section nav {
            display: flex;
            align-items: center;
        }

        .header-section nav a {
            color: #fff;
            text-decoration: none;
            margin-left: 25px;
            font-weight: 500;
            position: relative;
            transition: transform 0.3s ease, color 0.3s ease;
        }

        .header-section nav a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background: #e0e0e0;
            transition: width 0.3s ease;
        }

        .header-section nav a:hover::after {
            width: 100%;
        }

        .header-section nav a:hover {
            color: #e0e0e0;
            transform: scale(1.05);
        }

        .header-section nav a.active {
            color: #e0e0e0;
            transform: scale(1.1);
        }

        .header-section nav a i {
            margin-right: 5px;
        }

        /* Hamburger Menu */
        .hamburger {
            display: none;
            font-size: 1.8rem;
            color: #fff;
            cursor: pointer;
        }

        #menu-toggle {
            display: none;
        }

        /* Gradient Animation */
        @keyframes slideGradient {
            0% { background-position: 0% 50%; }
            100% { background-position: 100% 50%; }
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            background: #fff;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 100px 40px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .hero .kicker {
            display: inline-block;
            font-size: 0.95rem;
            letter-spacing: 0.4px;
            color: #6A0DAD;
            background: rgba(106, 13, 173, 0.08);
            border: 1px solid rgba(106, 13, 173, 0.18);
            padding: 6px 12px;
            border-radius: 999px;
            margin-bottom: 14px;
        }

        .hero .content {
            max-width: 50%;
        }

        .hero h1 {
            font-size: 4rem;
            color: #6A0DAD;
            margin-bottom: 10px;
            animation: slideInLeft 1s ease;
        }

        .hero .subtitle {
            font-size: 1.5rem;
            color: #666;
            margin-bottom: 30px;
            animation: slideInLeft 1s ease 0.3s;
        }

        .hero .btn {
            display: inline-block;
            background: #6A0DAD;
            color: #fff;
            padding: 15px 40px;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: transform 0.3s ease, background 0.3s ease;
            animation: slideInLeft 1s ease 0.6s;
        }

        .hero .btn:hover {
            background: #5A0C9D;
            transform: scale(1.1);
        }

        .hero .btn i {
            margin-right: 8px;
        }

        .hero .logo img {
            max-width: 400px;
            height: auto;
            animation: slideInRight 1s ease;
        }

        /* Demo Video Section */
        .demo-video {
            padding: 80px 40px;
            background: linear-gradient(135deg, #6A0DAD, #9B59B6);
            color: #fff;
            text-align: center;
        }

        .demo-video h2 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            animation: fadeIn 1s ease;
        }

        .demo-video h2 i {
            margin-right: 10px;
        }

        .demo-video p {
            font-size: 1.2rem;
            margin-bottom: 40px;
            animation: fadeIn 1s ease 0.3s;
        }

        .demo-video .video-fallback {
            margin-top: 14px;
            font-size: 1rem;
            opacity: 0.95;
        }

        .demo-video .video-fallback a {
            color: #fff;
            text-decoration: underline;
            text-underline-offset: 3px;
        }

        .demo-video .video-fallback a:hover {
            opacity: 0.9;
        }

        .demo-video iframe,
        .demo-video .video-placeholder {
            max-width: 100%;
            width: 800px;
            aspect-ratio: 16 / 9;
            border-radius: 15px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
            animation: fadeIn 1s ease 0.6s;
        }

        .demo-video .video-placeholder {
            margin: 0 auto;
            background: rgba(0, 0, 0, 0.25);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            background-position: center;
            background-size: cover;
        }

        .demo-video .video-placeholder::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(0,0,0,0.10), rgba(0,0,0,0.35));
            pointer-events: none;
        }

        .demo-video .video-play {
            border: 0;
            padding: 14px 22px;
            border-radius: 999px;
            background: #ffffff;
            color: #6A0DAD;
            font-weight: 800;
            cursor: pointer;
            position: relative;
            z-index: 1;
            box-shadow: 0 12px 30px rgba(0,0,0,0.35);
        }

        .demo-video .video-play::after {
            content: ' (YouTube)';
            font-weight: 700;
            opacity: 0.75;
        }

        .demo-video .video-play:hover {
            transform: scale(1.03);
        }

        /* Features Section */
        .features {
            padding: 80px 40px;
            background: #f5f5f5;
        }

        .features h2 {
            font-size: 2.8rem;
            color: #6A0DAD;
            text-align: center;
            margin-bottom: 50px;
        }

        .features h2 i {
            margin-right: 10px;
        }

        .feature-list {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: center;
        }

        .feature-item {
            background: #fff;
            padding: 30px;
            border-radius: 15px;
            width: 100%;
            max-width: 400px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            opacity: 0;
        }

        .feature-item.show {
            opacity: 1;
            animation: scaleIn 0.5s ease forwards;
        }

        .feature-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        .feature-item h3 {
            font-size: 1.5rem;
            color: #6A0DAD;
            margin-bottom: 10px;
        }

        .feature-item .feature-icon {
            width: 46px;
            height: 46px;
            border-radius: 14px;
            background: rgba(106, 13, 173, 0.10);
            border: 1px solid rgba(106, 13, 173, 0.18);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 12px;
        }

        .feature-item .feature-icon svg {
            width: 24px;
            height: 24px;
            stroke: #6A0DAD;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
            fill: none;
        }

        .feature-item h3 i {
            margin-right: 8px;
        }

        .feature-item p {
            color: #666;
        }

        /* Screenshots Section */
        .screenshots {
            padding: 80px 40px;
            background: #fff;
            text-align: center;
        }

        .screenshots h2 {
            font-size: 2.8rem;
            color: #6A0DAD;
            margin-bottom: 50px;
        }

        .screenshots h2 i {
            margin-right: 10px;
        }

        .screenshot-carousel {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            overflow-x: auto;
            gap: 30px;
            scroll-behavior: smooth;
            padding-bottom: 20px;
        }

        .screenshot-item {
            min-width: 350px;
            background: #f5f5f5;
            padding: 20px;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .screenshot-item:hover {
            transform: scale(1.05);
        }

        .screenshot-item img {
            width: 100%;
            height: auto;
            border-radius: 10px;
            margin-bottom: 15px;
        }

        .screenshot-item p {
            font-size: 1.1rem;
            color: #666;
        }

        /* Pricing Section */
        .pricing {
            padding: 80px 40px;
            background: #fff;
            text-align: center;
        }

        .pricing h2 {
            font-size: 2.8rem;
            color: #6A0DAD;
            margin-bottom: 50px;
        }

        .pricing h2 i {
            margin-right: 10px;
        }

        .pricing-list {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: center;
        }

        .pricing-plan {
            background: #f5f5f5;
            padding: 40px;
            border-radius: 15px;
            width: 100%;
            max-width: 350px;
            transition: transform 0.3s ease;
            opacity: 0;
            position: relative;
        }

        .pricing-plan.show {
            opacity: 1;
            animation: fadeIn 0.5s ease forwards;
        }

        .pricing-plan:hover {
            transform: scale(1.05);
        }

        .pricing-plan.recommended {
            background: #6A0DAD;
            color: #fff;
        }

        .pricing-plan.recommended h3,
        .pricing-plan.recommended p {
            color: #fff;
        }

        .pricing-plan.recommended .price {
            color: #e0e0e0;
        }

        .pricing-plan h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: #6A0DAD;
        }

        .pricing-plan h3 i {
            margin-right: 8px;
        }

        .pricing-plan .price {
            font-size: 2.5rem;
            font-weight: 600;
            margin-bottom: 20px;
            color: #333;
        }

        .pricing-plan p {
            margin-bottom: 20px;
            color: #666;
        }

        .pricing-plan .btn {
            display: inline-block;
            background: #6A0DAD;
            color: #fff;
            padding: 12px 30px;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: background 0.3s ease;
        }

        .pricing-plan.recommended .btn {
            background: #fff;
            color: #6A0DAD;
        }

        .pricing-plan .btn:hover {
            background: #5A0C9D;
        }

        .pricing-plan.recommended .btn:hover {
            background: #e0e0e0;
        }

        .pricing-plan .btn i {
            margin-right: 8px;
        }

        /* CTA Section */
        .cta-section {
            padding: 80px 40px;
            background: linear-gradient(135deg, #6A0DAD, #9B59B6);
            text-align: center;
            color: #fff;
            position: relative; /* For WhatsApp CTA positioning */
        }

        .cta-section h2 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            opacity: 0;
        }

        .cta-section h2 i {
            margin-right: 10px;
        }

        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            opacity: 0;
        }

        .cta-section .btn {
            display: inline-block;
            background: #fff;
            color: #6A0DAD;
            padding: 15px 40px;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: transform 0.3s ease, background 0.3s ease;
            opacity: 0;
        }

        .cta-section .btn:hover {
            background: #e0e0e0;
            transform: scale(1.1);
        }

        .cta-section .btn i {
            margin-right: 8px;
        }

        /* WhatsApp CTA Icon (New) */
        .whatsapp-cta {
            position: absolute;
            bottom: 20px;
            right: 20px;
            z-index: 1000;
        }

        .whatsapp-cta a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            background: #25D366;
            color: #fff;
            border-radius: 50%;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease, background 0.3s ease;
            animation: pulse 2s infinite;
        }

        .whatsapp-cta a:hover {
            background: #20b356;
            transform: scale(1.1);
        }

        .whatsapp-cta a i {
            font-size: 1.8rem;
        }

        /* WhatsApp Chat Icon */
       /* WhatsApp Chat Icon (Updated) */
.whatsapp-chat {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-chat-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25D366; /* WhatsApp green */
    color: #fff;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background 0.3s ease;
    animation: pulse 2s infinite;
    text-decoration: none; /* Remove any underline */
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1;
    padding: 0;
}

.whatsapp-chat-link svg {
    width: 30px;
    height: 30px;
    display: block;
    color: #fff;
}

.whatsapp-chat-link:hover {
    background: #20b356;
    transform: scale(1.1);
}



/* Ensure no pseudo-elements interfere */
.whatsapp-chat-link::before,
.whatsapp-chat-link::after {
    content: none !important;
}

@media (max-width: 768px) {
    .whatsapp-chat-link {
        width: 50px;
        height: 50px;
    }

}

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }

        /* Footer */
        footer {
            background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
            color: #fff;
            padding: 60px 40px 20px;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 30px;
            border-top: 4px solid #6A0DAD;
            position: relative;
        }

        footer .footer-column {
            flex: 1;
            min-width: 200px;
        }

        footer h3 {
            font-size: 1.4rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        footer h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background: #6A0DAD;
        }

        footer h3 i {
            margin-right: 8px;
        }

        footer a {
            color: #e0e0e0;
            text-decoration: none;
            display: block;
            margin-bottom: 12px;
            transition: color 0.3s ease, transform 0.3s ease;
        }

        footer a:hover {
            color: #6A0DAD;
            transform: translateX(5px);
        }

        footer a i {
            margin-right: 8px;
        }

        footer .social-icons a {
            display: inline-block;
            margin-right: 15px;
            font-size: 1rem;
            padding: 8px 12px;
            border: 1px solid rgba(255,255,255,0.25);
            border-radius: 999px;
            transition: color 0.3s ease, transform 0.3s ease;
        }

        footer .social-icons a:hover {
            color: #6A0DAD;
            transform: scale(1.2);
        }

        footer .copyright {
            width: 100%;
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: #bbb;
        }

        /* Animations */
        @keyframes slideInLeft {
            from { opacity: 0; transform: translateX(-50px); }
            to { opacity: 1; transform: translateX(0); }
        }

        @keyframes slideInRight {
            from { opacity: 0; transform: translateX(50px); }
            to { opacity: 1; transform: translateX(0); }
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes scaleIn {
            from { opacity: 0; transform: scale(0.9); }
            to { opacity: 1; transform: scale(1); }
        }

        @keyframes slideFromLeft {
            from { opacity: 0; transform: translateX(-100px); }
            to { opacity: 1; transform: translateX(0); }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .header-section {
                padding: 15px 20px;
                position: relative;
            }

            .header-section nav a {
                display: none;
            }

            .header-section .hamburger {
                display: block;
                position: absolute;
                right: 20px;
                top: 50%;
                transform: translateY(-50%);
            }

            #menu-toggle:checked ~ nav {
                display: flex;
                flex-direction: column;
                position: absolute;
                top: 60px;
                left: 0;
                width: 100%;
                background: #6A0DAD;
                padding: 20px;
            }

            #menu-toggle:checked ~ nav a {
                display: block;
                margin: 10px 0;
                text-align: left;
                padding-left: 20px;
            }

            .header-section nav a::after {
                display: none;
            }

            .hero {
                flex-direction: column;
                text-align: center;
                padding: 28px 18px 44px;
                min-height: auto;
                justify-content: center;
                gap: 14px;
            }

            .hero .content {
                max-width: 100%;
                display: flex;
                flex-direction: column;
            }

            .hero h1 {
                font-size: 2.5rem;
                order: 1;
            }

            .hero .logo {
                order: 2;
                margin: 8px 0 0;
                width: 100%;
                display: flex;
                justify-content: center;
            }

            .hero .logo img {
                max-width: none;
                width: min(320px, 82vw);
                height: auto;
                display: block;
            }

            .hero .subtitle {
                font-size: 1.2rem;
                order: 3;
            }

            .hero .btn {
                order: 4;
            }

            .demo-video iframe,
            .demo-video .video-placeholder {
                width: 100%;
                max-width: 560px;
            }

            .demo-video .video-play {
                padding: 12px 18px;
                font-size: 1rem;
            }

            .features h2,
            .screenshots h2,
            .pricing h2,
            .cta-section h2 {
                font-size: 2rem;
            }

            .screenshot-item {
                min-width: 300px;
            }

            footer {
                flex-direction: column;
                text-align: center;
            }

            footer .footer-column {
                margin-bottom: 20px;
            }

            .whatsapp-chat a {
                width: 50px;
                height: 50px;
            }

            .whatsapp-chat a i {
                font-size: 1.5rem;
            }

            .whatsapp-cta a {
                width: 40px;
                height: 40px;
            }

            .whatsapp-cta a i {
                font-size: 1.5rem;
            }
        }

        /* Reseller / SEO sections */
        .reseller-benefits,
        .reseller-how,
        .faq-section {
            padding: 80px 40px;
        }

        .reseller-benefits {
            background: #ffffff;
        }

        .reseller-how {
            background: #f5f5f5;
        }

        .faq-section {
            background: #ffffff;
        }

        .reseller-benefits h2,
        .reseller-how h2,
        .faq-section h2 {
            font-size: 2.4rem;
            color: #6A0DAD;
            text-align: center;
            margin-bottom: 18px;
        }

        .reseller-benefits p.lead,
        .reseller-how p.lead,
        .faq-section p.lead {
            max-width: 900px;
            margin: 0 auto 40px;
            text-align: center;
            color: #555;
            font-size: 1.05rem;
        }

        .cards {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 22px;
        }

        .card {
            background: #fff;
            border: 1px solid rgba(0,0,0,0.08);
            border-radius: 16px;
            padding: 22px;
            box-shadow: 0 10px 22px rgba(0,0,0,0.06);
        }

        .card-icon {
            width: 48px;
            height: 48px;
            border-radius: 14px;
            background: rgba(106, 13, 173, 0.10);
            border: 1px solid rgba(106, 13, 173, 0.18);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 12px;
        }

        .card-icon svg {
            width: 26px;
            height: 26px;
            stroke: #6A0DAD;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
            fill: none;
        }

        .card h3 {
            color: #6A0DAD;
            margin-bottom: 8px;
            font-size: 1.25rem;
        }

        .card p {
            color: #666;
        }

        .step p {
            color: #666;
        }

        .steps {
            max-width: 1100px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 18px;
        }

        .step {
            background: #fff;
            border-radius: 16px;
            padding: 20px;
            border: 1px solid rgba(0,0,0,0.08);
        }

        .step h3 {
            color: #6A0DAD;
            margin-bottom: 8px;
        }

        .step .num {
            display: inline-flex;
            width: 34px;
            height: 34px;
            border-radius: 999px;
            align-items: center;
            justify-content: center;
            background: rgba(106, 13, 173, 0.12);
            color: #6A0DAD;
            font-weight: 800;
            margin-bottom: 10px;
        }

        .faq {
            max-width: 1000px;
            margin: 0 auto;
            display: grid;
            gap: 12px;
        }

        details.faq-item {
            border: 1px solid rgba(0,0,0,0.10);
            border-radius: 14px;
            padding: 14px 16px;
            background: #fff;
        }

        details.faq-item summary {
            cursor: pointer;
            font-weight: 700;
            color: #333;
        }

        details.faq-item p {
            margin-top: 10px;
            color: #444;
        }

        @media (max-width: 900px) {
            .cards,
            .steps {
                grid-template-columns: 1fr;
            }

            .reseller-benefits,
            .reseller-how,
            .faq-section {
                padding: 60px 20px;
            }
        }
