        :root {
            --primary: #d6ebff;
            --secondary: #193340;
            --accent: #1f8adf;
            --bg: #0d0d0d;
            --surface-light: #f0f7ff;
            --success: #00d084;
            --error: #ff4d4d;
            --disabled: #25383c;
            --disabled-bg: #c1caca;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            cursor: none !important;
        }
        
        html {
            user-select: none;
        }

        body {
            background-color: var(--bg);
            color: #fff;
            font-family: 'Poppins', sans-serif;
            overflow-x: hidden;
        }

        body.menu-open {
            overflow: hidden;
        }
        
        img {
          -webkit-user-drag: none;
          -khtml-user-drag: none;
          -moz-user-drag: none;
          -o-user-drag: none;
          user-drag: none;
        }

        .accent-text {
            color: var(--accent) !important;
        }

        #bg-canvas {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            z-index: 0;
            pointer-events: none;
            filter: blur(1px);
        }

        section:not(.section-light), 
        .horizontal-wrapper,
        .horizontal-item,
        .hero-sticky {
            position: relative;
            z-index: 10;
            background-color: transparent !important;
        }

        .section-light {
            position: relative;
            z-index: 20; 
            background-color: var(--surface-light) !important;
            color: var(--secondary) !important;
        }

        .section-light p:not(.service-desc), 
        .section-light h2, 
        .section-light h3, 
        .section-light h4:not(.service-title), 
        .section-light span:not(.accent-text):not(.tag-pill):not(.about-pill):not(.btn-label):not(.team-word) {
            color: var(--secondary) !important;
        }

        #cursor {
            width: 12px;
            height: 12px;
            background: var(--accent);
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 9999;
            transition: transform 0.1s ease;
        }

        #cursor-follower {
            width: 30px;
            height: 30px;
            border: 1px solid rgba(31, 138, 223, 0.3);
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 9998;
            transition: transform 0.15s ease, left 0.1s ease, top 0.1s ease;
        }

        #main-nav { z-index: 1100; }
        #main-nav .logo-colored { display: none; }
        #main-nav .logo-white { display: block; }

        #main-nav.theme-light .logo-colored,
        body.menu-open #main-nav .logo-colored { display: block; }
        #main-nav.theme-light .logo-white,
        body.menu-open #main-nav .logo-white { display: none; }

        #main-nav.theme-dark {
            backdrop-filter: blur(5px);
            background: rgba(8, 8, 8, 0.6);
        }
        
        #main-nav.theme-light {
            backdrop-filter: blur(5px);
            background: rgba(240, 247, 255, 0.6);
        }
        
        body.menu-open #main-nav {
            background: transparent !important;
            backdrop-filter: none !important;
            border-bottom: none !important;
        }

        .menu-pill {
            background: #fff;
            padding: 5px 5px 5px 16px;
            border-radius: 999px;
            display: flex;
            align-items: center;
            gap: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            color: #000;
            border: 1px solid rgba(0, 0, 0, 0.1);
            pointer-events: auto;
        }

        .menu-pill:hover {
            transform: scale(1.05);
            border-color: var(--accent);
            box-shadow: 0 15px 35px rgba(31, 138, 223, 0.2);
        }

        .menu-bars {
            position: relative;
            width: 18px;
            height: 10px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .bar-line {
            height: 2px;
            width: 100%;
            background-color: #000;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            border-radius: 2px;
        }

        .menu-pill.active .bar-line:nth-child(1) { transform: translateY(4px) rotate(45deg); }
        .menu-pill.active .bar-line:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

        .shaka-circle {
            width: 28px;
            height: 28px;
            background: var(--success);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        
        .menu-pill:hover .shaka-circle {
            transform: scale(1.1) rotate(20deg);
        }

        #full-menu {
            position: fixed;
            inset: 0;
            background: var(--surface-light);
            z-index: 1000;
            display: flex;
            flex-direction: column;
            padding: 100px 40px 40px 40px; 
            transform: translateY(-100%);
            transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
            overflow-y: auto; 
            overflow-x: hidden;
        }

        #full-menu.active { transform: translateY(0); }

        .menu-link-main {
            font-size: clamp(32px, 5vw, 80px);
            font-weight: 900;
            text-transform: uppercase;
            line-height: 1.1;
            transition: color 0.3s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            color: var(--secondary);
        }

        .menu-link-main:hover { color: var(--accent); transform: skewX(-15deg); }

        .small-nav-pill {
            border: 1px solid var(--secondary);
            padding: 4px 14px;
            border-radius: 20px;
            font-size: 9px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            color: var(--secondary);
        }

        .small-nav-pill:hover { background: var(--secondary); color: #fff; }

        .social-circle {
            width: 36px;
            height: 36px;
            border: 1px solid rgba(25, 51, 64, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            color: var(--secondary);
        }
        .social-circle:hover { background: var(--secondary); color: #fff; transform: translateY(-3px); }
        
        @keyframes whatsapp-float-anim {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-12px); }
        }

        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background-color: var(--success);
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 25px rgba(0, 208, 132, 0.3);
            z-index: 1300;
            transition: scale 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
            pointer-events: auto;
            animation: whatsapp-float-anim 3s ease-in-out infinite;
        }

        .whatsapp-float:hover {
            scale: 1.1;
            box-shadow: 0 15px 35px rgba(0, 208, 132, 0.5);
            animation-play-state: paused;
        }
        
        body.menu-open .whatsapp-float {
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
        }
        
        .reveal-up { opacity: 0; transform: translateY(60px); transition: all 1.5s cubic-bezier(0.16, 1, 0.3, 1); }
        .reveal-up.active { opacity: 1; transform: translateY(0); }
        .reveal-right { opacity: 0; transform: translateX(60px); transition: all 1.5s cubic-bezier(0.16, 1, 0.3, 1); }
        .reveal-right.active { opacity: 1; transform: translateX(0); }
        .image-reveal {
            clip-path: inset(0 100% 0 0);
            transition: clip-path 1.5s cubic-bezier(0.77, 0, 0.175, 1);
        }
        .image-reveal.active { clip-path: inset(0 0 0 0); }

        .tag-pill { 
            display: inline-block; 
            padding: 6px 20px; 
            border: 1px solid var(--secondary); 
            border-radius: 50px; 
            font-size: 10px; 
            font-weight: 800; 
            text-transform: uppercase; 
            letter-spacing: 2px; 
            margin-bottom: 24px; 
            color: var(--secondary) !important; 
        }
        .dark-pill { border-color: rgba(255, 255, 255, 0.2); color: white !important; }

        .cta-pill {
            position: relative;
            background: #fff;
            padding: 8px 8px 8px 30px;
            border-radius: 999px;
            display: inline-flex;
            align-items: center;
            gap: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            color: var(--secondary);
            border: 1px solid transparent;
            pointer-events: auto !important;
            z-index: 100;
        }

        .cta-pill:not(.disabled):hover {
            transform: scale(1.05) translateY(-5px);
            background: #fff;
            box-shadow: 0 30px 60px rgba(31, 138, 223, 0.4);
        }

        .cta-circle {
            width: 52px;
            height: 52px;
            background: var(--success);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }
        
        .cta-pill:not(.disabled):hover .cta-circle {
            transform: rotate(-45deg);
        }
        
        .cta-pill.disabled {
            color: var(--disabled);
            background-color: var(--disabled-bg);
            pointer-events: none !important;
            box-shadow: none;
        }

        .cta-pill.disabled .cta-circle {
            background: var(--disabled) !important; 
        }
        
        .profile-btn {
            position: relative;
            background: transparent;
            padding: 4px 4px 4px 20px;
            border-radius: 999px;
            display: inline-flex;
            align-items: center;
            gap: 14px;
            border: 1px solid var(--secondary);
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            color: var(--secondary);
            z-index: 100;
        }
        .profile-btn .btn-label { 
            font-size: 13px; 
            font-weight: 800; 
            text-transform: uppercase; 
            letter-spacing: 1px; 
            transition: color 0.4s ease;
            color: inherit;
        }

        .profile-btn:hover { 
            background: var(--secondary); 
            color: #fff !important;
            transform: translateY(-3px); 
            box-shadow: 0 10px 30px rgba(31, 138, 223, 0.2); 
        }
        .profile-btn:hover .btn-label { color: #fff !important; }

        .profile-btn .btn-circle { width: 38px; height: 38px; background: var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all 0.4s ease; }
        .profile-btn:hover .btn-circle { transform: rotate(-45deg); background: #fff; }
        .profile-btn:hover .btn-circle svg { stroke: var(--secondary); }

        .profile-btn-dark { border-color: rgba(255, 255, 255, 0.3); color: white; }
        .profile-btn-dark:hover { background: #fff; color: var(--secondary) !important; }
        .profile-btn-dark .btn-circle { background: var(--accent); }
        .profile-btn-dark:hover .btn-circle { background: var(--secondary); }
        .profile-btn-dark:hover .btn-circle svg { stroke: #fff; }
        .profile-btn-dark:hover .btn-label { color: var(--secondary) !important; }
        
        .about-pill, .tag-pill { 
            display: inline-block; 
            padding: 6px 20px; 
            border: 1px solid var(--secondary); 
            border-radius: 50px; 
            font-size: 10px; 
            font-weight: 800; 
            text-transform: uppercase; 
            letter-spacing: 2px; 
            margin-bottom: 40px; 
            color: var(--secondary) !important; 
        }
        .dark-pill { border-color: rgba(255, 255, 255, 0.2); color: white !important; }
        
        @keyframes shake {
            0%, 100% { transform: translateX(0); }
            20% { transform: translateX(-10px); }
            40% { transform: translateX(10px); }
            60% { transform: translateX(-10px); }
            80% { transform: translateX(10px); }
        }
        .shake-anim { animation: shake 0.5s cubic-bezier(.36,.07,.19,.97) both; }
        
        @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
        .spin-icon { animation: spin 1.2s cubic-bezier(0.45, 0, 0.55, 1) infinite; transform-origin: center; }
        
        #toast-container { position: fixed; top: 75px; right: 20px; z-index: 2000; display: flex; flex-direction: column; gap: 7px; pointer-events: none; max-width: 75vw; }
        .toast { 
            pointer-events: auto; min-width: 300px; padding: 15px 20px; border-radius: 20px; 
            background: rgba(13, 13, 13, 0.8); backdrop-filter: blur(20px); border: 1px solid rgba(255, 255, 255, 0.1);
            color: #fff; display: flex; align-items: center; gap: 10px;
            transform: translateX(120%); transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
            box-shadow: 0 20px 40px rgba(0,0,0,0.4);
        }
        @media (min-width: 768px) {
            #toast-container { top: 120px; right: 40px; gap: 12px; max-width: 500px; }
            .toast { padding: 20px 24px; gap: 16px; }
        }
        .toast.show { transform: translateX(0); }
        .toast-icon { width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 900; }
        .toast-success .toast-icon { background: var(--success); color: #fff; }
        .toast-error .toast-icon { background: var(--error); color: #fff; }
        .toast-success { border-left: 4px solid var(--success); }
        .toast-error { border-left: 4px solid var(--error); }
        .toast-msg { font-size: 13px; font-weight: 500; letter-spacing: 0.5px; }
        
        .maintenance-container {
            height: 100vh;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 20px;
            position: relative;
            z-index: 10;
        }

        .maintenance-content { max-width: 800px; }
        
        .grecaptcha-badge {
            visibility: hidden !important;
        }
        
        footer a:hover {
            font-weight: bold;
        }