        /* Same CSS as services.html - Include all the CSS variables and styles here */
        :root {
            --primary-50: #eef2ff;
            --primary-100: #e0e7ff;
            --primary-200: #c7d2fe;
            --primary-300: #a5b4fc;
            --primary-400: #818cf8;
            --primary-500: #6366f1;
            --primary-600: #4361ee;
            --primary-700: #3730a3;
            --primary-800: #312e81;
            --primary-900: #1e1b4b;
            --primary-950: #111034;
            
            --secondary-50: #fbf6ff;
            --secondary-100: #f5eaff;
            --secondary-200: #edd5ff;
            --secondary-300: #dbb4fe;
            --secondary-400: #c384fc;
            --secondary-500: #ac56f7;
            --secondary-600: #9333ea;
            --secondary-700: #7209b7;
            --secondary-800: #6b21a8;
            --secondary-900: #581c87;
            --secondary-950: #330a5f;
            
            --accent-50: #ecfdff;
            --accent-100: #cff9fe;
            --accent-200: #a5f0fb;
            --accent-300: #67e3f9;
            --accent-400: #22ccef;
            --accent-500: #4cc9f0;
            --accent-600: #088ab7;
            --accent-700: #0b6e94;
            --accent-800: #0d5a7a;
            --accent-900: #124b67;
            --accent-950: #073247;
            
            --success-500: #4bb543;
            --warning-500: #f0ad4e;
            --danger-500: #d9534f;
            
            --gray-50: #f9fafb;
            --gray-100: #f3f4f6;
            --gray-200: #e5e7eb;
            --gray-300: #d1d5db;
            --gray-400: #9ca3af;
            --gray-500: #6b7280;
            --gray-600: #4b5563;
            --gray-700: #374151;
            --gray-800: #1f2937;
            --gray-900: #111827;
            --gray-950: #030712;
            
            --space-1: 0.25rem;
            --space-2: 0.5rem;
            --space-3: 0.75rem;
            --space-4: 1rem;
            --space-5: 1.25rem;
            --space-6: 1.5rem;
            --space-8: 2rem;
            --space-10: 2.5rem;
            --space-12: 3rem;
            --space-16: 4rem;
            --space-20: 5rem;
            --space-24: 6rem;
            --space-32: 8rem;
            
            --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
            --text-xs: 0.75rem;
            --text-sm: 0.875rem;
            --text-base: 1rem;
            --text-lg: 1.125rem;
            --text-xl: 1.25rem;
            --text-2xl: 1.5rem;
            --text-3xl: 1.875rem;
            --text-4xl: 2.25rem;
            --text-5xl: 3rem;
            --text-6xl: 3.75rem;
            
            --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
            --transition-normal: 300ms cubic-bezier(0.4, 0, 0.2, 1);
            --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
            --transition-spring: 600ms cubic-bezier(0.25, 0.1, 0.25, 1.4);
            
            --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
            --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
            --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
            --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
            
            --radius-sm: 0.125rem;
            --radius: 0.25rem;
            --radius-md: 0.375rem;
            --radius-lg: 0.5rem;
            --radius-xl: 0.75rem;
            --radius-2xl: 1rem;
            --radius-3xl: 1.5rem;
            --radius-full: 9999px;
            
            --bg-primary: var(--gray-50);
            --bg-secondary: white;
            --bg-tertiary: var(--gray-100);
            --text-primary: var(--gray-900);
            --text-secondary: var(--gray-700);
            --text-tertiary: var(--gray-500);
            --border-color: var(--gray-200);
            --layer-01: rgba(255, 255, 255, 0.7);
            --layer-02: rgba(255, 255, 255, 0.85);
            --layer-03: rgba(255, 255, 255, 0.95);
            --glass-effect: saturate(180%) blur(20px);
            --inverse-bg: var(--gray-900);
            --inverse-text: white;
        }
        
        .dark {
            --bg-primary: var(--gray-950);
            --bg-secondary: var(--gray-900);
            --bg-tertiary: var(--gray-800);
            --text-primary: white;
            --text-secondary: var(--gray-300);
            --text-tertiary: var(--gray-500);
            --border-color: var(--gray-800);
            --layer-01: rgba(17, 24, 39, 0.7);
            --layer-02: rgba(17, 24, 39, 0.85);
            --layer-03: rgba(17, 24, 39, 0.95);
            --glass-effect: saturate(180%) blur(20px);
            --inverse-bg: white;
            --inverse-text: var(--gray-900);
        }
        
        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        
        body {
            font-family: var(--font-sans);
            color: var(--text-primary);
            background-color: var(--bg-primary);
            line-height: 1.6;
            overflow-x: hidden;
            transition: background-color var(--transition-normal), color var(--transition-normal);
        }
        
        a {
            color: var(--primary-600);
            text-decoration: none;
            transition: color var(--transition-fast);
        }
        
        a:hover {
            color: var(--primary-500);
        }
        
        ul {
            list-style: none;
        }
        
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 var(--space-4);
        }
        
        @media (min-width: 640px) {
            .container {
                padding: 0 var(--space-6);
            }
        }
        
        @media (min-width: 1024px) {
            .container {
                padding: 0 var(--space-8);
            }
        }
        
        .section {
            padding: var(--space-16) 0;
        }
        
        @media (min-width: 1024px) {
            .section {
                padding: var(--space-24) 0;
            }
        }
        
        .text-center {
            text-align: center;
        }
        
        .hidden {
            display: none;
        }
        
        .flex {
            display: flex;
        }
        
        .flex-col {
            flex-direction: column;
        }
        
        .items-center {
            align-items: center;
        }
        
        .justify-between {
            justify-content: space-between;
        }
        
        .justify-center {
            justify-content: center;
        }
        
        .gap-1 { gap: var(--space-1); }
        .gap-2 { gap: var(--space-2); }
        .gap-4 { gap: var(--space-4); }
        .gap-6 { gap: var(--space-6); }
        .gap-8 { gap: var(--space-8); }
        
        .grid {
            display: grid;
        }
        
        .grid-cols-1 {
            grid-template-columns: 1fr;
        }
        
        @media (min-width: 640px) {
            .grid-cols-2-sm {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (min-width: 768px) {
            .grid-cols-2-md {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .grid-cols-3-md {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        @media (min-width: 1024px) {
            .grid-cols-3-lg {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .grid-cols-4-lg {
                grid-template-columns: repeat(4, 1fr);
            }
        }
        
        /* Include all other CSS from the original file - header, navigation, buttons, etc. */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            transition: all var(--transition-normal);
        }
        
        .header.scrolled {
            background-color: var(--layer-02);
            backdrop-filter: var(--glass-effect);
            -webkit-backdrop-filter: var(--glass-effect);
            box-shadow: var(--shadow-md);
        }
        
        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
            transition: height var(--transition-normal);
        }
        
        .header.scrolled .header-inner {
            height: 64px;
        }
        
        .logo {
            font-size: var(--text-2xl);
            font-weight: 700;
            color: var(--primary-600);
            display: flex;
            align-items: center;
            transition: all var(--transition-spring);
            position: relative;
            text-decoration: none;
            padding: var(--space-2) var(--space-3);
            border-radius: var(--radius-lg);
            background: linear-gradient(135deg, transparent, rgba(99, 102, 241, 0.05));
            border: 1px solid transparent;
        }
        
        .logo:hover {
            transform: translateY(-3px) scale(1.02);
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(147, 51, 234, 0.08));
            border-color: rgba(99, 102, 241, 0.2);
            box-shadow: 
            0 8px 25px rgba(99, 102, 241, 0.15),
            0 3px 8px rgba(0, 0, 0, 0.1);
        }
        
        .logo::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, 
            rgba(99, 102, 241, 0.1) 0%, 
            rgba(147, 51, 234, 0.08) 50%, 
            rgba(76, 201, 240, 0.06) 100%);
            border-radius: var(--radius-lg);
            opacity: 0;
            transition: opacity var(--transition-normal);
            z-index: -1;
        }
        
        .logo:hover::before {
            opacity: 1;
        }
        
        .logo img {
            height: 40px;
            margin-right: var(--space-3);
            transition: all var(--transition-spring);
            filter: brightness(1) saturate(1);
            border-radius: var(--radius);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }
        
        .logo:hover img {
            height: 42px;
            filter: brightness(1.1) saturate(1.1);
            transform: rotate(-2deg);
            box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
        }
        
        .logo span {
            background: linear-gradient(135deg, 
            var(--primary-600) 0%, 
            var(--secondary-600) 100%);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            animation: logoGradientShift 3s ease-in-out infinite;
            font-weight: 800;
            letter-spacing: -0.02em;
        }
        
        @keyframes logoGradientShift {
            0%, 100% {
            background-position: 0% 50%;
            }
            50% {
            background-position: 100% 50%;
            }
        }
        
        .dark .logo {
            background: linear-gradient(135deg, transparent, rgba(99, 102, 241, 0.1));
        }
        
        .dark .logo:hover {
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(147, 51, 234, 0.12));
        }
        
        @media (max-width: 768px) {
            .logo {
            padding: var(--space-1) var(--space-2);
            font-size: var(--text-lg);
            }
            
            .logo img {
            height: 32px;
            margin-right: var(--space-2);
            }
            
            .logo:hover img {
            height: 34px;
            }
        }
        
        .header.scrolled .logo img {
            height: 32px;
        }
        
        .nav-desktop {
            display: none;
        }
        
        @media (min-width: 768px) {
            .nav-desktop {
                display: flex;
                align-items: center;
            }
            
            .nav-mobile,
            .header .mobile-menu-btn {
                display: none;
            }
        }
        
        .nav-desktop ul {
            display: flex;
            gap: var(--space-8);
        }
        
        .nav-link {
            color: var(--text-primary);
            font-weight: 500;
            position: relative;
            padding: var(--space-2) 0;
            transition: color var(--transition-fast);
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary-600);
            transition: width var(--transition-normal);
        }
        
        .nav-link:hover {
            color: var(--primary-600);
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        .nav-actions {
            display: flex;
            align-items: center;
            gap: var(--space-4);
        }
        
        .theme-toggle {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: var(--bg-tertiary);
            color: var(--text-primary);
            border: none;
            cursor: pointer;
            transition: all var(--transition-fast);
        }
        
        .theme-toggle:hover {
            background-color: var(--primary-100);
            color: var(--primary-600);
            transform: rotate(15deg);
        }
        
        .mobile-menu-close {
            position: absolute;
            top: var(--space-4);
            right: var(--space-4);
            background: none;
            border: none;
            color: var(--text-primary);
            font-size: var(--text-2xl);
            cursor: pointer;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all var(--transition-fast);
        }
        
        .mobile-menu-close:hover {
            background-color: var(--bg-tertiary);
        }
        
        .mobile-menu-btn {
            background: none;
            border: none;
            color: var(--text-primary);
            font-size: var(--text-xl);
            cursor: pointer;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all var(--transition-fast);
        }
        
        .mobile-menu-btn:hover {
            background-color: var(--bg-tertiary);
        }
        
        .nav-mobile {
            position: fixed;
            top: 0;
            right: 0;
            width: 80%;
            max-width: 320px;
            height: 100vh;
            background-color: var(--layer-03);
            backdrop-filter: var(--glass-effect);
            -webkit-backdrop-filter: var(--glass-effect);
            padding: var(--space-8);
            padding-top: 120px;
            transform: translateX(100%);
            transition: transform var(--transition-normal);
            z-index: 900;
            overflow-y: auto;
        }
        
        .nav-mobile.active {
            transform: translateX(0);
        }
        
        .nav-mobile ul {
            display: flex;
            flex-direction: column;
            gap: var(--space-6);
        }
        
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: var(--space-2);
            padding: var(--space-3) var(--space-6);
            border-radius: var(--radius-full);
            font-weight: 600;
            transition: all var(--transition-normal);
            cursor: pointer;
            white-space: nowrap;
            border: none;
            font-family: var(--font-sans);
            font-size: var(--text-base);
        }
        
        .btn-primary {
            background-color: var(--primary-600);
            color: white;
            box-shadow: var(--shadow);
        }
        
        .btn-primary:hover {
            background-color: var(--primary-700);
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }
        
        .btn-outline {
            background-color: transparent;
            border: 2px solid var(--primary-600);
            color: var(--primary-600);
        }
        
        .btn-outline:hover {
            background-color: var(--primary-50);
            color: var(--primary-700);
            transform: translateY(-2px);
        }
        
                /* Page Header */
        .page-header {
            padding-top: 120px;
            padding-bottom: var(--space-20);
            background: linear-gradient(135deg, 
            var(--primary-50) 0%,
            var(--secondary-50) 35%,
            var(--accent-50) 70%,
            var(--primary-100) 100%
            );
            position: relative;
            overflow: hidden;
            transition: all var(--transition-normal);
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .dark .page-header {
            background: linear-gradient(135deg, 
            var(--gray-950) 0%,
            var(--primary-950) 35%,
            var(--secondary-950) 70%,
            var(--gray-900) 100%
            );
        }

        /* Multi-layered Animated Background */
        .page-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 200%;
            height: 200%;
            background: 
            radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.25) 0%, transparent 30%),
            radial-gradient(circle at 80% 70%, rgba(147, 51, 234, 0.2) 0%, transparent 35%),
            radial-gradient(circle at 60% 20%, rgba(76, 201, 240, 0.15) 0%, transparent 40%),
            radial-gradient(circle at 30% 80%, rgba(34, 197, 94, 0.12) 0%, transparent 25%),
            radial-gradient(circle at 90% 10%, rgba(251, 191, 36, 0.1) 0%, transparent 30%);
            opacity: 0.9;
            z-index: -3;
            animation: morphBackground 15s ease-in-out infinite;
            transform: rotate(-10deg);
        }

        .page-header::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
            linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.02) 32%, transparent 34%),
            linear-gradient(-45deg, transparent 30%, rgba(255, 255, 255, 0.02) 32%, transparent 34%),
            linear-gradient(135deg, transparent 48%, rgba(99, 102, 241, 0.05) 50%, transparent 52%);
            background-size: 80px 80px, 120px 120px, 200px 200px;
            z-index: -2;
            animation: patternShift 25s linear infinite;
        }

        /* Floating Geometric Shapes */
        .page-header .geometric-shape {
            position: absolute;
            pointer-events: none;
            z-index: -1;
        }

        .shape-1 {
            width: 60px;
            height: 60px;
            background: linear-gradient(45deg, var(--primary-400), var(--secondary-400));
            border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
            top: 15%;
            left: 10%;
            animation: morphShape 12s ease-in-out infinite, floatUpDown 8s ease-in-out infinite;
            opacity: 0.6;
        }

        .shape-2 {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--accent-400), var(--success-400));
            border-radius: 20% 80% 30% 70% / 60% 40% 60% 40%;
            top: 70%;
            right: 15%;
            animation: morphShape 10s ease-in-out infinite reverse, floatLeftRight 12s ease-in-out infinite;
            opacity: 0.7;
        }

        .shape-3 {
            width: 80px;
            height: 80px;
            background: linear-gradient(90deg, var(--warning-400), var(--danger-400));
            border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
            top: 30%;
            right: 25%;
            animation: morphShape 14s ease-in-out infinite, spinSlow 20s linear infinite;
            opacity: 0.5;
        }

        .shape-4 {
            width: 50px;
            height: 50px;
            background: linear-gradient(180deg, var(--secondary-400), var(--accent-400));
            border-radius: 40% 60% 60% 40% / 60% 30% 70% 40%;
            bottom: 20%;
            left: 25%;
            animation: morphShape 11s ease-in-out infinite reverse, floatDiagonal 15s ease-in-out infinite;
            opacity: 0.6;
        }

        .shape-5 {
            width: 35px;
            height: 35px;
            background: linear-gradient(270deg, var(--primary-500), var(--warning-400));
            border-radius: 70% 30% 30% 70% / 30% 70% 70% 30%;
            top: 50%;
            left: 35%;
            animation: morphShape 9s ease-in-out infinite, pulse 6s ease-in-out infinite;
            opacity: 0.8;
        }

        /* Additional floating particles */
        .page-header .particle {
            position: absolute;
            border-radius: 50%;
            pointer-events: none;
            z-index: -1;
        }

        .particle-1 {
            width: 8px;
            height: 8px;
            background: linear-gradient(45deg, var(--primary-400), var(--primary-600));
            top: 25%;
            left: 15%;
            animation: floatParticle 10s ease-in-out infinite, twinkle 3s ease-in-out infinite;
        }

        .particle-2 {
            width: 12px;
            height: 12px;
            background: linear-gradient(135deg, var(--secondary-400), var(--secondary-600));
            top: 65%;
            right: 20%;
            animation: floatParticle 12s ease-in-out infinite reverse, twinkle 4s ease-in-out infinite;
        }

        .particle-3 {
            width: 6px;
            height: 6px;
            background: linear-gradient(90deg, var(--accent-400), var(--accent-600));
            top: 40%;
            right: 30%;
            animation: floatParticle 14s ease-in-out infinite, twinkle 2.5s ease-in-out infinite;
        }

        .particle-4 {
            width: 10px;
            height: 10px;
            background: linear-gradient(180deg, var(--success-400), var(--success-600));
            bottom: 30%;
            left: 25%;
            animation: floatParticle 11s ease-in-out infinite reverse, twinkle 3.5s ease-in-out infinite;
        }

        .particle-5 {
            width: 4px;
            height: 4px;
            background: linear-gradient(270deg, var(--warning-400), var(--warning-600));
            top: 55%;
            left: 40%;
            animation: floatParticle 13s ease-in-out infinite, twinkle 5s ease-in-out infinite;
        }

        .dark .page-header::before {
            background: 
            radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.15) 0%, transparent 30%),
            radial-gradient(circle at 80% 70%, rgba(147, 51, 234, 0.12) 0%, transparent 35%),
            radial-gradient(circle at 60% 20%, rgba(76, 201, 240, 0.1) 0%, transparent 40%),
            radial-gradient(circle at 30% 80%, rgba(34, 197, 94, 0.08) 0%, transparent 25%),
            radial-gradient(circle at 90% 10%, rgba(251, 191, 36, 0.06) 0%, transparent 30%);
            opacity: 0.6;
        }

        .page-header .container {
            position: relative;
            z-index: 10;
        }
        .page-title {
            font-size: clamp(2.5rem, 8vw, 6rem);
            font-weight: 900;
            margin-bottom: var(--space-8);
            background: linear-gradient(135deg, 
            var(--primary-900) 0%,
            var(--secondary-800) 25%,
            var(--accent-800) 50%,
            var(--primary-950) 75%,
            var(--secondary-900) 100%
            );
            background-size: 300% 300%;
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-align: center;
            line-height: 1.1;
            position: relative;
            animation: titleReveal 2s cubic-bezier(0.25, 0.1, 0.25, 1) both, gradientShift 8s ease-in-out infinite;
            letter-spacing: -0.03em;
            text-shadow: 0 0 40px rgba(99, 102, 241, 0.6);
            filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
        }

        .page-title::before {
            content: '';
            position: absolute;
            top: -25px;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 6px;
            background: linear-gradient(90deg, 
            var(--primary-800) 0%,
            var(--secondary-700) 25%,
            var(--accent-700) 50%,
            var(--success-500) 75%,
            var(--warning-500) 100%
            );
            background-size: 200% 200%;
            border-radius: var(--radius-full);
            animation: lineExpand 1.5s ease-out 0.8s both, gradientFlow 4s ease-in-out infinite;
            box-shadow: 0 0 30px rgba(99, 102, 241, 0.8);
        }

        .page-title::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 110%;
            height: 110%;
            background: linear-gradient(135deg, 
            rgba(99, 102, 241, 0.25) 0%,
            rgba(147, 51, 234, 0.22) 25%,
            rgba(76, 201, 240, 0.18) 50%,
            rgba(34, 197, 94, 0.15) 75%,
            rgba(251, 191, 36, 0.12) 100%
            );
            z-index: -1;
            border-radius: var(--radius-3xl);
            animation: glowPulse 4s ease-in-out infinite, rotate 30s linear infinite;
            filter: blur(15px);
        }

        /* Responsive adjustments for better sizing */
        @media (max-width: 768px) {
            .page-title {
            font-size: clamp(2rem, 10vw, 3.5rem);
            }
        }

        @media (min-width: 1024px) {
            .page-title {
            font-size: clamp(3rem, 6vw, 6rem);
            }
        }

        .page-description {
            font-size: clamp(var(--text-lg), 3vw, var(--text-2xl));
            color: var(--text-secondary);
            text-align: center;
            max-width: 800px;
            margin: 0 auto var(--space-12);
            line-height: 1.6;
            position: relative;
            animation: slideInUp 1.5s ease-out 0.5s both;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .page-description::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 2px;
            background: linear-gradient(90deg, 
            transparent 0%,
            var(--primary-500) 25%,
            var(--accent-500) 75%,
            transparent 100%
            );
            border-radius: var(--radius-full);
            animation: expandFromCenter 1.2s ease-out 1.2s both;
        }

        /* Scroll indicator with enhanced animation */
        .scroll-indicator {
            position: absolute;
            bottom: var(--space-8);
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: var(--space-2);
            animation: slideInUp 1s ease-out 1.5s both;
        }

        .scroll-indicator::before {
            content: 'Scroll';
            font-size: var(--text-sm);
            color: var(--text-tertiary);
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 600;
        }

        .scroll-indicator::after {
            content: '';
            width: 2px;
            height: 30px;
            background: linear-gradient(to bottom, 
            var(--primary-500) 0%,
            transparent 100%
            );
            border-radius: var(--radius-full);
            animation: scrollPulse 2s ease-in-out infinite;
        }

        /* Enhanced Keyframe Animations */
        @keyframes morphBackground {
            0%, 100% {
            transform: rotate(-10deg) scale(1);
            }
            25% {
            transform: rotate(-5deg) scale(1.1);
            }
            50% {
            transform: rotate(0deg) scale(1.05);
            }
            75% {
            transform: rotate(-15deg) scale(1.08);
            }
        }

        @keyframes patternShift {
            0% {
            background-position: 0 0, 0 0, 0 0;
            }
            100% {
            background-position: 80px 80px, -120px 120px, 200px -200px;
            }
        }

        @keyframes morphShape {
            0%, 100% {
            border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
            transform: scale(1);
            }
            25% {
            border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
            transform: scale(1.1);
            }
            50% {
            border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
            transform: scale(0.9);
            }
            75% {
            border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
            transform: scale(1.05);
            }
        }

        @keyframes floatUpDown {
            0%, 100% {
            transform: translateY(0px) rotate(0deg);
            }
            50% {
            transform: translateY(-30px) rotate(180deg);
            }
        }

        @keyframes floatLeftRight {
            0%, 100% {
            transform: translateX(0px) rotate(0deg);
            }
            50% {
            transform: translateX(25px) rotate(-90deg);
            }
        }

        @keyframes floatDiagonal {
            0%, 100% {
            transform: translate(0px, 0px) rotate(0deg);
            }
            50% {
            transform: translate(-20px, -25px) rotate(45deg);
            }
        }

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

        @keyframes floatParticle {
            0%, 100% {
            transform: translateY(0px) translateX(0px) scale(1);
            }
            25% {
            transform: translateY(-20px) translateX(10px) scale(1.2);
            }
            50% {
            transform: translateY(-35px) translateX(-5px) scale(0.8);
            }
            75% {
            transform: translateY(-15px) translateX(15px) scale(1.1);
            }
        }

        @keyframes twinkle {
            0%, 100% {
            opacity: 0.5;
            filter: brightness(1);
            }
            50% {
            opacity: 1;
            filter: brightness(1.5);
            }
        }

        @keyframes titleReveal {
            0% {
            opacity: 0;
            transform: translateY(30px) scale(0.9);
            filter: blur(10px);
            }
            100% {
            opacity: 1;
            transform: translateY(0) scale(1);
            filter: blur(0);
            }
        }

        @keyframes gradientShift {
            0%, 100% {
            background-position: 0% 50%;
            }
            50% {
            background-position: 100% 50%;
            }
        }

        @keyframes lineExpand {
            0% {
            width: 0;
            opacity: 0;
            }
            100% {
            width: 120px;
            opacity: 1;
            }
        }

        @keyframes gradientFlow {
            0%, 100% {
            background-position: 0% 50%;
            }
            50% {
            background-position: 100% 50%;
            }
        }

        @keyframes glowPulse {
            0%, 100% {
            opacity: 0.3;
            transform: translate(-50%, -50%) scale(1);
            }
            50% {
            opacity: 0.6;
            transform: translate(-50%, -50%) scale(1.1);
            }
        }

        @keyframes rotate {
            from {
            transform: translate(-50%, -50%) rotate(0deg);
            }
            to {
            transform: translate(-50%, -50%) rotate(360deg);
            }
        }

        @keyframes slideInUp {
            0% {
            opacity: 0;
            transform: translateY(40px);
            }
            100% {
            opacity: 1;
            transform: translateY(0);
            }
        }

        @keyframes expandFromCenter {
            0% {
            width: 0;
            opacity: 0;
            }
            100% {
            width: 100px;
            opacity: 1;
            }
        }

        @keyframes scrollPulse {
            0%, 100% {
            opacity: 0.5;
            transform: scaleY(1);
            }
            50% {
            opacity: 1;
            transform: scaleY(1.5);
            }
        }

        @keyframes pulse {
            0%, 100% {
            transform: scale(1);
            opacity: 0.6;
            }
            50% {
            transform: scale(1.2);
            opacity: 0.9;
            }
        }

        /* Enhanced Responsive Design */
        @media (max-width: 480px) {
            .page-header {
            padding-top: 90px;
            padding-bottom: var(--space-12);
            min-height: 60vh;
            }
            
            .page-title {
            font-size: clamp(1.8rem, 12vw, 2.5rem);
            margin-bottom: var(--space-6);
            letter-spacing: -0.02em;
            }
            
            .page-title::before {
            width: 40px;
            height: 3px;
            top: -12px;
            }
            
            .page-description {
            font-size: clamp(var(--text-base), 4vw, var(--text-lg));
            margin-bottom: var(--space-8);
            line-height: 1.5;
            }
            
            .page-description::after {
            width: 40px;
            bottom: -10px;
            }
            
            .shape-1, .shape-2, .shape-3, .shape-4, .shape-5 {
            display: none;
            }
            
            .particle-1, .particle-2, .particle-3, .particle-4, .particle-5 {
            display: none;
            }
            
            .scroll-indicator {
            bottom: var(--space-3);
            scale: 0.8;
            }
        }

        @media (max-width: 768px) {
            .page-header {
            padding-top: 100px;
            padding-bottom: var(--space-16);
            min-height: 70vh;
            background: linear-gradient(135deg, 
                var(--primary-50) 0%,
                var(--secondary-50) 50%,
                var(--accent-50) 100%
            );
            }
            
            .dark .page-header {
            background: linear-gradient(135deg, 
                var(--gray-950) 0%,
                var(--primary-950) 50%,
                var(--secondary-950) 100%
            );
            }
            
            .page-title {
            margin-bottom: var(--space-6);
            text-shadow: 0 2px 8px rgba(99, 102, 241, 0.3);
            }
            
            .page-title::before {
            width: 60px;
            height: 4px;
            top: -15px;
            box-shadow: 0 0 20px rgba(99, 102, 241, 0.6);
            }
            
            .page-title::after {
            width: 105%;
            height: 105%;
            filter: blur(10px);
            }
            
            .page-description {
            margin-bottom: var(--space-10);
            }
            
            .page-description::after {
            width: 60px;
            bottom: -12px;
            }
            
            .geometric-shape {
            opacity: 0.3;
            scale: 0.7;
            }
            
            .shape-1 {
            top: 20%;
            left: 5%;
            animation-duration: 15s;
            }
            
            .shape-2 {
            top: 75%;
            right: 10%;
            animation-duration: 12s;
            }
            
            .shape-3 {
            display: none;
            }
            
            .shape-4 {
            bottom: 15%;
            left: 15%;
            animation-duration: 14s;
            }
            
            .shape-5 {
            top: 45%;
            left: 25%;
            animation-duration: 11s;
            }
            
            .scroll-indicator {
            bottom: var(--space-4);
            scale: 0.9;
            }
            
            .scroll-indicator::before {
            font-size: var(--text-xs);
            letter-spacing: 1px;
            }
            
            .scroll-indicator::after {
            height: 25px;
            }
        }

        @media (min-width: 769px) and (max-width: 1023px) {
            .page-header {
            min-height: 85vh;
            padding-bottom: var(--space-20);
            }
            
            .page-title {
            font-size: clamp(3rem, 7vw, 4.5rem);
            margin-bottom: var(--space-8);
            }
            
            .page-title::before {
            width: 100px;
            height: 5px;
            top: -20px;
            }
            
            .page-description {
            font-size: clamp(var(--text-lg), 2.5vw, var(--text-xl));
            max-width: 700px;
            margin-bottom: var(--space-12);
            }
            
            .page-description::after {
            width: 80px;
            }
            
            .geometric-shape {
            opacity: 0.6;
            }
            
            .shape-3 {
            top: 25%;
            right: 20%;
            scale: 0.8;
            }
        }

        @media (min-width: 1024px) {
            .page-header {
            min-height: 100vh;
            padding-bottom: var(--space-24);
            }
            
            .page-title {
            font-size: clamp(4rem, 6vw, 6rem);
            margin-bottom: var(--space-10);
            letter-spacing: -0.04em;
            }
            
            .page-title::before {
            width: 140px;
            height: 6px;
            top: -30px;
            box-shadow: 0 0 40px rgba(99, 102, 241, 1);
            }
            
            .page-title::after {
            width: 115%;
            height: 115%;
            filter: blur(20px);
            }
            
            .page-description {
            font-size: clamp(var(--text-xl), 2vw, var(--text-2xl));
            max-width: 900px;
            margin-bottom: var(--space-16);
            line-height: 1.7;
            }
            
            .page-description::after {
            width: 120px;
            bottom: -20px;
            }
            
            .geometric-shape {
            opacity: 0.8;
            }
            
            .scroll-indicator {
            bottom: var(--space-8);
            scale: 1.1;
            }
            
            .scroll-indicator::before {
            font-size: var(--text-sm);
            letter-spacing: 3px;
            font-weight: 700;
            }
            
            .scroll-indicator::after {
            height: 35px;
            width: 3px;
            }
        }

        @media (min-width: 1440px) {
            .page-header {
            padding-bottom: var(--space-32);
            }
            
            .page-title {
            font-size: clamp(5rem, 5vw, 7rem);
            margin-bottom: var(--space-12);
            }
            
            .page-title::before {
            width: 160px;
            height: 7px;
            top: -35px;
            }
            
            .page-description {
            font-size: var(--text-2xl);
            max-width: 1000px;
            margin-bottom: var(--space-20);
            }
            
            .page-description::after {
            width: 140px;
            bottom: -25px;
            }
            
            .geometric-shape {
            opacity: 0.9;
            }
            
            .shape-1 {
            width: 80px;
            height: 80px;
            }
            
            .shape-2 {
            width: 50px;
            height: 50px;
            }
            
            .shape-3 {
            width: 100px;
            height: 100px;
            }
            
            .shape-4 {
            width: 60px;
            height: 60px;
            }
            
            .shape-5 {
            width: 45px;
            height: 45px;
            }
        }

        /* Ultra-wide screen support */
        @media (min-width: 1920px) {
            .page-header {
            min-height: 90vh;
            }
            
            .page-title {
            font-size: clamp(6rem, 4vw, 8rem);
            }
            
            .page-description {
            font-size: var(--text-3xl);
            max-width: 1200px;
            }
            
            .scroll-indicator {
            scale: 1.2;
            }
        }

        /* High contrast mode support */
        @media (prefers-contrast: high) {
            .page-header {
            background: var(--bg-primary);
            border-bottom: 3px solid var(--text-primary);
            }
            
            .page-title {
            background: none;
            color: var(--text-primary);
            text-shadow: none;
            filter: none;
            }
            
            .page-title::before {
            background: var(--text-primary);
            box-shadow: none;
            }
            
            .page-title::after {
            display: none;
            }
            
            .page-description {
            color: var(--text-primary);
            text-shadow: none;
            }
            
            .page-description::after {
            background: var(--text-primary);
            }
            
            .page-header::before,
            .page-header::after,
            .geometric-shape,
            .particle {
            display: none;
            }
            
            .scroll-indicator::before {
            color: var(--text-primary);
            }
            
            .scroll-indicator::after {
            background: var(--text-primary);
            }
        }

        /* Reduced motion support */
        @media (prefers-reduced-motion: reduce) {
            .page-header::before,
            .page-header::after {
            animation: none;
            transform: none;
            }
            
            .geometric-shape,
            .particle {
            animation: none;
            transform: none;
            position: static;
            opacity: 0.2;
            }
            
            .scroll-indicator {
            animation: none;
            }
            
            .scroll-indicator::after {
            animation: none;
            }
            
            .page-title {
            animation: none;
            opacity: 1;
            transform: none;
            filter: none;
            }
            
            .page-title::before {
            animation: none;
            opacity: 1;
            width: 120px;
            }
            
            .page-title::after {
            animation: none;
            opacity: 0.3;
            transform: translate(-50%, -50%);
            }
            
            .page-description {
            animation: none;
            opacity: 1;
            transform: none;
            }
            
            .page-description::after {
            animation: none;
            opacity: 1;
            width: 100px;
            }
            
            /* Ensure content remains accessible */
            * {
            transition: none !important;
            animation: none !important;
            }
        }

        /* Print styles */
        @media print {
            .page-header {
            background: white;
            color: black;
            min-height: auto;
            padding: var(--space-8) 0;
            }
            
            .page-header::before,
            .page-header::after,
            .geometric-shape,
            .particle,
            .scroll-indicator {
            display: none;
            }
            
            .page-title {
            background: none;
            color: black;
            font-size: var(--text-4xl);
            text-shadow: none;
            filter: none;
            }
            
            .page-title::before,
            .page-title::after {
            display: none;
            }
            
            .page-description {
            color: black;
            font-size: var(--text-lg);
            text-shadow: none;
            }
            
            .page-description::after {
            display: none;
            }
        }

        /* Touch device optimizations */
        @media (hover: none) and (pointer: coarse) {
            .geometric-shape {
            animation-duration: 20s;
            opacity: 0.4;
            }
            
            .particle {
            animation-duration: 15s;
            opacity: 0.6;
            }
            
            .page-title::after {
            animation-duration: 6s;
            }
            
            .scroll-indicator::after {
            animation-duration: 3s;
            }
        }

        /* Dark mode specific responsive adjustments */
        .dark .page-header {
            @media (max-width: 768px) {
            background: linear-gradient(135deg, 
                var(--gray-950) 0%,
                var(--primary-950) 50%,
                var(--secondary-950) 100%
            );
            }
            
            @media (min-width: 1024px) {
            background: linear-gradient(135deg, 
                var(--gray-950) 0%,
                var(--primary-950) 25%,
                var(--secondary-950) 50%,
                var(--accent-950) 75%,
                var(--gray-900) 100%
            );
            }
        }

        /* Landscape orientation adjustments */
        @media (orientation: landscape) and (max-height: 600px) {
            .page-header {
            min-height: 100vh;
            padding-top: 80px;
            padding-bottom: var(--space-8);
            }
            
            .page-title {
            font-size: clamp(2rem, 6vw, 3.5rem);
            margin-bottom: var(--space-4);
            }
            
            .page-description {
            font-size: clamp(var(--text-base), 2vw, var(--text-lg));
            margin-bottom: var(--space-6);
            }
            
            .scroll-indicator {
            bottom: var(--space-2);
            scale: 0.7;
            }
            
            .geometric-shape {
            scale: 0.6;
            opacity: 0.3;
            }
        }
        
