        /*  --- Variables & Base ---  */
        :root {
            --primary: #8b5cf6;
            --primary-gradient: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
            --secondary: #10b981;
            --secondary-gradient: linear-gradient(135deg, #10b981 0%, #34d399 100%);
            --danger: #ef4444;
            --danger-gradient: linear-gradient(135deg, #ef4444 0%, #f87171 100%);
            --whatsapp: #25D366;
            --bg-body: #fafafa;
            --bg-card: #ffffff;
            --bg-nav: rgba(255, 255, 255, 0.95);
            --bg-alt: #f5f5f5;
            --bg-accent-green: #f0fdf4;
            --bg-accent-purple: #faf5ff;
            --bg-accent-purple-gradient: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
            --text-main: #121212;
            --text-muted: #374151;
            --border-color: rgba(0, 0, 0, 0.08);
            --shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
            --bg-pattern-color: #f0f0f0;
        }
        .dark-mode {
            --bg-body: #000000;
            --bg-card: #0a0a0a;
            --bg-nav: rgba(0, 0, 0, 0.95);
            --bg-alt: #0d0d0d;
            --bg-accent-green: rgba(16, 185, 129, 0.08);
            --bg-accent-purple: rgba(139, 92, 246, 0.08);
            --bg-accent-purple-gradient: linear-gradient(135deg, rgba(139, 92, 246, 0.08) 0%, rgba(168, 85, 247, 0.08) 100%);
            --text-main: #fcfcfc;
            --text-muted: #9ca3af;
            --border-color: rgba(255, 255, 255, 0.08);
            --shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
            --bg-pattern-color: #1a1a1a;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -webkit-tap-highlight-color: transparent
        }
        html {
            scroll-behavior: smooth
        }
        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--bg-body);
            background-image: radial-gradient(var(--bg-pattern-color) 1px, transparent 1px);
            background-size: 20px 20px;
            color: var(--text-main);
            line-height: 1.6;
            overflow-x: hidden;
            width: 100%;
            transition: background-color .3s ease, color .3s ease;
            padding-top: env(safe-area-inset-top);
        }
        .dark-mode .badge {
            background: #111;
            color: #fff;
            border-color: #222
        }
        .dark-mode .navbar {
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
        }
        .dark-mode .desktop-nav a.active {
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(16, 185, 129, 0.2));
        }
        .dark-mode .comparison-section {
            background: linear-gradient(135deg, #000000 0%, #0a0a0a 100%);
        }

        .dark-mode .section-fade-bottom::after {
            background: linear-gradient(to bottom, transparent, #000000);
        }
        .demo-card > * {
            position: relative;
            z-index: 1;
        }
        /*  --- Typography & Globals ---  */
        h1, h2, h3, h4, .btn, .logo {
            font-family: 'Poppins', sans-serif
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px
        }
        .text-gradient-primary {
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent
        }
        .text-yellow {
            background: linear-gradient(135deg, #facc15 0%, #eab308 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent
        }
        .text-success {
            color: var(--secondary)
        }
        .text-danger {
            color: var(--danger)
        }
        .text-muted {
            color: var(--text-muted)
        }
        section {
            padding: 80px 0;
            position: relative
        }
        .journey-section, .products-section, .ai-demo-section { background: var(--bg-alt); }
        .faq-section, .pricing-section, .demo-section { background: var(--bg-body); }
        .section-title {
            margin-bottom: 60px;
            text-align: center
        }
        .section-title h2 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 12px;
            line-height: 1.2
        }
        .section-title p {
            font-size: 1.15rem;
            color: var(--text-muted);
            max-width: 700px;
            margin: 0 auto
        }
        .section-fade-bottom {
            position: relative
        }
        .badge {
            padding: 8px 18px;
            border-radius: 50vw;
            font-size: 0.85rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            background: var(--bg-alt);
            color: #6d28d9; /* Darker color for better contrast */
            border: 1px solid var(--border-color);
            display: inline-block
        }
        .hero .badge {
            color: #ffffff;
            background: rgba(0, 0, 0, 0.6); /* Darker background for better contrast against white text */
            backdrop-filter: blur(5px);
            border-color: rgba(255, 255, 255, 0.3)
        }
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 16px 32px;
            font-size: 1.1rem;
            font-weight: 700;
            border-radius: 50px;
            text-decoration: none;
            transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            border: none
        }
        .btn-success {
            background: var(--secondary-gradient);
            color: white;
            box-shadow: 0 10px 20px -5px rgba(16, 185, 129, 0.4)
        }
        .btn-success:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px -5px rgba(16, 185, 129, 0.5)
        }
        .btn-pulse {
            animation: pulse-animation 2s infinite
        }
        .navbar {
            padding: 18px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            background: var(--bg-nav);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border-color);
            transition: all 0.3s ease;
            will-change: transform;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.03);
        }
        .navbar.header-hidden {
            transform: translateY(-100%);
        }
        .nav-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 30px;
        }
        .desktop-nav {
            display: none;
            gap: 8px;
            align-items: center;
            flex: 1;
            justify-content: center;
        }
        .desktop-nav a {
            text-decoration: none;
            color: var(--text-main);
            font-weight: 600;
            transition: all 0.3s ease;
            font-size: 0.95rem;
            padding: 10px 20px;
            border-radius: 50px;
            position: relative;
            overflow: hidden;
        }
        .desktop-nav a::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: -1;
            border-radius: 50px;
        }
        .desktop-nav a:hover {
            color: white;
            transform: translateY(-2px);
        }
        .desktop-nav a:hover::before {
            opacity: 1;
        }
        .desktop-nav a.active {
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(16, 185, 129, 0.1));
            color: var(--primary);
        }
        .nav-actions {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .nav-cta-btn {
            padding: 10px 24px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
        }
        .nav-cta-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
        }
        .nav-cta-btn i {
            font-size: 1rem;
        }
        .hero h1 {
            font-size: 3.5rem;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3)
        }
        .hero p {
            font-size: 1.25rem;
            color: rgba(255, 255, 255, 1);
            max-width: 750px;
            margin: 0 auto 2.5rem;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
            font-weight: 500
        }
        .journey-section {
            z-index: 10
        }
        .journey-step {
            text-align: center;
            position: relative;
            padding-top: 20px;
        }
        .step-badge {
            display: inline-block;
            padding: 6px 16px;
            background: rgba(139, 92, 246, 0.9);
            color: white;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 15px;
            border: none;
            box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
            position: absolute;
            top: -30px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 3;
        }
        .step-card {
            background: var(--bg-card);
            border-radius: 28px;
            padding: 40px 30px;
            border: 2px solid var(--border-color);
            transition: all .4s ease;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            display: flex;
            flex-direction: column;
            align-items: center;
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .step-content {
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .journey-step:hover .step-card {
            transform: translateY(-12px);
            border-color: var(--primary);
            box-shadow: 0 30px 60px -12px rgba(139, 92, 246, 0.25);
        }

        .step-icon {
            font-size: 2.8rem;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent
        }
        .step-card h3 {
            font-size: 1.5rem;
            font-weight: 800;
            margin-bottom: 12px;
            color: var(--text-main);
            position: relative;
            z-index: 1;
        }
        .step-card p {
            font-size: 1.05rem;
            color: var(--text-muted);
            line-height: 1.7;
            margin: 0;
            position: relative;
            z-index: 1;
        }
        .step-bubble {
            width: 100px;
            height: 100px;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            border: 3px solid var(--primary);
            transition: 0.4s;
            box-shadow: 0 8px 25px rgba(139, 92, 246, 0.2);
            position: relative;
            z-index: 1;
        }
        .journey-step:hover .step-bubble {
            background: white;
            border-color: var(--secondary);
            transform: scale(1.15) rotate(10deg);
            box-shadow: 0 12px 35px rgba(16, 185, 129, 0.3);
        }
        .audience-section {
            padding: 60px 0 !important;
            background: var(--bg-card);
            overflow: hidden;
        }
        .marquee-container {
            display: flex;
            flex-direction: column;
            gap: 15px;
            width: 100%;
            padding: 20px 0;
        }
        .marquee-row {
            overflow: hidden;
            width: 100%;
            position: relative;
            display: flex;
        }
        .marquee-track {
            display: flex;
            gap: 15px;
            width: max-content;
            animation: scrollLinear linear infinite;
        }
        .audience-item {
            background: var(--bg-alt);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 12px 25px;
            white-space: nowrap;
            flex-shrink: 0;
            transition: 0.3s;
            cursor: pointer;
            width: auto !important;
        }
        .row-speed-1 .marquee-track {
            animation-duration: 70s;
        }
        .row-speed-2 .marquee-track {
            animation-duration: 90s;
        }
        .row-speed-3 .marquee-track {
            animation-duration: 110s;
        }
        .audience-item:hover {
            border-color: var(--primary);
            background: var(--bg-body);
            z-index: 10;
        }
        .audience-item i {
            font-size: 1.1rem;
            margin-right: 10px;
            color: var(--primary)
        }
        .audience-item h3 {
            font-size: 0.95rem;
            font-weight: 700;
            margin: 0;
            color: var(--text-main)
        }
        .motivation-text {
            max-width: 900px;
            margin: 60px auto 0 auto;
            text-align: center;
            padding: 30px;
            background: var(--bg-accent-purple);
            border-radius: 24px;
            border: 1px dashed var(--primary);
            box-shadow: 0 15px 35px rgba(139, 92, 246, 0.1);
        }
        .motivation-text h3 {
            font-size: 18px;
            font-style: italic;
            color: var(--text-main);
            line-height: 1.9;
            margin: 0;
        }
        .comparison-section {
            background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
            padding: 100px 0;
            overflow: hidden;
        }
        .comparison-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 20% 50%, rgba(239, 68, 68, 0.05) 0%, transparent 50%),
                        radial-gradient(circle at 80% 50%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
            pointer-events: none;
        }
        .comparison-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            margin-top: 60px;
            position: relative;
        }
        .card-loss, .card-profit {
            background: var(--bg-card);
            padding: 45px 35px;
            border-radius: 28px;
            border: 2px solid var(--border-color);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
            position: relative;
            overflow: hidden;
        }
        .card-loss::before, .card-profit::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            transition: all 0.3s;
        }
        .card-loss::before {
            background: linear-gradient(90deg, #ef4444, #f87171);
        }
        .card-profit::before {
            background: linear-gradient(90deg, #10b981, #34d399);
        }
        .card-loss:hover, .card-profit:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
        }
        .card-loss:hover {
            border-color: rgba(239, 68, 68, 0.3);
        }
        .card-profit:hover {
            border-color: rgba(16, 185, 129, 0.3);
        }
        .comparison-section h3 {
            font-size: 1.75rem;
            margin-bottom: 30px;
            font-weight: 800;
            display: flex;
            align-items: center;
            gap: 12px;
            padding-bottom: 20px;
            border-bottom: 2px dashed var(--border-color);
        }
        .comparison-section ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .comparison-section ul li {
            font-size: 1.05rem;
            line-height: 1.7;
            display: flex;
            align-items: flex-start;
            gap: 14px;
            color: var(--text-main);
            padding: 12px;
            border-radius: 12px;
            transition: all 0.3s;
        }
        .card-loss ul li:hover, .card-profit ul li:hover {
            transform: translateX(5px);
        }
        .card-loss ul li:hover {
            background: rgba(239, 68, 68, 0.05);
        }
        .card-profit ul li:hover {
            background: rgba(16, 185, 129, 0.05);
        }
        .comparison-section ul li i {
            margin-top: 4px;
            font-size: 1.2rem;
            flex-shrink: 0;
        }
        .vs-badge {
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border: 4px solid var(--bg-body);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 900;
            font-size: 1.3rem;
            color: white;
            box-shadow: 0 8px 30px rgba(139, 92, 246, 0.4);
            z-index: 10;
            animation: pulse-vs 2s ease-in-out infinite;
        }
        .testimonials-section {
            background: var(--bg-accent-purple-gradient);
            border-top: 1px solid rgba(139, 92, 246, 0.1);
        }
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px
        }
        .testimonial-card {
            background: var(--bg-card);
            padding: 30px;
            border-radius: 20px;
            border: 1px solid var(--border-color);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05)
        }
        .rating {
            color: #fbbf24;
            font-size: 0.9rem;
            margin-top: 5px
        }

        .faq-item {
            background: var(--bg-card);
            border: 1.5px solid var(--border-color);
            border-radius: 16px;
            margin-bottom: 15px;
            cursor: pointer;
            transition: 0.3s;
            overflow: hidden
        }
        .faq-item:hover, .faq-item.active {
            border-color: var(--primary)
        }
        .faq-item.active {
            box-shadow: var(--shadow)
        }
        .faq-question {
            padding: 22px 25px;
            font-weight: 700;
            font-size: 1.1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--text-main);
            gap: 15px;
            width: 100%;
            border: 0;
            background: transparent;
            cursor: pointer;
            text-align: left;
            font-family: inherit
        }
        .faq-question span {
            line-height: 1.4
        }
        .faq-question i {
            font-size: 0.9rem;
            color: var(--text-muted);
            transition: transform 0.3s ease
        }
        .faq-answer {
            padding: 0 25px;
            color: var(--text-muted);
            font-size: 1.05rem;
            line-height: 1.6;
            max-height: 0;
            opacity: 0;
            overflow: hidden;
            border-top: 1px dashed transparent;
            margin-top: 0;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .faq-item.active .faq-answer {
            max-height: 1000px;
            opacity: 1;
            padding: 15px 25px 22px;
            border-top-color: var(--border-color);
            margin-top: 5px;
        }
        .faq-item.active .faq-question i {
            transform: rotate(180deg)
        }
        .pricing-section {
            color: var(--text-main);
            text-align: center
        }
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 20px;
            margin-top: 40px
        }
        .pricing-box {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 20px;
            padding: 30px 20px;
            transition: 0.3s;
            position: relative;
            display: flex;
            flex-direction: column;
            height: 100%
        }
        .pricing-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1)
        }
        .pricing-box.popular {
            background: var(--bg-accent-green);
            border: 2px solid var(--secondary);
            transform: scale(1.05);
            z-index: 2
        }
        .best-value {
            background: rgba(251, 191, 36, 0.05);
            border-color: #fbbf24
        }
        .plan-name {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--text-muted)
        }
        .plan-price {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 5px;
            color: var(--text-main)
        }
        .plan-duration {
            font-size: 0.9rem;
            color: var(--text-muted);
            margin-bottom: 20px
        }
        .plan-badge {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--secondary);
            color: white;
            font-size: 0.8rem;
            padding: 4px 12px;
            border-radius: 20px;
            font-weight: 700
        }
        .plan-badge.gold {
            background: #fbbf24;
            color: black
        }
        .pricing-box ul {
            list-style: none;
            padding: 0;
            margin-bottom: 25px;
            text-align: left;
            flex-grow: 1
        }
        .pricing-box ul li {
            margin-bottom: 10px;
            font-size: 0.9rem;
            color: var(--text-muted)
        }
        .pricing-box ul li i {
            color: var(--secondary);
            margin-right: 8px
        }
        .btn-plan {
            display: block;
            width: 100%;
            padding: 15px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 700;
            transition: 0.3s;
            background: var(--bg-body);
            color: var(--text-main) !important;
            border: 1px solid var(--border-color);
            text-align: center;
            cursor: pointer;
            font-family: inherit
        }
        .free-demo .btn-plan, .short-term .btn-plan, .popular .btn-plan, .best-value .btn-plan {
            color: white !important;
            border: none
        }
        .free-demo .btn-plan {
            background: linear-gradient(135deg, #94a3b8 0%, #64748b 100%);
            box-shadow: 0 10px 20px -5px rgba(148, 163, 184, 0.3)
        }
        .short-term .btn-plan {
            background: linear-gradient(135deg, #6366f1 0%, #818cf8 100%);
            box-shadow: 0 10px 20px -5px rgba(99, 102, 241, 0.3)
        }
        .popular .btn-plan, .best-value .btn-plan {
            background: var(--secondary-gradient);
            box-shadow: 0 10px 20px -5px rgba(16, 185, 129, 0.3)
        }
        .btn-plan:hover {
            background: #ffffff;
            color: #000000 !important;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transform: translateY(-2px)
        }
        .free-demo .btn-plan:hover {
            background: #ffffff;
            color: #64748b !important;
            box-shadow: 0 15px 35px rgba(148, 163, 184, 0.2)
        }
        .short-term .btn-plan:hover {
            background: #ffffff;
            color: #6366f1 !important;
            box-shadow: 0 15px 35px rgba(99, 102, 241, 0.2)
        }
        .popular .btn-plan:hover, .best-value .btn-plan:hover {
            background: #ffffff;
            color: var(--secondary) !important;
            box-shadow: 0 15px 35px rgba(16, 185, 129, 0.2)
        }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 25px;
            margin-top: 50px
        }
        .product-card {
            background: var(--bg-card);
            border-radius: 24px;
            padding: 20px;
            border: 1px solid var(--border-color);
            transition: 0.4s;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            position: relative;
            height: 100%
        }
        .stock-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--danger);
            color: white;
            padding: 5px 12px;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 700;
            z-index: 10;
            box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
        }
        .product-info {
            display: flex;
            flex-direction: column;
            flex-grow: 1;
            height: 100%
        }
        .product-card:hover {
            transform: translateY(-8px);
            border-color: var(--primary);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1)
        }
        .product-img-wrapper {
            width: 100%;
            aspect-ratio: 1/1;
            border-radius: 18px;
            background: var(--bg-body);
            margin-bottom: 20px;
        }
        .product-img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: 0.5s;
            border-radius: 10px;
            cursor: pointer;
        }
        .swal-full-screen-img {
            max-height: 85vh !important;
            max-width: 95vw !important;
            object-fit: contain;
            border-radius: 16px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.5);
            margin: 0 !important;
        }
        .swal-transparent-popup {
            background: transparent !important;
            box-shadow: none !important;
            padding: 0 !important;
        }
        .swal-transparent-close {
            background: rgba(255,255,255,0.2) !important;
            color: #fff !important;
            border-radius: 50% !important;
            backdrop-filter: blur(5px);
        }
        .swal-transparent-close:hover {
            color: #ff4b4b !important;
            background: rgba(255,255,255,0.9) !important;
        }

        .product-info h3 {
            font-size: 1.15rem;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--text-main)
        }
        .product-info p {
            font-size: 0.85rem;
            color: var(--text-muted);
            margin-bottom: 15px;
            line-height: 1.4
        }
        .product-price {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 20px;
            margin-top: auto
        }
        .price-new {
            font-size: 1.4rem;
            font-weight: 800;
            color: var(--text-main)
        }
        .price-old {
            font-size: 1rem;
            color: #6b7280;
            text-decoration: line-through;
            opacity: 1
        }
        .btn-order {
            display: block;
            width: 100%;
            padding: 12px;
            border: 2px solid var(--primary);
            border-radius: 12px;
            text-align: center;
            font-weight: 700;
            text-decoration: none;
            font-size: 0.95rem;
            transition: 0.3s;
            background: transparent;
            color: var(--primary);
            cursor: pointer;
            font-family: inherit
        }
        .product-card:hover .btn-order:not([disabled]) {
            background: var(--primary);
            color: white !important;
            box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
        }
        .btn-order[disabled] {
            background: var(--bg-alt) !important;
            color: var(--text-muted) !important;
            border-color: var(--border-color) !important;
            cursor: not-allowed;
            opacity: 0.7;
        }
        #checkout-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(15px);
            z-index: 9999;
            display: none;
            opacity: 0;
            transition: all 0.4s ease;
            align-items: center;
            justify-content: center;
            padding: 20px;
            overflow: hidden
        }
        #checkout-modal.active {
            display: flex;
            opacity: 1
        }
        .checkout-card {
            background: var(--bg-card);
            width: 100%;
            max-width: 500px;
            max-height: 90vh;
            border-radius: 30px;
            padding: 30px;
            position: relative;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
            transform: translateY(40px);
            transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
            border: 1px solid var(--border-color);
            overflow-y: auto;
            overflow-x: hidden;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }
        .checkout-card::-webkit-scrollbar {
            display: none;
        }
        #checkout-modal.active .checkout-card {
            transform: translateY(0)
        }
        .checkout-header {
            margin-bottom: 25px;
            text-align: center
        }
        .checkout-header h2 {
            font-size: 1.5rem;
            margin-bottom: 5px;
            color: var(--text-main)
        }
        .checkout-header p {
            color: var(--text-muted);
            font-size: 0.9rem
        }
        .cart-summary {
            background: var(--bg-alt);
            padding: 20px;
            border-radius: 20px;
            margin-bottom: 25px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border: 1px dashed var(--border-color)
        }
        .cart-item-info h4 {
            font-size: 1rem;
            margin-bottom: 4px
        }
        .cart-item-info span {
            font-size: 0.85rem;
            color: var(--primary);
            font-weight: 700
        }
        .cart-item-price {
            font-size: 1.3rem;
            font-weight: 800;
            color: var(--text-main)
        }
        .checkout-form .input-group {
            margin-bottom: 15px
        }
        .checkout-form label {
            display: block;
            margin-bottom: 8px;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--text-main);
            padding-left: 5px
        }
        .checkout-form input {
            width: 100%;
            padding: 14px 18px;
            background: var(--bg-body);
            border: 1px solid var(--border-color);
            border-radius: 15px;
            color: var(--text-main);
            font-size: 0.95rem;
            transition: all 0.3s;
            outline: none
        }
        .checkout-form input:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(139, 92, 246, .1)
        }
        .btn-confirm-order {
            width: 100%;
            padding: 16px;
            background: var(--secondary-gradient);
            color: white;
            border: none;
            border-radius: 15px;
            font-size: 1rem;
            font-weight: 700;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-top: 25px;
            transition: all 0.3s;
            box-shadow: 0 10px 20px rgba(16, 185, 129, .2)
        }
        .btn-confirm-order:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(16, 185, 129, .3);
            filter: brightness(1.1)
        }
        .footer-brand .logo {
            margin-bottom: 20px;
            font-size: 1.8rem;
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--text-main) !important;
        }
        .footer-brand .logo i {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .footer-brand p {
            color: var(--text-muted) !important;
            margin-bottom: 25px;
            max-width: 320px;
            line-height: 1.8;
            font-size: 0.95rem;
        }
        .footer-links h4, .footer-col h4 {
            margin-bottom: 25px;
            font-size: 1.15rem;
            font-weight: 700;
            position: relative;
            padding-bottom: 12px;
            color: var(--text-main) !important;
        }
        .footer-links h4::after, .footer-col h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 35px;
            height: 2px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            border-radius: 2px;
        }
        .footer-links ul li a, .footer-links ul li p {
            color: var(--text-muted) !important;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 0.95rem;
            line-height: 1.6;
        }
        .footer-links ul li a {
            text-decoration: none !important;
            transition: all 0.3s ease;
        }
        .footer-links ul li p {
            margin: 0;
        }
        .footer-links ul li a:hover {
            color: var(--primary) !important;
            transform: translateX(5px);
        }
        .footer-links ul li a i, .footer-links ul li p i {
            font-size: 0.9rem;
            color: var(--primary) !important;
            opacity: 0.8;
        }
        footer a {
            text-decoration: none !important;
            color: var(--text-muted) !important;
        }
        footer a:hover {
            text-decoration: none !important;
            color: var(--primary) !important;
        }

        .social-links {
            display: flex;
            gap: 12px;
            margin-top: 25px;
        }
        .social-links-mobile {
            display: none;
        }
        .social-links a,
        .social-links .social-link {
            width: 42px;
            height: 42px;
            background: var(--bg-alt);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-main) !important;
            text-decoration: none !important;
            transition: all 0.3s ease;
            border: 1px solid var(--border-color);
            font-size: 1rem;
        }
        .social-links .social-link.is-disabled {
            opacity: 0.6;
            cursor: default;
        }
        .social-links a:hover {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white !important;
            transform: translateY(-3px);
            border-color: transparent;
            box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
        }
        .footer-bottom p {
            color: var(--text-muted) !important;
            margin: 0;
        }

        /* Premium SweetAlert2 Small Style */
        .premium-swal-popup-small {
            border-radius: 20px !important;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
        }
        .premium-swal-button-small {
            padding: 8px 25px !important;
            font-size: 0.9rem !important;
            border-radius: 10px !important;
            font-weight: 600 !important;
        }
        .global-whatsapp-fab {
            position: fixed;
            bottom: 90px;
            right: 25px;
            z-index: 999;
            width: 55px;
            height: 55px;
            background: var(--whatsapp);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            text-decoration: none;
            box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
            transition: 0.3s
        }
        .global-whatsapp-fab:hover {
            transform: scale(1.1) rotate(10deg)
        }
        .bottom-nav {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: var(--bg-nav);
            backdrop-filter: blur(15px);
            border-top: 1px solid var(--border-color);
            z-index: 1000;
            justify-content: space-around;
            padding: 12px 10px;
            padding-bottom: calc(12px + env(safe-area-inset-bottom));
            box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.05)
        }
        .bottom-nav .nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-decoration: none;
            color: var(--text-muted);
            gap: 5px;
            transition: 0.3s
        }
        .bottom-nav .nav-item i {
            font-size: 1.2rem
        }
        .bottom-nav .nav-item span {
            font-size: 0.75rem;
            font-weight: 600
        }
        .bottom-nav .nav-item:hover, .bottom-nav .nav-item.active {
            color: var(--primary)
        }
        .section-fade-bottom::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 30px;
            background: linear-gradient(to bottom, transparent, var(--bg-body));
            z-index: 5;
            pointer-events: none;
        }
        .ai-demo-section {
            overflow: hidden;
        }
        .ai-demo-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 30% 50%, rgba(139, 92, 246, 0.05) 0%, transparent 50%),
                        radial-gradient(circle at 70% 80%, rgba(168, 85, 247, 0.05) 0%, transparent 50%);
            pointer-events: none;
        }
        .ai-demo-container {
            position: relative;
            z-index: 1;
        }
        .business-tabs {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin: 40px 0 50px;
            flex-wrap: wrap;
        }
        .business-tab {
            padding: 12px 28px;
            background: var(--bg-card);
            border: 2px solid var(--border-color);
            border-radius: 50px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .business-tab:hover {
            border-color: var(--primary);
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(139, 92, 246, 0.2);
        }
        .business-tab.active {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            border-color: transparent;
            box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
        }
        .business-tab i {
            font-size: 1.2rem;
        }
        .reviews-slider-wrapper {
            position: relative;
            overflow: hidden;
            padding: 20px 0;
        }
        .reviews-track {
            display: flex;
            gap: 25px;
            animation: slideReviews 40s linear infinite;
            width: max-content;
        }
        .reviews-track:hover {
            animation-play-state: paused;
        }
        .demo-review-card {
            background: var(--bg-card);
            border-radius: 20px;
            padding: 25px;
            width: 350px;
            flex-shrink: 0;
            border: 2px solid var(--border-color);
            transition: all 0.3s;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
            position: relative;
            overflow: hidden;
        }
        .demo-review-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            transform: scaleX(0);
            transition: transform 0.3s;
        }
        .demo-review-card:hover {
            transform: translateY(-8px);
            border-color: var(--primary);
            box-shadow: 0 15px 40px rgba(139, 92, 246, 0.15);
        }
        .demo-review-card:hover::before {
            transform: scaleX(1);
        }
        .demo-review-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }
        .demo-stars {
            color: #b45309; /* Darker yellow/orange for better contrast ratio */
            font-size: 1.1rem;
            display: flex;
            gap: 3px;
        }
        .ai-badge {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            padding: 4px 12px;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        .ai-badge i {
            font-size: 0.8rem;
        }
        .demo-review-author {
            display: flex;
            align-items: center;
            gap: 10px;
            padding-top: 15px;
            border-top: 2px solid var(--border-color);
        }
        .demo-author-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 1.1rem;
        }
        .demo-author-info {
            flex: 1;
        }
        .demo-author-name {
            font-weight: 700;
            color: var(--text-main);
            font-size: 0.95rem;
        }
        .demo-author-date {
            font-size: 0.8rem;
            color: var(--text-muted);
        }
        .business-content.active {
            display: block;
        }

        .demoSwiper {
            padding: 30px 10px 60px;
        }
        .demoSwiper .swiper-wrapper {
            padding: 10px 0;
        }
        .demo-card {
            background: var(--bg-card);
            border-radius: 16px;
            padding: 25px 20px;
            text-align: center;
            border: 2px solid var(--border-color);
            transition: all 0.3s ease;
            text-decoration: none;
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
            overflow: hidden;
            height: 280px;
        }

        .demo-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary);
            box-shadow: 0 15px 40px rgba(139, 92, 246, 0.15);
        }
        .demo-card:hover .demo-icon {
            transform: scale(1.1);
        }
        .demo-card h3 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--text-main);
            line-height: 1.3;
            height: 2.6em;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            line-clamp: 2;
            -webkit-box-orient: vertical;
            width: 100%;
        }
        .demo-card p {
            font-size: 0.9rem;
            color: var(--text-muted);
            margin-bottom: 15px;
            line-height: 1.4;
            height: 2.8em;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            line-clamp: 2;
            -webkit-box-orient: vertical;
            width: 100%;
            flex-grow: 1;
        }
        .demoSwiper .swiper-pagination-bullet {
            width: 10px;
            height: 10px;
            background: var(--primary);
            opacity: 0.3;
        }
        .demoSwiper .swiper-pagination-bullet-active {
            opacity: 1;
            width: 30px;
            border-radius: 5px;
        }
        .howItWorksSwiper {
            width: 100%;
            height: 100%;
            border-radius: 15px;
        }
        .howItWorksSwiper .swiper-slide {
            text-align: center;
            background: var(--bg-card);
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .howItWorksSwiper .swiper-slide img {
            display: block;
            width: 100%;
            height: auto;
            object-fit: contain;
        }
        .howItWorksSwiper .swiper-pagination-bullet {
            background: var(--primary);
        }
        /*  --- Navbar ---  */
        .logo {
            font-size: 1.6rem;
            font-weight: 900;
            color: var(--text-main);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: transform 0.3s ease;
        }
        .logo:hover {
            transform: scale(1.05);
        }
        .logo i {
            font-size: 1.8rem;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: rotate-star 3s ease-in-out infinite;
        }
        .theme-toggle {
            background: var(--bg-alt);
            border: 2px solid var(--border-color);
            color: var(--primary);
            font-size: 1.1rem;
            cursor: pointer;
            padding: 8px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            width: 40px;
            height: 40px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        }
        .theme-toggle:hover {
            background: var(--bg-card);
            color: var(--primary);
            border-color: var(--primary);
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(139, 92, 246, 0.15);
        }
        .dark-mode .theme-toggle {
            color: #fbbf24; /* Sun color for dark mode */
            background: #1e293b;
            border-color: #334155;
        }
        .dark-mode .theme-toggle:hover {
            background: #0f172a;
            border-color: #fbbf24;
            box-shadow: 0 0 15px rgba(251, 191, 36, 0.2);
        }
        /*  --- Hero Section ---  */
        .hero {
            padding: 160px 0 100px;
            text-align: center;
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)), url('../images/back1.png');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: white
        }
        /*  --- Video Section ---  */
        .video-box {
            max-width: 1200px;
            margin: 40px auto 60px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow);
            border: 4px solid white
        }
        /*  --- Journey Section ---  */
        .journey-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 60px
        }
        /*  --- Before/After Results ---  */
        .before-side {
            background: linear-gradient(135deg, rgba(239, 68, 68, 0.05), rgba(239, 68, 68, 0.02));
            border: 2px solid rgba(239, 68, 68, 0.2);
        }
        .vs-divider {
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 5px 0;
        }
        /*  --- AI Demo Section ---  */
        .demo-review-text {
            font-size: 1rem;
            line-height: 1.7;
            color: var(--text-main);
            margin-bottom: 15px;
            font-style: italic;
            position: relative;
            padding-left: 15px;
        }
        .demo-review-text::before {
            content: '"';
            font-size: 3rem;
            color: var(--primary);
            opacity: 0.1;
            position: absolute;
            top: -10px;
            left: -5px;
            font-family: Georgia, serif;
        }
        .business-content {
            display: none;
        }
        .demo-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin-bottom: 15px;
            flex-shrink: 0;
            transition: 0.3s;
        }
        .demo-btn {
            padding: 10px 24px;
            background: #6d28d9;
            color: white;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.9rem;
            transition: 0.3s;
            margin-top: auto;
            text-decoration: none;
            display: inline-block;
            cursor: pointer;
        }
        .demo-btn:hover {
            background: var(--secondary);
            transform: scale(1.05);
        }
        /*  --- Testimonials ---  */
        .user-info {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px
        }
        .user-img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover
        }
        /*  --- Pricing Section ---  */
        .free-demo {
            background: rgba(148, 163, 184, 0.05);
            border-color: #94a3b8
        }
        .short-term {
            background: rgba(99, 102, 241, 0.05);
            border-color: #6366f1
        }
        /*  --- Checkout Modal ---  */
        .close-checkout {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 35px;
            height: 35px;
            background: var(--bg-alt);
            border: 0;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            color: var(--text-muted);
            transition: all 0.3s
        }
        .close-checkout:hover {
            background: var(--danger-gradient);
            color: white;
            transform: rotate(90deg)
        }
        .faq-question:focus-visible,
        .btn-plan:focus-visible,
        .btn-order:focus-visible,
        .btn-see-more:focus-visible,
        .close-checkout:focus-visible,
        .close-faq-modal:focus-visible {
            outline: 3px solid rgba(139, 92, 246, 0.35);
            outline-offset: 3px;
        }
        /*  --- Field Validation ---  */
        .field-error {
            display: block;
            color: #ef4444;
            font-size: 11.5px;
            margin-top: 4px;
            min-height: 16px;
            font-weight: 500;
        }
        .input-group input.input-invalid {
            border-color: #ef4444 !important;
            box-shadow: 0 0 0 2px rgba(239,68,68,0.12);
        }
        /*  --- Footer ---  */
        footer {
            background: var(--bg-card);
            padding: 80px 0 0 0;
            border-top: 1px solid var(--border-color);
            position: relative;
            overflow: hidden;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 40px;
            margin-bottom: 50px;
        }
        .footer-links ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-links ul li {
            margin-bottom: 12px;
            line-height: 1.6;
        }
        footer ul {
            list-style-type: none !important;
            padding-left: 0 !important;
        }
        footer ul li::before {
            content: none !important;
        }
        .footer-bottom {
            padding: 25px 0;
            border-top: 1px solid var(--border-color);
            display: flex;
            justify-content: center;
            align-items: center;
            color: var(--text-muted) !important;
            font-size: 0.9rem;
        }
        /*  --- Others ---  */
        .text-center {
            text-align: center
        }
        .w-100 {
            width: 100%
        }
        .img-fluid {
            max-width: 100%;
            height: auto;
            border-radius: 12px
        }
        /*  --- Animations & Keyframes ---  */
        @keyframes pulse-animation {
            0% {
                box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4)
            }

            70% {
                box-shadow: 0 0 0 20px rgba(16, 185, 129, 0)
            }

            100% {
                box-shadow: 0 0 0 0 rgba(16, 185, 129, 0)
            }
        }
        @keyframes rotate-star {
            0%, 100% { transform: rotate(0deg); }
            50% { transform: rotate(180deg); }
        }
        @keyframes scrollLinear {
            from {
                transform: translateX(0);
            }

            to {
                transform: translateX(-50%);
            }
        }

        @keyframes pulse-vs {
            0%, 100% {
                transform: translate(-50%, -50%) scale(1);
            }
            50% {
                transform: translate(-50%, -50%) scale(1.1);
            }
        }
        /* pulse-animation defined above - duplicate removed */
        @keyframes slideDown {
            from {
                transform: translateY(-100%);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }
        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.2);
            }
        }
        @keyframes slideReviews {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }
        /* pulse keyframe defined above - duplicate removed */
        /*  --- Responsive Media Queries ---  */
        @media (max-width:768px) {

            /* Mobile Accordion Styles */
            .demo-card {
                padding: 20px 15px;
                height: 260px;
            }

            .demo-icon {
                width: 55px;
                height: 55px;
                font-size: 1.8rem;
            }

            .demo-card h3 {
                font-size: 1rem;
            }

            .demo-card p {
                font-size: 0.85rem;
            }
            .map-info h3 {
                font-size: 1rem;
            }
            .journey-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .step-card {
                padding: 30px 20px;
                margin-top: 0;
            }

            .step-bubble {
                width: 80px;
                height: 80px;
            }

            .step-icon {
                font-size: 2.2rem;
            }

            .step-card h3 {
                font-size: 1.3rem;
            }

            .step-card p {
                font-size: 0.95rem;
            }
            .business-tabs {
                gap: 10px;
            }

            .business-tab {
                padding: 10px 20px;
                font-size: 0.9rem;
            }

            .demo-review-card {
                width: 300px;
            }

            .reviews-track {
                animation-duration: 30s;
            }
            .audience-item i {
                display: none
            }

            .audience-item {
                padding: 15px 10px;
                min-height: 50px;
            }


            .motivation-text {
                padding: 20px;
                margin: 0 auto;
            }

            .motivation-text h3 {
                font-size: 15px
            }

            .audience-section {
                padding: 30px 0 !important;
            }
            .bottom-nav {
                display: flex
            }

            .desktop-nav {
                display: none
            }

            .hero h1 {
                font-size: 1.8rem;
                margin-bottom: 1rem
            }

            .hero p {
                font-size: 0.95rem;
                line-height: 1.5;
                padding: 0 5px
            }

            .section-title h2 {
                font-size: 1.4rem;
                margin-bottom: 8px
            }

            .audience-grid {
                grid-template-columns: repeat(2, 1fr)
            }

            .comparison-grid {
                grid-template-columns: 1fr;
                gap: 20px;
                position: relative;
                margin-top: 80px;
                display: flex;
                flex-direction: column
            }

            .vs-badge {
                position: relative;
                transform: none;
                margin: 0 auto;
                width: 60px;
                height: 60px;
                font-size: 1.1rem;
                border-width: 3px;
                top: auto;
                left: auto;
                order: 1;
                animation: none
            }

            .product-grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 20px;
                margin-top: 30px
            }
            footer{
                padding: 40px 0 0 0;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 0;
                margin-bottom: 40px;
            }
            .footer-bottom{
                padding: 10px 0;
                /* border-top: 0; */
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }

            body {
                padding-bottom: 70px
            }

            #checkout-modal {
                padding: 0
            }

            .checkout-card {
                padding: 30px 20px;
                border-radius: 0;
                border: none;
                width: 100%;
                height: 100%;
                max-height: 100vh;
                max-width: 100%;
                display: flex;
                flex-direction: column;
                overflow-y: auto
            }

            .checkout-header h2 {
                font-size: 1.3rem
            }

            .cart-summary {
                padding: 15px
            }

            .card-loss {
                font-weight: 600;
                padding: 30px 30px 20px 30px;
                order: 0;
            }

            .card-loss, .card-profit {
                padding: 35px 25px;
            }

            .comparison-section h3 {
                font-size: 1.3rem;
                display: flex;
                justify-content: center;
                text-align: center;
                padding-bottom: 15px;
                margin-bottom: 10px;
            }

            .comparison-section ul li {
                font-size: 0.95rem;
                padding: 7px 3px;
                margin-bottom: 0px;
            }

            .product-card {
                padding: 15px;
            }

            .product-info h3 {
                font-size: 1.1rem;
            }

            .product-info p {
                font-size: 0.85rem;
                margin-bottom: 12px;
            }

            .price-new {
                font-size: 1.2rem;
            }

            .price-old {
                font-size: 0.9rem;
            }

            .btn-order {
                padding: 12px 20px;
                font-size: 0.9rem;
            }

            .pricing-grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 25px;
                margin-top: 30px;
            }

            .pricing-box {
                padding: 25px 20px;
                margin: 0;
            }

            .pricing-box.popular {
                transform: scale(1);
                margin: 0;
            }

            .plan-price {
                font-size: 2rem;
            }

            .plan-features {
                margin: 20px 0;
            }

            .plan-features li {
                font-size: 0.9rem;
                padding: 8px 0;
            }

            .btn-plan {
                padding: 12px 20px;
                font-size: 0.95rem;
            }

            .footer-brand p {
                max-width: 100%;
            }
            .footer-col {
                border-bottom: 1px solid var(--border-color);
            }

            .footer-col:first-child {
                margin-bottom: 0;
                padding-bottom: 30px;
            }

            .footer-col:not(:first-child) h4 {
                margin-bottom: 0;
                padding: 18px 0;
                padding-bottom: 18px !important;
                cursor: pointer;
                display: flex;
                justify-content: space-between;
                align-items: center;
                user-select: none;
                background: var(--bg-card);
                transition: all 0.3s ease;
            }

            .footer-col:not(:first-child) h4::after {
                content: '\002B' !important;
                font-size: 1.5rem !important;
                font-weight: 400 !important;
                color: var(--text-muted) !important;
                transition: all 0.3s ease !important;
                line-height: 1 !important;
                position: static !important;
                width: auto !important;
                height: auto !important;
                background: none !important;
                border-radius: 0 !important;
                left: auto !important;
                bottom: auto !important;
            }

            .footer-col:not(:first-child).active h4::after {
                content: '\2212' !important;
            }

            .footer-col:not(:first-child) h4::before {
                display: none !important;
            }

            .footer-col:not(:first-child) .footer-links {
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
            }

            .footer-col:not(:first-child).active .footer-links {
                max-height: 300px;
                padding-bottom: 15px;
            }

            .social-links-desktop {
                display: none !important;
            }

            .social-links-mobile {
                display: flex !important;
                justify-content: center;
                margin-top: 5px !important;
                padding-top: 0 !important;
                margin-bottom: 25px;
                border: none !important;
            }

            .social-links {
                justify-content: flex-start;
            }

            .navbar {
                padding: 12px 0
            }

            .logo {
                font-size: 1.1rem;
                gap: 5px;
            }

            .logo i {
                font-size: 1.3rem;
            }

            .logo span {
                display: inline;
            }

            .mobile-menu-btn {
                font-size: 1.2rem;
                padding: 4px;
                margin-right: 10px;
            }

            .nav-cta-btn {
                padding: 6px 12px;
                font-size: 0.8rem;
            }

            .nav-cta-btn span {
                display: none;
            }

            .nav-cta-btn i {
                margin: 0;
            }

            .theme-toggle {
                width: 34px;
                height: 34px;
                padding: 6px;
                font-size: 1rem;
            }

            .nav-item {
                display: flex;
                flex-direction: column;
                align-items: center;
                text-decoration: none;
                color: var(--text-muted);
                font-size: 0.75rem;
                gap: 4px;
            }

            .nav-item.active {
                color: var(--primary);
                font-weight: 600;
            }

            .nav-item i {
                font-size: 1.2rem;
                margin-bottom: 2px;
            }

            .btn {
                padding: 12px 20px !important;
                font-size: 0.95rem !important;
                display: block;
                width: 100%;
            }

            .hero {
                padding-top: 100px;
                padding-bottom: 40px;
            }

            .section-title p {
                font-size: 0.85rem;
            }

            section {
                padding: 30px 0 !important;
            }

            .video-box {
                margin: 0px auto;
                width: 100%;
                max-width: 100%;
            }

            .margin_media {
                margin-bottom: 0px;
            }

            .journey-step {
                position: relative;
                padding-top: 50px;
            }

            .step-badge {
                position: absolute;
                top: 0;
                left: 50%;
                transform: translateX(-50%);
                margin-bottom: 0;
            }


            .card-profit {
                order: 2;
            }
        }
        @media (max-width:480px) {
            .audience-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .product-grid {
                grid-template-columns: 1fr
            }

            .hero {
                padding: 120px 0 60px
            }
        }

        /* Mobile Sidebar and Hamburger Menu */
        .mobile-menu-btn {
            display: flex;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--text-main);
            cursor: pointer;
            padding: 5px;
            margin-right: 15px;
            z-index: 1001;
        }

        .mobile-sidebar {
            position: fixed;
            top: 0;
            left: -280px;
            width: 280px;
            height: 100vh;
            background: var(--bg-card);
            box-shadow: 2px 0 20px rgba(0, 0, 0, 0.1);
            z-index: 2000;
            transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
            overflow-y: auto;
        }

        body.dark-mode .mobile-sidebar {
            box-shadow: 2px 0 20px rgba(0, 0, 0, 0.5);
            background: var(--bg-card); /* Ensure proper dark bg */
        }

        .mobile-sidebar.open {
            left: 0;
        }

        .sidebar-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
            border-bottom: 1px solid var(--border-color);
            background: var(--bg-nav);
        }

        .sidebar-header .logo {
            font-size: 1.3rem;
            font-weight: 800;
            color: var(--text-main);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .sidebar-header .logo i {
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            font-size: 1.5rem;
        }

        .close-sidebar-btn {
            background: rgba(239, 68, 68, 0.1);
            border: none;
            color: var(--danger);
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .close-sidebar-btn:hover {
            background: var(--danger);
            color: white;
            transform: rotate(90deg);
        }

        .sidebar-btn {
            width: 100%;
            padding: 14px;
            border-radius: 50px;
            border: none;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white !important;
            font-weight: 800;
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 10px 20px rgba(139, 92, 246, 0.2);
            text-decoration: none;
        }

        .sidebar-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(139, 92, 246, 0.3);
            color: white !important;
        }

        .sidebar-nav {
            display: flex;
            flex-direction: column;
            padding: 15px;
            gap: 8px;
            flex: 1;
        }

        .sidebar-link {
            display: flex;
            align-items: center;
            padding: 12px 18px;
            color: var(--text-main);
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 600;
            border-radius: 14px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            gap: 12px;
            background: transparent;
        }

        .sidebar-link i {
            width: 20px;
            font-size: 1.1rem;
            opacity: 0.8;
            background: none;
            box-shadow: none;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 0;
        }

        .sidebar-link:hover,
        .sidebar-link.active {
            background: var(--bg-accent-purple);
            color: var(--primary);
        }

        .sidebar-footer {
            padding: 20px;
            border-top: 1px solid var(--border-color);
            margin-top: auto;
        }

        /* FAQ Modal Styles */
        .faq-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background: var(--bg-body);
            z-index: 9999;
            overflow-y: auto;
            opacity: 0;
            transform: scale(0.95);
            transition: opacity 0.3s ease, transform 0.3s ease;
        }

        .faq-modal.active {
            opacity: 1;
            transform: scale(1);
        }

        .faq-modal-header {
            position: sticky;
            top: 0;
            background: var(--bg-nav);
            backdrop-filter: blur(20px);
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid var(--border-color);
            z-index: 10;
        }

        .faq-modal-header h2 {
            font-size: 1.5rem;
            margin: 0;
            color: var(--text-main);
        }

        @media (max-width: 768px) {
            .faq-modal-header h2 {
                font-size: 1.15rem;
            }
            .faq-tab-btn {
                font-size: 0.85rem;
                padding: 6px 16px;
            }
            .faq-category-title {
                font-size: 0.95rem;
                margin-bottom: 12px;
            }
            .faq-question {
                font-size: 0.85rem;
                padding: 15px 18px;
            }
            .faq-question i {
                font-size: 0.8rem;
            }
            .faq-answer {
                font-size: 0.8rem;
                padding: 0 18px;
            }
            .faq-item.active .faq-answer {
                padding: 10px 18px 18px;
            }
        }

        .close-faq-modal {
            background: rgba(239, 68, 68, 0.1);
            border: none;
            font-size: 1.2rem;
            color: var(--danger);
            cursor: pointer;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .close-faq-modal:hover {
            background: var(--danger);
            color: white;
            transform: rotate(90deg);
        }

        /* FAQ Modal Tabs */
        .faq-tabs-container {
            position: sticky;
            top: 77px; /* Header height offset */
            background: var(--bg-body);
            z-index: 9;
            padding: 15px 20px 0;
            border-bottom: 1px solid var(--border-color);
        }

        .faq-tabs {
            display: flex;
            gap: 10px;
            overflow-x: auto;
            scroll-behavior: smooth;
            -ms-overflow-style: none; /* IE and Edge */
            scrollbar-width: none; /* Firefox */
            padding-bottom: 15px;
        }

        .faq-tabs::-webkit-scrollbar {
            display: none; /* Chrome, Safari, Opera */
        }

        .faq-tab-btn {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            color: var(--text-muted);
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 0.95rem;
            font-weight: 500;
            cursor: pointer;
            white-space: nowrap;
            transition: all 0.3s ease;
        }

        .faq-tab-btn:hover {
            border-color: var(--primary);
            color: var(--primary);
        }

        .faq-tab-btn.active {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
            box-shadow: 0 4px 10px rgba(139, 92, 246, 0.3);
        }

        .faq-modal-body {
            padding: 20px 20px 40px;
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-category-content {
            display: none;
            animation: fadeIn 0.4s ease;
        }

        .faq-category-content.active {
            display: block;
        }

        .faq-category-title {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .btn-see-more {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 12px 28px;
            font-size: 1rem;
            font-weight: 600;
            color: var(--primary);
            background: rgba(139, 92, 246, 0.1);
            border: 2px solid var(--primary);
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 20px;
            text-decoration: none;
        }

        .btn-see-more:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(139, 92, 246, 0.2);
        }

        @media (max-width: 768px) {
            .btn-see-more {
                padding: 8px 20px;
                font-size: 0.85rem;
                margin-top: 15px;
            }
            .btn-see-more i {
                font-size: 0.8rem;
            }
        }

        .sidebar-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(8px);
            z-index: 1999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .sidebar-overlay.show {
            opacity: 1;
            visibility: visible;
        }

        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: flex;
            }
        }
        /* --- Stats Section --- */
        .stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; margin-top: 50px; }
        .stat-card { background: var(--bg-card); border-radius: 20px; padding: 40px 30px; text-align: center; border: 1px dashed var(--border-color); box-shadow: var(--shadow); position: relative; transition: 0.3s; overflow: hidden; }
        .stat-card:hover { transform: translateY(-10px); border-color: var(--primary); box-shadow: 0 20px 40px rgba(139, 92, 246, 0.15); }
        .stat-circle { position: relative; width: 85px; height: 85px; margin: 0 auto 25px; }
        .circular-chart { display: block; margin: 0 auto; max-width: 100%; max-height: 250px; }
        .circle-bg { fill: none; stroke: var(--bg-alt); stroke-width: 3.5; }
        .circle { fill: none; stroke-width: 3.5; stroke-linecap: round; animation: progress 1.5s ease-out forwards; }
        @keyframes progress { 0% { stroke-dasharray: 0 100; } }
        .circular-chart.orange .circle { stroke: #ff9f00; }
        .circular-chart.green .circle { stroke: #10b981; }
        .circular-chart.blue .circle { stroke: #3b82f6; }
        .stat-value { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: 1.5rem; font-weight: 800; color: var(--text-main); }
        .stat-card h3 { font-size: 1.4rem; margin-bottom: 12px; color: var(--text-main); font-weight: 800; }
        .stat-card p { font-size: 1.05rem; color: var(--text-muted); line-height: 1.7; margin: 0; text-align: left; }

        @media (prefers-reduced-motion: reduce) {
            html {
                scroll-behavior: auto;
            }

            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
                scroll-behavior: auto !important;
            }

            .btn-pulse,
            .scroll-track,
            .pulse-vs,
            .reviews-track,
            .logo i,
            .circle,
            .faq-category-content {
                animation: none !important;
            }
        }


