        /* Skip Link for Accessibility */
        .skip-link {
            position: absolute;
            top: -100px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--accent, #2b9b8a);
            color: #fff;
            padding: 12px 24px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            z-index: 100000;
            transition: top 0.3s;
        }
        .skip-link:focus {
            top: 10px;
            outline: 3px solid #ffd700;
        }

        /* Performance: Skip rendering off-screen content until needed */
        .about, .pain-points, .services, .portfolio, .tools,
        .testimonials, .contact, footer {
            content-visibility: auto;
            contain-intrinsic-size: auto 500px;
        }

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

        :root {
            /* Original Brand Colors - Teal/Green to Blue */
            --primary-dark: #1a2e35;
            --primary: #243b44;
            --primary-light: #2d4a56;

            /* Accent Colors - Teal transitioning to Blue */
            --accent: #2b9b8a;
            --accent-light: #3dbaa7;
            --accent-lighter: #5dd3bc;
            --accent-pale: #e8f7f4;
            --accent-glow: rgba(43, 155, 138, 0.3);

            /* Blue accent */
            --blue: #3b82f6;
            --blue-dark: #1e40af;
            --blue-light: #60a5fa;

            /* Green */
            --green: #4ade80;
            --green-light: #86efac;

            /* Neutrals */
            --white: #ffffff;
            --off-white: #f8fafb;
            --light-gray: #f1f5f7;
            --medium-gray: #e2e8ed;
            --text-gray: #64748b;
            --text-dark: #1e293b;

            /* Gradients */
            --gradient-hero: linear-gradient(135deg, #1a2e35 0%, #1e3a5a 40%, #1e40af 100%);
            --gradient-accent: linear-gradient(135deg, #2b9b8a 0%, #3b82f6 100%);
            --gradient-green-blue: linear-gradient(135deg, #2b9b8a 0%, #2b9b8a 30%, #3b82f6 100%);
            --gradient-button: linear-gradient(135deg, #2b9b8a 0%, #1e40af 100%);

            /* Effects */
            --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.06);
            --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.1);
            --shadow-card: 0 10px 40px rgba(43, 155, 138, 0.12);
            --shadow-glow: 0 0 30px var(--accent-glow);

            /* Premium Glassmorphism */
            --glass-bg: rgba(255, 255, 255, 0.08);
            --glass-border: rgba(255, 255, 255, 0.15);
            --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);

            /* Aurora Glow Effects */
            --glow-teal: 0 0 60px rgba(43, 155, 138, 0.5);
            --glow-blue: 0 0 60px rgba(59, 130, 246, 0.5);
            --glow-intense: 0 0 100px rgba(43, 155, 138, 0.6), 0 0 200px rgba(59, 130, 246, 0.3);
        }

        /* Respect user preference for reduced motion */
        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
            .aurora::before, .aurora::after { animation: none !important; display: none; }
            .hero-grid { animation: none !important; }
            .particles { display: none !important; }
            .glow-orb { display: none !important; }
        }

        /* Reduce particles on mid-size screens */
        @media (max-width: 1024px) {
            .particle:nth-child(n+7) { display: none; }
            .glow-orb { display: none; }
        }


        html {
            /* scroll-behavior: smooth; - Disabled in favor of Lenis for smoother animation */
            overflow-x: hidden;
        }

        body {
            font-family: 'Heebo', -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.7;
            color: var(--text-dark);
            background: var(--white);
            font-weight: 400;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }

        /* Typography */
        h1, h2, h3, h4 {
            font-family: 'Rubik', 'Heebo', sans-serif;
            font-weight: 700;
            line-height: 1.3;
        }

        h1 {
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            letter-spacing: -0.03em;
            font-weight: 800;
        }

        h2 {
            font-size: clamp(1.75rem, 4vw, 2.75rem);
            margin-bottom: 1rem;
        }

        h3 {
            font-size: clamp(1.125rem, 2vw, 1.375rem);
        }

        p {
            font-size: 1.0625rem;
            color: var(--text-gray);
            line-height: 1.8;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 clamp(1.25rem, 4vw, 2.5rem);
        }

        /* Badge/Tag Style */
        .badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            background: rgba(43, 155, 138, 0.1);
            border: 1px solid rgba(43, 155, 138, 0.3);
            border-radius: 50px;
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--accent);
        }

        .badge::before {
            content: '';
            width: 6px;
            height: 6px;
            background: var(--accent);
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

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

        /* Cursor trail removed for performance */

        /* ==================== Navigation - Glassmorphism ==================== */
        nav {
            position: fixed;
            top: 40px;
            width: 100%;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            padding: 0;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        nav.scrolled {
            transform: translateY(-100%);
        }

        /* Show-on-hover zone at top of page */
        nav::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            height: 15px;
            z-index: 1001;
        }

        nav:hover,
        nav:focus-within {
            transform: translateY(0) !important;
        }

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

        .logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            text-decoration: none;
            overflow: visible;
        }

        .logo img {
            height: 120px;
            width: auto;
        }

        .logo .logo-full-img {
            height: 180px;
            width: auto;
            max-width: 500px;
            filter: brightness(1.1);
            margin-top: 0;
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
        }

        .nav-links a {
            color: var(--primary-dark);
            text-decoration: none;
            font-size: 0.9375rem;
            font-weight: 500;
            padding: 0.6rem 1.2rem;
            position: relative;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border-radius: 8px;
        }


        .nav-links a::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(43, 155, 138, 0.2), rgba(59, 130, 246, 0.2));
            border-radius: 8px;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 50%;
            transform: translateX(50%);
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--accent-light), var(--blue-light));
            transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border-radius: 2px;
            box-shadow: 0 0 10px var(--accent-light);
        }

        .nav-links a:hover {
            color: var(--accent);
        }


        .nav-links a:hover::before {
            opacity: 1;
        }

        .nav-links a:hover::after {
            width: 80%;
        }

        .mobile-menu {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 0.5rem;
            background: none;
            border: none;
        }

        .mobile-menu span {
            width: 26px;
            height: 2px;
            background: var(--white);
            transition: all 0.3s ease;
            border-radius: 2px;
        }

        /* ==================== Hero Section - Premium Aurora Effect ==================== */
        .hero {
            background: linear-gradient(145deg, #0a1628 0%, #1a2e35 25%, #1e3a5a 60%, #1e40af 100%);
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 160px 0 80px;
            overflow: hidden;
            min-height: 100vh;
            min-height: 100svh;
        }

        /* Premium Aurora Gradient Animation */
        .aurora {
            position: absolute;
            inset: 0;
            overflow: hidden;
        }

        .aurora::before,
        .aurora::after {
            content: '';
            position: absolute;
            width: 150%;
            height: 150%;
            top: -25%;
            left: -25%;
        }

        .aurora::before {
            background:
                conic-gradient(from 0deg at 50% 50%,
                    transparent 0deg,
                    rgba(43, 155, 138, 0.25) 60deg,
                    transparent 120deg,
                    rgba(59, 130, 246, 0.2) 180deg,
                    transparent 240deg,
                    rgba(43, 155, 138, 0.2) 300deg,
                    transparent 360deg);
            animation: auroraRotate 45s linear infinite;
            filter: blur(100px);
        }

        .aurora::after {
            background:
                conic-gradient(from 180deg at 50% 50%,
                    transparent 0deg,
                    rgba(59, 130, 246, 0.2) 90deg,
                    transparent 180deg,
                    rgba(43, 155, 138, 0.18) 270deg,
                    transparent 360deg);
            animation: auroraRotate 40s linear infinite reverse;
            filter: blur(120px);
        }

        @keyframes auroraRotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .aurora::before, .aurora::after {
            will-change: transform;
            transform: translateZ(0);
            contain: strict;
        }

        /* Animated Grid Background - Tech Feature */
        .hero-grid {
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(43, 155, 138, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(43, 155, 138, 0.03) 1px, transparent 1px);
            background-size: 80px 80px;
            animation: gridMove 40s linear infinite;
            mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 0%, transparent 70%);
            -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 0%, transparent 70%);
            opacity: 0.7;
        }

        @keyframes gridMove {
            0% { transform: translate(0, 0); }
            100% { transform: translate(80px, 80px); }
        }

        /* Glowing Orbs - Premium */
        .glow-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(60px);
            animation: orbPulse 8s ease-in-out infinite;
        }

        .glow-orb-1 {
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(43, 155, 138, 0.2) 0%, transparent 70%);
            top: -200px;
            right: -150px;
            animation-delay: 0s;
        }

        .glow-orb-2 {
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(59, 130, 246, 0.18) 0%, transparent 70%);
            bottom: -150px;
            left: -150px;
            animation-delay: 4s;
        }

        .glow-orb-3 {
            width: 350px;
            height: 350px;
            background: radial-gradient(circle, rgba(43, 155, 138, 0.15) 0%, transparent 70%);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation-delay: 2s;
        }

        @keyframes orbPulse {
            0%, 100% {
                opacity: 0.4;
                transform: scale(1);
            }
            50% {
                opacity: 0.7;
                transform: scale(1.1);
            }
        }

        /* Floating Particles - Premium */
        .particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 0;
        }

        .particle {
            position: absolute;
            background: linear-gradient(135deg, rgba(43, 155, 138, 0.6), rgba(59, 130, 246, 0.4));
            border-radius: 50%;
            animation: particleFloat linear infinite;
            box-shadow: 0 0 20px rgba(43, 155, 138, 0.3), 0 0 40px rgba(59, 130, 246, 0.2);
        }

        .particle:nth-child(1) { left: 10%; width: 4px; height: 4px; animation-duration: 35s; animation-delay: 0s; }
        .particle:nth-child(2) { left: 20%; width: 6px; height: 6px; animation-duration: 40s; animation-delay: 2s; }
        .particle:nth-child(3) { left: 30%; width: 3px; height: 3px; animation-duration: 38s; animation-delay: 4s; }
        .particle:nth-child(4) { left: 45%; width: 5px; height: 5px; animation-duration: 42s; animation-delay: 1s; }
        .particle:nth-child(5) { left: 55%; width: 4px; height: 4px; animation-duration: 45s; animation-delay: 3s; }
        .particle:nth-child(6) { left: 65%; width: 3px; height: 3px; animation-duration: 38s; animation-delay: 5s; }
        .particle:nth-child(7) { left: 75%; width: 6px; height: 6px; animation-duration: 40s; animation-delay: 2s; }
        .particle:nth-child(8) { left: 85%; width: 3px; height: 3px; animation-duration: 42s; animation-delay: 4s; }
        .particle:nth-child(9) { left: 92%; width: 4px; height: 4px; animation-duration: 44s; animation-delay: 1s; }
        .particle:nth-child(10) { left: 5%; width: 5px; height: 5px; animation-duration: 43s; animation-delay: 3s; }

        @keyframes particleFloat {
            0% {
                transform: translateY(100vh) rotate(0deg);
                opacity: 0;
            }
            10% { opacity: 0.5; }
            90% { opacity: 0.5; }
            100% {
                transform: translateY(-100vh) rotate(360deg);
                opacity: 0;
            }
        }

        /* Wave at bottom */
        .hero-wave {
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 50px;
            z-index: 2;
        }

        .hero-wave svg {
            width: 100%;
            height: 100%;
        }

        .hero-centered {
            text-align: center;
            position: relative;
            z-index: 10;
            max-width: 800px;
            margin: 0 auto;
            padding-top: 20px;
        }

        .hero-content {
            animation: heroFadeIn 1.2s cubic-bezier(0.4, 0, 0.2, 1);
        }

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

        .hero .badge {
            background: rgba(43, 155, 138, 0.15);
            border-color: rgba(43, 155, 138, 0.4);
            color: var(--accent-lighter);
            margin-bottom: 2rem;
        }

        .hero h1 {
            color: var(--white);
            margin-bottom: 1.5rem;
            text-align: center;
            text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
        }

        .hero h1 .highlight {
            background: linear-gradient(135deg, var(--accent-light) 0%, var(--green-light) 50%, var(--blue-light) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: shimmer 3s ease-in-out infinite;
            will-change: opacity;
        }

        @keyframes shimmer {
            0%, 100% { opacity: 0.9; }
            50% { opacity: 1; }
        }

        .hero-subtitle {
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 2.5rem;
            max-width: 750px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.9;
            font-weight: 300;
            text-align: center;
        }

        .hero-buttons {
            display: flex;
            gap: 1.25rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 1.1rem 2.5rem;
            border-radius: 60px;
            font-size: 1rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            border: none;
            position: relative;
            overflow: hidden;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--accent) 0%, var(--blue) 100%);
            color: var(--white);
            box-shadow:
                0 8px 32px rgba(43, 155, 138, 0.4),
                0 0 0 0 rgba(43, 155, 138, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.6s ease;
        }

        .btn-primary::after {
            content: '';
            position: absolute;
            inset: -2px;
            background: linear-gradient(135deg, var(--accent), var(--blue), var(--accent));
            border-radius: 60px;
            z-index: -1;
            opacity: 0;
            transition: opacity 0.4s ease;
            filter: blur(15px);
        }

        .btn-primary:hover::before {
            left: 100%;
        }

        .btn-primary:hover::after {
            opacity: 1;
        }

        .btn-primary:hover {
            transform: translateY(-4px) scale(1.02);
            box-shadow:
                0 15px 50px rgba(59, 130, 246, 0.5),
                0 0 80px rgba(43, 155, 138, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.05);
            color: var(--white);
            border: 1px solid rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
        }

        .btn-secondary::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(43, 155, 138, 0.1), rgba(59, 130, 246, 0.1));
            border-radius: 60px;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .btn-secondary:hover::before {
            opacity: 1;
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            color: var(--white);
            border-color: rgba(43, 155, 138, 0.5);
            transform: translateY(-4px);
            box-shadow:
                0 12px 40px rgba(43, 155, 138, 0.2),
                0 0 30px rgba(43, 155, 138, 0.1);
        }

        /* Typing Animation - Tech Feature */
        .typing-text {
            display: inline-block;
            border-left: 3px solid var(--accent-light);
            padding-left: 0.5rem;
            animation: blink 1s step-end infinite;
        }

        @keyframes blink {
            50% { border-color: transparent; }
        }

        /* ==================== About Section ==================== */
        .about {
            padding: 2.5rem 0 3.5rem;
            background: var(--white);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2.5rem;
            align-items: center;
        }

        .about-content .badge {
            margin-bottom: 1.5rem;
        }

        .about-content h2 {
            color: var(--primary-dark);
            margin-bottom: 1.5rem;
        }

        .about-content h2 .highlight {
            color: var(--accent);
        }

        .about-text {
            font-size: 1.0625rem;
            line-height: 1.9;
            color: var(--text-gray);
            margin-bottom: 1rem;
        }

        /* About Image */
        .about-image {
            position: relative;
        }

        .about-image img {
            width: 100%;
            max-width: 450px;
            border-radius: 20px;
            box-shadow: var(--shadow-card);
            object-fit: cover;
        }

        .about-image::before {
            content: '';
            position: absolute;
            top: -15px;
            left: -15px;
            width: 100%;
            height: 100%;
            background: var(--gradient-accent);
            border-radius: 20px;
            opacity: 0.15;
            z-index: -1;
        }

        .experience-badge {
            position: absolute;
            bottom: -20px;
            right: 20px;
            background: var(--white);
            padding: 1.25rem 2rem;
            border-radius: 16px;
            box-shadow: var(--shadow-medium);
            text-align: center;
        }

        .exp-number {
            display: block;
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--accent);
            line-height: 1;
            font-family: 'Rubik', sans-serif;
        }

        .exp-text {
            font-size: 0.875rem;
            color: var(--text-gray);
            font-weight: 500;
        }

        /* Stats Counter Section - Premium Glassmorphism */
        .stats-container {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 3rem;
            margin-top: 2.5rem;
            padding: 2.5rem 3rem;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 251, 0.98));
            border-radius: 24px;
            box-shadow:
                0 20px 60px rgba(43, 155, 138, 0.1),
                0 0 0 1px rgba(43, 155, 138, 0.05),
                inset 0 1px 0 rgba(255, 255, 255, 1);
            border: 1px solid rgba(43, 155, 138, 0.1);
            position: relative;
            overflow: hidden;
        }

        .stats-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(43, 155, 138, 0.3), rgba(59, 130, 246, 0.3), transparent);
        }

        .stat-item {
            text-align: center;
            position: relative;
        }

        .stat-item:not(:last-child)::after {
            content: '';
            position: absolute;
            left: -2rem;
            top: 50%;
            transform: translateY(-50%);
            width: 1px;
            height: 50px;
            background: var(--medium-gray);
        }

        .stat-number-row {
            display: flex;
            align-items: baseline;
            justify-content: center;
            gap: 0;
        }

        .stat-number {
            font-size: 2.75rem;
            font-weight: 800;
            font-family: 'Rubik', sans-serif;
            background: linear-gradient(135deg, var(--accent) 0%, var(--blue) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1;
            filter: drop-shadow(0 2px 10px rgba(43, 155, 138, 0.3));
        }

        .stat-plus {
            font-size: 2rem;
            font-weight: 700;
            background: linear-gradient(135deg, var(--accent) 0%, var(--blue) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .stat-infinity {
            background: linear-gradient(135deg, var(--accent) 0%, var(--blue) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .stat-label {
            display: block;
            margin-top: 0.5rem;
            font-size: 0.9375rem;
            color: var(--text-gray);
            font-weight: 500;
        }

        /* Skills Grid */
        .skills-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
            margin: 2rem 0;
        }

        .skill-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1rem 1.5rem;
            background: var(--white);
            border: 1px solid var(--medium-gray);
            border-radius: 12px;
            transition: all 0.3s ease;
        }

        .skill-item:hover {
            border-color: var(--accent);
            box-shadow: var(--shadow-soft);
            transform: translateX(-5px);
        }

        .skill-item span {
            font-weight: 500;
            color: var(--text-dark);
        }

        .skill-icon {
            width: 40px;
            height: 40px;
            background: var(--accent-pale);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
        }

        .cta-button-center {
            text-align: center;
        }

        .btn-cta {
            background: var(--gradient-button);
            color: var(--white);
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-size: 1.0625rem;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(43, 155, 138, 0.3);
        }

        .btn-cta:hover {
            background: var(--gradient-green-blue);
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(59, 130, 246, 0.4);
        }

        /* ==================== Services Section ==================== */
        .services {
            padding: 3.5rem 0;
            background: var(--gradient-hero);
        }

        .services .section-header {
            text-align: center;
            margin-bottom: 2.5rem;
        }

        .services .badge {
            background: rgba(43, 155, 138, 0.15);
            border-color: rgba(43, 155, 138, 0.4);
            color: var(--accent-lighter);
            margin-bottom: 1.5rem;
        }

        .services h2 {
            color: var(--white);
            margin-bottom: 1rem;
            text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
        }

        .services h2 .highlight {
            background: linear-gradient(135deg, var(--accent-light) 0%, var(--green-light) 50%, var(--blue-light) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            filter: drop-shadow(0 2px 10px rgba(43, 155, 138, 0.5));
        }

        .services .section-subtitle {
            color: rgba(255, 255, 255, 0.7);
            font-size: 1.125rem;
            max-width: 600px;
            margin: 0 auto;
        }

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

        /* Flip Card Effect - ORIGINAL */
        .flip-card {
            background-color: transparent;
            height: 300px;
            perspective: 1000px;
        }

        .flip-card-inner {
            position: relative;
            width: 100%;
            height: 100%;
            text-align: center;
            transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            transform-style: preserve-3d;
        }

        .flip-card:hover .flip-card-inner,
        .flip-card.flipped .flip-card-inner {
            transform: rotateY(180deg);
        }

        .flip-card-front, .flip-card-back {
            position: absolute;
            width: 100%;
            height: 100%;
            -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
            border-radius: 24px;
            padding: 2rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .flip-card-front {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(43, 155, 138, 0.15);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            box-shadow:
                0 8px 32px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
            transition: all 0.4s ease;
        }

        .flip-card:hover .flip-card-front {
            border-color: rgba(43, 155, 138, 0.4);
            box-shadow:
                0 15px 50px rgba(0, 0, 0, 0.4),
                0 0 30px rgba(43, 155, 138, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
        }

        .flip-card-back {
            background: linear-gradient(135deg, var(--accent) 0%, var(--blue) 100%);
            transform: rotateY(180deg);
            border: none;
            box-shadow:
                0 15px 50px rgba(43, 155, 138, 0.4),
                0 0 60px rgba(59, 130, 246, 0.2);
        }

        .service-result {
            display: block;
            margin-top: 12px;
            padding: 6px 12px;
            background: rgba(43, 155, 138, 0.15);
            border: 1px solid rgba(43, 155, 138, 0.3);
            border-radius: 20px;
            font-size: 0.8rem;
            color: var(--accent);
            font-weight: 500;
        }

        .flip-card-front .service-icon {
            width: 75px;
            height: 75px;
            background: var(--gradient-accent);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin-bottom: 1.25rem;
            box-shadow:
                0 8px 25px rgba(43, 155, 138, 0.4),
                0 0 40px rgba(43, 155, 138, 0.2);
            transition: all 0.4s ease;
        }

        .flip-card:hover .flip-card-front .service-icon {
            transform: scale(1.1);
            box-shadow:
                0 12px 35px rgba(43, 155, 138, 0.5),
                0 0 60px rgba(43, 155, 138, 0.3);
        }

        .flip-card-front h3 {
            color: var(--white);
            margin-bottom: 0.75rem;
            font-size: 1.25rem;
        }

        .flip-card-front p {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
        }

        .flip-card-back .flip-logo {
            width: 60px;
            height: 60px;
            margin-bottom: 1rem;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.95);
            padding: 8px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .flip-card-back p {
            color: rgba(255, 255, 255, 0.95);
            font-size: 0.9375rem;
            line-height: 1.7;
            margin-bottom: 1.25rem;
        }

        .flip-btn {
            background: rgba(255, 255, 255, 0.2);
            color: var(--white);
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            border: 2px solid rgba(255, 255, 255, 0.3);
        }

        .flip-btn:hover {
            background: var(--white);
            color: var(--accent);
        }

        /* ==================== Projects Section ==================== */
        .projects {
            padding: 3.5rem 0;
            background: var(--off-white);
        }

        .projects .section-header {
            text-align: center;
            margin-bottom: 2.5rem;
        }

        .projects .badge {
            margin-bottom: 1.5rem;
        }

        .projects h2 {
            color: var(--primary-dark);
        }

        .projects h2 .highlight {
            color: var(--accent);
        }

        .projects .section-subtitle {
            color: var(--text-gray);
            font-size: 1.125rem;
        }

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

        .project-card {
            background: var(--white);
            border-radius: 24px;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid var(--medium-gray);
            text-decoration: none;
            display: block;
            color: inherit;
            position: relative;
        }

        .project-card::before {
            content: '';
            position: absolute;
            inset: -1px;
            background: linear-gradient(135deg, var(--accent), var(--blue), var(--accent));
            border-radius: 25px;
            z-index: -1;
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .project-card:hover::before,
        .project-card.active::before {
            opacity: 1;
        }

        .project-card:hover,
        .project-card.active {
            transform: translateY(-10px);
            box-shadow:
                0 20px 50px rgba(43, 155, 138, 0.2),
                0 0 40px rgba(43, 155, 138, 0.1);
            border-color: transparent;
        }

        .project-image {
            height: 200px;
            background: linear-gradient(135deg, var(--accent-pale) 0%, var(--light-gray) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .project-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .project-card:hover .project-image img {
            transform: scale(1.05);
        }

        .project-tag {
            position: absolute;
            top: 1rem;
            left: 1rem;
            padding: 0.35rem 0.75rem;
            background: var(--white);
            border-radius: 6px;
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--accent);
            z-index: 2;
        }

        .project-content {
            padding: 1.5rem;
        }

        .project-content h3 {
            color: var(--primary-dark);
            margin-bottom: 0.5rem;
        }

        .project-content p {
            font-size: 0.9375rem;
            margin-bottom: 0;
        }

        /* Featured Project Card - Premium */
        .project-card-featured {
            border: 2px solid var(--accent);
            box-shadow:
                0 8px 30px rgba(43, 155, 138, 0.2),
                0 0 0 1px rgba(43, 155, 138, 0.1);
            position: relative;
        }

        .project-card-featured::after {
            content: '';
            position: absolute;
            top: -2px;
            left: 20%;
            right: 20%;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--accent-light), var(--blue-light), transparent);
            animation: shimmerLine 3s ease-in-out infinite;
            will-change: transform, opacity;
        }

        @keyframes shimmerLine {
            0%, 100% { opacity: 0.5; transform: scaleX(0.6); }
            50% { opacity: 1; transform: scaleX(0.8); }
        }

        .project-card-featured:hover {
            border-color: var(--blue);
            box-shadow:
                0 20px 60px rgba(59, 130, 246, 0.3),
                0 0 60px rgba(43, 155, 138, 0.15);
        }

        /* Centered project card for odd items */
        .project-card-centered {
            grid-column: 1 / -1;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Gradient image placeholder for skills */
        .project-image-gradient {
            background: linear-gradient(135deg, var(--accent) 0%, var(--blue) 50%, #8b5cf6 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 200px;
        }

        .skills-visual {
            text-align: center;
            color: white;
        }

        .skills-icon {
            font-size: 4rem;
            margin-bottom: 1rem;
            filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
        }

        .skills-badges {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
            justify-content: center;
        }

        .skills-badges span {
            background: rgba(255,255,255,0.2);
            backdrop-filter: blur(10px);
            padding: 0.4rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            border: 1px solid rgba(255,255,255,0.3);
        }

        /* HQ Project Visual */
        .project-image-hq {
            background: linear-gradient(135deg, #1B365D 0%, #0d1f35 50%, #1a3a5c 100%);
        }

        .hq-visual {
            text-align: center;
            color: white;
        }

        .hq-icon {
            font-size: 4rem;
            margin-bottom: 1rem;
            filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
        }

        .hq-departments {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
            justify-content: center;
        }

        .hq-departments span {
            background: linear-gradient(135deg, rgba(201, 169, 97, 0.3), rgba(201, 169, 97, 0.15));
            backdrop-filter: blur(10px);
            padding: 0.4rem 0.8rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            border: 1px solid rgba(201, 169, 97, 0.5);
            color: #C9A961;
        }

        .project-cta-soon {
            background: linear-gradient(135deg, rgba(201, 169, 97, 0.8), rgba(180, 150, 80, 0.9));
            color: #1B365D;
        }

        .project-cta-soon:hover {
            background: linear-gradient(135deg, #C9A961, #b8a050);
        }

        /* Project CTA Button - "Try Now" Style - Premium */
        .project-cta {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            margin-top: 1rem;
            padding: 0.75rem 1.5rem;
            background: var(--gradient-button);
            color: var(--white);
            border-radius: 50px;
            font-size: 0.9375rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow:
                0 4px 15px rgba(43, 155, 138, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
            position: relative;
            overflow: hidden;
        }

        .project-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.6s ease;
        }

        .project-cta:hover::before {
            left: 100%;
        }

        .project-cta:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow:
                0 10px 30px rgba(59, 130, 246, 0.4),
                0 0 40px rgba(43, 155, 138, 0.2);
        }

        .project-cta .cta-arrow {
            transition: transform 0.3s ease;
        }

        .project-cta:hover .cta-arrow {
            transform: translateX(-4px);
        }

        /* Additional Tools Section */
        .additional-tools {
            margin-top: 3rem;
            padding: 2rem;
            background: var(--white);
            border-radius: 16px;
            border: 1px solid var(--medium-gray);
        }

        .additional-tools h4 {
            color: var(--primary-dark);
            font-size: 1rem;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .tools-list {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
        }

        .tool-tag {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            background: var(--accent-pale);
            border-radius: 8px;
            font-size: 0.875rem;
            color: var(--text-dark);
            text-decoration: none;
            transition: all 0.2s ease;
        }

        .tool-tag:hover {
            background: var(--accent);
            color: var(--white);
        }

        /* ==================== Journey Section ==================== */
        .journey {
            padding: 4rem 0;
            background: var(--white);
        }

        .journey .section-header {
            text-align: center;
            margin-bottom: 2.5rem;
        }

        .journey .badge {
            margin-bottom: 1.5rem;
        }

        .journey h2 {
            color: var(--primary-dark);
        }

        .journey h2 .highlight {
            color: var(--accent);
        }

        .timeline {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
        }

        .timeline::before {
            content: '';
            position: absolute;
            right: 50%;
            top: 0;
            bottom: 0;
            width: 3px;
            background: linear-gradient(180deg, var(--accent) 0%, var(--blue) 100%);
            transform: translateX(50%);
            border-radius: 3px;
        }

        .timeline-item {
            position: relative;
            display: flex;
            margin-bottom: 2.5rem;
        }

        .timeline-item:nth-child(odd) {
            flex-direction: row-reverse;
        }

        .timeline-item:nth-child(odd) .timeline-content {
            text-align: left;
            margin-right: 0;
            margin-left: calc(50% + 2rem);
        }

        .timeline-item:nth-child(even) .timeline-content {
            text-align: right;
            margin-left: 0;
            margin-right: calc(50% + 2rem);
        }

        .timeline-content {
            width: calc(50% - 2rem);
            background: var(--white);
            padding: 1.75rem;
            border-radius: 16px;
            border: 1px solid var(--medium-gray);
            box-shadow: 0 2px 12px rgba(0,0,0,0.04);
            transition: all 0.3s ease;
            position: relative;
        }

        .timeline-item:hover .timeline-content {
            border-color: var(--accent);
            box-shadow: 0 8px 30px rgba(43, 155, 138, 0.12);
            transform: translateY(-3px);
        }

        .timeline-dot {
            position: absolute;
            right: 50%;
            transform: translateX(50%);
            width: 16px;
            height: 16px;
            background: var(--accent);
            border-radius: 50%;
            top: 1.75rem;
            z-index: 2;
            border: 3px solid var(--white);
            box-shadow: 0 0 0 3px var(--accent-pale);
            transition: all 0.3s ease;
        }

        .timeline-item:hover .timeline-dot {
            transform: translateX(50%) scale(1.3);
            background: var(--blue);
            box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.2);
        }

        /* Timeline Highlight - AzriaSolutions */
        .timeline-highlight .timeline-content {
            background: linear-gradient(135deg, rgba(43, 155, 138, 0.1), rgba(59, 130, 246, 0.1));
            border: 2px solid var(--accent);
            box-shadow: 0 10px 40px rgba(43, 155, 138, 0.2), 0 0 30px rgba(43, 155, 138, 0.1);
        }

        .timeline-highlight .timeline-content h4 {
            background: linear-gradient(135deg, var(--accent) 0%, var(--blue) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-size: 1.25rem;
        }

        .timeline-dot-highlight {
            width: 24px !important;
            height: 24px !important;
            background: linear-gradient(135deg, var(--accent) 0%, var(--blue) 100%) !important;
            box-shadow: 0 0 20px rgba(43, 155, 138, 0.5), 0 0 40px rgba(59, 130, 246, 0.3), 0 0 0 4px rgba(43, 155, 138, 0.2) !important;
            animation: highlightPulse 2s ease-in-out infinite;
            will-change: transform;
        }

        @keyframes highlightPulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.15); }
        }

        .timeline-content h4 {
            color: var(--primary-dark);
            margin-bottom: 0.75rem;
            font-size: 1.0625rem;
            font-weight: 700;
            transition: color 0.3s ease;
        }

        .timeline-item:hover .timeline-content h4 {
            color: var(--accent);
        }

        .timeline-content p {
            font-size: 0.9375rem;
            margin-bottom: 0;
            color: var(--text-gray);
            line-height: 1.7;
        }

        /* ==================== Process Section ==================== */
        .process {
            padding: 3.5rem 0;
            background: var(--off-white);
        }

        .process .section-header {
            text-align: center;
            margin-bottom: 2.5rem;
        }

        .process .badge {
            margin-bottom: 1.5rem;
        }

        .process h2 {
            color: var(--primary-dark);
        }

        .process h2 .highlight {
            color: var(--accent);
        }

        .process-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            position: relative;
        }

        .process-grid::before {
            content: '';
            position: absolute;
            top: 40px;
            right: 12%;
            left: 12%;
            height: 2px;
            background: var(--medium-gray);
            z-index: 0;
        }

        .process-step {
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .step-number {
            width: 70px;
            height: 70px;
            background: var(--white);
            border: 3px solid var(--accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--accent);
            margin: 0 auto 1.25rem;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
        }

        .process-step:hover .step-number {
            background: var(--accent);
            color: var(--white);
            box-shadow: var(--shadow-glow);
            transform: rotate(360deg) scale(1.1);
        }

        .step-number::before {
            content: '';
            position: absolute;
            top: -6px;
            left: -6px;
            right: -6px;
            bottom: -6px;
            border: 2px dashed var(--accent);
            border-radius: 50%;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .process-step:hover .step-number::before {
            opacity: 0.5;
            animation: spinBorder 3s linear infinite;
        }

        @keyframes spinBorder {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .process-step h4 {
            color: var(--primary-dark);
            margin-bottom: 0.5rem;
            font-size: 1rem;
        }

        .process-step p {
            font-size: 0.9375rem;
            margin-bottom: 0;
        }

        /* ==================== Contact Section ==================== */
        .contact {
            padding: 3.5rem 0;
            background: var(--white);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2.5rem;
            align-items: start;
        }

        .contact-info .badge {
            margin-bottom: 1.5rem;
        }

        .contact-info h2 {
            color: var(--primary-dark);
            margin-bottom: 1rem;
        }

        .contact-info h2 .highlight {
            color: var(--accent);
        }

        .contact-info > p {
            font-size: 1.125rem;
            margin-bottom: 2rem;
        }

        .contact-methods {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .contact-method {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1.25rem 1.5rem;
            background: linear-gradient(135deg, rgba(248, 250, 251, 0.8), rgba(255, 255, 255, 0.9));
            border: 1px solid rgba(43, 155, 138, 0.1);
            border-radius: 16px;
            color: var(--text-dark);
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .contact-method::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(43, 155, 138, 0.05), rgba(59, 130, 246, 0.05));
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .contact-method:hover::before {
            opacity: 1;
        }

        .contact-method:hover {
            border-color: rgba(43, 155, 138, 0.3);
            box-shadow:
                0 10px 30px rgba(43, 155, 138, 0.1),
                0 0 0 1px rgba(43, 155, 138, 0.1);
            transform: translateX(-8px);
        }

        .contact-method-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--accent), var(--blue));
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            color: white;
            box-shadow: 0 4px 15px rgba(43, 155, 138, 0.3);
            transition: all 0.4s ease;
        }

        .contact-method:hover .contact-method-icon {
            transform: scale(1.1);
            box-shadow: 0 8px 25px rgba(43, 155, 138, 0.4);
        }

        .contact-method-text {
            display: flex;
            flex-direction: column;
        }

        .contact-method-label {
            font-size: 0.8125rem;
            color: var(--text-gray);
        }

        .contact-method-value {
            font-weight: 600;
            color: var(--primary-dark);
        }

        /* Contact Form */
        .contact-form-wrapper {
            background: var(--off-white);
            border: 1px solid var(--medium-gray);
            border-radius: 20px;
            padding: 2.5rem;
        }

        .contact-form-wrapper h3 {
            color: var(--primary-dark);
            margin-bottom: 1.5rem;
            text-align: center;
        }

        .form-group {
            margin-bottom: 1.25rem;
        }

        .form-group label {
            display: block;
            color: var(--text-dark);
            font-size: 0.9375rem;
            font-weight: 500;
            margin-bottom: 0.5rem;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.875rem 1rem;
            background: var(--white);
            border: 1px solid var(--medium-gray);
            border-radius: 10px;
            color: var(--text-dark);
            font-size: 1rem;
            font-family: inherit;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 3px var(--accent-pale);
        }

        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }

        .form-submit {
            width: 100%;
            padding: 1rem;
            background: var(--accent);
            color: var(--white);
            border: none;
            border-radius: 10px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .form-submit:hover {
            background: var(--accent-light);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(43, 155, 138, 0.3);
        }

        /* ==================== Footer ==================== */
        footer {
            background: var(--primary-dark);
            padding: 1.5rem 0 1rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 1.5rem;
            margin-bottom: 1rem;
        }

        .footer-brand p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.85rem;
            margin-bottom: 1rem;
            line-height: 1.5;
        }

        .footer-social {
            display: flex;
            gap: 0.5rem;
        }

        .footer-social a {
            width: 36px;
            height: 36px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-social a svg {
            width: 20px;
            height: 20px;
            fill: currentColor;
        }

        .footer-social a:hover {
            transform: translateY(-3px);
        }

        .footer-social a.whatsapp:hover {
            background: #25D366;
        }

        .footer-social a.email:hover {
            background: var(--accent);
        }

        .footer-social a.linkedin:hover {
            background: #0A66C2;
        }

        .footer-social a.facebook:hover {
            background: #1877F2;
        }

        .footer-column h4 {
            color: var(--white);
            font-size: 0.9rem;
            margin-bottom: 0.75rem;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 0.4rem;
        }

        .footer-column ul a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 0.85rem;
            transition: color 0.3s ease;
        }

        .footer-column ul a:hover {
            color: var(--accent-light);
        }

        .footer-contact-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.85rem;
            margin-bottom: 0.5rem;
        }

        .footer-contact-item span:first-child {
            font-size: 1.125rem;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 2rem;
            text-align: center;
        }

        .footer-bottom p {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.875rem;
            margin: 0;
        }

        .footer-bottom a {
            color: rgba(255, 255, 255, 0.5);
        }

        /* ==================== Booking Modal ==================== */
        .booking-modal {
            display: none;
            position: fixed;
            z-index: 10000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: rgba(26, 46, 53, 0.95);
            backdrop-filter: blur(10px);
        }

        .booking-modal.active {
            display: flex;
            align-items: center;
            justify-content: center;
            animation: fadeIn 0.3s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .booking-modal-content {
            background: var(--white);
            padding: 1.5rem;
            border-radius: 20px;
            max-width: 1400px;
            width: 98%;
            height: 95vh;
            position: relative;
            display: flex;
            flex-direction: column;
        }

        .booking-modal-close {
            position: absolute;
            top: 1rem;
            left: 1rem;
            font-size: 2rem;
            color: var(--text-gray);
            background: var(--off-white);
            border: none;
            cursor: pointer;
            width: 45px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.3s ease;
            z-index: 10;
        }

        .booking-modal-close:hover {
            background: var(--accent);
            color: var(--white);
        }

        .booking-iframe-container {
            width: 100%;
            flex: 1;
            border-radius: 12px;
            overflow: hidden;
            margin-top: 1rem;
        }

        .booking-iframe-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* Progress Bar */
        .progress-bar {
            position: fixed;
            top: 0;
            right: 0;
            height: 3px;
            background: var(--gradient-accent);
            z-index: 1001;
            transition: width 0.2s ease;
        }

        /* Floating Buttons Container */
        .floating-btn-container {
            position: fixed;
            left: 20px;
            z-index: 9999;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }
        .floating-btn-container.chat-container { bottom: 90px; }
        .floating-btn-container.tools-container { bottom: 160px; }

        /* Hide Button (X) for floating elements */
        .floating-hide-btn {
            position: absolute;
            top: -8px;
            right: -8px;
            width: 22px;
            height: 22px;
            background: #ef4444;
            border: 2px solid white;
            border-radius: 50%;
            color: white;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            line-height: 1;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 1;
        }
        .floating-btn-container:hover .floating-hide-btn {
            opacity: 1;
            visibility: visible;
        }
        .floating-hide-btn:hover {
            background: #dc2626;
            transform: scale(1.1);
        }

        /* Floating Chat Button */
        .floating-chat {
            position: relative;
            width: 55px;
            height: 55px;
            background: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.4rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            border: none;
            animation: whatsappPulse 2s ease-in-out infinite;
            will-change: transform;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5), 0 0 40px rgba(37, 211, 102, 0.4);
        }

        @keyframes whatsappPulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.08); }
        }

        .floating-chat::before {
            content: '';
            position: absolute;
            inset: -4px;
            border-radius: 50%;
            background: linear-gradient(45deg, #25D366, #128C7E, #25D366);
            z-index: -1;
            animation: rotateBorder 3s linear infinite;
            opacity: 0.7;
        }

        @keyframes rotateBorder {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .floating-chat:hover {
            background: #20BA5A;
            transform: scale(1.15);
            box-shadow:
                0 8px 40px rgba(37, 211, 102, 0.6),
                0 0 80px rgba(37, 211, 102, 0.5),
                0 0 120px rgba(37, 211, 102, 0.3);
            animation: none;
        }

        /* Floating Tools Button */
        .floating-tools {
            position: relative;
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 20px;
            background: linear-gradient(135deg, var(--accent), var(--blue));
            border-radius: 50px;
            color: white;
            font-size: 0.9rem;
            font-weight: 600;
            box-shadow: 0 4px 25px rgba(43, 155, 138, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            border: none;
            animation: toolsPulse 3s ease-in-out infinite;
            will-change: transform;
        }

        @keyframes toolsPulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.03); }
        }

        .floating-tools:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 8px 40px rgba(43, 155, 138, 0.6);
            animation: none;
        }

        .floating-tools-icon {
            font-size: 1.2rem;
        }

        @media (max-width: 600px) {
            .floating-tools {
                padding: 10px 16px;
                font-size: 0.8rem;
            }
            .floating-tools-icon { font-size: 1rem; }
            .floating-btn-container.chat-container { bottom: 85px; left: 15px; }
            .floating-btn-container.tools-container { bottom: 150px; left: 15px; }
            .chat-popup { left: 15px; bottom: 155px; }
            .floating-hide-btn { width: 20px; height: 20px; font-size: 14px; top: -6px; right: -6px; }
        }

        @media (max-width: 400px) {
            .floating-tools span:not(.floating-tools-icon) { display: none; }
            .floating-tools { padding: 12px; border-radius: 50%; width: 50px; height: 50px; justify-content: center; }
            .floating-btn-container.chat-container { bottom: 80px; left: 12px; }
            .floating-btn-container.tools-container { bottom: 145px; left: 12px; }
            .chat-popup { left: 12px; bottom: 150px; }
            .floating-hide-btn { width: 18px; height: 18px; font-size: 12px; top: -5px; right: -5px; }
        }

        /* ==================== Chat Popup ==================== */
        .chat-popup {
            position: fixed;
            bottom: 160px;
            left: 20px;
            width: 380px;
            max-height: calc(100vh - 180px);
            height: auto;
            min-height: 400px;
            background: var(--primary-dark);
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 30px rgba(43, 155, 138, 0.15);
            z-index: 10000;
            opacity: 0;
            visibility: hidden;
            transform: translateY(30px) scale(0.9);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        .chat-popup.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0) scale(1);
        }

        .chat-popup-header {
            background: linear-gradient(135deg, var(--accent) 0%, var(--blue) 100%);
            padding: 14px 16px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .chat-popup-avatar {
            width: 42px;
            height: 42px;
            background: rgba(255,255,255,0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
        }

        .chat-popup-info {
            flex: 1;
        }

        .chat-popup-name {
            color: white;
            font-weight: 600;
            font-size: 1rem;
        }

        .chat-popup-status {
            color: rgba(255,255,255,0.85);
            font-size: 0.75rem;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .chat-popup-status::before {
            content: '';
            width: 8px;
            height: 8px;
            background: #4ade80;
            border-radius: 50%;
        }

        .chat-popup-close {
            background: rgba(255,255,255,0.2);
            border: none;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            color: white;
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .chat-popup-close:hover {
            background: rgba(255,255,255,0.3);
        }

        .chat-messages {
            flex: 1;
            overflow-y: auto;
            padding: 16px;
            display: flex;
            flex-direction: column;
            gap: 12px;
            background: linear-gradient(180deg, rgba(26, 46, 53, 0.98) 0%, rgba(13, 31, 35, 0.99) 100%);
            position: relative;
        }

        .chat-messages::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('logo-watermark.png');
            background-size: 45px auto;
            background-repeat: repeat;
            background-position: center;
            opacity: 0.04;
            pointer-events: none;
        }

        .chat-message {
            display: flex;
            gap: 8px;
            animation: chatFadeIn 0.3s ease;
            position: relative;
            z-index: 1;
        }

        .chat-message.user {
            flex-direction: row-reverse;
        }

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

        .chat-msg-avatar {
            width: 28px;
            height: 28px;
            background: rgba(43, 155, 138, 0.25);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.85rem;
            flex-shrink: 0;
        }

        .chat-bubble {
            max-width: 80%;
            padding: 10px 14px;
            border-radius: 16px;
            line-height: 1.5;
            color: white;
            font-size: 0.9rem;
        }

        .chat-message.bot .chat-bubble {
            background: rgba(255,255,255,0.1);
            border-bottom-right-radius: 4px;
        }

        .chat-message.user .chat-bubble {
            background: linear-gradient(135deg, var(--accent) 0%, #1e8a7a 100%);
            border-bottom-left-radius: 4px;
        }

        .chat-typing {
            display: flex;
            gap: 4px;
            padding: 14px 18px;
        }

        .chat-typing span {
            width: 7px;
            height: 7px;
            background: rgba(255,255,255,0.4);
            border-radius: 50%;
            animation: chatBounce 1.4s infinite;
        }

        .chat-typing span:nth-child(2) { animation-delay: 0.2s; }
        .chat-typing span:nth-child(3) { animation-delay: 0.4s; }

        @keyframes chatBounce {
            0%, 60%, 100% { transform: translateY(0); }
            30% { transform: translateY(-6px); }
        }

        .chat-input-area {
            padding: 12px 16px;
            border-top: 1px solid rgba(255,255,255,0.1);
            background: rgba(0,0,0,0.3);
        }

        .chat-options {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 8px;
        }

        .chat-options.single-column {
            grid-template-columns: 1fr;
        }

        .chat-option-btn {
            padding: 10px 12px;
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(255,255,255,0.15);
            border-radius: 12px;
            color: white;
            font-size: 0.85rem;
            cursor: pointer;
            transition: all 0.2s;
            font-family: inherit;
            text-align: center;
            white-space: nowrap;
        }

        .chat-option-btn:hover {
            background: rgba(43, 155, 138, 0.3);
            border-color: var(--accent);
        }

        .chat-option-btn.selected {
            background: rgba(43, 155, 138, 0.4);
            border-color: var(--accent);
        }

        .chat-multi-container {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .chat-submit-btn {
            width: 100%;
            padding: 10px;
            background: linear-gradient(135deg, var(--accent) 0%, var(--blue) 100%);
            border: none;
            border-radius: 10px;
            color: white;
            font-weight: 600;
            cursor: pointer;
            font-family: inherit;
            transition: all 0.2s;
        }

        .chat-submit-btn:disabled {
            opacity: 0.4;
            cursor: not-allowed;
        }

        .chat-text-container {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .chat-text-input {
            width: 100%;
            padding: 12px 14px;
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(255,255,255,0.15);
            border-radius: 10px;
            color: white;
            font-size: 0.95rem;
            font-family: inherit;
            transition: all 0.2s;
        }

        .chat-text-input:focus {
            outline: none;
            border-color: var(--accent);
            background: rgba(255,255,255,0.12);
        }

        .chat-text-input.error {
            border-color: #ef4444;
        }

        .chat-text-input::placeholder {
            color: rgba(255,255,255,0.4);
        }

        .chat-error-msg {
            color: #ef4444;
            font-size: 0.8rem;
        }

        .chat-end-actions {
            padding: 14px 16px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            border-top: 1px solid rgba(255,255,255,0.1);
            background: rgba(0,0,0,0.3);
        }

        .chat-action-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 12px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            color: white;
            transition: all 0.2s;
            font-size: 0.95rem;
            border: none;
            cursor: pointer;
            font-family: inherit;
            width: 100%;
        }

        .chat-action-btn:hover {
            transform: translateY(-2px);
        }

        .chat-action-btn.whatsapp {
            background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
        }

        .chat-action-btn.booking {
            background: linear-gradient(135deg, var(--accent) 0%, var(--blue) 100%);
        }

        /* ==================== Cool Tech Features ==================== */

        /* Glitch Effect on Hover for Tech Feel */
        .tech-glitch:hover {
            animation: glitch 0.3s ease;
        }

        @keyframes glitch {
            0% { transform: translate(0); }
            20% { transform: translate(-2px, 2px); }
            40% { transform: translate(-2px, -2px); }
            60% { transform: translate(2px, 2px); }
            80% { transform: translate(2px, -2px); }
            100% { transform: translate(0); }
        }

        /* Code Rain Canvas - Matrix Effect */
        #codeRain {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
            opacity: 0.03;
        }

        /* Terminal-style text animation */
        .terminal-text::after {
            content: '|';
            animation: terminalBlink 1s step-end infinite;
        }

        @keyframes terminalBlink {
            50% { opacity: 0; }
        }

        /* Tech dots decoration */
        .tech-dots {
            position: absolute;
            width: 100px;
            height: 100px;
            background-image: radial-gradient(circle, var(--accent) 1px, transparent 1px);
            background-size: 10px 10px;
            opacity: 0.3;
        }

        /* Scan line effect */

        /* ==================== Responsive Design ==================== */

        @media (min-width: 1440px) {
            .hero-centered {
                max-width: 1100px;
            }

            .hero h1 {
                font-size: 4.5rem;
            }

            .hero-subtitle {
                font-size: 1.4rem;
            }

            .container {
                max-width: 1300px;
            }

            /* WhatsApp button on large screens */
            .floating-chat {
                width: 55px;
                height: 55px;
                font-size: 1.4rem;
            }

            .chat-popup {
                width: 340px;
                max-height: calc(100vh - 160px);
                min-height: 380px;
            }
        }

        @media (max-width: 1024px) {
            .about-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .about-image {
                order: -1;
                max-width: 400px;
                margin: 0 auto;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 2rem;
            }

            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }

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

            .process-grid::before {
                display: none;
            }

            .contact-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .stats-container {
                flex-wrap: wrap;
                gap: 2rem;
            }

            .stat-item:not(:last-child)::after {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .particles {
                display: none !important;
            }

            .hero-grid {
                display: none;
            }

            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                right: 0;
                width: 100%;
                background: rgba(26, 46, 53, 0.98);
                backdrop-filter: blur(20px);
                flex-direction: column;
                padding: 1rem;
                gap: 0;
                box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
            }

            .nav-links.active {
                display: flex;
            }

            .nav-links li {
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            .nav-links a {
                display: block;
                padding: 1rem;
                color: rgba(255, 255, 255, 0.9);
            }

            .mobile-menu {
                display: flex;
            }

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

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

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

            .hero {
                min-height: auto;
                padding: 100px 0 60px;
            }

            .hero h1 {
                font-size: 2rem;
                line-height: 1.3;
            }

            .hero-subtitle {
                font-size: 1rem;
                padding: 0 1rem;
            }

            .hero-buttons {
                flex-direction: column;
                padding: 0 1.5rem;
            }

            .hero-buttons .btn {
                width: 100%;
                justify-content: center;
                padding: 1rem 1.5rem;
            }

            .logo .logo-full-img {
                height: 100px;
                max-width: 280px;
            }

            .hero-wave {
                height: 30px;
            }

            /* Chat Popup Mobile - Fullscreen to avoid keyboard issues */
            .chat-popup {
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                width: 100%;
                height: 100%;
                max-height: none;
                border-radius: 0;
                z-index: 100000;
            }

            .chat-popup-header {
                padding: 12px 14px;
            }

            .chat-popup-avatar {
                width: 36px;
                height: 36px;
                font-size: 1.1rem;
            }

            .chat-popup-name {
                font-size: 0.95rem;
            }

            .chat-messages {
                padding: 12px;
                flex: 1;
                min-height: 0;
            }

            .chat-bubble {
                font-size: 0.9rem;
                padding: 10px 14px;
            }

            .chat-input-area {
                padding: 12px;
                padding-bottom: max(12px, env(safe-area-inset-bottom));
            }

            .chat-option-btn {
                padding: 8px 14px;
                font-size: 0.85rem;
            }

            .chat-text-input {
                font-size: 16px !important; /* Prevents iOS zoom on focus */
            }

            .floating-chat {
                width: 50px;
                height: 50px;
                font-size: 1.25rem;
            }

            .skills-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 0.75rem;
            }

            .services-grid,
            .projects-grid {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
                text-align: center;
                gap: 1.5rem;
            }

            .footer-logo-row {
                text-align: center;
            }

            .footer-brand {
                grid-column: 1 / -1;
            }

            .footer-social {
                justify-content: center;
            }

            .timeline-item,
            .timeline-item:nth-child(odd) {
                flex-direction: column;
            }

            .timeline::before {
                right: 20px;
                transform: none;
            }

            .timeline-content,
            .timeline-item:nth-child(odd) .timeline-content,
            .timeline-item:nth-child(even) .timeline-content {
                width: 100%;
                margin: 0;
                padding-right: 50px;
                text-align: right;
            }

            .timeline-dot {
                right: 20px;
                transform: none;
            }

            .stats-container {
                flex-direction: row;
                flex-wrap: wrap;
                justify-content: space-around;
                gap: 1.5rem;
                padding: 1.5rem 1rem;
            }

            .stat-item {
                flex: 1 1 30%;
                min-width: 80px;
            }

            .stat-number {
                font-size: 1.75rem;
            }

            .stat-plus {
                font-size: 1.25rem;
            }

            .stat-label {
                font-size: 0.8rem;
            }
        }

        @media (max-width: 480px) {
            .nav-container {
                padding: 0.875rem 1rem;
            }

            .logo img {
                height: 60px;
            }

            h1 {
                font-size: 1.875rem;
            }

            h2 {
                font-size: 1.5rem;
            }

            .process-grid {
                grid-template-columns: 1fr;
            }

            .floating-chat {
                width: 50px;
                height: 50px;
                font-size: 1.25rem;
            }

            .booking-modal-content {
                width: 100%;
                height: 100vh;
                border-radius: 0;
                padding: 1rem;
            }

            /* Pain Points Mobile */
            .pain-points {
                padding: 60px 15px;
            }

            .pain-grid {
                gap: 20px;
                margin-top: 30px;
            }

            .pain-card {
                padding: 25px 20px;
            }

            .pain-icon {
                width: 60px;
                height: 60px;
                font-size: 2rem;
            }

            .pain-card h3 {
                font-size: 1.1rem;
            }

            .pain-card p {
                font-size: 0.875rem;
            }

            .pain-solution {
                padding: 20px;
                margin-top: 40px;
            }

            .pain-solution p {
                font-size: 1rem;
            }
        }

        /* Desktop mode on mobile - fix stretched hero */
        @media (max-height: 500px) {
            .hero {
                min-height: auto;
                padding: 80px 0 50px;
            }

            .hero h1 {
                font-size: 1.5rem;
                margin-bottom: 0.5rem;
            }

            .hero-subtitle {
                font-size: 0.85rem;
                margin-bottom: 1rem;
            }

            .hero-buttons {
                gap: 0.5rem;
            }

            .hero-buttons .btn {
                padding: 0.6rem 1.2rem;
                font-size: 0.8rem;
            }

            .stats-container {
                padding: 0.75rem;
                gap: 0.5rem;
            }

            .stat-number {
                font-size: 1.25rem;
            }

            .stat-label {
                font-size: 0.65rem;
            }

            .glow-orb {
                display: none;
            }

            .aurora::before,
            .aurora::after {
                filter: blur(40px);
            }
        }

        /* Smooth scroll handled by Lenis */
        /* a[href^="#"] { scroll-behavior: smooth; } - Disabled for Lenis */

        /* Selection */
        ::selection {
            background: var(--accent);
            color: var(--white);
        }

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

        ::-webkit-scrollbar-track {
            background: var(--off-white);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--accent);
            border-radius: 4px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: var(--accent-light);
        }

        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(135deg, #1e40af 0%, #1e3a5a 100%);
            padding: 1rem 2rem;
            z-index: 10000;
            box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
            transform: translateY(100%);
            transition: transform 0.5s ease;
        }

        .cookie-banner.show {
            transform: translateY(0);
        }

        .cookie-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .cookie-text {
            display: flex;
            align-items: center;
            gap: 1rem;
            flex: 1;
        }

        .cookie-icon {
            font-size: 2rem;
        }

        .cookie-text p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.9375rem;
            margin: 0;
            line-height: 1.6;
        }

        .cookie-text a {
            color: #5dd3bc;
            text-decoration: underline;
        }

        .cookie-btn {
            background: linear-gradient(135deg, #2b9b8a 0%, #3dbaa7 100%);
            color: white;
            border: none;
            padding: 0.75rem 2rem;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .cookie-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(43, 155, 138, 0.4);
        }

        @media (max-width: 768px) {
            .cookie-content {
                flex-direction: column;
                text-align: center;
            }

            .cookie-text {
                flex-direction: column;
            }
        }

        /* Pain Points Section - Premium Design */
        .pain-points {
            padding: 100px 20px;
            background: linear-gradient(180deg, #0a1215 0%, #0d1f23 50%, var(--primary-dark) 100%);
            position: relative;
            overflow: hidden;
        }

        .pain-points::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(ellipse at 50% 0%, rgba(239, 68, 68, 0.08) 0%, transparent 50%);
            pointer-events: none;
        }

        .pain-points .section-header {
            text-align: center;
            margin-bottom: 2.5rem;
        }

        .pain-points .section-header h2 {
            color: white;
        }

        .pain-points h2 .highlight {
            color: #f87171;
        }

        .pain-points .badge {
            background: rgba(239, 68, 68, 0.15);
            border-color: rgba(239, 68, 68, 0.4);
            color: #f87171;
            margin-bottom: 1.5rem;
        }

        .pain-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 50px;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        .pain-card {
            background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
            border: 1px solid rgba(239, 68, 68, 0.15);
            border-radius: 20px;
            padding: 35px 30px;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(10px);
        }

        .pain-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, transparent, rgba(239, 68, 68, 0.6), transparent);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .pain-card:hover {
            border-color: rgba(239, 68, 68, 0.4);
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(239, 68, 68, 0.15), 0 0 0 1px rgba(239, 68, 68, 0.1);
            background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
        }

        .pain-card:hover::before {
            opacity: 1;
        }

        .pain-icon {
            font-size: 2.8rem;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 80px;
            height: 80px;
            margin-left: auto;
            margin-right: auto;
            background: linear-gradient(145deg, rgba(239, 68, 68, 0.15), rgba(239, 68, 68, 0.05));
            border-radius: 20px;
            border: 1px solid rgba(239, 68, 68, 0.2);
            transition: all 0.4s ease;
        }

        .pain-card:hover .pain-icon {
            transform: scale(1.1);
            background: linear-gradient(145deg, rgba(239, 68, 68, 0.25), rgba(239, 68, 68, 0.1));
            box-shadow: 0 10px 30px rgba(239, 68, 68, 0.2);
        }

        .pain-card h3 {
            font-size: 1.25rem;
            margin-bottom: 12px;
            color: #f87171;
            font-weight: 700;
            letter-spacing: -0.02em;
        }

        .pain-card p {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.75);
            line-height: 1.7;
        }

        .pain-solution {
            text-align: center;
            margin-top: 60px;
            padding: 30px 40px;
            background: linear-gradient(145deg, rgba(43, 155, 138, 0.2), rgba(43, 155, 138, 0.08));
            border: 1px solid rgba(43, 155, 138, 0.35);
            border-radius: 16px;
            max-width: 650px;
            margin-left: auto;
            margin-right: auto;
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(43, 155, 138, 0.1);
        }

        .pain-solution::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(43, 155, 138, 0.1) 0%, transparent 50%);
            animation: solutionGlow 8s ease-in-out infinite;
        }

        @keyframes solutionGlow {
            0%, 100% { transform: translate(0, 0); }
            50% { transform: translate(5%, 5%); }
        }

        .pain-solution p {
            font-size: 1.15rem;
            color: white;
            position: relative;
            z-index: 1;
        }

        .pain-solution strong {
            color: var(--accent, #2b9b8a);
        }

        /* FAQ Section */
        .faq-section {
            padding: 80px 20px;
            background: linear-gradient(180deg, var(--primary-dark) 0%, #0d1f23 100%);
        }

        .faq-section .section-header h2 {
            color: white;
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-category {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--accent);
            margin: 30px 0 15px;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }

        .faq-item {
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 12px;
            margin-bottom: 12px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            border-color: rgba(43, 155, 138, 0.3);
        }

        .faq-question {
            padding: 18px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-weight: 500;
            color: white;
            gap: 15px;
        }

        .faq-question span:first-child {
            flex: 1;
        }

        .faq-icon {
            width: 28px;
            height: 28px;
            background: rgba(43, 155, 138, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: var(--accent);
            transition: all 0.3s ease;
            flex-shrink: 0;
        }

        .faq-item.active .faq-icon {
            background: var(--accent);
            color: white;
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            color: rgba(255,255,255,0.7);
            line-height: 1.7;
            font-size: 0.95rem;
        }

        .faq-item.active .faq-answer {
            max-height: 300px;
            padding: 0 20px 18px;
        }

        @media (max-width: 768px) {
            .faq-question {
                padding: 15px;
                font-size: 0.95rem;
            }
            .faq-answer {
                font-size: 0.9rem;
            }
        }

        /* Announcement Bar */
        .announcement-bar {
            width: 100%;
            padding: 10px 20px;
            padding-left: 50px;
            text-align: center;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
            font-size: 0.9rem;
            font-weight: 500;
            color: white;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1002;
        }

        .announcement-bar a {
            padding: 6px 16px;
            border-radius: 20px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.8rem;
            transition: all 0.2s;
            cursor: pointer;
        }

        .announcement-bar a:hover {
            transform: scale(1.05);
        }

        .announcement-bar-close {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            width: 24px;
            height: 24px;
            background: rgba(255, 255, 255, 0.2);
            border: none;
            border-radius: 50%;
            color: white;
            font-size: 18px;
            font-weight: bold;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            line-height: 1;
            transition: all 0.3s ease;
        }
        .announcement-bar-close:hover {
            background: rgba(255, 255, 255, 0.4);
            transform: translateY(-50%) scale(1.1);
        }

        .announcement-bar.hidden {
            display: none;
        }

        @media (max-width: 480px) {
            .announcement-bar {
                font-size: 0.75rem;
                padding: 8px 35px 8px 12px;
                gap: 8px;
            }
            .announcement-bar a {
                font-size: 0.7rem;
                padding: 5px 10px;
            }
            .announcement-bar-close {
                width: 20px;
                height: 20px;
                font-size: 14px;
                left: 8px;
            }
        }

        /* HERO ANIMATED ELEMENTS */
        .hero { position: relative; }
        .holo-globe { position: absolute; left: 15%; top: 50%; transform: translateY(-50%); width: 350px; height: 350px; z-index: 5; }
        .globe-sphere { position: absolute; inset: 40px; border-radius: 50%; background: radial-gradient(circle at 35% 35%, rgba(255,255,255,0.15) 0%, transparent 30%), radial-gradient(circle at 50% 50%, rgba(0,120,180,0.5) 0%, rgba(0,80,120,0.3) 60%, transparent 80%); box-shadow: 0 0 60px rgba(0,255,200,0.5), inset 0 0 60px rgba(0,255,255,0.2); }
        .orbit { position: absolute; inset: 0; border-radius: 50%; border: 2px solid rgba(0,255,200,0.5); animation: orbitSpin 10s linear infinite; }
        .orbit-2 { inset: -20px; border-color: rgba(0,200,255,0.4); animation-duration: 15s; }
        @keyframes orbitSpin { from { transform: rotateX(70deg) rotateY(0); } to { transform: rotateX(70deg) rotateY(360deg); } }
        .ai-chip { position: absolute; left: calc(15% + 130px); top: calc(50% - 45px); width: 90px; height: 90px; z-index: 8; }
        .chip-body { position: absolute; inset: 0; background: linear-gradient(145deg, rgba(0,80,100,0.95), rgba(0,30,50,0.95)); border: 3px solid rgba(0,255,200,0.6); border-radius: 15px; display: flex; align-items: center; justify-content: center; box-shadow: 0 0 40px rgba(0,255,200,0.5); }
        .chip-text { font-size: 2rem; font-weight: 800; color: #00ffe0; text-shadow: 0 0 20px #00ffe0; }
        .robot { position: absolute; left: 3%; top: 30%; z-index: 6; animation: robotFloat 5s ease-in-out infinite; }
        .robot-head { width: 100px; height: 130px; background: linear-gradient(180deg, rgba(180,200,220,0.4), rgba(80,100,120,0.2)); border: 2px solid rgba(0,255,200,0.4); border-radius: 35px 35px 45px 45px; position: relative; box-shadow: 0 0 30px rgba(0,255,200,0.2); }
        .robot-eye { position: absolute; width: 25px; height: 25px; top: 40px; background: radial-gradient(circle, #fff, #0ff, #08c); border-radius: 50%; box-shadow: 0 0 20px #0ff; }
        .robot-eye.left { right: 18px; } .robot-eye.right { left: 18px; }
        @keyframes robotFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }
        .crystal { position: absolute; width: 45px; height: 45px; background: linear-gradient(135deg, rgba(180,100,255,0.8), rgba(100,50,180,0.6)); transform: rotate(45deg); box-shadow: 0 0 30px rgba(150,80,255,0.5); animation: crystalFloat 6s ease-in-out infinite; z-index: 4; }
        .crystal-1 { left: 38%; top: 10%; } .crystal-2 { left: 2%; top: 20%; animation-delay: 2s; } .crystal-3 { left: 1%; bottom: 28%; animation-delay: 4s; }
        @keyframes crystalFloat { 0%,100% { transform: rotate(45deg) translateY(0); } 50% { transform: rotate(45deg) translateY(-20px); } }
        .hero-circuit { position: absolute; height: 2px; background: linear-gradient(90deg, transparent, #0f7 30%, #0fc 50%, #0f7 70%, transparent); box-shadow: 0 0 10px rgba(0,255,127,0.6); animation: circuitGlow 3s ease-in-out infinite; z-index: 3; }
        .hc-1 { width: 220px; top: 25%; left: 3%; } .hc-2 { width: 160px; top: 45%; left: 8%; animation-delay: 1s; } .hc-3 { width: 180px; bottom: 30%; left: 5%; animation-delay: 2s; }
        @keyframes circuitGlow { 0%,100% { opacity: 0.3; } 50% { opacity: 1; } }
        @media (max-width: 1024px) { .robot, .ai-chip { display: none; } .holo-globe { width: 250px; height: 250px; left: 8%; opacity: 0.5; } }
        @media (max-width: 768px) { .holo-globe, .crystal, .robot, .ai-chip, .hero-circuit { display: none; } .hero-centered { text-align: center; margin: 0 auto; max-width: 100%; } }

        /* Lenis Smooth Scroll Styles */
        html.lenis, html.lenis body {
            height: auto;
        }

        .lenis.lenis-smooth {
            scroll-behavior: auto !important;
        }

        .lenis.lenis-smooth [data-lenis-prevent] {
            overscroll-behavior: contain;
        }

        .lenis.lenis-stopped {
            overflow: hidden;
        }

        .lenis.lenis-smooth iframe {
            pointer-events: none;
        }

        /* FAQ Popup Overlay */
        .faq-popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(5px);
            z-index: 9999;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .faq-popup-overlay.active {
            display: flex;
        }

        .faq-popup {
            background: white;
            border-radius: 24px;
            max-width: 700px;
            width: 100%;
            max-height: 85vh;
            overflow-y: auto;
            position: relative;
            box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
            animation: popupSlideIn 0.3s ease;
        }

        @keyframes popupSlideIn {
            from {
                opacity: 0;
                transform: translateY(-30px) scale(0.95);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .faq-popup-header {
            padding: 30px 30px 20px;
            border-bottom: 1px solid var(--medium-gray);
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            background: white;
            border-radius: 24px 24px 0 0;
            z-index: 1;
        }

        .faq-popup-header h2 {
            font-size: 1.5rem;
            color: var(--primary-dark);
            margin: 0;
        }

        .faq-popup-header h2 .highlight {
            color: var(--accent);
        }

        .faq-popup-close {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: none;
            background: var(--off-white);
            color: var(--text-gray);
            font-size: 1.5rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .faq-popup-close:hover {
            background: var(--accent);
            color: white;
        }

        .faq-popup-content {
            padding: 20px 30px 30px;
        }

        .faq-popup .faq-item {
            border: none;
            border-bottom: 1px solid var(--medium-gray);
            border-radius: 0;
            margin-bottom: 0;
        }

        .faq-popup .faq-item:last-child {
            border-bottom: none;
        }

        .faq-popup .faq-category {
            font-weight: 700;
            color: var(--accent);
            padding: 20px 0 10px;
            font-size: 1rem;
            border-top: 2px solid var(--medium-gray);
            margin-top: 10px;
        }

        .faq-popup .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
            cursor: pointer;
            font-weight: 500;
            color: var(--text-dark, #1e293b);
            transition: color 0.3s ease;
        }

        .faq-popup .faq-question span:first-child {
            color: var(--text-dark, #1e293b);
        }

        .faq-popup .faq-question:hover {
            color: var(--accent);
        }

        .faq-popup .faq-icon {
            font-size: 1.5rem;
            color: var(--accent);
            transition: transform 0.3s ease;
        }

        .faq-popup .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }

        .faq-popup .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            color: var(--text-gray);
            line-height: 1.7;
        }

        .faq-popup .faq-item.active .faq-answer {
            max-height: 200px;
            padding-bottom: 15px;
        }
