 @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');
        
        :root {
            --atoll: #0a5a78;
            --ecru-white: #fbfbf5;
            --fern: #5ab453;
            --atlantis: #92c933;
            --shadow-green: #99bac0;
            --deco: #cddf8f;
            --botticelli: #c9e0e5;
            --beryl-green: #d5e5c3;
            --waterloo: #7e8494;
            --gray-suit: #bcb9c6;
            --primary-purple: #7512A2;
            --secondary-blue: #5D00F7;
            --accent-pink: #FF31AB;
            --accent-orange: #FF6F05;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--ecru-white);
            color: var(--waterloo);
        }
        
        /* Custom animations */
        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            25% { transform: translateY(-15px) rotate(1deg); }
            75% { transform: translateY(-5px) rotate(-1deg); }
        }
        
        @keyframes pulse-glow {
            0%, 100% { 
                box-shadow: 0 0 20px rgba(117, 18, 162, 0.3), 
                           0 0 40px rgba(93, 0, 247, 0.1); 
            }
            50% { 
                box-shadow: 0 0 30px rgba(117, 18, 162, 0.5), 
                           0 0 60px rgba(93, 0, 247, 0.2); 
            }
        }
        
        @keyframes slide-up {
            from { opacity: 0; transform: translateY(40px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        @keyframes wave {
            0%, 100% { transform: translateX(0) translateY(0); }
            25% { transform: translateX(-10px) translateY(-5px); }
            75% { transform: translateX(10px) translateY(5px); }
        }

        @keyframes fade-in-up {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes bounce-in {
            0% { opacity: 0; transform: scale(0.8); }
            50% { transform: scale(1.05); }
            100% { opacity: 1; transform: scale(1); }
        }

        @keyframes cart-bounce {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }

        @keyframes data-flow {
            0% { transform: translateX(-100%) scale(0); opacity: 0; }
            20% { opacity: 1; transform: scale(1); }
            80% { opacity: 1; }
            100% { transform: translateX(300%) scale(0); opacity: 0; }
        }
        
        .float-animation {
            animation: float 8s ease-in-out infinite;
        }
        
        .pulse-glow {
            animation: pulse-glow 3s ease-in-out infinite;
        }
        
        .slide-up {
            animation: slide-up 0.8s ease-out forwards;
        }
        
        .wave-animation {
            animation: wave 6s ease-in-out infinite;
        }

        .fade-in-up {
            animation: fade-in-up 0.8s ease-out forwards;
        }

        .bounce-in {
            animation: bounce-in 0.6s ease-out forwards;
        }

        .cart-bounce {
            animation: cart-bounce 2s ease-in-out infinite;
        }

        .data-flow {
            animation: data-flow 4s ease-in-out infinite;
        }
        
        /* Gradient backgrounds */
        .gradient-bg {
            background: linear-gradient(135deg, var(--atoll) 0%, var(--fern) 50%, var(--atlantis) 100%);
        }
        
        .gradient-bg-soft {
            background: linear-gradient(135deg, var(--botticelli) 0%, var(--beryl-green) 50%, var(--deco) 100%);
        }
        
        .text-gradient {
            background: linear-gradient(135deg, var(--atoll) 0%, var(--fern) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        /* E-commerce specific gradients */
        .gradient-bg-ecommerce {
            background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-blue) 50%, var(--accent-pink) 100%);
        }
        
        .gradient-bg-ecommerce-soft {
            background: linear-gradient(135deg, rgba(117, 18, 162, 0.1) 0%, rgba(93, 0, 247, 0.1) 50%, rgba(255, 49, 171, 0.1) 100%);
        }
        
        .text-gradient-ecommerce {
            background: linear-gradient(135deg, var(--primary-purple) 0%, var(--accent-pink) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        /* Glassmorphism effect */
        .glass {
            background: rgba(251, 251, 245, 0.7);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(153, 186, 192, 0.3);
        }
        
        .glass-green {
            background: rgba(213, 229, 195, 0.4);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(146, 201, 51, 0.2);
        }
        
        .glass-purple {
            background: rgba(117, 18, 162, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(117, 18, 162, 0.2);
        }
        
        /* Custom scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }
        
        ::-webkit-scrollbar-track {
            background: var(--ecru-white);
            border-radius: 6px;
        }
        
        ::-webkit-scrollbar-thumb {
            background: linear-gradient(var(--atoll), var(--fern));
            border-radius: 6px;
        }
        
        ::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(var(--fern), var(--atlantis));
        }
        
        /* Button styles */
        .btn-primary {
            background: linear-gradient(135deg, var(--atoll), var(--fern));
            color: white;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .btn-primary:hover {
            transform: translateY(-2px) scale(1.05);
            box-shadow: 0 10px 30px rgba(10, 90, 120, 0.3);
        }
        
        .btn-secondary {
            border: 2px solid var(--fern);
            color: var(--fern);
            transition: all 0.3s ease;
        }
        
        .btn-secondary:hover {
            background: var(--fern);
            color: white;
            transform: translateY(-2px);
        }
        
        /* E-commerce specific button styles */
        .btn-primary-ecommerce {
            background: linear-gradient(135deg, var(--primary-purple), var(--accent-pink));
            color: white;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .btn-primary-ecommerce:hover {
            transform: translateY(-2px) scale(1.05);
            box-shadow: 0 10px 30px rgba(117, 18, 162, 0.3);
        }
        
        .btn-secondary-ecommerce {
            border: 2px solid var(--primary-purple);
            color: var(--primary-purple);
            transition: all 0.3s ease;
        }
        
        .btn-secondary-ecommerce:hover {
            background: var(--primary-purple);
            color: white;
            transform: translateY(-2px);
        }
        
        /* Navigation styles */
        .nav-link {
            position: relative;
            transition: all 0.3s ease;
            padding-bottom: 2px;
        }
        
        .nav-link::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--fern), var(--atlantis));
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .nav-link:hover::before {
            width: 100%;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            top: -5px;
            left: 50%;
            width: 6px;
            height: 6px;
            background: var(--atlantis);
            border-radius: 50%;
            opacity: 0;
            transform: translateX(-50%) translateY(10px);
            transition: all 0.3s ease;
        }
        
        .nav-link:hover::after {
            opacity: 1;
            transform: translateX(-50%) translateY(0);
        }
        
        .nav-link:hover {
            color: var(--fern);
            transform: translateY(-1px);
        }

        /* Mobile menu styles */
        .mobile-menu {
            transform: translateX(100%);
            transition: transform 0.3s ease;
            background: white;
            backdrop-filter: none;
        }

        .mobile-menu.open {
            transform: translateX(0);
        }

        .hamburger {
            display: flex;
            flex-direction: column;
            width: 24px;
            height: 18px;
            cursor: pointer;
        }

        .hamburger span {
            width: 100%;
            height: 2px;
            background: var(--atoll);
            transition: all 0.3s ease;
            margin: 2px 0;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 1px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -4px);
        }

        /* Card hover effects */
        .hover-card {
            transition: all 0.3s ease;
        }

        .hover-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(10, 90, 120, 0.15);
        }

        /* E-commerce specific styles */
        .product-card {
            background: white;
            border-radius: 1rem;
            padding: 1.5rem;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .product-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
            border-color: var(--accent-pink);
        }

        .metric-card {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
            backdrop-filter: blur(10px);
            border: 1px solid rgba(10, 90, 120, 0.2);
            border-radius: 1rem;
            padding: 1.5rem;
            text-align: center;
            transition: all 0.3s ease;
        }

        .metric-card:hover {
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 15px 30px rgba(10, 90, 120, 0.2);
        }

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

        /* Shopping cart animation */
        .shopping-cart {
            position: relative;
            display: inline-block;
        }

        .shopping-cart::after {
            content: '';
            position: absolute;
            top: -5px;
            right: -5px;
            width: 8px;
            height: 8px;
            background: var(--accent-orange);
            border-radius: 50%;
            animation: pulse-glow 2s ease-in-out infinite;
        }

        /* Responsive typography */
        @media (max-width: 640px) {
            .text-hero {
                font-size: 2rem;
                line-height: 1.15;
            }
            
            .text-hero-sub {
                font-size: 1.125rem;
            }
			.metric-number{
                font-size: 1.5rem;
            }
        }

        @media (min-width: 641px) and (max-width: 768px) {
            .text-hero {
                font-size: 2.5rem;
                line-height: 1.1;
            }
            
            .text-hero-sub {
                font-size: 1.25rem;
            }
        }

        @media (min-width: 769px) {
            .text-hero {
                font-size: 3rem;
                line-height: 1.1;
            }
            
            .text-hero-sub {
                font-size: 1.5rem;
            }
        }

        @media (min-width: 1024px) {
            .text-hero {
                font-size: 3.5rem;
                line-height: 1.1;
            }
        }

        @media (min-width: 1280px) {
            .text-hero {
                font-size: 4rem;
                line-height: 1.1;
            }
        }

        /* Card hover effects for mobile */
        @media (hover: none) {
            .hover-card:active {
                transform: scale(0.98);
            }
        }