/* Cyberpunk Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-10);
    position: relative;
    perspective: 2000px;
}

@media (min-width: 640px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-12);
    }
}

@media (min-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-16);
    }
}

/* Holographic Portfolio Card */
.portfolio-item {
    --hologram-color-1: hsla(240, 100%, 75%, 0.15);
    --hologram-color-2: hsla(270, 100%, 70%, 0.15);
    --hologram-color-3: hsla(190, 100%, 65%, 0.15);
    
    background: rgba(17, 24, 39, 0.6);
    border-radius: var(--radius-3xl);
    overflow: hidden;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all var(--transition-spring);
    border: 1px solid rgba(99, 102, 241, 0.3);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transform-style: preserve-3d;
    animation: portfolioItemReveal 0.8s cubic-bezier(0.25, 0.1, 0.25, 1) both;
}

.portfolio-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        var(--hologram-color-1) 0%,
        var(--hologram-color-2) 50%,
        var(--hologram-color-3) 100%);
    opacity: 0;
    transition: opacity var(--transition-slow);
    z-index: -1;
}

.portfolio-item::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: conic-gradient(
        from 0deg at 50% 50%,
        var(--hologram-color-1) 0deg,
        var(--hologram-color-2) 120deg,
        var(--hologram-color-3) 240deg,
        var(--hologram-color-1) 360deg
    );
    border-radius: var(--radius-3xl);
    opacity: 0;
    z-index: -2;
    transition: opacity var(--transition-slow);
    filter: blur(20px);
    animation: rotate 20s linear infinite;
}

