        :root {
            --bg-primary: #ffffff;
            --bg-secondary: #f8fafc;
            --bg-tertiary: #f1f5f9;
            --bg-card: #ffffff;
            --text-primary: #0f172a;
            --text-secondary: #475569;
            --text-muted: #94a3b8;
            --border-color: #e2e8f0;

            /* ✅ Updated Brand Colors (Logo Based) */
            --accent-primary: #6C63FF;
            --accent-secondary: #4F46E5;
            --accent-tertiary: #E84393;

            /* ✅ Updated Gradient (IMPORTANT) */
            --gradient-1: linear-gradient(135deg, #6C63FF 0%, #4F46E5 50%, #E84393 100%);
            --gradient-2: linear-gradient(135deg, #4F46E5 0%, #6C63FF 100%);
            --gradient-3: linear-gradient(135deg, #6C63FF 0%, #E84393 100%);

            --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
            --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1);
            --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1);
            --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1);

            /* Glow updated */
            --shadow-glow: 0 0 40px rgba(108, 99, 255, 0.4);

            --glass-bg: rgba(255, 255, 255, 0.8);
            --glass-border: rgba(255, 255, 255, 0.5);
        }

        [data-theme="dark"] {
            --bg-primary: #0f172a;
            --bg-secondary: #1e293b;
            --bg-tertiary: #334155;
            --bg-card: #1e293b;
            --text-primary: #f8fafc;
            --text-secondary: #cbd5e1;
            --text-muted: #64748b;
            --border-color: #334155;
            --shadow-sm: 0 1px 2px rgba(0,0,0,0.3);
            --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.4), 0 2px 4px -2px rgba(0,0,0,0.3);
            --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.4), 0 4px 6px -4px rgba(0,0,0,0.3);
            --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.5), 0 8px 10px -6px rgba(0,0,0,0.4);
            --shadow-glow: 0 0 60px rgba(99, 102, 241, 0.4);
            --glass-bg: rgba(30, 41, 59, 0.8);
            --glass-border: rgba(51, 65, 85, 0.5);
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.6;
            transition: all 0.3s ease;
            overflow-x: hidden;
        }

        /* Scrollbar Styling */
        ::-webkit-scrollbar {
            width: 10px;
        }

        ::-webkit-scrollbar-track {
            background: var(--bg-secondary);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--gradient-1);
            border-radius: 5px;
        }

        /* Animations */
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @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 scaleIn {
            from {
                opacity: 0;
                transform: scale(0.8);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        @keyframes scan-line {
            0% { top: 0; }
            100% { top: 100%; }
        }

        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        @keyframes shimmer {
            0% { background-position: -200% 0; }
            100% { background-position: 200% 0; }
        }

        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 1rem 2rem;
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border-color);
            box-shadow: var(--shadow-lg);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            text-decoration: none;
            color: var(--text-primary);
        }

        .logo img{height: 70px;}

        .logo-icon {
            width: 45px;
            height: 45px;
            background: var(--gradient-1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.25rem;
            position: relative;
            overflow: hidden;
        }

        .logo-icon::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
            transform: translateX(-100%);
        }

        .logo:hover .logo-icon::after {
            animation: shimmer 0.6s ease;
        }

        .logo-text {
            font-size: 1.5rem;
            font-weight: 800;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-secondary);
            font-weight: 500;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient-1);
            transition: width 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--accent-primary);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .theme-toggle {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            border: 2px solid var(--border-color);
            background: var(--bg-card);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            color: var(--text-primary);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .theme-toggle:hover {
            border-color: var(--accent-primary);
            transform: rotate(180deg);
        }

        .theme-toggle .fa-sun,
        .theme-toggle .fa-moon {
            position: absolute;
            transition: all 0.3s ease;
        }

        .theme-toggle .fa-moon {
            opacity: 1;
        }

        .theme-toggle .fa-sun {
            opacity: 0;
        }

        [data-theme="dark"] .theme-toggle .fa-moon {
            opacity: 0;
        }

        [data-theme="dark"] .theme-toggle .fa-sun {
            opacity: 1;
            color: #fbbf24;
        }

        .btn {
            padding: 0.75rem 1.5rem;
            border-radius: 12px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            border: none;
        }

        .btn-outline {
            background: transparent;
            border: 2px solid var(--border-color);
            color: var(--text-primary);
        }

        .btn-outline:hover {
            border-color: var(--accent-primary);
            color: var(--accent-primary);
            transform: translateY(-2px);
        }

        .btn-primary {
            background: var(--gradient-1);
            color: white;
            box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(99, 102, 241, 0.5);
        }

        .btn-secondary {
            background: var(--bg-tertiary);
            color: var(--text-primary);
        }

        .btn-secondary:hover {
            background: var(--border-color);
            transform: translateY(-2px);
        }

        .btn-large {
            padding: 1rem 2rem;
            font-size: 1.1rem;
            border-radius: 16px;
        }

        .mobile-menu-btn {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 10px;
        }

        .mobile-menu-btn span {
            width: 25px;
            height: 3px;
            background: var(--text-primary);
            border-radius: 3px;
            transition: all 0.3s ease;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            padding: 8rem 2rem 4rem;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            overflow: hidden;
            z-index: 0;
        }

        .hero-bg::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 50%);
            animation: float 8s ease-in-out infinite;
        }

        .hero-bg::after {
            content: '';
            position: absolute;
            bottom: -50%;
            left: -50%;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
            animation: float 10s ease-in-out infinite reverse;
        }

        .grid-pattern {
            position: absolute;
            inset: 0;
            background-image: 
                linear-gradient(rgba(99, 102, 241, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(99, 102, 241, 0.03) 1px, transparent 1px);
            background-size: 50px 50px;
        }

        .floating-shapes {
            position: absolute;
            inset: 0;
            pointer-events: none;
        }

        .shape {
            position: absolute;
            border-radius: 50%;
            opacity: 0.5;
        }

        .shape-1 {
            width: 300px;
            height: 300px;
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, transparent 50%);
            top: 10%;
            right: 10%;
            animation: float 6s ease-in-out infinite;
        }

        .shape-2 {
            width: 200px;
            height: 200px;
            background: linear-gradient(135deg, rgba(236, 72, 153, 0.2) 0%, transparent 50%);
            bottom: 20%;
            left: 5%;
            animation: float 8s ease-in-out infinite 1s;
        }

        .shape-3 {
            width: 150px;
            height: 150px;
            background: linear-gradient(135deg, rgba(6, 182, 212, 0.2) 0%, transparent 50%);
            top: 40%;
            left: 20%;
            animation: float 7s ease-in-out infinite 0.5s;
        }

        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-content {
            animation: slideInLeft 1s ease;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            background: var(--bg-secondary);
            border: 1px solid var(--border-color);
            border-radius: 50px;
            font-size: 0.875rem;
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
        }

        .hero-badge i {
            color: var(--accent-primary);
        }

        .hero-badge span {
            color: var(--accent-primary);
            font-weight: 600;
        }

        .hero-title {
            font-size: 4rem;
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 1.5rem;
        }

        .hero-title .gradient-text {
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            background-size: 200% auto;
            animation: gradientShift 3s ease infinite;
        }

        .hero-description {
            font-size: 1.25rem;
            color: var(--text-secondary);
            margin-bottom: 2rem;
            max-width: 540px;
        }

        .hero-actions {
            display: flex;
            gap: 1rem;
            margin-bottom: 3rem;
            flex-wrap: wrap;
        }

        .hero-stats {
            display: flex;
            gap: 3rem;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .stat-label {
            font-size: 0.875rem;
            color: var(--text-muted);
            margin-top: 0.25rem;
        }

        .hero-visual {
            position: relative;
            animation: slideInRight 1s ease;
        }

        .qr-showcase {
            position: relative;
            width: 100%;
            max-width: 500px;
            margin: 0 auto;
        }

        .main-qr {
            position: relative;
            background: var(--bg-card);
            border-radius: 30px;
            padding: 3rem;
            box-shadow: var(--shadow-xl), var(--shadow-glow);
            border: 1px solid var(--border-color);
        }

        .qr-code-visual {
            width: 200px;
            height: 200px;
            margin: 0 auto 1.5rem;
            position: relative;
            background: white;
            border-radius: 20px;
            padding: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .qr-pattern {
            width: 100%;
            height: 100%;
            display: grid;
            grid-template-columns: repeat(9, 1fr);
            gap: 2px;
        }

        .qr-cell {
            background: #0f172a;
            border-radius: 2px;
            animation: scaleIn 0.5s ease backwards;
        }

        .qr-cell:nth-child(odd) {
            animation-delay: calc(var(--i) * 0.02s);
        }

        .qr-cell.empty {
            background: transparent;
        }

        .scan-line {
            position: absolute;
            left: 20px;
            right: 20px;
            height: 3px;
            background: var(--gradient-1);
            border-radius: 2px;
            animation: scan-line 2s ease-in-out infinite;
            box-shadow: 0 0 10px rgba(99, 102, 241, 0.8);
        }

        .qr-info {
            text-align: center;
        }

        .qr-info h4 {
            font-size: 1.25rem;
            margin-bottom: 0.5rem;
        }

        .qr-info p {
            color: var(--text-muted);
            font-size: 0.875rem;
        }

        .floating-card {
            position: absolute;
            background: var(--bg-card);
            border-radius: 16px;
            padding: 1rem 1.25rem;
            box-shadow: var(--shadow-lg);
            border: 1px solid var(--border-color);
            display: flex;
            align-items: center;
            gap: 0.75rem;
            animation: float 4s ease-in-out infinite;
        }

        .floating-card-icon {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1rem;
        }

        .floating-card-content h5 {
            font-size: 0.875rem;
            margin-bottom: 0.125rem;
        }

        .floating-card-content p {
            font-size: 0.75rem;
            color: var(--text-muted);
        }

        .card-scans {
            top: 20%;
            left: -80px;
            animation-delay: 0s;
        }

        .card-scans .floating-card-icon {
            background: linear-gradient(135deg, #10b981, #059669);
        }

        .card-analytics {
            top: 50%;
            right: -60px;
            animation-delay: 1s;
        }

        .card-analytics .floating-card-icon {
            background: linear-gradient(135deg, #6366f1, #8b5cf6);
        }

        .card-global {
            bottom: 10%;
            left: -40px;
            animation-delay: 2s;
        }

        .card-global .floating-card-icon {
            background: linear-gradient(135deg, #f97316, #ea580c);
        }

        /* Trusted By Section */
        .trusted-section {
            padding: 4rem 2rem;
            background: var(--bg-secondary);
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
        }

        .trusted-container {
            max-width: 1400px;
            margin: 0 auto;
            text-align: center;
        }

        .trusted-title {
            font-size: 0.875rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 2rem;
        }

        .trusted-logos {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 4rem;
            flex-wrap: wrap;
            opacity: 0.6;
        }

        .trusted-logo {
            font-size: 1.75rem;
            font-weight: 800;
            color: var(--text-muted);
            transition: all 0.3s ease;
        }

        .trusted-logo:hover {
            color: var(--text-primary);
            transform: scale(1.1);
        }

        /* Features Section */
        .features-section {
            padding: 8rem 2rem;
            position: relative;
            overflow: hidden;
        }

        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 5rem;
        }

        .section-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            background: rgba(99, 102, 241, 0.1);
            border: 1px solid rgba(99, 102, 241, 0.2);
            border-radius: 50px;
            font-size: 0.875rem;
            color: var(--accent-primary);
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .section-title {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 1rem;
        }

        .section-description {
            font-size: 1.125rem;
            color: var(--text-secondary);
        }

        .features-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .feature-card {
            background: var(--bg-card);
            border-radius: 24px;
            padding: 2.5rem;
            border: 1px solid var(--border-color);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-1);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-xl);
        }

        .feature-card:hover::before {
            transform: scaleX(1);
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.75rem;
            color: white;
            margin-bottom: 1.5rem;
            position: relative;
        }

        .feature-icon::after {
            content: '';
            position: absolute;
            inset: -5px;
            border-radius: 24px;
            background: inherit;
            opacity: 0.2;
            z-index: -1;
        }

        .feature-card:nth-child(1) .feature-icon { background: linear-gradient(135deg, #6366f1, #8b5cf6); }
        .feature-card:nth-child(2) .feature-icon { background: linear-gradient(135deg, #10b981, #059669); }
        .feature-card:nth-child(3) .feature-icon { background: linear-gradient(135deg, #f97316, #ea580c); }
        .feature-card:nth-child(4) .feature-icon { background: linear-gradient(135deg, #ec4899, #db2777); }
        .feature-card:nth-child(5) .feature-icon { background: linear-gradient(135deg, #06b6d4, #0891b2); }
        .feature-card:nth-child(6) .feature-icon { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
        .feature-card:nth-child(7) .feature-icon { background: linear-gradient(135deg, #14b8a6, #0d9488); }
        .feature-card:nth-child(8) .feature-icon { background: linear-gradient(135deg, #f43f5e, #e11d48); }
        .feature-card:nth-child(9) .feature-icon { background: linear-gradient(135deg, #eab308, #ca8a04); }

        .feature-title {
            font-size: 1.375rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
        }

        .feature-description {
            color: var(--text-secondary);
            line-height: 1.7;
        }

        .feature-card.featured {
            grid-column: span 2;
            grid-row: span 2;
            display: flex;
            flex-direction: column;
        }

        .feature-card.featured .feature-content {
            flex: 1;
        }

        .feature-visual {
            margin-top: 2rem;
            background: var(--bg-secondary);
            border-radius: 16px;
            padding: 2rem;
            position: relative;
            overflow: hidden;
        }

        .analytics-bars {
            display: flex;
            gap: 1rem;
            align-items: flex-end;
            height: 150px;
        }

        .analytics-bar {
            flex: 1;
            background: var(--gradient-1);
            border-radius: 8px 8px 0 0;
            animation: barGrow 1s ease forwards;
            transform-origin: bottom;
        }

        @keyframes barGrow {
            from { transform: scaleY(0); }
            to { transform: scaleY(1); }
        }

        .analytics-bar:nth-child(1) { height: 60%; animation-delay: 0.1s; }
        .analytics-bar:nth-child(2) { height: 85%; animation-delay: 0.2s; }
        .analytics-bar:nth-child(3) { height: 45%; animation-delay: 0.3s; }
        .analytics-bar:nth-child(4) { height: 95%; animation-delay: 0.4s; }
        .analytics-bar:nth-child(5) { height: 70%; animation-delay: 0.5s; }
        .analytics-bar:nth-child(6) { height: 55%; animation-delay: 0.6s; }
        .analytics-bar:nth-child(7) { height: 80%; animation-delay: 0.7s; }

        /* How It Works */
        .how-it-works {
            padding: 8rem 2rem;
            background: var(--bg-secondary);
            position: relative;
            overflow: hidden;
        }

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

        .steps-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            position: relative;
        }

        .steps-grid::before {
            content: '';
            position: absolute;
            top: 50px;
            left: 12.5%;
            right: 12.5%;
            height: 3px;
            background: var(--gradient-1);
            z-index: 0;
        }

        .step-card {
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .step-number {
            width: 100px;
            height: 100px;
            background: var(--bg-card);
            border: 3px solid var(--accent-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--accent-primary);
            margin: 0 auto 1.5rem;
            position: relative;
            transition: all 0.3s ease;
        }

        .step-card:hover .step-number {
            background: var(--gradient-1);
            color: white;
            border-color: transparent;
            transform: scale(1.1);
        }

        .step-title {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
        }

        .step-description {
            color: var(--text-secondary);
            font-size: 0.95rem;
        }

        /* Dashboard Preview */
        .dashboard-section {
            padding: 8rem 2rem;
            position: relative;
        }

        .dashboard-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .dashboard-content {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 4rem;
            align-items: center;
        }

        .dashboard-info h2 {
            font-size: 2.75rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
        }

        .dashboard-info p {
            color: var(--text-secondary);
            font-size: 1.125rem;
            margin-bottom: 2rem;
        }

        .dashboard-features {
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
        }

        .dashboard-feature {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .dashboard-feature i {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: rgba(99, 102, 241, 0.1);
            color: var(--accent-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
        }

        .dashboard-preview {
            background: var(--bg-card);
            border-radius: 24px;
            padding: 2rem;
            border: 1px solid var(--border-color);
            box-shadow: var(--shadow-xl);
            position: relative;
        }

        .preview-header {
            display: flex;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
        }

        .preview-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
        }

        .preview-dot:nth-child(1) { background: #ef4444; }
        .preview-dot:nth-child(2) { background: #fbbf24; }
        .preview-dot:nth-child(3) { background: #22c55e; }

        .preview-content {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
        }

        .stat-card {
            background: var(--bg-secondary);
            border-radius: 16px;
            padding: 1.5rem;
            text-align: center;
        }

        .stat-card i {
            font-size: 1.5rem;
            margin-bottom: 0.75rem;
        }

        .stat-card:nth-child(1) i { color: #6366f1; }
        .stat-card:nth-child(2) i { color: #10b981; }
        .stat-card:nth-child(3) i { color: #f97316; }

        .stat-card h4 {
            font-size: 1.75rem;
            font-weight: 800;
            margin-bottom: 0.25rem;
        }

        .stat-card p {
            color: var(--text-muted);
            font-size: 0.875rem;
        }

        .chart-area {
            grid-column: span 3;
            background: var(--bg-secondary);
            border-radius: 16px;
            padding: 1.5rem;
            margin-top: 1rem;
        }

        .chart-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
        }

        .chart-header h5 {
            font-size: 1rem;
            font-weight: 600;
        }

        .chart-legend {
            display: flex;
            gap: 1rem;
        }

        .legend-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.75rem;
            color: var(--text-muted);
        }

        .legend-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
        }

        .chart-visual {
            height: 120px;
            display: flex;
            align-items: flex-end;
            gap: 8px;
        }

        .chart-bar-group {
            flex: 1;
            display: flex;
            gap: 4px;
            align-items: flex-end;
        }

        .chart-bar {
            flex: 1;
            border-radius: 4px 4px 0 0;
            transition: all 0.3s ease;
        }

        .chart-bar.primary { background: var(--accent-primary); }
        .chart-bar.secondary { background: var(--accent-secondary); opacity: 0.5; }

        /* Pricing Section */
        .pricing-section {
            padding: 8rem 2rem;
            background: var(--bg-secondary);
        }

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

        .pricing-toggle {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1rem;
            margin-bottom: 4rem;
        }

        .toggle-label {
            font-weight: 500;
            color: var(--text-secondary);
        }

        .toggle-label.active {
            color: var(--text-primary);
        }

        .pricing-switch {
            width: 60px;
            height: 32px;
            background: var(--gradient-1);
            border-radius: 50px;
            position: relative;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .pricing-switch.active {
            background: var(--gradient-1);
        }

        .pricing-switch::after {
            content: '';
            position: absolute;
            width: 26px;
            height: 26px;
            background: white;
            border-radius: 50%;
            top: 3px;
            left: 3px;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-md);
        }

        .pricing-switch.active::after {
            left: 31px;
        }

        .save-badge {
            background: rgba(34, 197, 94, 0.1);
            color: #22c55e;
            padding: 0.25rem 0.75rem;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 600;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .pricing-card {
            background: var(--bg-card);
            border-radius: 24px;
            padding: 2rem;
            border: 2px solid var(--border-color);
            transition: all 0.3s ease;
            position: relative;
        }

        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-xl);
        }

        .pricing-card.popular {
            border-color: var(--accent-primary);
            box-shadow: var(--shadow-glow);
        }

        .popular-badge {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--gradient-1);
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 600;
        }

        .plan-icon {
            width: 60px;
            height: 60px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .pricing-card:nth-child(1) .plan-icon {
            background: rgba(99, 102, 241, 0.1);
            color: var(--accent-primary);
        }

        .pricing-card:nth-child(2) .plan-icon {
            background: var(--gradient-1);
            color: white;
        }

        .pricing-card:nth-child(3) .plan-icon {
            background: rgba(139, 92, 246, 0.1);
            color: var(--accent-secondary);
        }

        .plan-name {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .plan-description {
            color: var(--text-muted);
            font-size: 0.95rem;
            margin-bottom: 1.5rem;
        }

        .plan-price {
            margin-bottom: 2rem;
        }

        .price-amount {
            font-size: 3.5rem;
            font-weight: 800;
        }

        .price-currency {
            font-size: 1.5rem;
            vertical-align: top;
        }

        .price-period {
            color: var(--text-muted);
            font-size: 0.95rem;
        }

        .plan-features {
            list-style: none;
            margin-bottom: 2rem;
        }

        .plan-features li {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.75rem 0;
            border-bottom: 1px solid var(--border-color);
            font-size: 0.95rem;
        }

        .plan-features li:last-child {
            border-bottom: none;
        }

        .plan-features li i {
            color: #22c55e;
        }

        .plan-features li.disabled {
            color: var(--text-muted);
        }

        .plan-features li.disabled i {
            color: var(--text-muted);
        }

        .plan-btn {
            width: 100%;
            justify-content: center;
        }

        /* Testimonials */
        .testimonials-section {
            padding: 8rem 2rem;
        }

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

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .testimonial-card {
            background: var(--bg-card);
            border-radius: 24px;
            padding: 2rem;
            border: 1px solid var(--border-color);
            transition: all 0.3s ease;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .testimonial-rating {
            display: flex;
            gap: 0.25rem;
            margin-bottom: 1rem;
        }

        .testimonial-rating i {
            color: #fbbf24;
        }

        .testimonial-text {
            color: var(--text-secondary);
            font-size: 1rem;
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--gradient-1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 1.25rem;
        }

        .author-info h5 {
            font-weight: 600;
            margin-bottom: 0.125rem;
        }

        .author-info p {
            color: var(--text-muted);
            font-size: 0.875rem;
        }

        /* FAQ Section */
        .faq-section {
            padding: 8rem 2rem;
            background: var(--bg-secondary);
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .faq-item {
            background: var(--bg-card);
            border-radius: 16px;
            border: 1px solid var(--border-color);
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            border-color: var(--accent-primary);
        }

        .faq-question {
            padding: 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-weight: 600;
            font-size: 1.05rem;
        }

        .faq-question i {
            transition: transform 0.3s ease;
            color: var(--accent-primary);
        }

        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

        .faq-answer {
            padding: 0 1.5rem;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item.active .faq-answer {
            max-height: 200px;
            padding-bottom: 1.5rem;
        }

        .faq-answer p {
            color: var(--text-secondary);
            line-height: 1.7;
        }

        /* CTA Section */
        .cta-section {
            padding: 8rem 2rem;
            position: relative;
            overflow: hidden;
        }

        .cta-container {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .cta-bg {
            position: absolute;
            inset: 0;
            background: var(--gradient-1);
            border-radius: 40px;
            margin: 2rem;
        }

        .cta-bg::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }

        .cta-content {
            position: relative;
            z-index: 2;
            padding: 4rem 2rem;
        }

        .cta-title {
            font-size: 3rem;
            font-weight: 800;
            color: white;
            margin-bottom: 1rem;
        }

        .cta-description {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1.25rem;
            margin-bottom: 2rem;
        }

        .cta-actions {
            display: flex;
            gap: 1rem;
            justify-content: center;
        }

        .cta-btn {
            padding: 1rem 2rem;
            border-radius: 12px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            border: none;
        }

        .cta-btn-primary {
            background: white;
            color: var(--accent-primary);
        }

        .cta-btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .cta-btn-secondary {
            background: rgba(255, 255, 255, 0.2);
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.3);
        }

        .cta-btn-secondary:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-3px);
        }

        /* Footer */
        .footer {
            background: var(--bg-secondary);
            padding: 2rem;
            border-top: 1px solid var(--border-color);
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 4rem;
        }

        .footer-brand {
            max-width: 300px;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 1.5rem;
        }

        .footer-description {
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
            line-height: 1.7;
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: var(--bg-tertiary);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-secondary);
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: var(--gradient-1);
            color: white;
            transform: translateY(-3px);
        }

        .footer-column h4 {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }

        .footer-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .footer-links a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 0.95rem;
        }

        .footer-links a:hover {
            color: var(--accent-primary);
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-copyright {
            color: var(--text-muted);
            font-size: 0.875rem;
        }

        .footer-legal {
            display: flex;
            gap: 2rem;
        }

        .footer-legal a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 0.875rem;
            transition: color 0.3s ease;
        }

        .footer-legal a:hover {
            color: var(--accent-primary);
        }

        /* Mobile Menu */
        .mobile-menu {
            display: none;
            position: fixed;
            top: 80px;
            left: 0;
            right: 0;
            background: var(--bg-card);
            padding: 2rem;
            border-bottom: 1px solid var(--border-color);
            box-shadow: var(--shadow-lg);
            z-index: 999;
            transform: translateY(-100%);
            opacity: 0;
            transition: all 0.3s ease;
        }

        .mobile-menu.active {
            transform: translateY(0);
            opacity: 1;
        }

        .mobile-nav-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .mobile-nav-links a {
            display: block;
            padding: 0.75rem;
            color: var(--text-primary);
            text-decoration: none;
            font-weight: 500;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .mobile-nav-links a:hover {
            background: var(--bg-secondary);
            color: var(--accent-primary);
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .hero-title {
                font-size: 3rem;
            }

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

            .feature-card.featured {
                grid-column: span 2;
                grid-row: span 1;
            }

            .steps-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 3rem;
            }

            .steps-grid::before {
                display: none;
            }
        }

        @media (max-width: 992px) {
            .nav-links {
                display: none;
            }

            .mobile-menu-btn {
                display: flex;
            }

            .mobile-menu {
                display: block;
            }

            .hero-container {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-stats {
                justify-content: center;
            }

            .hero-description {
                margin: 0 auto 2rem;
            }

            .hero-actions {
                justify-content: center;
            }

            .floating-card {
                display: none;
            }

            .dashboard-content {
                grid-template-columns: 1fr;
            }

            .pricing-grid {
                grid-template-columns: 1fr;
                max-width: 400px;
                margin: 0 auto;
            }

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

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

            .footer-brand {
                grid-column: span 2;
            }
        }

        @media (max-width: 768px) {
            .navbar{padding: .6rem 2rem !important;}
            .logo img{height: 50px;}
            .hero-title {
                font-size: 2.25rem;
            }

            .section-title {
                font-size: 2rem;
            }

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

            .feature-card.featured {
                grid-column: span 1;
            }

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

            .preview-content {
                grid-template-columns: 1fr;
            }

            .chart-area {
                grid-column: span 1;
            }

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

            .footer-brand {
                grid-column: span 1;
                max-width: 100%;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }

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

            .cta-actions {
                flex-direction: column;
            }
        }

        @media (max-width: 480px) {
            .hero-stats {
                flex-direction: column;
                gap: 1.5rem;
            }

            .pricing-toggle {
                flex-wrap: wrap;
            }
        }