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

        :root {
            --primary: #6366f1;
            --primary-dark: #4f46e5;
            --secondary: #0ea5e9;
            --accent: #8b5cf6;
            --success: #10b981;
            --warning: #f59e0b;
            --dark: #0f172a;
            --gray-900: #111827;
            --gray-800: #1f2937;
            --gray-700: #374151;
            --gray-600: #4b5563;
            --gray-500: #6b7280;
            --gray-400: #9ca3af;
            --gray-300: #d1d5db;
            --gray-200: #e5e7eb;
            --gray-100: #f3f4f6;
            --gray-50: #f9fafb;
            --white: #ffffff;
        }

        /* Custom Cursor */
        .cursor {
            width: 20px;
            height: 20px;
            border: 2px solid var(--primary);
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 99999;
            transition: transform 0.15s ease, background-color 0.15s ease, border-color 0.15s ease;
            transform: translate(-50%, -50%);
        }

        .cursor-dot {
            width: 8px;
            height: 8px;
            background: var(--primary);
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 99999;
            transform: translate(-50%, -50%);
        }

        .cursor.hover {
            transform: translate(-50%, -50%) scale(1.5);
            background: rgba(99, 102, 241, 0.1);
            border-color: var(--accent);
        }

        .cursor.click {
            transform: translate(-50%, -50%) scale(0.8);
            background: rgba(99, 102, 241, 0.3);
        }

        body {
            font-family: 'Inter', sans-serif;
            background: var(--white);
            color: var(--gray-800);
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* Smooth Scroll */
        html {
            scroll-behavior: smooth;
        }

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

        ::-webkit-scrollbar-track {
            background: var(--gray-100);
        }

        ::-webkit-scrollbar-thumb {
            background: linear-gradient(180deg, var(--primary), var(--accent));
            border-radius: 5px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(180deg, var(--primary-dark), var(--accent));
        }

        /* Animated Background */
        .animated-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
        }

        .animated-bg::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.03) 0%, transparent 50%),
                        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.03) 0%, transparent 50%),
                        radial-gradient(circle at 40% 40%, rgba(14, 165, 233, 0.02) 0%, transparent 50%);
            animation: floatBg 20s ease-in-out infinite;
        }

        @keyframes floatBg {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            25% { transform: translate(2%, 2%) rotate(1deg); }
            50% { transform: translate(0, 4%) rotate(0deg); }
            75% { transform: translate(-2%, 2%) rotate(-1deg); }
        }

        /* Floating Orbs */
        .orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.5;
            animation: float 8s ease-in-out infinite;
        }

        .orb-1 {
            width: 400px;
            height: 400px;
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(139, 92, 246, 0.1));
            top: 10%;
            right: 10%;
            animation-delay: 0s;
        }

        .orb-2 {
            width: 300px;
            height: 300px;
            background: linear-gradient(135deg, rgba(14, 165, 233, 0.12), rgba(99, 102, 241, 0.08));
            bottom: 20%;
            left: 5%;
            animation-delay: -3s;
        }

        .orb-3 {
            width: 250px;
            height: 250px;
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.08));
            top: 50%;
            left: 40%;
            animation-delay: -5s;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) scale(1); }
            25% { transform: translate(30px, -30px) scale(1.05); }
            50% { transform: translate(0, -50px) scale(1); }
            75% { transform: translate(-30px, -30px) scale(0.95); }
        }

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

        .navbar.scrolled {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(20px);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
            border-bottom: 1px solid rgba(99, 102, 241, 0.1);
        }

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

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }

        .logo img {
            height: 45px;
            width: auto;
            transition: transform 0.3s ease;
        }

        .logo:hover img {
            transform: scale(1.05);
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            align-items: center;
        }

        .nav-link {
            font-family: 'Raleway', sans-serif;
            text-decoration: none;
            color: var(--gray-600);
            font-weight: 600;
            font-size: 1rem;
            line-height: 1.8;
            letter-spacing: 0.3px;
            position: relative;
            padding: 0.5rem 0;
            transition: color 0.3s ease;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            transition: width 0.3s ease;
        }

        .nav-link:hover {
            color: var(--primary);
        }

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

        .nav-cta {
            display: flex;
            gap: 1rem;
        }

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

        .btn-ghost {
            color: var(--gray-700);
            background: transparent;
        }

        .btn-ghost:hover {
            color: var(--primary);
            background: rgba(99, 102, 241, 0.05);
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: white;
            box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(99, 102, 241, 0.4);
        }

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

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

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

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

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

        .hero-content {
            z-index: 10;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
            border: 1px solid rgba(99, 102, 241, 0.2);
            border-radius: 50px;
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 1.5rem;
            animation: fadeInUp 0.8s ease forwards;
        }

        .hero-badge i {
            width: 16px;
            height: 16px;
        }

        .pulse-dot {
            width: 8px;
            height: 8px;
            background: var(--success);
            border-radius: 50%;
            animation: pulse 2s ease infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(1.2); }
        }

        .hero-title {
            font-size: 4rem;
            font-weight: 900;
            line-height: 1.1;
            font-family: 'Kaushan Script', cursive;
            margin-bottom: 1.5rem;
            color: var(--gray-900);
            animation: fadeInUp 0.8s ease 0.1s forwards;
            opacity: 0;
        }

        .hero-title .gradient-text {
            background: linear-gradient(135deg, var(--primary), var(--accent), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            background-size: 200% auto;
            animation: gradientFlow 3s ease infinite;
        }

        @keyframes gradientFlow {
            0%, 100% { background-position: 0% center; }
            50% { background-position: 100% center; }
        }

        .hero-subtitle {
            font-family: 'Raleway', sans-serif;
            font-size: 1.05rem;
            line-height: 1.8;
            color: var(--gray-600);
            margin-bottom: 2rem;
            max-width: 540px;
            text-align: justify;
            text-justify: inter-word;
            letter-spacing: 0.3px;
            animation: fadeInUp 0.8s ease 0.2s forwards;
            opacity: 0;
        }

        .hero-features {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-bottom: 2.5rem;
            animation: fadeInUp 0.8s ease 0.3s forwards;
            opacity: 0;
        }

        .hero-feature {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            background: var(--white);
            border: 1px solid var(--gray-200);
            border-radius: 50px;
            font-size: 0.9rem;
            color: var(--gray-700);
            transition: all 0.3s ease;
        }

        .hero-feature:hover {
            border-color: var(--primary);
            background: rgba(99, 102, 241, 0.05);
            transform: translateY(-2px);
        }

        .hero-feature i {
            width: 18px;
            height: 18px;
            color: var(--primary);
        }

        .hero-actions {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            animation: fadeInUp 0.8s ease 0.4s forwards;
            opacity: 0;
        }

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

        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .stat-label {
            font-size: 0.9rem;
            color: var(--gray-500);
            font-weight: 500;
        }

        /* Hero Visual */
        .hero-visual {
            position: relative;
            z-index: 10;
            animation: fadeInRight 1s ease 0.3s forwards;
            opacity: 0;
        }

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

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

        .dashboard-preview {
            position: relative;
            background: var(--white);
            border-radius: 24px;
            box-shadow: 0 25px 80px rgba(0, 0, 0, 0.08),
                        0 10px 30px rgba(99, 102, 241, 0.1);
            border: 1px solid rgba(99, 102, 241, 0.1);
            overflow: hidden;
            transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
            transition: transform 0.5s ease;
        }

        .dashboard-preview:hover {
            transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
        }

        .dashboard-header {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            padding: 1rem 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .dashboard-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
        }

        .dashboard-dot:first-child { background: #ff6b6b; }
        .dashboard-dot:nth-child(2) { background: #ffd93d; }
        .dashboard-dot:nth-child(3) { background: #6bcb77; }

        .dashboard-body {
            padding: 1.5rem;
            background: var(--gray-50);
        }

        .dashboard-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .dashboard-card {
            background: var(--white);
            padding: 1rem;
            border-radius: 12px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .card-icon {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 0.75rem;
        }

        .card-icon.sales { background: rgba(16, 185, 129, 0.1); color: var(--success); }
        .card-icon.orders { background: rgba(99, 102, 241, 0.1); color: var(--primary); }
        .card-icon.revenue { background: rgba(139, 92, 246, 0.1); color: var(--accent); }

        .card-icon i {
            width: 20px;
            height: 20px;
        }

        .card-value {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--gray-900);
        }

        .card-label {
            font-size: 0.75rem;
            color: var(--gray-500);
        }

        .dashboard-chart {
            background: var(--white);
            padding: 1rem;
            border-radius: 12px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .chart-bars {
            display: flex;
            align-items: flex-end;
            gap: 8px;
            height: 80px;
            margin-top: 0.5rem;
        }

        .chart-bar {
            flex: 1;
            background: linear-gradient(180deg, var(--primary), var(--accent));
            border-radius: 4px 4px 0 0;
            animation: growUp 1s ease forwards;
            transform-origin: bottom;
        }

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

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

        /* Floating Elements */
        .floating-card {
            position: absolute;
            background: var(--white);
            padding: 1rem 1.25rem;
            border-radius: 16px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            gap: 12px;
            animation: floatCard 3s ease-in-out infinite;
            z-index: 20;
        }

        .floating-card.ai-card {
            top: 10%;
            right: -30px;
            animation-delay: 0s;
        }

        .floating-card.report-card {
            bottom: 20%;
            left: -40px;
            animation-delay: -1.5s;
        }

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

        .floating-icon {
            width: 45px;
            height: 45px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .floating-icon.ai { background: linear-gradient(135deg, var(--primary), var(--accent)); color: white; }
        .floating-icon.report { background: linear-gradient(135deg, var(--success), #34d399); color: white; }

        .floating-icon i {
            width: 22px;
            height: 22px;
        }

        .floating-text h4 {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--gray-900);
        }

        .floating-text p {
            font-size: 0.75rem;
            color: var(--gray-500);
        }

        /* Section Styles */
        section {
            padding: 6rem 2rem;
            position: relative;
        }

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

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

        .section-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
            border: 1px solid rgba(99, 102, 241, 0.2);
            border-radius: 50px;
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .section-title {
            font-size: 3rem;
            font-weight: 800;
            color: var(--gray-900);
            margin-bottom: 1rem;
            line-height: 1.2;
            font-family: 'Kaushan Script', cursive;
        }

       .section-subtitle {
            font-family: 'Raleway', sans-serif;
            font-size: 1rem;
            line-height: 1.8;
            color: var(--gray-600);
            text-align: center;
            text-justify: inter-word;
            letter-spacing: 0.3px;
            font-weight: 600;
            position: relative;
            padding-top: 2rem;
        }
        
        .section-subtitle::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.5), transparent);
            border-radius: 50%;
        }

        /* Features Section */
        .features-section {
            background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
        }

        .feature-card {
            background: var(--white);
            padding: 2rem;
            border-radius: 20px;
            border: 1px solid var(--gray-200);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

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

        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(99, 102, 241, 0.15);
            border-color: transparent;
        }

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

        .feature-icon {
            width: 60px;
            height: 60px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.25rem;
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
            color: var(--primary);
            transition: all 0.4s ease;
        }

        .feature-card:hover .feature-icon {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: white;
            transform: scale(1.1) rotate(5deg);
        }

        .feature-icon i {
            width: 28px;
            height: 28px;
        }

        .feature-title {
            font-family: 'Raleway', sans-serif;
            font-size: 0.95rem;
            line-height: 1.8;
            font-weight: 600;
            color: var(--gray-900);
            letter-spacing: 0.3px;
            margin-bottom: 0.75rem;
            text-transform: uppercase;
        }

        .feature-description {
             font-family: 'Raleway', sans-serif;
             font-size: 0.85rem;
             line-height: 1.8;
             color: var(--gray-600);
             text-align: justify;
             text-justify: inter-word;
             letter-spacing: 0.3px;
         }

        /* AI Section */
        .ai-section {
            background: var(--white);
            overflow: hidden;
        }

        .ai-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
        }

        .ai-content {
            padding-right: 2rem;
        }

        .ai-features {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .ai-feature-item {
            display: flex;
            gap: 1rem;
            padding: 1.5rem;
            background: var(--gray-50);
            border-radius: 16px;
            border: 1px solid var(--gray-200);
            transition: all 0.3s ease;
        }

        .ai-feature-item:hover {
            background: var(--white);
            border-color: var(--primary);
            box-shadow: 0 10px 30px rgba(99, 102, 241, 0.1);
            transform: translateX(10px);
        }

        .ai-feature-icon {
            width: 50px;
            height: 50px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: white;
            flex-shrink: 0;
        }

        .ai-feature-icon i {
            width: 24px;
            height: 24px;
        }

        .ai-feature-content h4 {
            font-size: 1rem;
            font-weight: 600;
            color: var(--gray-900);
            margin-bottom: 0.25rem;
        }

        .ai-feature-content p {
            font-size: 0.9rem;
            color: var(--gray-600);
        }

        .ai-visual {
            position: relative;
        }

        .ai-chat-demo {
            background: var(--white);
            border-radius: 24px;
            box-shadow: 0 25px 80px rgba(0, 0, 0, 0.08);
            border: 1px solid var(--gray-200);
            overflow: hidden;
        }

        .chat-header {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            padding: 1rem 1.5rem;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .chat-avatar {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }

        .chat-avatar i {
            width: 22px;
            height: 22px;
        }

        .chat-info h4 {
            color: white;
            font-size: 0.95rem;
            font-weight: 600;
        }

        .chat-info p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.75rem;
        }

        .chat-messages {
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
            gap: 1rem;
            background: var(--gray-50);
        }

        .chat-message {
            max-width: 80%;
            padding: 1rem;
            border-radius: 16px;
            font-size: 0.9rem;
            animation: messageIn 0.5s ease forwards;
            opacity: 0;
        }

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

        .chat-message.user {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: white;
            align-self: flex-end;
            border-bottom-right-radius: 4px;
            animation-delay: 0.2s;
        }

        .chat-message.ai {
            background: var(--white);
            color: var(--gray-800);
            border: 1px solid var(--gray-200);
            align-self: flex-start;
            border-bottom-left-radius: 4px;
            animation-delay: 0.6s;
        }

        .chat-message.ai .typing {
            display: flex;
            gap: 4px;
        }

        .typing-dot {
            width: 8px;
            height: 8px;
            background: var(--gray-400);
            border-radius: 50%;
            animation: typingBounce 1s ease infinite;
        }

        .typing-dot:nth-child(2) { animation-delay: 0.1s; }
        .typing-dot:nth-child(3) { animation-delay: 0.2s; }

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

        /* Modules Section */
        .modules-section {
            background: var(--gray-50);
        }

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

        .module-card {
            background: var(--white);
            padding: 2.5rem;
            border-radius: 24px;
            border: 1px solid var(--gray-200);
            text-align: center;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .module-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 0;
            background: linear-gradient(180deg, transparent, rgba(99, 102, 241, 0.05));
            transition: height 0.4s ease;
        }

        .module-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 60px rgba(99, 102, 241, 0.12);
            border-color: var(--primary);
        }

        .module-card:hover::after {
            height: 100%;
        }

        .module-icon {
            width: 80px;
            height: 80px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            position: relative;
            z-index: 1;
        }

        .module-icon.sales { background: linear-gradient(135deg, #10b981, #34d399); }
        .module-icon.purchase { background: linear-gradient(135deg, #6366f1, #8b5cf6); }
        .module-icon.inventory { background: linear-gradient(135deg, #f59e0b, #fbbf24); }
        .module-icon.accounting { background: linear-gradient(135deg, #0ea5e9, #38bdf8); }
        .module-icon.reports { background: linear-gradient(135deg, #ec4899, #f472b6); }
        .module-icon.tax { background: linear-gradient(135deg, #ef4444, #f87171); }

        .module-icon i {
            width: 36px;
            height: 36px;
            color: white;
        }

        .module-title {
            font-family: 'Raleway', sans-serif;
            font-size: 1.1rem;
            font-weight: 900;
            text-transform: uppercase;
            color: var(--gray-900);
            margin-bottom: 0.75rem;
            position: relative;
            z-index: 1;
        }

        .module-description {
            font-family: 'Raleway', sans-serif;
            font-size: 0.85rem;
            line-height: 1.8;
            color: var(--gray-600);
            text-align: justify;
            text-justify: inter-word;
            letter-spacing: 0.3px;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 1;
        }

        .module-features {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            justify-content: center;
            position: relative;
            z-index: 1;
        }

        .module-tag {
            padding: 6px 12px;
            background: var(--gray-100);
            border-radius: 50px;
            font-size: 0.75rem;
            color: var(--gray-600);
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .module-card:hover .module-tag {
            background: rgba(99, 102, 241, 0.1);
            color: var(--primary);
        }

        /* Reports Section */
        .reports-section {
            background: var(--white);
            position: relative;
            overflow: hidden;
        }

        .reports-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
        }

        .reports-visual {
            position: relative;
        }

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

        .report-card {
            background: var(--white);
            padding: 1.25rem;
            border-radius: 16px;
            border: 1px solid var(--gray-200);
            transition: all 0.3s ease;
        }

        .report-card:hover {
            border-color: var(--primary);
            box-shadow: 0 10px 30px rgba(99, 102, 241, 0.1);
            transform: translateY(-5px);
        }

        .report-card:nth-child(2) {
            transform: translateY(30px);
        }

        .report-card:nth-child(4) {
            transform: translateY(30px);
        }

        .report-card:nth-child(2):hover,
        .report-card:nth-child(4):hover {
            transform: translateY(25px);
        }

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

        .report-icon {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .report-icon.blue { background: rgba(99, 102, 241, 0.1); color: var(--primary); }
        .report-icon.green { background: rgba(16, 185, 129, 0.1); color: var(--success); }
        .report-icon.purple { background: rgba(139, 92, 246, 0.1); color: var(--accent); }
        .report-icon.orange { background: rgba(245, 158, 11, 0.1); color: var(--warning); }

        .report-icon i {
            width: 20px;
            height: 20px;
        }

        .report-badge {
            padding: 4px 10px;
            border-radius: 50px;
            font-size: 0.7rem;
            font-weight: 600;
        }

        .report-badge.pdf { background: rgba(239, 68, 68, 0.1); color: #ef4444; }
        .report-badge.excel { background: rgba(16, 185, 129, 0.1); color: #10b981; }
        .report-badge.print { background: rgba(99, 102, 241, 0.1); color: var(--primary); }

        .report-title {
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--gray-900);
            margin-bottom: 0.5rem;
        }

        .report-meta {
            font-size: 0.8rem;
            color: var(--gray-500);
        }

        .reports-content {
            padding-left: 2rem;
        }

        .report-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .report-stat {
            padding: 1.5rem;
            background: var(--gray-50);
            border-radius: 16px;
            border: 1px solid var(--gray-200);
        }

        .report-stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .report-stat-label {
            font-size: 0.9rem;
            color: var(--gray-600);
        }

        /* Pricing Section */
        .pricing-section {
            background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
            position: relative;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
            align-items: start;
        }

        .pricing-card {
            background: var(--white);
            border-radius: 24px;
            border: 2px solid var(--gray-200);
            padding: 2.5rem;
            position: relative;
            transition: all 0.4s ease;
            overflow: hidden;
        }

        .pricing-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gray-300);
            transition: background 0.3s ease;
        }

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

        .pricing-card.featured {
            border-color: var(--primary);
            transform: scale(1.05);
            z-index: 10;
        }

        .pricing-card.featured::before {
            background: linear-gradient(90deg, var(--primary), var(--accent));
        }

        .pricing-card.featured:hover {
            transform: scale(1.05) translateY(-10px);
        }

        .popular-badge {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            padding: 6px 12px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: white;
            border-radius: 50px;
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .pricing-header {
            text-align: center;
            margin-bottom: 2rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid var(--gray-200);
        }

        .pricing-icon {
            width: 70px;
            height: 70px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.25rem;
            background: var(--gray-100);
            transition: all 0.3s ease;
        }

        .pricing-card:hover .pricing-icon,
        .pricing-card.featured .pricing-icon {
            background: linear-gradient(135deg, var(--primary), var(--accent));
        }

        .pricing-card:hover .pricing-icon i,
        .pricing-card.featured .pricing-icon i {
            color: white;
        }

        .pricing-icon i {
            width: 32px;
            height: 32px;
            color: var(--gray-600);
            transition: color 0.3s ease;
        }

        .pricing-name {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--gray-900);
            margin-bottom: 0.5rem;
        }

        .pricing-tagline {
            font-size: 0.9rem;
            color: var(--gray-500);
        }

        .pricing-amount {
            margin: 1.5rem 0;
        }

        .pricing-price {
            font-size: 3rem;
            font-weight: 800;
            color: var(--gray-900);
            line-height: 1;
        }

        .pricing-price.free {
            background: linear-gradient(135deg, var(--success), #34d399);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .pricing-price-note {
            font-size: 0.85rem;
            color: var(--gray-500);
            margin-top: 0.5rem;
        }

        .pricing-server {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 12px;
            background: rgba(16, 185, 129, 0.1);
            color: var(--success);
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 600;
            margin-top: 0.5rem;
        }

        .pricing-server i {
            width: 14px;
            height: 14px;
        }

        .pricing-features {
            margin-bottom: 2rem;
        }

        .pricing-feature {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 0.75rem 0;
            border-bottom: 1px solid var(--gray-100);
        }

        .pricing-feature:last-child {
            border-bottom: none;
        }

        .pricing-feature i {
            width: 20px;
            height: 20px;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .pricing-feature.included i {
            color: var(--success);
        }

        .pricing-feature.not-included i {
            color: var(--gray-300);
        }

        .pricing-feature.not-included span {
            color: var(--gray-400);
            text-decoration: line-through;
        }

        .pricing-feature span {
            font-size: 0.9rem;
            color: var(--gray-700);
        }

        .pricing-feature .highlight {
            font-weight: 600;
            color: var(--primary);
        }

        .pricing-cta {
            width: 100%;
            padding: 1rem;
            border-radius: 12px;
            font-weight: 600;
            font-size: 1rem;
            border: none;
            cursor: none;
            transition: all 0.3s ease;
        }

        .pricing-card:not(.featured) .pricing-cta {
            background: var(--gray-100);
            color: var(--gray-700);
        }

        .pricing-card:not(.featured):hover .pricing-cta {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: white;
        }

        .pricing-card.featured .pricing-cta {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: white;
            box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
        }

        .pricing-card.featured .pricing-cta:hover {
            box-shadow: 0 12px 35px rgba(99, 102, 241, 0.4);
            transform: translateY(-2px);
        }

        /* Trust Section */
        .trust-section {
            background: var(--white);
            padding: 4rem 2rem;
        }

        .trust-content {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 4rem;
            flex-wrap: wrap;
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 12px;
            color: var(--gray-600);
            font-weight: 500;
        }

        .trust-item i {
            width: 24px;
            height: 24px;
            color: var(--success);
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            padding: 6rem 2rem;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 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.05'%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-container {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .cta-title {
            font-size: 3rem;
            font-weight: 800;
            color: white;
            margin-bottom: 1.5rem;
            font-family: 'Kaushan Script', cursive;
        }

       .cta-subtitle {
            font-family: 'Raleway', sans-serif;
            font-size: 1rem;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.9);
            text-align: center;
            text-justify: inter-word;
            letter-spacing: 0.3px;
            font-weight: 600;
            position: relative;
            padding-top: 2rem;
            margin-bottom: 2.5rem;
        }
        
        .cta-subtitle::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
            border-radius: 50%;
        }

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

        .btn-white {
            background: white;
            color: var(--primary);
            padding: 1rem 2.5rem;
            font-weight: 600;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

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

        .btn-outline-white {
            border: 2px solid rgba(255, 255, 255, 0.5);
            color: white;
            padding: 1rem 2.5rem;
            font-weight: 600;
            background: transparent;
        }

        .btn-outline-white:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: white;
        }

        /* Footer */
        .footer {
            background: var(--gray-900);
            color: var(--gray-400);
            padding: 5rem 2rem 2rem;
        }

        .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: 320px;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 1.25rem;
        }

        .footer-logo img {
            height: 40px;
            width: auto;
            filter: brightness(0) invert(1);
        }

        .footer-logo span {
            font-size: 1.5rem;
            font-weight: 800;
            color: white;
        }

        .footer-description {
            font-size: 0.9rem;
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .footer-social {
            display: flex;
            gap: 12px;
        }

        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.05);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gray-400);
            text-decoration: none;
            transition: all 0.3s ease;
        }

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

        .social-link i {
            width: 20px;
            height: 20px;
        }

        .footer-column h4 {
            color: white;
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 1.25rem;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.75rem;
        }

        .footer-links a {
            color: var(--gray-400);
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .footer-links a:hover {
            color: white;
            transform: translateX(5px);
        }

        .footer-bottom {
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .footer-copyright {
            font-size: 0.875rem;
        }

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

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

        .footer-legal a:hover {
            color: white;
        }

        /* Animations */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

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

        .delay-100 { transition-delay: 0.1s; }
        .delay-200 { transition-delay: 0.2s; }
        .delay-300 { transition-delay: 0.3s; }
        .delay-400 { transition-delay: 0.4s; }

        /* Mobile Menu */
        .mobile-menu-btn {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            padding: 10px;
            cursor: none;
        }

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

        /* Responsive */
        @media (max-width: 1200px) {
            .pricing-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .pricing-card.featured {
                transform: scale(1);
                order: -1;
            }
            
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 1024px) {
            .hero-container {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .hero-content {
                max-width: 700px;
                margin: 0 auto;
            }
            
            .hero-subtitle {
                margin-left: auto;
                margin-right: auto;
            }
            
            .hero-features {
                justify-content: center;
            }
            
            .hero-actions {
                justify-content: center;
            }
            
            .hero-stats {
                justify-content: center;
            }
            
            .hero-visual {
                max-width: 600px;
                margin: 0 auto;
            }
            
            .ai-container,
            .reports-container {
                grid-template-columns: 1fr;
            }
            
            .ai-content,
            .reports-content {
                padding: 0;
                text-align: center;
            }
            
            .modules-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .footer-brand {
                grid-column: span 2;
                max-width: none;
            }
        }

        @media (max-width: 768px) {
            .cursor, .cursor-dot {
                display: none;
            }
            
            * {
                cursor: auto;
            }
            
            .nav-links,
            .nav-cta {
                display: none;
            }
            
            .mobile-menu-btn {
                display: flex;
            }
            
            .hero-title {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .features-grid,
            .modules-grid {
                grid-template-columns: 1fr;
            }
            
            .pricing-grid {
                grid-template-columns: 1fr;
            }
            
            .pricing-card.featured {
                order: 0;
            }
            
            .reports-showcase {
                grid-template-columns: 1fr;
            }
            
            .report-card:nth-child(2),
            .report-card:nth-child(4) {
                transform: none;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-brand {
                grid-column: auto;
            }
            
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
            
            .cta-title {
                font-size: 2rem;
            }
        }