.portfolio-item:hover {
    transform: translateY(-20px) rotateX(8deg) scale(1.05);
    box-shadow: 
        0 40px 80px rgba(99, 102, 241, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(99, 102, 241, 0.6);
}

.portfolio-item:hover::before,
.portfolio-item:hover::after {
    opacity: 0.6;
}

/* Cyberpunk Glow Border */
.portfolio-item .glow-border {
    position: absolute;
    inset: -1px;
    border-radius: var(--radius-3xl);
    padding: 2px;
    background: linear-gradient(135deg, 
        hsl(240, 100%, 75%) 0%,
        hsl(270, 100%, 70%) 50%,
        hsl(190, 100%, 65%) 100%);
    background-size: 200% 200%;
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    transition: opacity var(--transition-normal);
    animation: gradientShift 8s ease infinite;
    z-index: 1;
}

.portfolio-item:hover .glow-border {
    opacity: 0.8;
}

/* Holographic Image Container */
.portfolio-image {
    height: 320px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(45deg, 
        rgba(99, 102, 241, 0.1), 
        rgba(147, 51, 234, 0.1));
}

.portfolio-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(99, 102, 241, 0.2) 0%, 
        transparent 50%, 
        rgba(76, 201, 240, 0.2) 100%);
    z-index: 2;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.portfolio-item:hover .portfolio-image::before {
    opacity: 1;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all var(--transition-spring);
    filter: brightness(1) saturate(1) contrast(1.1);
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.1) rotate(1deg);
    filter: brightness(1.15) saturate(1.3);
}

/* Cyberpunk Content Styling */
.portfolio-content {
    padding: var(--space-10) var(--space-8);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
    background: rgba(31, 41, 55, 0.5);
}

.portfolio-category {
    font-size: var(--text-xs);
    color: hsl(240, 100%, 85%);
    font-weight: 800;
    margin-bottom: var(--space-4);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    position: relative;
    display: inline-block;
    width: fit-content;
    padding: var(--space-2) var(--space-4);
    background: rgba(99, 102, 241, 0.2);
    border-radius: var(--radius-full);
    border: 1px solid rgba(99, 102, 241, 0.4);
    backdrop-filter: blur(5px);
    transition: all var(--transition-normal);
    font-family: 'Orbitron', sans-serif;
}

.portfolio-item:hover .portfolio-category {
    background: rgba(99, 102, 241, 0.4);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.3);
}

.portfolio-title {
    font-size: var(--text-2xl);
    font-weight: 800;
    margin-bottom: var(--space-6);
    color: white;
    line-height: 1.3;
    position: relative;
    transition: all var(--transition-normal);
    font-family: 'Orbitron', sans-serif;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.portfolio-item:hover .portfolio-title {
    color: hsl(240, 100%, 85%);
    text-shadow: 0 0 15px rgba(99, 102, 241, 0.8);
}

.portfolio-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-8);
    flex-grow: 1;
    line-height: 1.7;
    font-size: var(--text-base);
    transition: all var(--transition-normal);
}

.portfolio-item:hover .portfolio-description {
    color: white;
}

/* Digital Result Tags */
.portfolio-results {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
    margin-bottom: var(--space-8);
}

.result-tag {
    background: rgba(99, 102, 241, 0.2);
    color: hsl(240, 100%, 85%);
    padding: var(--space-3) var(--space-5);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 700;
    transition: all var(--transition-normal);
    border: 1px solid rgba(99, 102, 241, 0.4);
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 0.1em;
}

.result-tag::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 var(--transition-slow);
}

.portfolio-item:hover .result-tag::before {
    left: 100%;
}

.result-tag:nth-child(1) {
    background: rgba(74, 222, 128, 0.2);
    color: hsl(142, 100%, 85%);
    border-color: rgba(74, 222, 128, 0.4);
}

.result-tag:nth-child(2) {
    background: rgba(250, 204, 21, 0.2);
    color: hsl(48, 100%, 85%);
    border-color: rgba(250, 204, 21, 0.4);
}

.result-tag:nth-child(3) {
    background: rgba(236, 72, 153, 0.2);
    color: hsl(330, 100%, 85%);
    border-color: rgba(236, 72, 153, 0.4);
}

/* Cyberpunk Link Button */
.portfolio-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    color: black;
    font-weight: 800;
    transition: all var(--transition-spring);
    margin-top: auto;
    padding: var(--space-4) var(--space-8);
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, 
        hsl(240, 100%, 70%), 
        hsl(270, 100%, 65%));
    border: none;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: 'Orbitron', sans-serif;
    box-shadow: 
        0 5px 15px rgba(99, 102, 241, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.portfolio-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.4), 
        transparent);
    transition: left var(--transition-slow);
}

.portfolio-link:hover {
    gap: var(--space-4);
    transform: translateY(-3px);
    box-shadow: 
        0 10px 25px rgba(99, 102, 241, 0.8),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    color: black;
}

.portfolio-link:hover::after {
    left: 100%;
}

/* Premium Project Badge */
.premium-project::before {
    content: '★ PREMIUM';
    position: absolute;
    top: var(--space-6);
    right: var(--space-6);
    font-size: var(--text-xs);
    color: gold;
    opacity: 0;
    transform: scale(0) rotate(-30deg);
    transition: all var(--transition-spring);
    z-index: 4;
    text-shadow: 
        0 0 10px gold,
        0 0 20px rgba(255, 215, 0, 0.7);
    animation: twinkle 3s ease infinite;
    font-family: 'Orbitron', sans-serif;
    font-weight: 800;
    letter-spacing: 0.1em;
    padding: var(--space-2) var(--space-4);
    background: rgba(0, 0, 0, 0.5);
    border-radius: var(--radius-full);
    border: 1px solid gold;
}

.premium-project:hover::before {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

/* Animations */
@keyframes portfolioItemReveal {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

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

@keyframes twinkle {
    0%, 100% {
        opacity: 1;
        text-shadow: 
            0 0 10px gold,
            0 0 20px rgba(255, 215, 0, 0.7);
    }
    50% {
        opacity: 0.7;
        text-shadow: 
            0 0 5px gold,
            0 0 10px rgba(255, 215, 0, 0.5);
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .portfolio-grid {
        gap: var(--space-8);
    }
    
    .portfolio-image {
        height: 240px;
    }
    
    .portfolio-content {
        padding: var(--space-6);
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
    
    .portfolio-item:hover {
        transform: none !important;
    }
}

        
        /* Enhanced Stats Section */
        .stats-section {
            background: linear-gradient(135deg, 
            var(--bg-secondary) 0%,
            var(--primary-50) 25%,
            var(--secondary-50) 75%,
            var(--bg-secondary) 100%);
            padding: var(--space-20) 0;
            position: relative;
            overflow: hidden;
        }
        
        .dark .stats-section {
            background: linear-gradient(135deg, 
            var(--bg-secondary) 0%,
            var(--primary-950) 25%,
            var(--secondary-950) 75%,
            var(--bg-secondary) 100%);
        }
        
        .stats-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
            radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 80% 70%, rgba(147, 51, 234, 0.08) 0%, transparent 50%);
            z-index: 1;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: var(--space-8);
            position: relative;
            z-index: 2;
        }
        
        @media (min-width: 768px) {
            .stats-grid {
            grid-template-columns: repeat(4, 1fr);
            gap: var(--space-10);
            }
        }
        
        .stat-item {
            text-align: center;
            padding: var(--space-6);
            background: linear-gradient(145deg, var(--layer-02), var(--layer-01));
            border-radius: var(--radius-xl);
            border: 1px solid rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            transition: all var(--transition-spring);
            position: relative;
            overflow: hidden;
        }
        
        .stat-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, 
            rgba(99, 102, 241, 0.05) 0%, 
            rgba(147, 51, 234, 0.05) 100%);
            opacity: 0;
            transition: opacity var(--transition-normal);
        }
        
        .stat-item:hover {
            transform: translateY(-10px) scale(1.05);
            box-shadow: 
            var(--shadow-xl),
            0 20px 40px rgba(99, 102, 241, 0.1);
        }
        
        .stat-item:hover::before {
            opacity: 1;
        }
        
        .stat-number {
            font-size: clamp(var(--text-3xl), 8vw, var(--text-5xl));
            font-weight: 900;
            background: linear-gradient(135deg, 
            var(--primary-600) 0%,
            var(--secondary-600) 50%,
            var(--accent-600) 100%);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: var(--space-3);
            display: block;
            animation: statNumberGlow 3s ease-in-out infinite;
            position: relative;
        }
        
        .stat-number::after {
            content: attr(data-number);
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            background: linear-gradient(135deg, 
            var(--primary-400) 0%,
            var(--secondary-400) 50%,
            var(--accent-400) 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            filter: blur(1px);
            opacity: 0.5;
            z-index: -1;
        }
        
        .stat-label {
            color: var(--text-secondary);
            font-weight: 600;
            font-size: var(--text-sm);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            transition: color var(--transition-normal);
        }
        
        .stat-item:hover .stat-label {
            color: var(--primary-600);
        }
        
        /* Enhanced Animation Keyframes */
        @keyframes portfolioItemReveal {
            0% {
            opacity: 0;
            transform: translateY(40px) scale(0.9);
            filter: blur(5px);
            }
            100% {
            opacity: 1;
            transform: translateY(0) scale(1);
            filter: blur(0);
            }
        }
        
        @keyframes portfolioGradientFlow {
            0%, 100% {
            background-position: 0% 50%;
            }
            50% {
            background-position: 100% 50%;
            }
        }
        
        @keyframes statNumberGlow {
            0%, 100% {
            background-position: 0% 50%;
            filter: brightness(1);
            }
            50% {
            background-position: 100% 50%;
            filter: brightness(1.2);
            }
        }
        
        /* Enhanced Responsive Design */
        @media (max-width: 640px) {
            .portfolio-content {
            padding: var(--space-6);
            }
            
            .portfolio-image {
            height: 200px;
            }
            
            .stat-item {
            padding: var(--space-4);
            }
            
            .portfolio-item:hover {
            transform: translateY(-8px);
            }
            
            .portfolio-item:nth-child(odd):hover,
            .portfolio-item:nth-child(even):hover {
            transform: translateY(-8px);
            }
        }
        
        /* Enhanced Accessibility */
        @media (prefers-reduced-motion: reduce) {
            .portfolio-item,
            .stat-item,
            .portfolio-image img,
            .result-tag,
            .portfolio-link {
            transition: none;
            animation: none;
            }
            
            .portfolio-item:hover,
            .stat-item:hover {
            transform: none;
            }
        }
        
        /* High contrast mode support */
        @media (prefers-contrast: high) {
            .portfolio-item {
            border: 2px solid var(--text-primary);
            background: var(--bg-secondary);
            }
            
            .result-tag {
            background: var(--bg-primary);
            border: 1px solid var(--text-primary);
            }
            
            .stat-number {
            background: none;
            color: var(--text-primary);
            }
        }
        
        /* Footer */
        .footer {
            background-color: var(--bg-secondary);
            padding: var(--space-16) 0 var(--space-8);
            color: var(--text-secondary);
            border-top: 1px solid var(--border-color);
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: var(--space-8);
            margin-bottom: var(--space-12);
        }
        
        @media (min-width: 640px) {
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (min-width: 1024px) {
            .footer-grid {
                grid-template-columns: 2fr 1fr 1fr 1fr;
            }
        }
        
        .footer-col h3 {
            font-size: var(--text-lg);
            font-weight: 600;
            margin-bottom: var(--space-4);
            color: var(--text-primary);
            position: relative;
            padding-bottom: var(--space-2);
        }
        
        .footer-col h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: var(--primary-600);
        }
        
        .footer-col p {
            margin-bottom: var(--space-4);
        }
        
        .footer-links {
            display: flex;
            flex-direction: column;
            gap: var(--space-3);
        }
        
        .footer-link {
            color: var(--text-secondary);
            transition: all var(--transition-fast);
            display: inline-block;
        }
        
        .footer-link:hover {
            color: var(--primary-600);
            transform: translateX(var(--space-1));
        }
        
        .footer-bottom {
            padding-top: var(--space-6);
            border-top: 1px solid var(--border-color);
            text-align: center;
            color: var(--text-tertiary);
            font-size: var(--text-sm);
        }
        
        .social-links {
            display: flex;
            gap: var(--space-3);
            margin-top: var(--space-4);
        }
        
        .social-link {
            width: 40px;
            height: 40px;
            background-color: var(--bg-tertiary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-primary);
            transition: all var(--transition-normal);
        }
        
        .social-link:hover {
            background-color: var(--primary-600);
            color: white;
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
        }
        
        /* Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .delay-1 {
            transition-delay: 0.1s;
        }
        
        .delay-2 {
            transition-delay: 0.2s;
        }
        
        .delay-3 {
            transition-delay: 0.3s;
        }
        
        .delay-4 {
            transition-delay: 0.4s;
        }
        
        .delay-5 {
            transition-delay: 0.5s;
        }
        /* Cybernetic Stats Dashboard with Holographic Interface */
.stats-section {
    --neon-primary: hsl(240, 100%, 75%);
    --neon-secondary: hsl(270, 100%, 70%);
    --neon-accent: hsl(190, 100%, 65%);
    --neon-glow: 0 0 10px currentColor, 0 0 20px rgba(99, 102, 241, 0.5);
    
    background: radial-gradient(ellipse at center, 
        rgba(17, 24, 39, 0.95) 0%, 
        rgba(31, 41, 55, 0.98) 100%);
    padding: var(--space-32) 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(99, 102, 241, 0.2);
    border-bottom: 1px solid rgba(147, 51, 234, 0.2);
    will-change: transform;
}

/* Holographic Grid Background */
.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(90deg, 
            transparent 48%, 
            rgba(255, 255, 255, 0.03) 49%, 
            rgba(255, 255, 255, 0.03) 51%, 
            transparent 52%),
        linear-gradient(0deg, 
            transparent 48%, 
            rgba(255, 255, 255, 0.03) 49%, 
            rgba(255, 255, 255, 0.03) 51%, 
            transparent 52%);
    background-size: 60px 60px;
    opacity: 0.6;
    z-index: 1;
    pointer-events: none;
}

/* Floating Data Nodes */
.stats-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, 
        var(--neon-primary) 0%, 
        transparent 70%);
    opacity: 0.3;
    filter: blur(8px);
    animation: floatParticle 15s ease-in-out infinite;
}

.particle:nth-child(1) {
    width: 120px;
    height: 120px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    width: 80px;
    height: 80px;
    top: 60%;
    right: 15%;
    background: radial-gradient(circle, var(--neon-secondary) 0%, transparent 70%);
    animation-delay: 2s;
    animation-duration: 18s;
}

.particle:nth-child(3) {
    width: 60px;
    height: 60px;
    top: 30%;
    right: 25%;
    background: radial-gradient(circle, var(--neon-accent) 0%, transparent 70%);
    animation-delay: 4s;
    animation-duration: 12s;
}

/* Cyberpunk Section Header */
.section-title {
    font-size: clamp(var(--text-4xl), 6vw, var(--text-6xl));
    font-weight: 900;
    margin-bottom: var(--space-6);
    background: linear-gradient(135deg, 
        var(--neon-primary) 0%,
        var(--neon-secondary) 50%,
        var(--neon-accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-align: center;
    position: relative;
    letter-spacing: -0.03em;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    text-shadow: var(--neon-glow);
    animation: neonPulse 8s ease infinite;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 6px;
    background: linear-gradient(90deg, 
        transparent 0%,
        var(--neon-primary) 20%,
        var(--neon-secondary) 50%,
        var(--neon-primary) 80%,
        transparent 100%);
    border-radius: var(--radius-full);
    animation: laserScan 3s linear infinite;
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.8);
}

.section-description {
    font-size: clamp(var(--text-lg), 2.5vw, var(--text-xl));
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto var(--space-16);
    line-height: 1.7;
    text-align: center;
    position: relative;
    padding: var(--space-6);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-2xl);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Holographic Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-10);
    position: relative;
    z-index: 2;
    margin-bottom: var(--space-20);
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: var(--space-12);
    }
}

/* Cybernetic Stat Card */
.stat-item {
    background: rgba(31, 41, 55, 0.6);
    border-radius: var(--radius-3xl);
    padding: var(--space-10);
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(99, 102, 241, 0.3);
    backdrop-filter: blur(20px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all var(--transition-spring);
    transform-style: preserve-3d;
}

.stat-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(99, 102, 241, 0.1) 0%, 
        transparent 50%, 
        rgba(147, 51, 234, 0.1) 100%);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.stat-item:hover {
    transform: translateY(-20px) rotateX(5deg) scale(1.05);
    box-shadow: 
        0 40px 80px rgba(99, 102, 241, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(99, 102, 241, 0.6);
}

.stat-item:hover::before {
    opacity: 1;
}

/* Holographic Stat Icon */
.stat-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto var(--space-8);
    background: rgba(99, 102, 241, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 2px solid rgba(99, 102, 241, 0.4);
    transition: all var(--transition-spring);
}

.stat-icon::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 2px solid var(--neon-primary);
    border-top-color: var(--neon-secondary);
    border-right-color: var(--neon-accent);
    animation: rotate 5s linear infinite;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.stat-item:hover .stat-icon {
    background: rgba(99, 102, 241, 0.4);
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.5);
    transform: rotateY(360deg);
}

.stat-item:hover .stat-icon::before {
    opacity: 0.8;
}

.stat-icon svg {
    width: 50px;
    height: 50px;
    color: var(--neon-primary);
    transition: all var(--transition-normal);
}

.stat-item:hover .stat-icon svg {
    color: white;
    filter: drop-shadow(0 0 10px rgba(99, 102, 241, 0.8));
}

/* Neon Stat Numbers */
.stat-number {
    font-size: clamp(var(--text-4xl), 8vw, var(--text-6xl));
    font-weight: 900;
    color: white;
    margin-bottom: var(--space-4);
    display: block;
    position: relative;
    font-family: 'Orbitron', sans-serif;
    text-shadow: var(--neon-glow);
}

.stat-number::after {
    content: attr(data-number);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    color: var(--neon-primary);
    filter: blur(10px);
    opacity: 0.5;
    z-index: -1;
}

/* Cyberpunk Stat Label */
.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: var(--space-8);
    display: block;
    font-family: 'Orbitron', sans-serif;
    transition: all var(--transition-normal);
}

.stat-item:hover .stat-label {
    color: var(--neon-primary);
    text-shadow: 0 0 8px rgba(99, 102, 241, 0.6);
}

/* Digital Progress Bars */
.stat-progress {
    width: 100%;
    height: 8px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: var(--radius-full);
    overflow: hidden;
    position: relative;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, 
        var(--neon-primary) 0%,
        var(--neon-secondary) 50%,
        var(--neon-accent) 100%);
    border-radius: var(--radius-full);
    width: 0;
    transition: width 2s ease-out 0.5s;
    position: relative;
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.5);
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.6), 
        transparent);
    transform: translateX(-100%);
    animation: progressShimmer 2s infinite;
}

/* Achievement Badges Grid */
.achievements-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-8);
    margin-top: var(--space-16);
    position: relative;
    z-index: 2;
}

@media (min-width: 768px) {
    .achievements-badges {
        grid-template-columns: repeat(4, 1fr);
        gap: var(--space-10);
    }
}

/* Holographic Badge */
.badge-item {
    background: rgba(31, 41, 55, 0.6);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-4);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(99, 102, 241, 0.3);
    backdrop-filter: blur(15px);
    transition: all var(--transition-spring);
}

.badge-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(99, 102, 241, 0.1) 0%, 
        transparent 50%, 
        rgba(147, 51, 234, 0.1) 100%);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.badge-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.3);
    border-color: rgba(99, 102, 241, 0.6);
}

.badge-item:hover::before {
    opacity: 1;
}

.badge-icon {
    font-size: var(--text-4xl);
    color: var(--neon-primary);
    transition: all var(--transition-spring);
    text-shadow: 0 0 10px rgba(99, 102, 241, 0.5);
}

.badge-item:hover .badge-icon {
    transform: scale(1.3) rotate(15deg);
    color: var(--neon-secondary);
    text-shadow: 0 0 20px rgba(147, 51, 234, 0.8);
}

.badge-item span {
    font-size: var(--text-sm);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    transition: all var(--transition-normal);
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 0.1em;
}

.badge-item:hover span {
    color: white;
    text-shadow: 0 0 8px rgba(99, 102, 241, 0.6);
}

/* Cyberpunk Animations */
@keyframes neonPulse {
    0%, 100% {
        text-shadow: 
            0 0 10px var(--neon-primary),
            0 0 20px rgba(99, 102, 241, 0.5);
    }
    50% {
        text-shadow: 
            0 0 15px var(--neon-primary),
            0 0 30px rgba(99, 102, 241, 0.8),
            0 0 45px rgba(147, 51, 234, 0.6);
    }
}

@keyframes laserScan {
    0% {
        background-position: -100% 50%;
    }
    100% {
        background-position: 200% 50%;
    }
}

@keyframes floatParticle {
    0%, 100% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(20px, -20px);
    }
    50% {
        transform: translate(0, -40px);
    }
    75% {
        transform: translate(-20px, -20px);
    }
}

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

@keyframes progressShimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* Responsive Adjustments */
@media (max-width: 640px) {
    .stats-section {
        padding: var(--space-20) 0;
    }
    
    .stats-grid, .achievements-badges {
        grid-template-columns: 1fr;
    }
    
    .stat-item, .badge-item {
        padding: var(--space-8);
    }
    
    .stat-icon {
        width: 80px;
        height: 80px;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
    
    .stat-item:hover, .badge-item:hover {
        transform: none !important;
    }
    
    .progress-bar {
        transition: none !important;
    }
    
    .stat-number::after {
        display: none;
    }
}

/* Neo-Futuristic Clients Section with Holographic UI */
.clients-section {
    --section-bg-gradient: linear-gradient(145deg, 
        var(--bg-secondary) 0%,
        hsl(240, 60%, 15%) 15%,
        hsl(270, 60%, 15%) 30%,
        hsl(190, 80%, 20%) 45%,
        hsl(240, 60%, 15%) 60%,
        hsl(270, 60%, 15%) 75%,
        var(--bg-secondary) 100%);
    --section-bg-gradient-dark: linear-gradient(145deg, 
        var(--bg-secondary) 0%,
        hsl(240, 85%, 5%) 15%,
        hsl(270, 85%, 5%) 30%,
        hsl(190, 85%, 8%) 45%,
        hsl(240, 85%, 5%) 60%,
        hsl(270, 85%, 5%) 75%,
        var(--bg-secondary) 100%);
    
    background: var(--section-bg-gradient);
    padding: var(--space-32) 0;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    border-top: 1px solid rgba(99, 102, 241, 0.2);
    border-bottom: 1px solid rgba(147, 51, 234, 0.2);
}

.dark .clients-section {
    background: var(--section-bg-gradient-dark);
}

/* Holographic Grid Background */
.clients-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 30%, 
            rgba(99, 102, 241, 0.08) 0%, 
            transparent 70%) 0 0,
        radial-gradient(ellipse at 80% 70%, 
            rgba(147, 51, 234, 0.06) 0%, 
            transparent 70%) 0 0,
        radial-gradient(ellipse at 50% 10%, 
            rgba(76, 201, 240, 0.05) 0%, 
            transparent 70%) 0 0;
    background-size: 1200px 800px, 1000px 700px, 800px 600px;
    z-index: -2;
    animation: hologramPulse 25s ease infinite alternate;
}

/* Cyberpunk Grid Overlay */
.clients-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(90deg, 
            transparent 48%, 
            rgba(255, 255, 255, 0.03) 49%, 
            rgba(255, 255, 255, 0.03) 51%, 
            transparent 52%),
        linear-gradient(0deg, 
            transparent 48%, 
            rgba(255, 255, 255, 0.03) 49%, 
            rgba(255, 255, 255, 0.03) 51%, 
            transparent 52%);
    background-size: 60px 60px;
    z-index: -1;
    opacity: 0.6;
    pointer-events: none;
}

