 .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 120px 0 80px;
            position: relative;
            overflow: hidden;
        }

        .hero .container {
            position: relative;
            z-index: 2;
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1.1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 10px 20px;
            background: rgba(0, 229, 204, 0.08);
            border: 1px solid rgba(0, 229, 204, 0.2);
            border-radius: 50px;
            font-size: 0.9rem;
            color: var(--accent);
            margin-bottom: 28px;
            font-weight: 500;
        }

        .badge-dot {
            width: 10px;
            height: 10px;
            background: var(--accent);
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        .hero-title {
            font-family: 'Syne', sans-serif;
            font-size: 4.5rem;
            font-weight: 800;
            line-height: 1.05;
            margin-bottom: 16px;
            letter-spacing: -3px;
        }

        .hero-title .line {
            display: block;
        }

        .hero-title .gradient {
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-family: 'Fira Code', monospace;
            font-size: 1.1rem;
            color: var(--text-secondary);
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .typing-wrapper {
            display: inline-flex;
            align-items: center;
        }

        #typed-text {
            color: var(--accent);
        }

        .cursor {
            width: 3px;
            height: 1.2em;
            background: var(--accent);
            margin-left: 2px;
            animation: blink 1s infinite;
        }

        @keyframes blink {
            0%, 50% { opacity: 1; }
            51%, 100% { opacity: 0; }
        }

        .hero-desc {
            font-size: 1.15rem;
            color: var(--text-secondary);
            margin-bottom: 40px;
            max-width: 520px;
            line-height: 1.85;
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            margin-bottom: 60px;
        }

        .hero-stats {
            display: flex;
            gap: 50px;
        }

        .stat {
            position: relative;
            padding-left: 20px;
        }

        .stat::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 3px;
            background: var(--gradient-1);
            border-radius: 2px;
        }

        .stat-value {
            font-family: 'Syne', sans-serif;
            font-size: 2.8rem;
            font-weight: 800;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1;
        }

        .stat-label {
            font-size: 0.9rem;
            color: var(--text-muted);
            margin-top: 6px;
        }

        /* Hero Visual */
        .hero-visual {
            position: relative;
        }

        .code-window {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 
                0 50px 100px rgba(0, 0, 0, 0.5),
                0 0 0 1px rgba(255, 255, 255, 0.05) inset;
        }

        .code-header {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 18px 24px;
            background: rgba(0, 0, 0, 0.4);
            border-bottom: 1px solid var(--border);
        }

        .window-btn {
            width: 14px;
            height: 14px;
            border-radius: 50%;
        }

        .window-btn.red { background: #ff5f56; }
        .window-btn.yellow { background: #ffbd2e; }
        .window-btn.green { background: #27c93f; }

        .code-filename {
            margin-left: auto;
            font-family: 'Fira Code', monospace;
            font-size: 0.75rem;
            color: var(--text-muted);
            background: var(--bg-primary);
            padding: 4px 12px;
            border-radius: 4px;
        }

        .code-body {
            padding: 28px;
            font-family: 'Fira Code', monospace;
            font-size: 0.88rem;
            line-height: 2;
        }

        .code-line {
            display: flex;
        }

        .line-num {
            color: var(--text-muted);
            width: 36px;
            user-select: none;
            opacity: 0.5;
        }

        .keyword { color: #c792ea; }
        .class-name { color: #ffcb6b; }
        .function { color: #82aaff; }
        .string { color: #c3e88d; }
        .variable { color: #f07178; }
        .comment { color: #546e7a; font-style: italic; }
        .property { color: #89ddff; }

        /* Floating Elements */
        .floating-card {
            position: absolute;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 18px 22px;
            display: flex;
            align-items: center;
            gap: 14px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
        }

        .floating-card.top {
            top: -20px;
            right: -30px;
            animation: float 5s ease-in-out infinite;
        }

        .floating-card.bottom {
            bottom: 40px;
            left: -40px;
            animation: float 5s ease-in-out infinite;
            animation-delay: -2.5s;
        }

        .float-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
        }

        .float-icon.green { background: rgba(0, 229, 204, 0.15); }
        .float-icon.orange { background: rgba(255, 107, 107, 0.15); }

        .float-text strong {
            display: block;
            font-size: 0.95rem;
        }

        .float-text span {
            font-size: 0.8rem;
            color: var(--text-muted);
        }

        /* ========== FEATURED SECTION ========== */
        .featured {
            padding: 100px 0;
            background: var(--bg-secondary);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }

        .featured-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
        }

        .featured-item {
            text-align: center;
            padding: 40px 20px;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 16px;
            transition: all 0.3s ease;
        }

        .featured-item:hover {
            transform: translateY(-8px);
            border-color: var(--accent);
        }

        .featured-icon {
            width: 70px;
            height: 70px;
            margin: 0 auto 20px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            background: var(--accent-dim);
        }

        .featured-title {
            font-family: 'Syne', sans-serif;
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .featured-desc {
            font-size: 0.9rem;
            color: var(--text-muted);
        }

        /* ========== SKILLS PREVIEW ========== */
        .skills-preview {
            padding: 120px 0;
        }

        .skills-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .skills-list {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .skill-item {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 24px;
            transition: all 0.3s ease;
        }

        .skill-item:hover {
            transform: translateY(-5px);
            border-color: var(--accent);
        }

        .skill-header {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 16px;
        }

        .skill-icon {
            width: 50px;
            height: 50px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            background: var(--accent-dim);
        }

        .skill-name {
            font-weight: 600;
            font-size: 1rem;
        }

        .skill-level {
            font-size: 0.8rem;
            color: var(--accent);
        }

        .skill-bar {
            height: 6px;
            background: var(--border);
            border-radius: 3px;
            overflow: hidden;
        }

        .skill-progress {
            height: 100%;
            background: var(--gradient-1);
            border-radius: 3px;
            transition: width 1.5s ease;
        }

        /* ========== CTA SECTION ========== */
        .cta-section {
            padding: 120px 0;
            background: var(--bg-secondary);
            position: relative;
            overflow: hidden;
        }

        .cta-content {
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .cta-title {
            font-family: 'Syne', sans-serif;
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 20px;
            letter-spacing: -2px;
        }

        .cta-desc {
            font-size: 1.2rem;
            color: var(--text-secondary);
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-visual {
                display: none;
            }

            .hero-stats {
                justify-content: center;
            }

            .hero-buttons {
                justify-content: center;
            }

            .hero-desc {
                margin: 0 auto 40px;
            }

            .featured-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .skills-content {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 3rem;
            }

            .hero-stats {
                flex-direction: column;
                gap: 24px;
                align-items: center;
            }

            .stat {
                text-align: center;
                padding-left: 0;
                padding-top: 16px;
            }

            .stat::before {
                top: 0;
                left: 50%;
                transform: translateX(-50%);
                width: 40px;
                height: 3px;
            }

            .featured-grid {
                grid-template-columns: 1fr;
            }

            .skills-list {
                grid-template-columns: 1fr;
            }

            .cta-title {
                font-size: 2.4rem;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 2.4rem;
            }

            .hero-buttons {
                flex-direction: column;
            }

            .hero-buttons .btn {
                width: 100%;
                justify-content: center;
            }

            .cta-buttons {
                flex-direction: column;
            }

            .cta-buttons .btn {
                width: 100%;
            }
        }