
        @import url('https://fonts.googleapis.com/css2?family=Oswald:wght@700;800;900&family=Lato:wght@400;500;600&display=swap');
        
        :root { 
            --primary: #a855f7; 
            --primary-rgb: 168, 85, 247;
            --secondary: #581c87;
            --bg: #faf5ff;
            --text: #3b0764;
            --font-display: 'Oswald', sans-serif;
            --font-body: 'Lato', sans-serif;
            --radius: 40px;
            --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
            --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            --shadow-premium: 0 10px 15px -3px rgba(168, 85, 247, 0.1), 0 4px 6px -2px rgba(168, 85, 247, 0.05);
            --transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        * { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
        html { scroll-behavior: smooth; }
        body { font-family: var(--font-body); color: var(--text); background: var(--bg); line-height: 1.6; -webkit-font-smoothing: antialiased; margin: 0; padding: 0; width: 100%; overflow-x: hidden; }
        .container { max-width: 1240px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 2; width: 100%; }
        
        /* Fluid Typography */
        h1, h2, h3 { font-family: var(--font-display); }
        h1 { font-size: clamp(24px, 4vw, 48px); line-height: 1.1; font-weight: 900; letter-spacing: -0.02em; }
        h2 { font-size: clamp(20px, 3vw, 36px); line-height: 1.2; font-weight: 800; letter-spacing: -0.01em; }
        h3 { font-size: clamp(18px, 2.5vw, 28px); line-height: 1.3; font-weight: 700; }
        p { font-size: clamp(14px, 1.8vw, 16px); opacity: 0.8; }

        @media (max-width: 768px) {
            h1 { font-size: 24px !important; line-height: 1.2; }
            h2 { font-size: 20px !important; line-height: 1.3; }
            h3 { font-size: 18px !important; }
            section { padding: 40px 0 !important; }
        }

        /* Reveal Animations */
        .reveal-init { opacity: 0; transform: translateY(30px); transition: var(--transition); }
        .revealed { opacity: 1; transform: translateY(0); }
        
        .stagger-item { opacity: 0; transform: translateY(20px); transition: var(--transition); }
        .revealed .stagger-item { opacity: 1; transform: translateY(0); }
        
        /* Decorative Blobs */
        .blob-hbji {
            position: absolute; width: min(500px, 80vw); height: min(500px, 80vw);
            background: rgba(168, 85, 247, 0.07);
            filter: blur(80px); border-radius: 50%; z-index: 0;
            pointer-events: none; animation: float-blob 20s infinite alternate;
        }
        @keyframes float-blob {
            from { transform: translate(0, 0) scale(1); }
            to { transform: translate(30px, 30px) scale(1.05); }
        }

        /* Glassmorphism */
        .glass-hbji {
            background: rgba(255, 255, 255, 0.75);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(255, 255, 255, 0.4);
        }

        section { position: relative; padding: clamp(60px, 10vw, 120px) 0; overflow: hidden; }
        img { max-width: 100%; height: auto; border-radius: var(--radius); object-fit: cover; }
        
        .btn-p-hbji { background: var(--primary); color: #fff; padding: 16px 32px; border-radius: var(--radius); text-decoration: none; font-weight: 700; display: inline-block; transition: var(--transition); box-shadow: var(--shadow-premium); border: none; cursor: pointer; text-align: center; }
        .btn-p-hbji:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); opacity: 0.9; }
        
        .btn-s-hbji { background: transparent; color: var(--primary); padding: 16px 32px; border-radius: var(--radius); text-decoration: none; font-weight: 700; display: inline-block; transition: var(--transition); border: 2px solid var(--primary); cursor: pointer; text-align: center; }
        .btn-s-hbji:hover { background: var(--primary); color: #fff; }

        .badge-hbji { display: inline-block; padding: 8px 16px; background: rgba(168, 85, 247, 0.1); color: var(--primary); border-radius: 50px; font-weight: 700; font-size: 12px; text-transform: uppercase; margin-bottom: 20px; letter-spacing: 1px; }

        /* Mobile Optimization */
        @media (max-width: 768px) {
            .mobile-scroll { 
                display: flex !important; 
                overflow-x: auto; 
                scroll-snap-type: x mandatory;
                gap: 15px;
                margin: 0 -24px;
                padding: 0 24px 20px;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
            }
            .mobile-scroll::-webkit-scrollbar { display: none; }
            .mobile-scroll > * { 
                flex: 0 0 85%; 
                scroll-snap-align: center; 
                margin-bottom: 0 !important;
            }
            .grid-2-hbji { grid-template-columns: 1fr !important; gap: 40px; }
        }
        

        header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; transition: var(--transition); padding: 25px 0; }
        header.sticky-active { padding: 15px 0; background: var(--bg) !important; box-shadow: var(--shadow-md); border-bottom: 1px solid rgba(0,0,0,0.05); }
        header.sticky-active .logo-hbji, 
        header.sticky-active .menu-hbji a { color: var(--text) !important; }
        header.sticky-active .menu-hbji a:hover { color: var(--primary) !important; }
        header.sticky-active .menu-toggle-hbji span { background: var(--text) !important; }
        
        .h-floating { top: 20px; background: transparent; }
        .h-floating.sticky-active { top: 0; padding: 10px 0; border-radius: 0; }
        .h-bold { background: var(--text); padding: 15px 0; }
        .h-bold .logo-hbji, .h-bold .menu-hbji a { color: var(--bg); }
        .h-bold .menu-toggle-hbji span { background: var(--bg); }
        
        .h-bordered { border-bottom: 1px solid rgba(0,0,0,0.1); }
        .h-wide .container { max-width: 100%; padding: 0 60px; }
        .h-gradient { background: linear-gradient(to right, var(--primary), var(--secondary)); }
        .h-gradient .logo-hbji, .h-gradient .menu-hbji a { color: #fff; }
        .h-compact { padding: 10px 0; }
        .h-modern .btn-p-hbji { border-radius: 50px; }

        .logo-hbji { font-size: 24px; font-weight: 900; color: var(--primary); text-decoration: none; letter-spacing: -1px; }
        .menu-hbji { display: flex; gap: 30px; list-style: none; margin: 0; padding: 0; }
        .menu-hbji a { text-decoration: none; color: var(--text); font-weight: 600; transition: var(--transition); }
        .menu-hbji a:hover { color: var(--primary); }
        .menu-toggle-hbji { display: none; }
        
        @media (max-width: 992px) {
            .menu-toggle-hbji { display: block; background: none; border: none; cursor: pointer; }
            .menu-toggle-hbji span { display: block; width: 25px; height: 2px; background: var(--text); margin: 6px 0; transition: var(--transition); }
            .nav-hbji { position: absolute; top: 100%; left: 0; width: 100%; background: #fff; padding: 40px; display: none; box-shadow: var(--shadow-lg); }
            .nav-hbji.active { display: block; }
            .menu-hbji { flex-direction: column; align-items: center; }
            .h-actions-hbji { display: none; }
        }
        

        .f-grid-hbji { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 60px; }
        @media (max-width: 992px) { .f-grid-hbji { grid-template-columns: 1fr 1fr; } }
        @media (max-width: 576px) { .f-grid-hbji { grid-template-columns: 1fr; } }
        
        .grid-2-hbji { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
        @media (max-width: 992px) { 
            .grid-2-hbji { grid-template-columns: 1fr; text-align: center; } 
            .hero-btns-hbji { justify-content: center; } 
            .v5 div[style*="position: absolute"] { position: relative !important; width: 100% !important; height: 400px !important; margin-top: 50px; }
        }
        

        .f-grid-hbji { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
        .f-item-v5-hbji:hover { background: var(--primary); transform: translateY(-10px); }
        .f-item-v5-hbji:hover h3, .f-item-v5-hbji:hover p { color: #fff; }
        .f-item-v5-hbji:hover div { background: #fff; width: 80px; }
        

        .s-grid-hbji { display: flex; justify-content: space-around; text-align: center; flex-wrap: wrap; gap: 40px; }
        .val-hbji { font-size: 64px; font-weight: 900; color: var(--primary); margin-bottom: 10px; }
        .lab-hbji { font-size: 14px; text-transform: uppercase; letter-spacing: 2px; opacity: 0.6; }
        
@media (max-width: 768px) { .hide-mobile { display: none; } .v5 div[style*='position: absolute'] { position: relative !important; width: 100% !important; height: 400px !important; margin-top: 30px; } }

        .team-grid-hbji { display: grid; gap: 30px; }
        .team-item-hbji { text-align: center; transition: var(--transition); }
        .team-item-hbji:hover { transform: translateY(-10px); }
        .team-card-v5-hbji:hover .team-overlay-v5-hbji { background: rgba(168, 85, 247, 0.9); }
        .team-card-v5-hbji:hover .team-bio-v5-hbji { max-height: 100px; }
        

        .process-grid-hbji { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; }
        .process-item-hbji { text-align: center; position: relative; }
        .process-num-hbji { width: 60px; height: 60px; background: var(--primary); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; font-weight: 900; margin: 0 auto 25px; box-shadow: var(--shadow-premium); }
        

        .t-grid-hbji { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
        


        @media (max-width: 992px) { 
            .v5[style*='grid-template-columns'] { grid-template-columns: 1fr !important; padding: 40px !important; text-align: center; }
            .v6[style*='grid-template-columns'] { grid-template-columns: 1fr !important; padding: 40px !important; text-align: center; }
        }
        




        .pricing-grid-hbji { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
        

        .cookie-modal-hbji { 
            position: fixed; 
            bottom: 30px; 
            right: -450px; 
            width: 380px; 
            padding: 30px; 
            border-radius: 24px; 
            z-index: 9999; 
            transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
            opacity: 0; 
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
            background: var(--bg);
            visibility: hidden;
            pointer-events: none;
            border: 1px solid rgba(0,0,0,0.05);
            color: var(--text);
        }
        .cookie-modal-hbji.show { right: 30px; opacity: 1; visibility: visible; pointer-events: all; }
        
        @media (max-width: 480px) {
            .cookie-modal-hbji { 
                width: calc(100% - 40px); 
                left: 20px; 
                right: 20px; 
                bottom: -500px;
            }
            .cookie-modal-hbji.show { bottom: 20px; left: 20px; }
        }
        