/* Holographic Title with Neon Glow */
.section-title {
    font-size: clamp(var(--text-4xl), 7vw, var(--text-7xl));
    font-weight: 900;
    margin-bottom: var(--space-10);
    background: linear-gradient(135deg, 
        hsl(240, 100%, 75%) 0%,
        hsl(270, 100%, 70%) 25%,
        hsl(190, 100%, 65%) 50%,
        hsl(270, 100%, 70%) 75%,
        hsl(240, 100%, 75%) 100%);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: neonPulse 8s ease infinite;
    position: relative;
    letter-spacing: -0.03em;
    text-shadow: 
        0 0 10px rgba(99, 102, 241, 0.5),
        0 0 20px rgba(147, 51, 234, 0.3),
        0 0 30px rgba(76, 201, 240, 0.2);
    line-height: 1;
    text-transform: uppercase;
    font-family: 'Orbitron', sans-serif;
    text-align: center;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 8px;
    background: linear-gradient(90deg, 
        transparent 0%,
        hsl(240, 100%, 70%) 20%,
        hsl(270, 100%, 65%) 50%,
        hsl(240, 100%, 70%) 80%,
        transparent 100%);
    border-radius: var(--radius-full);
    animation: laserScan 3s linear infinite;
    box-shadow: 
        0 0 15px rgba(99, 102, 241, 0.8),
        0 0 30px rgba(147, 51, 234, 0.6);
    opacity: 0.8;
}

.section-description {
    font-size: clamp(var(--text-xl), 3vw, var(--text-2xl));
    color: var(--text-secondary);
    max-width: 900px;
    margin: 0 auto var(--space-16);
    line-height: 1.7;
    text-align: center;
    font-weight: 500;
    position: relative;
    padding: var(--space-6);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-2xl);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Digital Trust Indicators */
.trust-indicators {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-10);
    margin-bottom: var(--space-20);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.trust-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-8);
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.08), 
        rgba(255, 255, 255, 0.04));
    border-radius: var(--radius-2xl);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(25px);
    transition: all var(--transition-spring);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.trust-indicator::before {
    content: '';
    position: absolute;
    inset: 0;
    background: conic-gradient(
        from 90deg at 50% 50%,
        transparent 0deg,
        rgba(99, 102, 241, 0.2) 60deg,
        rgba(147, 51, 234, 0.15) 120deg,
        rgba(76, 201, 240, 0.1) 180deg,
        transparent 240deg,
        transparent 360deg
    );
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: -1;
}

.trust-indicator:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 
        0 25px 50px rgba(99, 102, 241, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(99, 102, 241, 0.5);
}

.trust-indicator:hover::before {
    opacity: 1;
    animation: rotate 6s linear infinite;
}

.trust-icon {
    font-size: var(--text-5xl);
    color: hsl(240, 100%, 75%);
    text-shadow: 
        0 0 10px rgba(99, 102, 241, 0.5),
        0 0 20px rgba(99, 102, 241, 0.3);
    transition: all var(--transition-normal);
}

.trust-indicator:hover .trust-icon {
    transform: scale(1.2);
    filter: drop-shadow(0 0 15px rgba(99, 102, 241, 0.8));
    color: hsl(240, 100%, 85%);
}

.trust-indicator span {
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    transition: all var(--transition-normal);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: 'Orbitron', sans-serif;
}

.trust-indicator:hover span {
    color: hsl(240, 100%, 85%);
    text-shadow: 0 0 8px rgba(99, 102, 241, 0.6);
}

/* Holographic Client Grid */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--space-16);
    align-items: stretch;
    perspective: 2000px;
}

@media (min-width: 768px) {
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Cyberpunk Client Card */
.client-logo {
    --hologram-color-1: hsla(240, 100%, 75%, 0.15);
    --hologram-color-2: hsla(270, 100%, 70%, 0.15);
    --hologram-color-3: hsla(190, 100%, 65%, 0.15);
    
    background: rgba(17, 24, 39, 0.5);
    border-radius: var(--radius-3xl);
    padding: var(--space-12);
    transition: all var(--transition-spring);
    border: 1px solid rgba(99, 102, 241, 0.3);
    backdrop-filter: blur(25px);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    cursor: pointer;
    height: 100%;
    min-height: 480px;
    display: flex;
    flex-direction: column;
    transform-style: preserve-3d;
    transform: translateZ(0);
}

.client-logo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        var(--hologram-color-1) 0%,
        var(--hologram-color-2) 50%,
        var(--hologram-color-3) 100%);
    opacity: 0;
    transition: opacity var(--transition-slow);
    z-index: -1;
}

.client-logo::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: conic-gradient(
        from 0deg at 50% 50%,
        var(--hologram-color-1) 0deg,
        var(--hologram-color-2) 120deg,
        var(--hologram-color-3) 240deg,
        var(--hologram-color-1) 360deg
    );
    border-radius: var(--radius-3xl);
    opacity: 0;
    z-index: -2;
    transition: opacity var(--transition-slow);
    filter: blur(20px);
    animation: rotate 20s linear infinite;
}

.client-logo:hover {
    transform: translateY(-20px) scale(1.05) rotateX(5deg);
    box-shadow: 
        0 40px 80px rgba(99, 102, 241, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(99, 102, 241, 0.6);
}

.client-logo:hover::before,
.client-logo:hover::after {
    opacity: 0.6;
}

/* Holographic Content */
.client-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-12);
    width: 100%;
    flex: 1;
}

.logo-container {
    position: relative;
    width: 260px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    transition: all var(--transition-normal);
    overflow: hidden;
    box-shadow: 
        inset 0 4px 8px rgba(0, 0, 0, 0.2),
        0 10px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.logo-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1) 0%,
        transparent 50%,
        rgba(255, 255, 255, 0.1) 100%
    );
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.client-logo:hover .logo-container {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 
        inset 0 4px 12px rgba(0, 0, 0, 0.3),
        0 15px 30px rgba(99, 102, 241, 0.4);
    border-color: rgba(99, 102, 241, 0.4);
}

.client-logo:hover .logo-container::before {
    opacity: 1;
    animation: shine 3s ease infinite;
}

.logo-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(1) saturate(1) contrast(1.1);
    transition: all var(--transition-normal);
    position: relative;
    z-index: 1;
}

.client-logo:hover .logo-container img {
    filter: brightness(1.2) saturate(1.5) contrast(1.3);
    transform: scale(1.05);
}

/* Cyberpunk Client Info */
.client-info {
    text-align: center;
    transition: all var(--transition-normal);
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.client-info h4 {
    font-size: var(--text-2xl);
    font-weight: 800;
    color: white;
    margin: 0;
    transition: color var(--transition-normal);
    letter-spacing: -0.02em;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    font-family: 'Orbitron', sans-serif;
}

.client-info span {
    font-size: var(--text-base);
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    transition: color var(--transition-normal);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.client-logo:hover .client-info h4 {
    color: hsl(240, 100%, 85%);
    text-shadow: 0 0 15px rgba(99, 102, 241, 0.8);
}

.client-logo:hover .client-info span {
    color: hsl(270, 100%, 80%);
}

/* Digital Metrics Display */
.client-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
    margin-top: var(--space-8);
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--transition-normal);
}

.client-logo:hover .client-metrics {
    opacity: 1;
    transform: translateY(0);
}

.metric {
    text-align: center;
    padding: var(--space-4);
    background: rgba(99, 102, 241, 0.15);
    border-radius: var(--radius-lg);
    transition: all var(--transition-fast);
    border: 1px solid rgba(99, 102, 241, 0.3);
    backdrop-filter: blur(5px);
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 4px 8px rgba(0, 0, 0, 0.2);
}

.metric:hover {
    background: rgba(99, 102, 241, 0.3);
    transform: scale(1.05);
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 6px 12px rgba(0, 0, 0, 0.3);
}

.metric-value {
    display: block;
    font-size: var(--text-xl);
    font-weight: 800;
    color: hsl(240, 100%, 85%);
    margin-bottom: var(--space-2);
    font-family: 'Orbitron', sans-serif;
    text-shadow: 0 0 10px rgba(99, 102, 241, 0.5);
}

.metric-label {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

/* Cyber Badge */
.success-badge {
    position: absolute;
    top: var(--space-8);
    right: var(--space-8);
    background: linear-gradient(135deg, 
        hsl(120, 100%, 45%), 
        hsl(120, 100%, 35%));
    color: black;
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 800;
    opacity: 0;
    transform: scale(0.7) translateY(-20px) rotate(-10deg);
    transition: all var(--transition-spring);
    z-index: 4;
    box-shadow: 
        0 10px 20px rgba(0, 255, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    gap: var(--space-3);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 1px solid rgba(255, 255, 255, 0.4);
    font-family: 'Orbitron', sans-serif;
}

.client-logo:hover .success-badge {
    opacity: 1;
    transform: scale(1) translateY(0) rotate(0deg);
    animation: badgePulse 2s ease infinite;
}

/* Premium Client Marker */
.premium-client::after {
    content: '★';
    position: absolute;
    top: var(--space-8);
    left: var(--space-8);
    font-size: var(--text-2xl);
    color: gold;
    opacity: 0;
    transform: scale(0) rotate(-30deg);
    transition: all var(--transition-spring);
    z-index: 4;
    text-shadow: 
        0 0 10px gold,
        0 0 20px rgba(255, 215, 0, 0.7);
    animation: twinkle 3s ease infinite;
}

.premium-client:hover::after {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

/* Holographic Overlay */
.client-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(17, 24, 39, 0.95), 
        rgba(31, 41, 55, 0.98));
    border-radius: var(--radius-3xl);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-12);
    backdrop-filter: blur(25px);
    z-index: 5;
    transform: scale(0.9);
    border: 1px solid rgba(99, 102, 241, 0.5);
    box-shadow: 
        inset 0 0 50px rgba(99, 102, 241, 0.3),
        0 0 100px rgba(99, 102, 241, 0.4);
}

.client-logo:hover .client-overlay {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.overlay-content {
    text-align: center;
    color: white;
}

.overlay-content h5 {
    font-size: var(--text-2xl);
    font-weight: 800;
    margin-bottom: var(--space-6);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.01em;
    font-family: 'Orbitron', sans-serif;
    color: hsl(240, 100%, 85%);
}

.overlay-content p {
    font-size: var(--text-lg);
    margin-bottom: var(--space-8);
    opacity: 0.9;
    line-height: 1.6;
    font-weight: 500;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.overlay-stats {
    display: flex;
    justify-content: center;
    gap: var(--space-4);
    margin-bottom: var(--space-10);
    flex-wrap: wrap;
}

.overlay-stats .stat {
    background: rgba(99, 102, 241, 0.2);
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 1px solid rgba(99, 102, 241, 0.4);
    backdrop-filter: blur(5px);
    transition: all var(--transition-fast);
}

.overlay-stats .stat:hover {
    background: rgba(99, 102, 241, 0.4);
    transform: translateY(-3px);
}

.overlay-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-4) var(--space-10);
    background: linear-gradient(135deg, 
        hsl(240, 100%, 70%), 
        hsl(270, 100%, 65%));
    color: black;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 800;
    font-size: var(--text-base);
    transition: all var(--transition-normal);
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: 'Orbitron', sans-serif;
    box-shadow: 
        0 5px 15px rgba(99, 102, 241, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.overlay-link:hover {
    background: linear-gradient(135deg, 
        hsl(240, 100%, 80%), 
        hsl(270, 100%, 75%));
    transform: translateY(-5px);
    box-shadow: 
        0 10px 25px rgba(99, 102, 241, 0.8),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    color: black;
}

/* Digital Summary Panel */
.clients-summary {
    text-align: center;
    padding: var(--space-20) var(--space-12);
    background: rgba(17, 24, 39, 0.5);
    border-radius: var(--radius-3xl);
    border: 1px solid rgba(99, 102, 241, 0.3);
    backdrop-filter: blur(25px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    margin-top: var(--space-20);
    position: relative;
    overflow: hidden;
}

.clients-summary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(99, 102, 241, 0.1) 0%,
        transparent 50%,
        rgba(147, 51, 234, 0.1) 100%
    );
    z-index: -1;
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-12);
    max-width: 1200px;
    margin: 0 auto;
}

.summary-item {
    text-align: center;
    position: relative;
    padding: var(--space-6);
}

.summary-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%,
        hsl(240, 100%, 70%) 50%,
        transparent 100%);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.summary-item:hover::after {
    opacity: 1;
}

