@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;600&display=swap');

        :root {
            --primary: #4ade80;
            --secondary: #06d6a0;
            --accent: #00f5ff;
            --accent-orange: #ffd60a;
            --accent-pink: #ff006e;
            --dark: #0a0a0a;
            --dark-lighter: #121212;
            --dark-accent: #1a1a1a;
            --dark-card: #151515;
            --titanium: #2a2d34;
            --titanium-light: #363940;
            --titanium-dark: #1e2025;
            --silver: #8b9dc3;
            --silver-light: #a8b5d1;
            --silver-dark: #6b7899;
            --text-primary: #f8fafc;
            --text-secondary: #cbd5e1;
            --text-muted: #94a3b8;
            --glass: rgba(42, 45, 52, 0.4);
            --glass-border: rgba(139, 157, 195, 0.15);
            --glass-hover: rgba(54, 57, 64, 0.6);
            --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.3);
            --shadow-lg: 0 25px 50px rgba(0, 0, 0, 0.5);
            --shadow-glow: 0 0 40px rgba(74, 222, 128, 0.2);
            --gradient-premium: linear-gradient(135deg, #2a2d34 0%, #1e2025 50%, #121212 100%);
            --gradient-accent: linear-gradient(135deg, var(--primary), var(--accent));
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--dark);
            color: var(--text-primary);
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* Enhanced Premium Background */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background:
                radial-gradient(ellipse at top left, rgba(74, 222, 128, 0.08) 0%, transparent 50%),
                radial-gradient(ellipse at top right, rgba(6, 214, 160, 0.08) 0%, transparent 50%),
                radial-gradient(ellipse at bottom left, rgba(0, 245, 255, 0.06) 0%, transparent 50%),
                radial-gradient(ellipse at bottom right, rgba(255, 214, 10, 0.06) 0%, transparent 50%),
                var(--gradient-premium);
            z-index: -3;
        }

        /* Premium Mesh Grid */
        body::after {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image:
                linear-gradient(rgba(139, 157, 195, 0.02) 1px, transparent 1px),
                linear-gradient(90deg, rgba(139, 157, 195, 0.02) 1px, transparent 1px);
            background-size: 80px 80px;
            animation: mesh-float 30s ease-in-out infinite;
            z-index: -2;
        }

        @keyframes mesh-float {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            25% { transform: translate(15px, -15px) rotate(0.5deg); }
            50% { transform: translate(-8px, 15px) rotate(-0.5deg); }
            75% { transform: translate(12px, 8px) rotate(0.3deg); }
        }

        /* Premium Navigation - Fixed positioning */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            padding: 20px 0;
            backdrop-filter: blur(30px);
            background: rgba(10, 10, 10, 0.85);
            border-bottom: 1px solid var(--glass-border);
            transition: all 0.3s ease;
        }

        nav.scrolled {
            padding: 16px 0;
            background: rgba(10, 10, 10, 0.95);
            box-shadow: var(--shadow-lg);
            border-bottom-color: var(--primary);
        }

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

        .logo {
            font-size: 32px;
            font-weight: 900;
            background: var(--gradient-accent);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-decoration: none;
            letter-spacing: -0.02em;
            font-family: 'JetBrains Mono', monospace;
            text-shadow: 0 0 30px rgba(74, 222, 128, 0.3);
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 12px;
            align-items: center;
        }

        .nav-links a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 15px;
            font-weight: 500;
            padding: 14px 22px;
            border-radius: 50px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            border: 1px solid transparent;
        }

        .nav-links a::before {
            content: '';
            position: absolute;
            inset: 0;
            background: var(--gradient-accent);
            opacity: 0;
            transition: all 0.4s ease;
            border-radius: 50px;
        }

        .nav-links a:hover::before,
        .nav-links a.active::before {
            opacity: 0.1;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--text-primary);
            transform: translateY(-2px);
            border-color: var(--glass-border);
            box-shadow: 0 8px 25px rgba(74, 222, 128, 0.15);
        }

        .contact-btn {
            background: var(--gradient-accent) !important;
            color: var(--dark) !important;
            font-weight: 700 !important;
            box-shadow: var(--shadow-glow);
            border: none !important;
        }

        .contact-btn::before {
            opacity: 0 !important;
        }

        .contact-btn:hover {
            transform: translateY(-4px) scale(1.05);
            box-shadow: 0 0 60px rgba(74, 222, 128, 0.4);
            color: var(--dark) !important;
        }

        /* Enhanced Hero Section - Fixed layout */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            padding: 100px 2rem 0;
            overflow: hidden;
        }

        .hero-content {
            max-width: 1200px;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 400px;
            gap: 4rem;
            align-items: center;
        }

        .hero-text {
            z-index: 2;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: var(--glass);
            border: 1px solid var(--glass-border);
            padding: 14px 24px;
            border-radius: 50px;
            font-size: 14px;
            color: var(--primary);
            margin-bottom: 2rem;
            backdrop-filter: blur(30px);
            animation: float 4s ease-in-out infinite;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            box-shadow: 0 8px 32px rgba(74, 222, 128, 0.1);
        }

        .hero-badge::before {
            content: '';
            width: 12px;
            height: 12px;
            background: var(--primary);
            border-radius: 50%;
            animation: pulse 2s ease-in-out infinite;
            box-shadow: 0 0 20px var(--primary);
        }

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

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            25% { transform: translateY(-10px) rotate(0.5deg); }
            50% { transform: translateY(0px) rotate(0deg); }
            75% { transform: translateY(-6px) rotate(-0.5deg); }
        }

        .hero-title {
            font-size: clamp(3.2rem, 6vw, 4.5rem);
            font-weight: 900;
            line-height: 1.05;
            margin-bottom: 2rem;
            letter-spacing: -0.04em;
        }

        .hero-title .gradient-text {
            background: linear-gradient(135deg,
                    var(--text-primary) 0%,
                    var(--primary) 25%,
                    var(--accent) 50%,
                    var(--secondary) 75%,
                    var(--text-primary) 100%);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: gradient-shift 8s ease-in-out infinite;
            background-size: 300% 300%;
            text-shadow: 0 0 40px rgba(74, 222, 128, 0.3);
        }

        @keyframes gradient-shift {
            0%, 100% { background-position: 0% 50%; }
            33% { background-position: 50% 0%; }
            66% { background-position: 100% 50%; }
        }

        .hero-subtitle {
            font-size: 20px;
            color: var(--text-secondary);
            margin-bottom: 3rem;
            line-height: 1.7;
            max-width: 600px;
            font-weight: 400;
        }

        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            margin-bottom: 3rem;
            flex-wrap: wrap;
        }

        .btn {
            padding: 18px 36px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 16px;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            border: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .btn::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transform: translateX(-100%);
            transition: transform 0.8s ease;
        }

        .btn:hover::before {
            transform: translateX(100%);
        }

        .btn-primary {
            background: var(--gradient-accent);
            color: var(--dark);
            box-shadow: var(--shadow-glow);
        }

        .btn-primary:hover {
            transform: translateY(-8px) scale(1.05);
            box-shadow: 0 0 80px rgba(74, 222, 128, 0.6);
        }

        .btn-secondary {
            background: var(--glass);
            color: var(--text-primary);
            border: 1px solid var(--glass-border);
            backdrop-filter: blur(30px);
        }

        .btn-secondary:hover {
            background: var(--glass-hover);
            transform: translateY(-6px);
            border-color: var(--primary);
            box-shadow: 0 0 40px rgba(74, 222, 128, 0.2);
        }

        /* Social Links - Fixed spacing */
        .hero-social {
            display: flex;
            gap: 1.25rem;
            margin-bottom: 3rem;
        }

        .social-link {
            width: 56px;
            height: 56px;
            border-radius: 16px;
            background: var(--glass);
            border: 1px solid var(--glass-border);
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: var(--text-secondary);
            font-size: 20px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            backdrop-filter: blur(30px);
            position: relative;
            overflow: hidden;
        }

        .social-link::before {
            content: '';
            position: absolute;
            inset: 0;
            background: var(--gradient-accent);
            opacity: 0;
            transition: all 0.4s ease;
            border-radius: 16px;
        }

        .social-link:hover::before {
            opacity: 0.1;
        }

        .social-link:hover {
            transform: translateY(-6px) scale(1.05);
            border-color: var(--primary);
            color: var(--primary);
            box-shadow: 0 16px 32px rgba(74, 222, 128, 0.2);
        }

        /* Premium Stats - Fixed spacing */
        .hero-stats {
            display: flex;
            gap: 2rem;
        }

        .stat {
            text-align: left;
            position: relative;
            padding: 1.5rem;
            background: var(--glass);
            border: 1px solid var(--glass-border);
            border-radius: 16px;
            backdrop-filter: blur(30px);
            transition: all 0.4s ease;
            min-width: 120px;
        }

        .stat::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            background: var(--gradient-accent);
            border-radius: 2px;
        }

        .stat:hover {
            transform: translateY(-4px);
            border-color: var(--primary);
            box-shadow: 0 16px 40px rgba(74, 222, 128, 0.15);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 900;
            color: var(--text-primary);
            display: block;
            font-family: 'JetBrains Mono', monospace;
            background: var(--gradient-accent);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1;
        }

        .stat-label {
            font-size: 12px;
            color: var(--text-secondary);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 0.5rem;
        }

        /* Enhanced Hero Visual - Fixed image container */
        .hero-visual {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100%;
            min-height: 500px;
        }

        .hero-image-container {
            position: relative;
            width: 350px;
            height: 350px;
            border-radius: 50%;
            overflow: hidden;
            transition: all 0.5s ease;
            box-shadow:
                0 40px 100px rgba(0, 0, 0, 0.4),
                0 0 0 6px var(--glass-border),
                0 0 80px rgba(74, 222, 128, 0.15);
        }

        .hero-image-container:hover {
            transform: scale(1.05);
            box-shadow:
                0 50px 120px rgba(0, 0, 0, 0.5),
                0 0 0 8px var(--primary),
                0 0 100px rgba(74, 222, 128, 0.3);
        }

        .hero-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            transition: all 0.5s ease;
        }

        .hero-image-placeholder {
            width: 100%;
            height: 100%;
            background: var(--gradient-accent);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            color: var(--dark);
            position: relative;
            overflow: hidden;
        }

        /* Premium Animated Rings - Fixed positioning */
        .hero-visual::before {
            content: '';
            position: absolute;
            width: 390px;
            height: 390px;
            border: 2px solid transparent;
            border-top: 2px solid var(--primary);
            border-right: 2px solid var(--accent);
            border-radius: 50%;
            animation: rotate 25s linear infinite;
        }

        .hero-visual::after {
            content: '';
            position: absolute;
            width: 440px;
            height: 440px;
            border: 2px solid transparent;
            border-bottom: 2px solid var(--secondary);
            border-left: 2px solid var(--accent-orange);
            border-radius: 50%;
            animation: rotate 35s linear infinite reverse;
        }

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

        /* Premium Floating Orbs - Fixed positioning */
        .floating-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(2px);
            animation: float-orb 10s ease-in-out infinite;
            opacity: 0.4;
            pointer-events: none;
        }

        .orb-1 {
            width: 120px;
            height: 120px;
            background: radial-gradient(circle, var(--primary), transparent);
            top: 10%;
            right: 10%;
            animation-delay: 0s;
        }

        .orb-2 {
            width: 80px;
            height: 80px;
            background: radial-gradient(circle, var(--accent), transparent);
            bottom: 20%;
            left: 10%;
            animation-delay: 4s;
        }

        .orb-3 {
            width: 100px;
            height: 100px;
            background: radial-gradient(circle, var(--secondary), transparent);
            top: 50%;
            right: 15%;
            animation-delay: 8s;
        }

        @keyframes float-orb {
            0%, 100% { transform: translate(0, 0) scale(1); }
            25% { transform: translate(20px, -30px) scale(1.1); }
            50% { transform: translate(-20px, 20px) scale(0.9); }
            75% { transform: translate(30px, 10px) scale(1.05); }
        }

        /* Premium Cards - Fixed grid and spacing */
        .cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
        }

        .card {
            background: var(--glass);
            border: 1px solid var(--glass-border);
            border-radius: 24px;
            padding: 2.5rem;
            backdrop-filter: blur(30px);
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg,
                    rgba(74, 222, 128, 0.05) 0%,
                    rgba(0, 245, 255, 0.05) 100%);
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--gradient-accent);
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .card:hover::before,
        .card:hover::after {
            opacity: 1;
        }

        .card:hover {
            transform: translateY(-12px);
            box-shadow:
                0 40px 100px rgba(0, 0, 0, 0.3),
                0 0 0 1px var(--primary);
            border-color: var(--primary);
        }

        .card-icon {
            width: 70px;
            height: 70px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 2rem;
            font-size: 28px;
            position: relative;
            z-index: 2;
            box-shadow: var(--shadow-lg);
            transition: all 0.4s ease;
            flex-shrink: 0;
        }

        .card:hover .card-icon {
            transform: scale(1.1);
            box-shadow: 0 20px 60px rgba(74, 222, 128, 0.3);
        }

        .card-title {
            font-size: 24px;
            font-weight: 800;
            margin-bottom: 1.25rem;
            color: var(--text-primary);
            position: relative;
            z-index: 2;
        }

        .card-description {
            color: var(--text-secondary);
            line-height: 1.7;
            position: relative;
            z-index: 2;
            font-size: 15px;
            flex-grow: 1;
        }

        /* Premium Icon Backgrounds */
        .icon-primary {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
        }

        .icon-accent {
            background: linear-gradient(135deg, var(--accent), #00d4ff);
        }

        .icon-orange {
            background: linear-gradient(135deg, var(--accent-orange), #ffb700);
        }

        .icon-pink {
            background: linear-gradient(135deg, var(--accent-pink), #d90368);
        }

        /* Enhanced Project Cards - Fixed image containers */
        .project-card {
            background: var(--glass);
            border: 1px solid var(--glass-border);
            border-radius: 24px;
            overflow: hidden;
            backdrop-filter: blur(30px);
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .project-card:hover {
            transform: translateY(-12px);
            box-shadow:
                0 40px 100px rgba(0, 0, 0, 0.3),
                0 0 0 1px var(--primary);
        }

        .project-image {
            height: 240px;
            position: relative;
            overflow: hidden;
            background: var(--dark-card);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

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

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

        .project-image-placeholder {
            width: 100%;
            height: 100%;
            object-fit: cover;
            background: var(--gradient-accent);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: var(--dark);
            position: relative;
            overflow: hidden;
        }

        .project-content {
            padding: 2rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .project-title {
            font-size: 22px;
            font-weight: 800;
            margin-bottom: 1rem;
            color: var(--text-primary);
        }

        .project-description {
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 2rem;
            font-size: 15px;
            flex-grow: 1;
        }

        .project-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            margin-top: auto;
        }

        .project-tag {
            background: rgba(74, 222, 128, 0.15);
            color: var(--primary);
            padding: 8px 16px;
            border-radius: 50px;
            font-size: 11px;
            font-weight: 700;
            border: 1px solid rgba(74, 222, 128, 0.3);
            text-transform: uppercase;
            letter-spacing: 0.8px;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .project-tag:hover {
            background: rgba(74, 222, 128, 0.25);
            transform: translateY(-2px);
        }

        /* Enhanced Sections - Fixed spacing */
        section {
            padding: 8rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
        }

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

        .section-badge {
            display: inline-block;
            background: var(--glass);
            border: 1px solid var(--glass-border);
            padding: 14px 24px;
            border-radius: 50px;
            font-size: 14px;
            color: var(--primary);
            margin-bottom: 2rem;
            backdrop-filter: blur(30px);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.2px;
            box-shadow: 0 8px 32px rgba(74, 222, 128, 0.1);
        }

        .section-title {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 900;
            margin-bottom: 2rem;
            letter-spacing: -0.03em;
            line-height: 1.1;
        }

        .section-subtitle {
            font-size: 20px;
            color: var(--text-secondary);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.7;
        }

        /* Enhanced FAQ - Fixed spacing */
        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--glass);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            margin-bottom: 1.5rem;
            backdrop-filter: blur(30px);
            overflow: hidden;
            transition: all 0.4s ease;
        }

        .faq-item:hover {
            border-color: var(--primary);
            transform: translateY(-2px);
            box-shadow: 0 12px 32px rgba(74, 222, 128, 0.15);
        }

        .faq-question {
            padding: 2rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 18px;
            font-weight: 700;
        }

        .faq-toggle {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: rgba(74, 222, 128, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.5s ease;
            font-size: 20px;
            color: var(--primary);
            font-weight: 300;
            border: 1px solid var(--glass-border);
            flex-shrink: 0;
            margin-left: 1rem;
        }

        .faq-toggle.active {
            transform: rotate(45deg);
            background: var(--primary);
            color: var(--dark);
            box-shadow: var(--shadow-glow);
            border-color: var(--primary);
        }

        .faq-answer {
            padding: 0 2rem;
            max-height: 0;
            overflow: hidden;
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            color: var(--text-secondary);
            line-height: 1.7;
        }

        .faq-answer.active {
            padding: 2rem;
            max-height: 400px;
        }

        /* Enhanced Contact Section - Fixed layout */
        .contact-cta {
            text-align: center;
            background: var(--glass);
            border: 1px solid var(--glass-border);
            border-radius: 32px;
            padding: 5rem 3rem;
            backdrop-filter: blur(30px);
            position: relative;
            overflow: hidden;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
        }

        .contact-cta::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(74, 222, 128, 0.08) 0%, rgba(0, 245, 255, 0.08) 100%);
        }

        .contact-cta > * {
            position: relative;
            z-index: 2;
        }

        .contact-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 2rem;
        }

        /* Enhanced Footer - Fixed spacing */
        footer {
            background: var(--dark-lighter);
            border-top: 1px solid var(--glass-border);
            padding: 4rem 2rem 2rem;
            margin-top: 6rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: var(--text-secondary);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.4s ease;
            font-size: 16px;
            padding: 12px 20px;
            border-radius: 50px;
            border: 1px solid transparent;
        }

        .footer-links a:hover {
            color: var(--primary);
            transform: translateY(-2px);
            border-color: var(--glass-border);
            background: var(--glass);
        }

        .copyright {
            color: var(--text-muted);
            font-size: 14px;
            font-weight: 500;
        }

        /* Mobile Responsiveness - Fixed breakpoints */
        @media (max-width: 1024px) {
            .hero-content {
                grid-template-columns: 1fr;
                gap: 3rem;
                text-align: center;
            }

            .hero-visual {
                order: -1;
                min-height: 400px;
            }

            .hero-image-container {
                width: 300px;
                height: 300px;
            }

            .hero-visual::before {
                width: 340px;
                height: 340px;
            }

            .hero-visual::after {
                width: 390px;
                height: 390px;
            }
        }

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

            .nav-links {
                display: none;
            }

            .hero {
                padding: 120px 1rem 0;
            }

            .hero-image-container {
                width: 250px;
                height: 250px;
            }

            .hero-visual::before {
                width: 290px;
                height: 290px;
            }

            .hero-visual::after {
                width: 340px;
                height: 340px;
            }

            .hero-stats {
                justify-content: center;
                gap: 1rem;
                flex-wrap: wrap;
            }

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

            section {
                padding: 5rem 1rem;
            }

            .cards-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .contact-cta {
                padding: 3rem 2rem;
            }

            .hero-title {
                font-size: 2.5rem;
            }

            .section-title {
                font-size: 2.2rem;
            }

            .project-image {
                height: 200px;
            }

            .faq-question {
                padding: 1.5rem;
                font-size: 16px;
            }

            .faq-answer.active {
                padding: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .btn {
                width: 100%;
                max-width: 280px;
                justify-content: center;
            }

            .hero-stats {
                flex-direction: column;
                gap: 1rem;
                align-items: center;
            }

            .stat {
                min-width: 200px;
                text-align: center;
            }

            .hero-social {
                gap: 1rem;
            }

            .social-link {
                width: 48px;
                height: 48px;
                font-size: 18px;
            }

            .footer-links {
                flex-direction: column;
                gap: 1rem;
            }

            .contact-buttons {
                flex-direction: column;
                align-items: center;
            }

            .contact-buttons .btn {
                width: 100%;
                max-width: 280px;
            }

            .hero-image-container {
                width: 220px;
                height: 220px;
            }

            .hero-visual::before {
                width: 260px;
                height: 260px;
            }

            .hero-visual::after {
                width: 310px;
                height: 310px;
            }
        }

        /* Mobile Menu Enhancement */
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
            padding: 8px;
            border-radius: 8px;
            transition: all 0.3s ease;
            border: 1px solid var(--glass-border);
        }

        .hamburger:hover {
            background: var(--glass);
            transform: scale(1.05);
        }

        .hamburger span {
            width: 24px;
            height: 2px;
            background: var(--text-primary);
            transition: all 0.3s ease;
            border-radius: 2px;
        }

        .mobile-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: rgba(10, 10, 10, 0.98);
            backdrop-filter: blur(30px);
            border-top: 1px solid var(--glass-border);
            padding: 2rem 1rem;
        }

        .mobile-menu.active {
            display: block;
        }

        .mobile-menu a {
            display: block;
            padding: 1rem 1.5rem;
            text-align: center;
            color: var(--text-secondary);
            text-decoration: none;
            border-radius: 16px;
            margin-bottom: 0.5rem;
            transition: all 0.4s ease;
            font-weight: 600;
            font-size: 16px;
            border: 1px solid transparent;
        }

        .mobile-menu a:hover {
            background: var(--glass);
            color: var(--text-primary);
            transform: translateX(4px);
            border-color: var(--glass-border);
        }

        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }
        }

        /* Enhanced Animations */
        .fade-up {
            opacity: 0;
            transform: translateY(60px);
            transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .fade-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .stagger-delay:nth-child(1) { transition-delay: 0.1s; }
        .stagger-delay:nth-child(2) { transition-delay: 0.2s; }
        .stagger-delay:nth-child(3) { transition-delay: 0.3s; }
        .stagger-delay:nth-child(4) { transition-delay: 0.4s; }
        .stagger-delay:nth-child(5) { transition-delay: 0.5s; }
        .stagger-delay:nth-child(6) { transition-delay: 0.6s; }

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

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

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

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

        /* Loading Animation */
        .loading {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--dark);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10000;
            opacity: 1;
            transition: opacity 0.8s ease;
        }

        .loading.hidden {
            opacity: 0;
            pointer-events: none;
        }

        .loader {
            width: 50px;
            height: 50px;
            border: 3px solid var(--glass-border);
            border-top: 3px solid var(--primary);
            border-radius: 50%;
            animation: spin 1.2s linear infinite;
            box-shadow: 0 0 30px rgba(74, 222, 128, 0.3);
        }

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

        /* Card Icon Placeholders */
        .card-icon-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            color: var(--dark);
            position: relative;
            border-radius: 20px;
            font-weight: 600;
        }

        /* Image fixes for proper display */
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        .project-image img,
        .hero-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }
