        :root {
            --primary: #4F46E5;
            --secondary: #06B6D4;
            --accent: #10B981;
            --purple: #8B5CF6;
            --pink: #EC4899;
            --dark: #0F172A;
            --light: #F8FAFC;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            overflow-x: hidden;
            margin: 0;
            padding: 0;
        }

        /* Navigation */
        .navbar {
            background: rgba(255, 255, 255, 0.95) !important;
            backdrop-filter: blur(20px);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        .navbar-brand {
            font-size: 1.75rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--primary) 0%, var(--purple) 50%, var(--pink) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav-link {
            font-weight: 600;
            color: var(--dark) !important;
            margin-left: 100px;
        }

        .btn-gradient {
            background: linear-gradient(135deg, var(--primary), var(--purple));
            border: none;
            color: white;
            font-weight: 700;
            padding: 0.75rem 1.75rem;
            border-radius: 50px;
            transition: all 0.3s;
            box-shadow: 0 4px 20px rgba(79, 70, 229, 0.3);
        }

        .btn-gradient:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(79, 70, 229, 0.4);
            color: white;
        }

        /* Hero Section */
        #home {
            background: 
                linear-gradient(90deg, 
                    rgba(255, 255, 255, 0.95) 0%,
                    rgba(255, 255, 255, 0.85) 25%,
                    rgba(255, 255, 255, 0.4) 45%,
                    transparent 60%
                ),
                radial-gradient(ellipse at 85% 20%, rgba(139, 92, 246, 0.4) 0%, transparent 50%),
                radial-gradient(ellipse at 90% 40%, rgba(124, 58, 237, 0.35) 0%, transparent 50%),
                radial-gradient(ellipse at 75% 60%, rgba(147, 51, 234, 0.3) 0%, transparent 50%),
                linear-gradient(135deg, 
                    #ffffff 0%, 
                    #faf5ff 20%,
                    #f3e8ff 40%,
                    #e9d5ff 60%, 
                    #d8b4fe 80%,
                    #c084fc 100%
                );
            padding: 8rem 0 5rem;
            position: relative;
            overflow: hidden;
            min-height: 90vh;
            display: flex;
            align-items: center;
        }

        /* Purple grain effect on right side - More visible */
        #home::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 70%;
            height: 100%;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='grain'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='2.5' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23grain)' opacity='1'/%3E%3C/svg%3E");
            opacity: 0.5;
            pointer-events: none;
            mix-blend-mode: overlay;
            mask-image: radial-gradient(ellipse at center right, black 0%, transparent 100%);
            -webkit-mask-image: radial-gradient(ellipse at center right, black 0%, transparent 100%);
        }

        /* Additional grain layer for more texture */
        #home::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 70%;
            height: 100%;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 300 300' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='3.8' numOctaves='5' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.5'/%3E%3C/svg%3E");
            opacity: 0.35;
            pointer-events: none;
            mix-blend-mode: soft-light;
            mask-image: radial-gradient(ellipse at center right, black 20%, transparent 90%);
            -webkit-mask-image: radial-gradient(ellipse at center right, black 20%, transparent 90%);
        }

        /* Noise overlay */
        .hero-noise-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='4.5' numOctaves='6' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='1'/%3E%3C/svg%3E");
            opacity: 0.08;
            pointer-events: none;
            mix-blend-mode: multiply;
            z-index: 1;
        }

        /* Dotted particles effect */
        .hero-particles {
            position: absolute;
            top: 0;
            right: 0;
            width: 60%;
            height: 100%;
            background-image: 
                radial-gradient(circle, rgba(139, 92, 246, 0.4) 1px, transparent 1px),
                radial-gradient(circle, rgba(147, 51, 234, 0.3) 1px, transparent 1px),
                radial-gradient(circle, rgba(168, 85, 247, 0.35) 1.5px, transparent 1.5px);
            background-size: 50px 50px, 80px 80px, 60px 60px;
            background-position: 0 0, 40px 40px, 20px 20px;
            opacity: 0.6;
            pointer-events: none;
            z-index: 1;
            animation: particleFloat 20s linear infinite;
        }

        @keyframes particleFloat {
            0% {
                background-position: 0 0, 40px 40px, 20px 20px;
            }
            100% {
                background-position: 0 100px, 40px 140px, 20px 120px;
            }
        }

        #home h1 {
            font-size: clamp(2.5rem, 6vw, 4rem);
            font-weight: 900;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            color: #1e293b;
            position: relative;
            z-index: 2;
        }

        #home p.lead {
            font-size: 1.25rem;
            color: #475569;
            line-height: 1.7;
            max-width: 600px;
            position: relative;
            z-index: 2;
        }

        .gradient-text {
            background: linear-gradient(135deg, var(--primary) 0%, var(--purple) 50%, var(--pink) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Hero Mockup Container */
        .hero-mockup-container {
            position: relative;
            height: 600px;
            display: flex;
            align-items: center;
            justify-content: center;
            perspective: 1000px;
            z-index: 2;
        }

        .mockup-phones-wrapper {
            position: relative;
            width: 100%;
            max-width: 650px;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1;
        }

        .mockup-phones-wrapper img {
            width: 100%;
            height: auto;
            filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.35));
            animation: floatPhone 6s ease-in-out infinite;
            position: relative;
            z-index: 2;
        }

        .floating-sphere {
            position: absolute;
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, rgba(168, 85, 247, 0.6), rgba(147, 51, 234, 0.6));
            border-radius: 50%;
            box-shadow: 0 20px 60px rgba(139, 92, 246, 0.4);
            bottom: 15%;
            left: 5%;
            animation: floatSphere 8s ease-in-out infinite;
            z-index: 0;
        }

        @keyframes floatPhone {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-20px);
            }
        }

        @keyframes floatSphere {
            0%, 100% {
                transform: translateY(0) scale(1);
            }
            50% {
                transform: translateY(-30px) scale(1.1);
            }
        }

        .btn-outline-primary {
            border: 2px solid var(--primary);
            color: var(--primary);
            font-weight: 700;
            padding: 0.75rem 1.75rem;
            border-radius: 50px;
            transition: all 0.3s;
        }

        .btn-outline-primary:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-2px);
        }

        @media (max-width: 991px) {
            #home {
                background: 
                    linear-gradient(135deg, 
                        #ffffff 0%, 
                        #faf5ff 30%,
                        #f3e8ff 60%,
                        #e9d5ff 100%
                    );
                padding: 6rem 0 3rem;
            }
            
            #home::before {
                width: 100%;
                opacity: 0.15;
            }
        }
        /* Feature Cards */
        .feature-card {
            background: white;
            padding: 2.5rem;
            border-radius: 24px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            transition: all 0.4s;
            border: 2px solid transparent;
            height: 100%;
        }

        .feature-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
            border-color: var(--primary);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary), var(--purple));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin-bottom: 1.5rem;
            box-shadow: 0 8px 30px rgba(79, 70, 229, 0.3);
            transition: all 0.4s;
        }

        .feature-card:hover .feature-icon {
            transform: scale(1.1) rotate(5deg);
        }

        /* Totem Cards */
        .totem-card {
            background: white;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            transition: all 0.4s;
            border: 2px solid transparent;
            height: 100%;
        }

        .totem-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
            border-color: var(--primary);
        }

        .totem-image {
            width: 100%;
            /* height: 250px; */

            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 5rem;
            color: white;
            position: relative;
            /* overflow: hidden; */
        }

        .totem-image::before {
            content: '';
            position: absolute;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
            animation: pulse 4s ease-in-out infinite;
        }

        .totem-content {
            padding: 2rem;
        }

        .totem-badge {
            display: inline-block;
            background: linear-gradient(135deg, var(--accent), var(--secondary));
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        /* Section Backgrounds */
        .bg-gradient-light {
            background: linear-gradient(180deg, #F8FAFC 0%, white 100%);
        }

        .bg-gradient-blue {
            background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 100%);
        }

        .bg-gradient-purple {
            background: linear-gradient(135deg, #FDF4FF 0%, #FAF5FF 100%);
        }

        .bg-gradient-green {
            background: linear-gradient(135deg, #F0FDF4 0%, #DCFCE7 100%);
        }

        /* Store Badges */
        .store-badge {
            background: var(--dark);
            color: white;
            padding: 1rem 2rem;
            border-radius: 16px;
            text-decoration: none;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
            font-size: 1.1rem;
            transition: all 0.3s;
        }

        .store-badge:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
            color: white;
        }

        /* List Styling */
        .custom-list {
            list-style: none;
            padding: 0;
        }

        .custom-list li {
            padding: 1rem 0 1rem 2.5rem;
            position: relative;
            font-size: 1.05rem;
            line-height: 1.6;
        }

        .custom-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            width: 32px;
            height: 32px;
            background: linear-gradient(135deg, var(--accent), var(--secondary));
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
        }

        /* Partnership Cards */
        .partnership-card {
            background: white;
            padding: 3rem 2rem;
            border-radius: 24px;
            box-shadow: 0 10px 40px rgba(139, 92, 246, 0.1);
            transition: all 0.4s;
            text-align: center;
            border: 2px solid transparent;
            height: 100%;
        }

        .partnership-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(139, 92, 246, 0.2);
            border-color: var(--purple);
        }

        .partnership-icon {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, var(--purple), var(--pink));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 2rem;
            font-size: 2.5rem;
            box-shadow: 0 12px 40px rgba(139, 92, 246, 0.3);
            transition: all 0.4s;
        }

        .partnership-card:hover .partnership-icon {
            transform: scale(1.15) rotate(10deg);
        }

        /* Newsletter */
        .newsletter-section {
            background: linear-gradient(135deg, var(--dark) 0%, #1E293B 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .newsletter-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
            animation: rotate 30s linear infinite;
        }

        /* Footer */
        footer {
            background: #0A0F1A;
            color: white;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s;
            display: block;
            padding: 0.5rem 0;
        }

        .footer-links a:hover {
            color: white;
            padding-left: 0.5rem;
        }

        /* Animations */
        @keyframes float {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-30px) rotate(5deg);
            }
        }

        @keyframes floatPhone {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-20px);
            }
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
                opacity: 0.3;
            }
            50% {
                transform: scale(1.3);
                opacity: 0.5;
            }
        }

        @keyframes rotate {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .phone-mockup {
                width: 220px;
                height: 460px;
            }
        }