.summary-number {
    font-size: clamp(var(--text-5xl), 6vw, var(--text-6xl));
    font-weight: 900;
    background: linear-gradient(135deg, 
        hsl(240, 100%, 75%) 0%,
        hsl(270, 100%, 70%) 50%,
        hsl(190, 100%, 65%) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: var(--space-4);
    display: block;
    letter-spacing: -0.02em;
    font-family: 'Orbitron', sans-serif;
    text-shadow: 
        0 0 10px rgba(99, 102, 241, 0.5),
        0 0 20px rgba(147, 51, 234, 0.3);
}

.summary-label {
    font-size: var(--text-base);
    color: rgba(255, 255, 255, 0.7);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: 'Orbitron', sans-serif;
}

/* Responsive Design */
@media (max-width: 768px) {
    .clients-section {
        padding: var(--space-24) 0;
    }

    .section-title {
        font-size: clamp(var(--text-3xl), 8vw, var(--text-4xl));
    }

    .trust-indicators {
        grid-template-columns: 1fr;
    }

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

    .client-logo {
        min-height: 420px;
    }
}

/* Cyberpunk Animations */
@keyframes hologramPulse {
    0%, 100% {
        background-position: 20% 30%, 80% 70%, 50% 10%;
    }
    25% {
        background-position: 30% 40%, 70% 60%, 60% 20%;
    }
    50% {
        background-position: 40% 50%, 60% 50%, 50% 30%;
    }
    75% {
        background-position: 30% 60%, 70% 40%, 40% 20%;
    }
}

@keyframes neonPulse {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes laserScan {
    0% {
        background-position: -100% 50%;
    }
    100% {
        background-position: 200% 50%;
    }
}

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

@keyframes shine {
    0% {
        background-position: -100% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 
            0 10px 20px rgba(0, 255, 0, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 
            0 15px 30px rgba(0, 255, 0, 0.5),
            inset 0 1px 0 rgba(255, 255, 255, 0.6);
    }
}

@keyframes twinkle {
    0%, 100% {
        opacity: 1;
        text-shadow: 
            0 0 10px gold,
            0 0 20px rgba(255, 215, 0, 0.7);
    }
    50% {
        opacity: 0.7;
        text-shadow: 
            0 0 5px gold,
            0 0 10px rgba(255, 215, 0, 0.5);
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
    
    .client-logo:hover,
    .trust-indicator:hover {
        transform: none !important;
    }
}

/* Print Styles */
@media print {
    .clients-section {
        background: white !important;
        padding: 0 !important;
    }
    
    .client-logo {
        background: white !important;
        border: 1px solid #ddd !important;
        box-shadow: none !important;
        min-height: auto !important;
        break-inside: avoid;
    }
    
    .logo-container {
        width: 150px !important;
        height: 100px !important;
    }
}


        /* Floating Contact Button */
        .floating-contact {
            position: fixed;
            bottom: var(--space-6);
            right: var(--space-6);
            z-index: 1000;
        }

        .floating-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary-600), var(--secondary-600));
            color: white;
            border: none;
            font-size: var(--text-2xl);
            cursor: pointer;
            box-shadow: var(--shadow-lg);
            transition: all var(--transition-normal);
            display: flex;
            align-items: center;
            justify-content: center;
            animation: pulse 2s infinite;
        }

        .floating-btn:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: var(--shadow-xl);
        }

        @keyframes pulse {
            0% {
            box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.7);
            }
            70% {
            box-shadow: 0 0 0 10px rgba(99, 102, 241, 0);
            }
            100% {
            box-shadow: 0 0 0 0 rgba(99, 102, 241, 0);
            }
        }

        .contact-options {
            position: absolute;
            bottom: 80px;
            right: 0;
            display: flex;
            flex-direction: column;
            gap: var(--space-3);
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: all var(--transition-normal);
        }

        .contact-options.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .whatsapp-btn,
        .call-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow-md);
            transition: all var(--transition-normal);
            text-decoration: none;
        }

        .whatsapp-btn {
            background-color: #25D366;
        }

        .call-btn {
            background-color: var(--primary-600);
        }

        .whatsapp-btn:hover,
        .call-btn:hover {
            transform: translateY(-2px) scale(1.05);
            box-shadow: var(--shadow-lg);
        }

        .whatsapp-btn img,
        .call-btn img {
            width: 24px;
            height: 24px;
            filter: brightness(0) invert(1);
        }

        @media (max-width: 768px) {
            .floating-contact {
            bottom: var(--space-4);
            right: var(--space-4);
            }

            .floating-btn {
            width: 50px;
            height: 50px;
            font-size: var(--text-lg);
            }

            .whatsapp-btn,
            .call-btn {
            width: 45px;
            height: 45px;
            }

            .whatsapp-btn img,
            .call-btn img {
            width: 20px;
            height: 20px;
            }
        }
           /* Language Switcher Styles */
        .language-switcher {
            display: flex;
            gap: 8px;
            margin-right: 16px;
        }
        
        .language-btn {
            background: none;
            border: 1px solid #ddd;
            border-radius: 4px;
            padding: 6px 10px;
            display: flex;
            align-items: center;
            gap: 6px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .language-btn.active {
            background-color: #f0f0f0;
            border-color: #333;
            font-weight: bold;
        }
        
        .language-btn:hover {
            background-color: #f5f5f5;
        }
        
        .language-flag {
            font-size: 16px;
        }
        
        .language-code {
            font-size: 14px;
        }
        
        .mobile-language-item {
            padding: 12px 16px;
            border-top: 1px solid #eee;
            margin-top: 12px;
        }
        
        .mobile-language-item .language-switcher {
            width: 100%;
            justify-content: center;
        }
        
        .mobile-language-item .language-btn {
            flex: 1;
            justify-content: center;
        }
        
        @media (max-width: 768px) {
            .language-switcher {
                margin-right: 0;
            }
            
            .language-code {
                display: none;
            }
        }
/* ================================================================================================================================================H*/
        /* Service Cards */
        .services-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: var(--space-6);
        }
        
        @media (min-width: 640px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (min-width: 1024px) {
            .services-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        .service-card {
            background-color: var(--bg-secondary);
            border-radius: var(--radius-xl);
            padding: var(--space-8);
            box-shadow: var(--shadow);
            transition: all var(--transition-normal);
            border: 1px solid var(--border-color);
            height: 100%;
            display: flex;
            flex-direction: column;
            position: relative;
            overflow: hidden;
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-500), var(--secondary-500));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform var(--transition-normal);
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }
        
        .service-card:hover::before {
            transform: scaleX(1);
        }
        
        .service-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-100), var(--secondary-100));
            border-radius: var(--radius-lg);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: var(--text-4xl);
            color: var(--primary-600);
            margin-bottom: var(--space-6);
            transform-origin: center;
            transition: all var(--transition-normal);
        }
        
        .service-card:hover .service-icon {
            transform: scale(1.1) rotate(10deg);
            background: linear-gradient(135deg, var(--primary-200), var(--secondary-200));
        }
        
        .service-title {
            font-size: var(--text-2xl);
            font-weight: 600;
            margin-bottom: var(--space-4);
            color: var(--text-primary);
            position: relative;
            display: inline-block;
        }
        
        .service-title::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: var(--primary-400);
            transition: width var(--transition-normal);
        }
        
        .service-card:hover .service-title::after {
            width: 60px;
        }
        
        .service-description {
            color: var(--text-secondary);
            margin-bottom: var(--space-6);
            flex-grow: 1;
            line-height: 1.7;
        }
        
        .service-features {
            list-style: none;
            margin-bottom: var(--space-6);
        }
        
        .service-features li {
            display: flex;
            align-items: center;
            gap: var(--space-2);
            margin-bottom: var(--space-2);
            color: var(--text-secondary);
        }
        
        .service-features li::before {
            content: '✓';
            color: var(--success-500);
            font-weight: bold;
            font-size: var(--text-lg);
        }
        
        .service-price {
            font-size: var(--text-xl);
            font-weight: 700;
            color: var(--primary-600);
            margin-bottom: var(--space-4);
        }
        
        .service-cta {
            margin-top: auto;
        }
        /* Team Section */
        .team-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: var(--space-8);
        }
        
        @media (min-width: 640px) {
            .team-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (min-width: 1024px) {
            .team-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        .team-member {
            background-color: var(--bg-secondary);
            border-radius: var(--radius-xl);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: all var(--transition-normal);
            border: 1px solid var(--border-color);
        }
        
        .team-member:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }
        
        .member-image {
            height: 250px;
            overflow: hidden;
            position: relative;
        }
        
        .member-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition-normal);
        }
        
        .team-member:hover .member-image img {
            transform: scale(1.05);
        }
        
        .member-content {
            padding: var(--space-6);
            text-align: center;
        }
        
        .member-name {
            font-size: var(--text-xl);
            font-weight: 600;
            margin-bottom: var(--space-2);
            color: var(--text-primary);
        }
        
        .member-role {
            color: var(--primary-600);
            font-weight: 500;
            margin-bottom: var(--space-3);
        }
        
        .member-description {
            color: var(--text-secondary);
            font-size: var(--text-sm);
            line-height: 1.6;
        }
         /* Enhanced Cyberpunk About Section Styles */

    /* About Section */
    .about-section {
        background: linear-gradient(135deg, 
            var(--bg-secondary) 0%,
            hsl(240, 60%, 15%) 20%,
            hsl(270, 60%, 15%) 40%,
            hsl(190, 80%, 20%) 60%,
            hsl(240, 60%, 15%) 80%,
            var(--bg-secondary) 100%);
        position: relative;
        overflow: hidden;
    }

    .about-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background: 
            radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.08) 0%, transparent 70%),
            radial-gradient(circle at 80% 70%, rgba(147, 51, 234, 0.06) 0%, transparent 70%);
        z-index: 1;
    }

    .about-content-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: var(--space-20);
        align-items: center;
        position: relative;
        z-index: 2;
    }

    @media (min-width: 1024px) {
        .about-content-grid {
            grid-template-columns: 1.2fr 0.8fr;
        }
    }

    /* Text Panel */
    .about-text-panel {
        background: rgba(17, 24, 39, 0.5);
        border-radius: var(--radius-3xl);
        padding: var(--space-12);
        border: 1px solid rgba(99, 102, 241, 0.3);
        backdrop-filter: blur(25px);
        box-shadow: 
            0 20px 40px rgba(0, 0, 0, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
        position: relative;
        overflow: hidden;
    }

    .panel-header {
        margin-bottom: var(--space-10);
    }

    .cyber-title {
        font-size: clamp(var(--text-3xl), 5vw, var(--text-5xl));
        font-weight: 900;
        background: linear-gradient(135deg, 
            hsl(240, 100%, 75%) 0%,
            hsl(270, 100%, 70%) 50%,
            hsl(190, 100%, 65%) 100%);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        margin: 0;
        letter-spacing: -0.02em;
        font-family: 'Orbitron', sans-serif;
        text-shadow: 
            0 0 20px rgba(99, 102, 241, 0.5),
            0 0 40px rgba(147, 51, 234, 0.3);
    }

    .title-underline {
        width: 100px;
        height: 4px;
        background: linear-gradient(90deg, 
            hsl(240, 100%, 70%) 0%,
            hsl(270, 100%, 65%) 50%,
            hsl(190, 100%, 60%) 100%);
        margin-top: var(--space-4);
        border-radius: var(--radius-full);
        animation: underlineGlow 3s ease infinite;
    }

    /* Story Timeline */
    .story-timeline {
        display: flex;
        flex-direction: column;
        gap: var(--space-10);
        position: relative;
    }

    .story-timeline::before {
        content: '';
        position: absolute;
        left: 40px;
        top: 0;
        bottom: 0;
        width: 2px;
        background: linear-gradient(to bottom, 
            hsl(240, 100%, 70%) 0%,
            hsl(270, 100%, 65%) 50%,
            hsl(190, 100%, 60%) 100%);
        opacity: 0.6;
    }

    .story-item {
        display: flex;
        align-items: flex-start;
        gap: var(--space-8);
        position: relative;
    }

    .story-marker {
        width: 80px;
        height: 80px;
        background: rgba(99, 102, 241, 0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 900;
        font-size: var(--text-xl);
        color: hsl(240, 100%, 85%);
        border: 3px solid rgba(99, 102, 241, 0.5);
        backdrop-filter: blur(10px);
        font-family: 'Orbitron', sans-serif;
        flex-shrink: 0;
        position: relative;
        box-shadow: 
            0 0 20px rgba(99, 102, 241, 0.4),
            inset 0 2px 0 rgba(255, 255, 255, 0.2);
    }

    .story-marker::after {
        content: '';
        position: absolute;
        inset: -8px;
        border-radius: 50%;
        border: 1px solid rgba(99, 102, 241, 0.3);
        animation: markerPulse 4s ease infinite;
    }

    .story-content {
        flex: 1;
        padding-top: var(--space-2);
    }

    .cyber-text {
        color: rgba(255, 255, 255, 0.9);
        line-height: 1.8;
        font-size: var(--text-lg);
        margin: 0;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    }

    /* Holographic Image Panel */
    .about-image-panel {
        position: relative;
    }

    .holographic-frame {
        position: relative;
        border-radius: var(--radius-3xl);
        overflow: hidden;
        background: rgba(17, 24, 39, 0.5);
        border: 1px solid rgba(99, 102, 241, 0.3);
        backdrop-filter: blur(25px);
        box-shadow: 
            0 20px 40px rgba(0, 0, 0, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }

    .holographic-frame img {
        width: 100%;
        height: 400px;
        object-fit: cover;
        filter: brightness(1.1) contrast(1.2) saturate(1.3);
        transition: all var(--transition-normal);
    }

    .holo-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, 
            rgba(99, 102, 241, 0.15) 0%,
            transparent 50%,
            rgba(147, 51, 234, 0.15) 100%);
        mix-blend-mode: overlay;
        pointer-events: none;
    }

    .scan-lines {
        position: absolute;
        inset: 0;
        background: repeating-linear-gradient(
            0deg,
            transparent 0px,
            transparent 2px,
            rgba(255, 255, 255, 0.03) 2px,
            rgba(255, 255, 255, 0.03) 4px
        );
        animation: scanMove 8s linear infinite;
        pointer-events: none;
    }

    /* Values Section */
    .values-section {
        background: radial-gradient(ellipse at center, 
            rgba(17, 24, 39, 0.95) 0%, 
            rgba(31, 41, 55, 0.98) 100%);
        position: relative;
        overflow: hidden;
    }

    .values-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background: 
            linear-gradient(90deg, 
                transparent 48%, 
                rgba(255, 255, 255, 0.02) 49%, 
                rgba(255, 255, 255, 0.02) 51%, 
                transparent 52%),
            linear-gradient(0deg, 
                transparent 48%, 
                rgba(255, 255, 255, 0.02) 49%, 
                rgba(255, 255, 255, 0.02) 51%, 
                transparent 52%);
        background-size: 60px 60px;
        z-index: 1;
    }

    .cyber-subtitle {
        font-size: clamp(var(--text-lg), 2.5vw, var(--text-xl));
        color: rgba(255, 255, 255, 0.8);
        max-width: 800px;
        margin: 0 auto;
        line-height: 1.6;
        text-align: center;
    }

    .values-matrix {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: var(--space-12);
        position: relative;
        z-index: 2;
        margin-top: var(--space-16);
    }

    .value-node {
        background: rgba(17, 24, 39, 0.6);
        border-radius: var(--radius-3xl);
        padding: var(--space-10);
        border: 1px solid rgba(99, 102, 241, 0.3);
        backdrop-filter: blur(25px);
        transition: all var(--transition-spring);
        position: relative;
        overflow: hidden;
        box-shadow: 
            0 20px 40px rgba(0, 0, 0, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
        height: 100%;
    }

    .value-node:hover {
        transform: translateY(-15px) scale(1.03);
        box-shadow: 
            0 30px 60px rgba(99, 102, 241, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
        border-color: rgba(99, 102, 241, 0.6);
    }

    .node-glow {
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, 
            rgba(99, 102, 241, 0.1) 0%,
            transparent 50%,
            rgba(147, 51, 234, 0.1) 100%);
        opacity: 0;
        transition: opacity var(--transition-normal);
        border-radius: var(--radius-3xl);
    }

    .value-node:hover .node-glow {
        opacity: 1;
    }

    .value-content {
        text-align: center;
        height: 100%;
        display: flex;
        flex-direction: column;
        gap: var(--space-6);
    }

    .value-icon-container {
        position: relative;
        margin: 0 auto var(--space-6);
        width: 120px;
        height: 120px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .value-icon {
        font-size: var(--text-6xl);
        color: hsl(240, 100%, 75%);
        position: relative;
        z-index: 2;
        transition: all var(--transition-normal);
        text-shadow: 
            0 0 20px rgba(99, 102, 241, 0.5),
            0 0 40px rgba(99, 102, 241, 0.3);
    }

    .value-node:hover .value-icon {
        transform: scale(1.2);
        color: hsl(240, 100%, 85%);
        text-shadow: 
            0 0 30px rgba(99, 102, 241, 0.8),
            0 0 60px rgba(99, 102, 241, 0.5);
    }

    .icon-rings {
        position: absolute;
        inset: 0;
        border-radius: 50%;
        border: 2px solid rgba(99, 102, 241, 0.3);
        animation: ringRotate 10s linear infinite;
    }

    .icon-rings::before,
    .icon-rings::after {
        content: '';
        position: absolute;
        border-radius: 50%;
        border: 1px solid rgba(147, 51, 234, 0.2);
    }

    .icon-rings::before {
        inset: -15px;
        animation: ringRotate 8s linear infinite reverse;
    }

    .icon-rings::after {
        inset: -30px;
        animation: ringRotate 12s linear infinite;
    }

    .value-title {
        font-size: var(--text-2xl);
        font-weight: 800;
        color: white;
        margin: 0;
        font-family: 'Orbitron', sans-serif;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
        transition: all var(--transition-normal);
    }

    .value-node:hover .value-title {
        color: hsl(240, 100%, 85%);
        text-shadow: 
            0 0 15px rgba(99, 102, 241, 0.8),
            0 2px 4px rgba(0, 0, 0, 0.5);
    }

    .value-description {
        color: rgba(255, 255, 255, 0.8);
        line-height: 1.7;
        flex: 1;
        margin: 0;
    }

    .value-metric {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: var(--space-2);
        padding: var(--space-4);
        background: rgba(99, 102, 241, 0.15);
        border-radius: var(--radius-lg);
        border: 1px solid rgba(99, 102, 241, 0.3);
        margin-top: auto;
    }

    .metric-value {
        font-size: var(--text-3xl);
        font-weight: 900;
        color: hsl(240, 100%, 85%);
        font-family: 'Orbitron', sans-serif;
        text-shadow: 0 0 15px rgba(99, 102, 241, 0.5);
    }

    .metric-label {
        font-size: var(--text-sm);
        color: rgba(255, 255, 255, 0.7);
        text-transform: uppercase;
        letter-spacing: 0.1em;
        font-weight: 600;
    }

    /* Team Section */
    .team-section {
        background: linear-gradient(135deg, 
            var(--bg-secondary) 0%,
            hsl(240, 60%, 15%) 20%,
            hsl(270, 60%, 15%) 40%,
            hsl(190, 80%, 20%) 60%,
            hsl(240, 60%, 15%) 80%,
            var(--bg-secondary) 100%);
        position: relative;
        overflow: hidden;
    }

    .team-matrix {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        gap: var(--space-16);
        position: relative;
        z-index: 2;
    }

    .team-profile {
        background: rgba(17, 24, 39, 0.6);
        border-radius: var(--radius-3xl);
        overflow: hidden;
        border: 1px solid rgba(99, 102, 241, 0.3);
        backdrop-filter: blur(25px);
        transition: all var(--transition-spring);
        box-shadow: 
            0 20px 40px rgba(0, 0, 0, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
        height: 100%;
    }

    .team-profile:hover {
        transform: translateY(-15px) scale(1.02);
        box-shadow: 
            0 30px 60px rgba(99, 102, 241, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
        border-color: rgba(99, 102, 241, 0.6);
    }

    .profile-container {
        padding: var(--space-10);
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .profile-frame {
        position: relative;
        margin: 0 auto var(--space-8);
        width: 200px;
        height: 200px;
    }

    .profile-image {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        overflow: hidden;
        position: relative;
        border: 3px solid rgba(99, 102, 241, 0.5);
        box-shadow: 
            0 0 30px rgba(99, 102, 241, 0.4),
            inset 0 2px 0 rgba(255, 255, 255, 0.2);
    }

    .profile-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(1.1) contrast(1.2);
        transition: all var(--transition-normal);
    }

    .team-profile:hover .profile-image img {
        transform: scale(1.1);
        filter: brightness(1.3) contrast(1.3);
    }

    .profile-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, 
            rgba(99, 102, 241, 0.2) 0%,
            transparent 50%,
            rgba(147, 51, 234, 0.2) 100%);
        opacity: 0;
        transition: opacity var(--transition-normal);
    }

    .team-profile:hover .profile-overlay {
        opacity: 1;
    }

    .profile-scan {
        position: absolute;
        inset: 0;
        background: repeating-linear-gradient(
            90deg,
            transparent 0px,
            transparent 2px,
            rgba(255, 255, 255, 0.1) 2px,
            rgba(255, 255, 255, 0.1) 4px
        );
        animation: profileScan 6s linear infinite;
        opacity: 0;
        transition: opacity var(--transition-normal);
    }

    .team-profile:hover .profile-scan {
        opacity: 1;
    }

    .profile-glow {
        position: absolute;
        inset: -10px;
        border-radius: 50%;
        border: 1px solid rgba(99, 102, 241, 0.3);
        animation: profileGlow 4s ease infinite;
        opacity: 0;
        transition: opacity var(--transition-normal);
    }

    .team-profile:hover .profile-glow {
        opacity: 1;
    }

    .profile-data {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: var(--space-6);
        text-align: center;
    }

    .profile-header {
        margin-bottom: var(--space-4);
    }

    .member-name {
        font-size: var(--text-2xl);
        font-weight: 800;
        color: white;
        margin: 0 0 var(--space-2) 0;
        font-family: 'Orbitron', sans-serif;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
        transition: all var(--transition-normal);
    }

    .team-profile:hover .member-name {
        color: hsl(240, 100%, 85%);
        text-shadow: 
            0 0 15px rgba(99, 102, 241, 0.8),
            0 2px 4px rgba(0, 0, 0, 0.5);
    }

    .member-role {
        color: hsl(270, 100%, 80%);
        font-weight: 600;
        font-size: var(--text-lg);
        text-transform: uppercase;
        letter-spacing: 0.1em;
        margin-bottom: var(--space-3);
    }

    .status-indicator {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: var(--space-2);
        padding: var(--space-2) var(--space-4);
        background: rgba(34, 197, 94, 0.2);
        border: 1px solid rgba(34, 197, 94, 0.4);
        border-radius: var(--radius-full);
        font-size: var(--text-sm);
        font-weight: 700;
        color: rgb(34, 197, 94);
        margin: 0 auto;
        width: fit-content;
    }

    .status-dot {
        width: 8px;
        height: 8px;
        background: rgb(34, 197, 94);
        border-radius: 50%;
        animation: statusPulse 2s ease infinite;
    }

    .profile-stats {
        display: flex;
        justify-content: center;
        gap: var(--space-4);
        margin: var(--space-6) 0;
    }

    .stat-chip {
        background: rgba(99, 102, 241, 0.15);
        border: 1px solid rgba(99, 102, 241, 0.3);
        border-radius: var(--radius-lg);
        padding: var(--space-3) var(--space-5);
        text-align: center;
        min-width: 80px;
    }

    .stat-value {
        display: block;
        font-size: var(--text-lg);
        font-weight: 800;
        color: hsl(240, 100%, 85%);
        font-family: 'Orbitron', sans-serif;
    }

    .stat-label {
        font-size: var(--text-xs);
        color: rgba(255, 255, 255, 0.7);
        text-transform: uppercase;
        letter-spacing: 0.1em;
    }

    .member-description {
        color: rgba(255, 255, 255, 0.8);
        line-height: 1.7;
        margin: 0;
        flex: 1;
    }

    .skill-bars {
        margin-top: auto;
        display: flex;
        flex-direction: column;
        gap: var(--space-4);
    }

    .skill-item {
        display: flex;
        flex-direction: column;
        gap: var(--space-2);
    }

    .skill-name {
        font-size: var(--text-sm);
        color: rgba(255, 255, 255, 0.8);
        font-weight: 600;
        text-align: left;
    }

    .skill-progress {
        width: 100%;
        height: 8px;
        background: rgba(99, 102, 241, 0.2);
        border-radius: var(--radius-full);
        overflow: hidden;
        position: relative;
    }

    .skill-fill {
        height: 100%;
        background: linear-gradient(90deg, 
            hsl(240, 100%, 70%) 0%,
            hsl(270, 100%, 65%) 50%,
            hsl(190, 100%, 60%) 100%);
        border-radius: var(--radius-full);
        transition: width 2s ease;
        position: relative;
        overflow: hidden;
    }

    .skill-fill::after {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, 
            transparent 0%, 
            rgba(255, 255, 255, 0.4) 50%, 
            transparent 100%);
        animation: skillShine 3s ease infinite;
    }

    /* Mission Section */
    .mission-section {
        background: radial-gradient(ellipse at center, 
            rgba(17, 24, 39, 0.95) 0%, 
            rgba(31, 41, 55, 0.98) 100%);
        position: relative;
        overflow: hidden;
    }

    .mission-interface {
        background: rgba(17, 24, 39, 0.6);
        border-radius: var(--radius-3xl);
        padding: var(--space-16);
        border: 1px solid rgba(99, 102, 241, 0.3);
        backdrop-filter: blur(25px);
        box-shadow: 
            0 20px 40px rgba(0, 0, 0, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
        position: relative;
        overflow: hidden;
    }

    .interface-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: var(--space-12);
        flex-wrap: wrap;
        gap: var(--space-4);
    }

    .mission-status {
        display: flex;
        align-items: center;
        gap: var(--space-4);
    }

    .status-indicator.active {
        background: rgba(34, 197, 94, 0.2);
        color: rgb(34, 197, 94);
        border-color: rgba(34, 197, 94, 0.4);
    }

    .mission-code {
        background: rgba(99, 102, 241, 0.2);
        color: hsl(240, 100%, 85%);
        padding: var(--space-2) var(--space-4);
        border-radius: var(--radius-lg);
        font-family: 'Orbitron', sans-serif;
        font-weight: 700;
        font-size: var(--text-sm);
        border: 1px solid rgba(99, 102, 241, 0.3);
    }

    .mission-content {
        display: flex;
        flex-direction: column;
        gap: var(--space-10);
    }

    .mission-text {
        text-align: center;
    }

    .cyber-mission-statement {
        font-size: clamp(var(--text-xl), 3vw, var(--text-2xl));
        color: rgba(255, 255, 255, 0.9);
        line-height: 1.8;
        margin: 0;
        max-width: 900px;
        margin: 0 auto;
        font-weight: 500;
    }

    .mission-metrics {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: var(--space-8);
        margin: var(--space-12) 0;
    }

    .metric-panel {
        background: rgba(99, 102, 241, 0.15);
        border: 1px solid rgba(99, 102, 241, 0.3);
        border-radius: var(--radius-2xl);
        padding: var(--space-8);
        text-align: center;
        transition: all var(--transition-normal);
    }

    .metric-panel:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(99, 102, 241, 0.3);
        border-color: rgba(99, 102, 241, 0.5);
    }

    .metric-number {
        display: block;
        font-size: var(--text-4xl);
        font-weight: 900;
        color: hsl(240, 100%, 85%);
        font-family: 'Orbitron', sans-serif;
        margin-bottom: var(--space-2);
        text-shadow: 0 0 20px rgba(99, 102, 241, 0.5);
    }

    .metric-label {
        font-size: var(--text-sm);
        color: rgba(255, 255, 255, 0.8);
        text-transform: uppercase;
        letter-spacing: 0.1em;
        font-weight: 600;
    }

    .mission-actions {
        display: flex;
        justify-content: center;
        gap: var(--space-6);
        flex-wrap: wrap;
        margin-top: var(--space-8);
    }

    .cyber-btn {
        position: relative;
        padding: var(--space-4) var(--space-8);
        border-radius: var(--radius-lg);
        text-decoration: none;
        font-weight: 700;
        font-size: var(--text-lg);
        transition: all var(--transition-normal);
        overflow: hidden;
        border: 2px solid;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 200px;
    }

    .cyber-btn.primary {
        background: linear-gradient(135deg, 
            hsl(240, 100%, 70%) 0%,
            hsl(270, 100%, 65%) 100%);
        color: white;
        border-color: hsl(240, 100%, 70%);
        box-shadow: 
            0 10px 30px rgba(99, 102, 241, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }

    .cyber-btn.secondary {
        background: transparent;
        color: hsl(240, 100%, 85%);
        border-color: rgba(99, 102, 241, 0.5);
    }

    .cyber-btn:hover {
        transform: translateY(-3px);
    }

    .cyber-btn.primary:hover {
        box-shadow: 
            0 15px 40px rgba(99, 102, 241, 0.6),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }

    .cyber-btn.secondary:hover {
        background: rgba(99, 102, 241, 0.1);
        border-color: rgba(99, 102, 241, 0.8);
    }

    .btn-text {
        position: relative;
        z-index: 2;
    }

    .btn-glow {
        position: absolute;
        inset: 0;
        background: inherit;
        opacity: 0;
        filter: blur(20px);
        transition: opacity var(--transition-normal);
    }

    .cyber-btn:hover .btn-glow {
        opacity: 0.7;
    }

    /* Floating Contact Styles */
    .floating-contact {
        position: fixed;
        bottom: 30px;
        right: 30px;
        z-index: 1000;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 15px;
    }

    .floating-btn {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: linear-gradient(135deg, hsl(240, 100%, 70%), hsl(270, 100%, 65%));
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 
            0 8px 25px rgba(99, 102, 241, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
        transition: all var(--transition-normal);
        position: relative;
        overflow: hidden;
    }

    .floating-btn:hover {
        transform: scale(1.1);
        box-shadow: 
            0 12px 35px rgba(99, 102, 241, 0.6),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }

    .contact-icon {
        font-size: 24px;
        position: relative;
        z-index: 2;
    }

    .contact-pulse {
        position: absolute;
        inset: -10px;
        border-radius: 50%;
        border: 2px solid rgba(99, 102, 241, 0.4);
        animation: contactPulse 2s ease infinite;
    }

    .contact-options {
        display: flex;
        flex-direction: column;
        gap: 10px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(20px);
        transition: all var(--transition-normal);
    }

    .contact-options.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .whatsapp-btn,
    .call-btn {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        transition: all var(--transition-normal);
        position: relative;
        overflow: hidden;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .whatsapp-btn {
        background: rgba(37, 211, 102, 0.9);
    }

    .call-btn {
        background: rgba(59, 130, 246, 0.9);
    }

    .whatsapp-btn:hover,
    .call-btn:hover {
        transform: scale(1.1);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    }

    .whatsapp-btn img,
    .call-btn img {
        width: 24px;
        height: 24px;
        filter: brightness(0) invert(1);
    }

    .contact-tooltip {
        position: absolute;
        right: 60px;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(17, 24, 39, 0.9);
        color: white;
        padding: 8px 12px;
        border-radius: 6px;
        font-size: 14px;
        white-space: nowrap;
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-normal);
        border: 1px solid rgba(99, 102, 241, 0.3);
        backdrop-filter: blur(10px);
    }

    .whatsapp-btn:hover .contact-tooltip,
    .call-btn:hover .contact-tooltip {
        opacity: 1;
        visibility: visible;
    }

    /* Animations */
    @keyframes underlineGlow {
        0%, 100% { box-shadow: 0 0 10px rgba(99, 102, 241, 0.5); }
        50% { box-shadow: 0 0 20px rgba(99, 102, 241, 0.8), 0 0 30px rgba(147, 51, 234, 0.4); }
    }

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

    @keyframes scanMove {
        0% { transform: translateY(-100%); }
        100% { transform: translateY(100%); }
    }

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

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

    @keyframes profileScan {
        0% { transform: translateX(-100%); }
        100% { transform: translateX(100%); }
    }

    @keyframes profileGlow {
        0%, 100% { transform: scale(1); opacity: 0.3; }
        50% { transform: scale(1.1); opacity: 0.6; }
    }

    @keyframes skillShine {
        0% { left: -100%; }
        50% { left: 100%; }
        100% { left: 100%; }
    }

    @keyframes contactPulse {
        0%, 100% { transform: scale(1); opacity: 1; }
        50% { transform: scale(1.2); opacity: 0.6; }
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .about-content-grid {
            gap: var(--space-12);
        }
        
        .story-timeline::before {
            left: 30px;
        }
        
        .story-marker {
            width: 60px;
            height: 60px;
            font-size: var(--text-lg);
        }
        
        .values-matrix {
            grid-template-columns: 1fr;
            gap: var(--space-8);
        }
        
        .team-matrix {
            grid-template-columns: 1fr;
            gap: var(--space-12);
        }
        
        .mission-metrics {
            grid-template-columns: 1fr;
            gap: var(--space-6);
        }
        
        .mission-actions {
            flex-direction: column;
            align-items: center;
        }
        
        .cyber-btn {
            width: 100%;
            max-width: 300px;
        }
        
        .floating-contact {
            bottom: 20px;
            right: 20px;
        }
        
        .floating-btn {
            width: 50px;
            height: 50px;
        }
        
        .contact-icon {
            font-size: 20px;
        }
    }

    @media (max-width: 480px) {
        .about-text-panel,
        .mission-interface {
            padding: var(--space-8);
        }
        
        .story-item {
            flex-direction: column;
            text-align: center;
        }
        
        .story-timeline::before {
            display: none;
        }
        
        .value-node {
            padding: var(--space-8);
        }
        
        .profile-frame {
            width: 150px;
            height: 150px;
        }
        
        .interface-header {
            flex-direction: column;
            text-align: center;
        }
    /* Cyberpunk Blog Section */
    .blog-categories {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: var(--space-4);
        margin-bottom: var(--space-20);
        position: relative;
        z-index: 2;
    }

    .category-btn {
        --btn-bg: rgba(17, 24, 39, 0.6);
        --btn-border: rgba(99, 102, 241, 0.3);
        --btn-text: rgba(255, 255, 255, 0.8);
        --btn-hover-bg: rgba(99, 102, 241, 0.2);
        --btn-active-bg: linear-gradient(135deg, hsl(240, 100%, 70%), hsl(270, 100%, 65%));
        
        background: var(--btn-bg);
        border: 1px solid var(--btn-border);
        border-radius: var(--radius-full);
        padding: var(--space-3) var(--space-6);
        color: var(--btn-text);
        font-weight: 600;
        font-size: var(--text-sm);
        text-transform: uppercase;
        letter-spacing: 0.1em;
        cursor: pointer;
        transition: all var(--transition-spring);
        backdrop-filter: blur(15px);
        position: relative;
        overflow: hidden;
        font-family: 'Orbitron', sans-serif;
        box-shadow: 
            0 4px 15px rgba(0, 0, 0, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }

    .category-btn::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, 
            rgba(99, 102, 241, 0.1) 0%,
            transparent 50%,
            rgba(147, 51, 234, 0.1) 100%);
        opacity: 0;
        transition: opacity var(--transition-normal);
    }

    .category-btn:hover {
        background: var(--btn-hover-bg);
        border-color: rgba(99, 102, 241, 0.6);
        transform: translateY(-3px);
        box-shadow: 
            0 8px 25px rgba(99, 102, 241, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
        color: white;
    }

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

    .category-btn.active {
        background: var(--btn-active-bg);
        border-color: rgba(99, 102, 241, 0.8);
        color: white;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
        box-shadow: 
            0 10px 30px rgba(99, 102, 241, 0.5),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }

    .category-btn.active::after {
        content: '';
        position: absolute;
        inset: -2px;
        background: conic-gradient(
            from 0deg at 50% 50%,
            rgba(99, 102, 241, 0.4) 0deg,
            rgba(147, 51, 234, 0.3) 120deg,
            rgba(76, 201, 240, 0.2) 240deg,
            rgba(99, 102, 241, 0.4) 360deg
        );
        border-radius: var(--radius-full);
        z-index: -1;
        filter: blur(10px);
        animation: rotate 8s linear infinite;
    }

    /* Cyberpunk Blog Grid */
    .blog-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: var(--space-12);
        position: relative;
        perspective: 2000px;
    }

    @media (min-width: 768px) {
        .blog-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: var(--space-16);
        }
    }

    @media (min-width: 1200px) {
        .blog-grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }

    /* Holographic Blog Card */
    .blog-card {
        --card-bg: rgba(17, 24, 39, 0.6);
        --card-border: rgba(99, 102, 241, 0.3);
        --hologram-glow: rgba(99, 102, 241, 0.15);
        
        background: var(--card-bg);
        border-radius: var(--radius-3xl);
        overflow: hidden;
        border: 1px solid var(--card-border);
        backdrop-filter: blur(25px);
        transition: all var(--transition-spring);
        position: relative;
        box-shadow: 
            0 20px 40px rgba(0, 0, 0, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
        height: 100%;
        display: flex;
        flex-direction: column;
        transform-style: preserve-3d;
        animation: blogCardReveal 0.8s cubic-bezier(0.25, 0.1, 0.25, 1) both;
    }

    .blog-card::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, 
            var(--hologram-glow) 0%,
            transparent 50%,
            rgba(147, 51, 234, 0.1) 100%);
        opacity: 0;
        transition: opacity var(--transition-slow);
        z-index: -1;
    }

    .blog-card::after {
        content: '';
        position: absolute;
        inset: -2px;
        background: conic-gradient(
            from 0deg at 50% 50%,
            var(--hologram-glow) 0deg,
            rgba(147, 51, 234, 0.1) 120deg,
            rgba(76, 201, 240, 0.08) 240deg,
            var(--hologram-glow) 360deg
        );
        border-radius: var(--radius-3xl);
        opacity: 0;
        z-index: -2;
        transition: opacity var(--transition-slow);
        filter: blur(20px);
        animation: rotate 25s linear infinite;
    }

    .blog-card:hover {
        transform: translateY(-20px) rotateX(5deg) scale(1.03);
        box-shadow: 
            0 40px 80px rgba(99, 102, 241, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
        border-color: rgba(99, 102, 241, 0.6);
    }

    .blog-card:hover::before,
    .blog-card:hover::after {
        opacity: 0.8;
    }

    /* Holographic Image Container */
    .blog-image {
        height: 250px;
        position: relative;
        overflow: hidden;
        background: linear-gradient(45deg, 
            rgba(99, 102, 241, 0.1), 
            rgba(147, 51, 234, 0.1));
    }

    .blog-image::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, 
            rgba(99, 102, 241, 0.2) 0%, 
            transparent 50%, 
            rgba(76, 201, 240, 0.2) 100%);
        z-index: 2;
        opacity: 0;
        transition: opacity var(--transition-normal);
    }

    .blog-card:hover .blog-image::before {
        opacity: 1;
    }

    .blog-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all var(--transition-spring);
        filter: brightness(0.9) saturate(1.1) contrast(1.1);
    }

    .blog-card:hover .blog-image img {
        transform: scale(1.1);
        filter: brightness(1.1) saturate(1.3) contrast(1.2);
    }

    /* Cyberpunk Category Badge */
    .blog-category {
        position: absolute;
        top: var(--space-4);
        left: var(--space-4);
        background: rgba(99, 102, 241, 0.9);
        color: white;
        padding: var(--space-2) var(--space-4);
        border-radius: var(--radius-full);
        font-size: var(--text-xs);
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        z-index: 3;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        font-family: 'Orbitron', sans-serif;
        box-shadow: 
            0 4px 15px rgba(99, 102, 241, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
        transition: all var(--transition-normal);
    }

    .blog-card:hover .blog-category {
        background: rgba(99, 102, 241, 1);
        transform: scale(1.05);
        box-shadow: 
            0 6px 20px rgba(99, 102, 241, 0.6),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }

    /* Scan Lines Effect */
    .blog-image::after {
        content: '';
        position: absolute;
        inset: 0;
        background: repeating-linear-gradient(
            0deg,
            transparent 0px,
            transparent 2px,
            rgba(255, 255, 255, 0.03) 2px,
            rgba(255, 255, 255, 0.03) 4px
        );
        z-index: 1;
        opacity: 0;
        transition: opacity var(--transition-normal);
        animation: scanLines 8s linear infinite;
    }

    .blog-card:hover .blog-image::after {
        opacity: 1;
    }

    /* Cyberpunk Content Styling */
    .blog-content {
        padding: var(--space-8);
        display: flex;
        flex-direction: column;
        flex-grow: 1;
        position: relative;
        background: rgba(31, 41, 55, 0.3);
    }

    .blog-meta {
        display: flex;
        flex-direction: column;
        gap: var(--space-2);
        margin-bottom: var(--space-6);
        font-size: var(--text-sm);
        color: rgba(255, 255, 255, 0.6);
        border-bottom: 1px solid rgba(99, 102, 241, 0.2);
        padding-bottom: var(--space-4);
    }

    .blog-author {
        color: hsl(240, 100%, 80%);
        font-weight: 700;
        font-family: 'Orbitron', sans-serif;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    .blog-date {
        color: rgba(255, 255, 255, 0.5);
        font-weight: 500;
    }

    .blog-read-time {
        color: hsl(270, 100%, 75%);
        font-weight: 600;
        font-size: var(--text-xs);
        text-transform: uppercase;
        letter-spacing: 0.1em;
    }

    .blog-title {
        font-size: var(--text-xl);
        font-weight: 800;
        color: white;
        margin-bottom: var(--space-4);
        line-height: 1.3;
        transition: all var(--transition-normal);
        font-family: 'Orbitron', sans-serif;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
        letter-spacing: -0.01em;
    }

    .blog-card:hover .blog-title {
        color: hsl(240, 100%, 85%);
        text-shadow: 
            0 0 15px rgba(99, 102, 241, 0.8),
            0 2px 4px rgba(0, 0, 0, 0.5);
    }

    .blog-excerpt {
        color: rgba(255, 255, 255, 0.8);
        line-height: 1.7;
        flex-grow: 1;
        margin-bottom: var(--space-6);
        transition: all var(--transition-normal);
    }

    .blog-card:hover .blog-excerpt {
        color: rgba(255, 255, 255, 0.95);
    }

    /* Cyberpunk Read More Link */
    .blog-read-more {
        display: inline-flex;
        align-items: center;
        gap: var(--space-3);
        color: hsl(240, 100%, 75%);
        font-weight: 700;
        font-size: var(--text-sm);
        text-transform: uppercase;
        letter-spacing: 0.1em;
        transition: all var(--transition-spring);
        position: relative;
        font-family: 'Orbitron', sans-serif;
        text-shadow: 0 0 10px rgba(99, 102, 241, 0.5);
        margin-top: auto;
    }

    .blog-read-more::after {
        content: '';
        position: absolute;
        bottom: -3px;
        left: 0;
        width: 0;
        height: 2px;
        background: linear-gradient(90deg, 
            hsl(240, 100%, 70%) 0%,
            hsl(270, 100%, 65%) 100%);
        transition: width var(--transition-normal);
    }

    .blog-read-more:hover {
        color: hsl(240, 100%, 85%);
        transform: translateX(var(--space-2));
        text-shadow: 
            0 0 15px rgba(99, 102, 241, 0.8),
            0 0 30px rgba(147, 51, 234, 0.4);
    }

    .blog-read-more:hover::after {
        width: 100%;
    }

    /* Holographic Glow for Special Posts */
    .blog-card[data-category="web-dev"]:nth-child(2) {
        position: relative;
    }

    .blog-card[data-category="web-dev"]:nth-child(2)::before {
        background: linear-gradient(135deg, 
            rgba(34, 197, 94, 0.15) 0%,
            transparent 50%,
            rgba(251, 191, 36, 0.1) 100%);
    }

    .blog-card[data-category="web-dev"]:nth-child(2) .blog-category {
        background: rgba(34, 197, 94, 0.9);
        box-shadow: 
            0 4px 15px rgba(34, 197, 94, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }

    .blog-card[data-category="web-dev"]:nth-child(2):hover .blog-category {
        background: rgba(34, 197, 94, 1);
        box-shadow: 
            0 6px 20px rgba(34, 197, 94, 0.6),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }

    /* Featured Article Marker */
    .blog-card[data-category="web-dev"]:nth-child(2)::after {
        content: '★ FEATURED';
        position: absolute;
        top: var(--space-4);
        right: var(--space-4);
        background: linear-gradient(135deg, 
            hsl(48, 100%, 60%) 0%,
            hsl(38, 100%, 55%) 100%);
        color: black;
        padding: var(--space-2) var(--space-4);
        border-radius: var(--radius-full);
        font-size: var(--text-xs);
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        z-index: 4;
        font-family: 'Orbitron', sans-serif;
        box-shadow: 
            0 4px 15px rgba(251, 191, 36, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
        animation: featuredGlow 3s ease infinite;
        border: 1px solid rgba(255, 255, 255, 0.3);
    }

    /* Cyberpunk Animations */
    @keyframes blogCardReveal {
        from {
            opacity: 0;
            transform: translateY(40px) scale(0.9);
            filter: blur(5px);
        }
        to {
            opacity: 1;
            transform: translateY(0) scale(1);
            filter: blur(0);
        }
    }

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

    @keyframes scanLines {
        0% {
            background-position: 0 0;
        }
        100% {
            background-position: 0 100px;
        }
    }

    @keyframes featuredGlow {
        0%, 100% {
            box-shadow: 
                0 4px 15px rgba(251, 191, 36, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
            transform: scale(1);
        }
        50% {
            box-shadow: 
                0 6px 25px rgba(251, 191, 36, 0.7),
                inset 0 1px 0 rgba(255, 255, 255, 0.5);
            transform: scale(1.05);
        }
    }

    /* Blog Filter Animation */
    .blog-card.hidden {
        opacity: 0;
        transform: translateY(30px) scale(0.8);
        pointer-events: none;
    }

    .blog-card.visible {
        opacity: 1;
        transform: translateY(0) scale(1);
        pointer-events: auto;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .blog-categories {
            gap: var(--space-2);
            margin-bottom: var(--space-16);
        }
        
        .category-btn {
            padding: var(--space-2) var(--space-4);
            font-size: var(--text-xs);
        }
        
        .blog-grid {
            grid-template-columns: 1fr;
            gap: var(--space-8);
        }
        
        .blog-image {
            height: 200px;
        }
        
        .blog-content {
            padding: var(--space-6);
        }
        
        .blog-title {
            font-size: var(--text-lg);
        }
        
        .blog-card:hover {
            transform: translateY(-10px) scale(1.02);
        }
    }

    @media (max-width: 480px) {
        .blog-categories {
            gap: var(--space-1);
        }
        
        .category-btn {
            padding: var(--space-2) var(--space-3);
            font-size: 10px;
        }
        
        .blog-image {
            height: 180px;
        }
        
        .blog-meta {
            gap: var(--space-1);
        }
        
        .blog-title {
            font-size: var(--text-base);
            line-height: 1.4;
        }
        
        .blog-excerpt {
            font-size: var(--text-sm);
            line-height: 1.6;
        }
    }

    /* High Contrast Mode */
    @media (prefers-contrast: high) {
        .blog-card {
            border: 2px solid var(--text-primary);
            background: var(--bg-secondary);
        }
        
        .blog-category {
            background: var(--text-primary);
            color: var(--bg-primary);
        }
        
        .category-btn {
            border: 2px solid var(--text-primary);
            background: var(--bg-secondary);
        }
        
        .category-btn.active {
            background: var(--text-primary);
            color: var(--bg-primary);
        }
    }

    /* Reduced Motion */
    @media (prefers-reduced-motion: reduce) {
        * {
            animation: none !important;
            transition: none !important;
        }
        
        .blog-card:hover {
            transform: none !important;
        }
        
        .category-btn:hover {
            transform: none !important;
        }
    }

    /* Print Styles */
    @media print {
        .blog-categories {
            display: none;
        }
        
        .blog-card {
            background: white !important;
            border: 1px solid #ddd !important;
            box-shadow: none !important;
            break-inside: avoid;
            page-break-inside: avoid;
        }
        
        .blog-image {
            height: 150px !important;
        }
        
        .blog-title {
            color: black !important;
            text-shadow: none !important;
        }
        
        .blog-read-more {
            color: #0066cc !important;
            text-shadow: none !important;
        }
    }}

