

        :root {
            --bg: #07080e;
            --bg2: #0b0e18;
            --bg3: #0f1220;
            --surface: rgba(255, 255, 255, 0.038);
            --surface2: rgba(255, 255, 255, 0.065);
            --border: rgba(255, 255, 255, 0.07);
            --blue: #4b8ef0;
            --blue2: #7aaef5;
            --blue3: #2d6ee0;
            --blue-dim: rgba(75, 142, 240, 0.12);
            --blue-glow: rgba(75, 142, 240, 0.25);
            --orange: #f07a3a;
            --orange2: #f5a06a;
            --orange3: #e05e1e;
            --orange-dim: rgba(240, 122, 58, 0.12);
            --orange-glow: rgba(240, 122, 58, 0.22);
            --text: #edf1fb;
            --text2: #c8d4ea;
            --muted: #6e82a0;
            --muted2: #8fa3bf;
            --green: #52d98a;
            --cyan: var(--blue2);
            --gold: var(--orange);
            --gold2: var(--orange2);
            --radius: 14px;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            background: var(--bg);
            font-family: 'Inter', sans-serif;
            color: var(--text);
            overflow-x: hidden;
            line-height: 1.72;
        }

        body::after {
            content: '';
            position: fixed;
            inset: 0;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
            pointer-events: none;
            z-index: 9998;
            opacity: 0.5;
        }

        h1,
        h2,
        h3,
        h4 {
            font-family: 'Bricolage Grotesque', sans-serif;
            font-weight: 700;
            line-height: 1.12;
            letter-spacing: -0.02em;
        }

        .accent-text {
            color: var(--orange);
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            height: 68px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 2rem;
            background: rgba(7, 8, 14, 0.82);
            backdrop-filter: blur(24px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            transition: background 0.3s;
        }

        nav.scrolled {
            background: rgba(7, 8, 14, 0.97);
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 11px;
            text-decoration: none;
        }

        .logo-mark {
            width: 38px;
            height: 38px;
            background: var(--orange);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Bricolage Grotesque', sans-serif;
            font-weight: 800;
            font-size: 1.1rem;
            color: #fff;
            position: relative;
            overflow: hidden;
            box-shadow: 0 0 20px var(--orange-glow);
        }

        .logo-mark::after {
            content: '';
            position: absolute;
            inset: 1px;
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .logo-text {
            font-family: 'Bricolage Grotesque', sans-serif;
            font-weight: 700;
            font-size: 0.95rem;
            color: var(--text);
            letter-spacing: -0.01em;
        }

        .logo-text span {
            color: var(--orange2);
        }

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

        .nav-links a {
            text-decoration: none;
            color: var(--muted2);
            font-size: 0.85rem;
            font-weight: 500;
            letter-spacing: 0.01em;
            transition: color 0.2s;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--orange);
            transition: width 0.3s;
        }

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

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

        .nav-cta {
            display: flex;
            gap: 10px;
            align-items: center;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 0.5rem 1.3rem;
            border-radius: 8px;
            font-family: 'Inter', sans-serif;
            font-weight: 500;
            font-size: 0.875rem;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.25s;
            border: none;
        }

        .btn-primary {
            background: var(--orange);
            color: #fff;
            box-shadow: 0 4px 22px rgba(240, 122, 58, 0.26);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(240, 122, 58, 0.32);
        }

        .btn-ghost {
            background: var(--surface);
            color: var(--text2);
            border: 1px solid var(--border);
        }

        .btn-ghost:hover {
            border-color: var(--orange);
            color: var(--orange2);
        }

        .btn-outline {
            background: transparent;
            color: var(--orange2);
            border: 1px solid rgba(240, 122, 58, 0.35);
        }

        .btn-outline:hover {
            background: var(--orange-dim);
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 8px;
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 8px;
        }

        .hamburger span {
            display: block;
            width: 20px;
            height: 2px;
            background: var(--text);
            border-radius: 2px;
            transition: all 0.3s;
        }

        .mobile-menu {
            display: none;
            position: fixed;
            top: 68px;
            left: 0;
            right: 0;
            background: rgba(7, 8, 14, 0.98);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border);
            padding: 1.5rem 2rem;
            z-index: 999;
        }

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

        .mobile-menu a {
            display: block;
            color: var(--muted2);
            text-decoration: none;
            padding: 0.75rem 0;
            border-bottom: 1px solid var(--border);
            font-weight: 500;
            font-size: 1rem;
            transition: color 0.2s;
        }

        .mobile-menu a:hover {
            color: var(--orange2);
        }

        .site-container,
        .hero-container {
            width: 100%;
            max-width: 1320px;
            margin: 0 auto;
            padding-left: 1rem;
            padding-right: 1rem;
        }

        section {
            position: relative;
        }

        .section-divider {
            height: 1px;
            background: rgba(255, 255, 255, 0.06);
            margin: 0;
        }

        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 0.72rem;
            font-weight: 600;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            color: var(--orange2);
            margin-bottom: 0.9rem;
            font-family: 'Inter', sans-serif;
        }

        .section-label::before {
            content: '';
            display: block;
            width: 20px;
            height: 1px;
            background: var(--orange);
        }

        .section-title {
            font-size: clamp(1.9rem, 3.8vw, 2.8rem);
            color: var(--text);
            margin-bottom: 0.5rem;
        }

        .section-sub {
            color: var(--muted);
            font-size: 0.98rem;
            max-width: 500px;
            line-height: 1.75;
        }

        .card {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            transition: all 0.3s;
        }

        .card:hover {
            border-color: rgba(240, 122, 58, 0.25);
            background: var(--surface2);
            transform: translateY(-3px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
        }

        /* Hero */
        #home {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding-top: 68px;
            overflow: hidden;
            position: relative;
            background: var(--bg);
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            z-index: 2;
            overflow: hidden;
        }

        .hero-bg-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(100px);
            opacity: 0;
            animation: orbFloat 18s ease-in-out infinite;
        }

        .hero-bg-orb:nth-child(1) {
            width: 700px;
            height: 700px;
            background: rgba(45, 110, 224, 0.3);
            top: -200px;
            left: -200px;
            animation-delay: 0s;
            animation-duration: 20s;
        }

        .hero-bg-orb:nth-child(2) {
            width: 500px;
            height: 500px;
            background: rgba(240, 122, 58, 0.24);
            bottom: -100px;
            right: -100px;
            animation-delay: -7s;
            animation-duration: 22s;
        }

        .hero-bg-orb:nth-child(3) {
            width: 400px;
            height: 400px;
            background: rgba(75, 142, 240, 0.18);
            top: 40%;
            left: 35%;
            animation-delay: -13s;
            animation-duration: 25s;
        }

        @keyframes orbFloat {
            0% {
                opacity: 0.18;
                transform: translate(0, 0) scale(1);
            }

            33% {
                opacity: 0.25;
                transform: translate(30px, -20px) scale(1.05);
            }

            66% {
                opacity: 0.15;
                transform: translate(-20px, 30px) scale(0.95);
            }

            100% {
                opacity: 0.18;
                transform: translate(0, 0) scale(1);
            }
        }

        .hero-grid-lines {
            position: absolute;
            inset: 0;
            background: rgba(255, 255, 255, 0.018);
        }

        .hero-dots {
            position: absolute;
            inset: 0;
            background: rgba(75, 142, 240, 0.025);
            animation: dotsDrift 40s linear infinite;
        }

        @keyframes dotsDrift {
            0% {
                background-position: 0 0;
            }

            100% {
                background-position: 60px 60px;
            }
        }

        .hero-glow-lines {
            position: absolute;
            inset: 0;
            overflow: hidden;
        }

        .hero-glow-lines::before {
            content: '';
            position: absolute;
            top: -50%;
            left: 20%;
            width: 1px;
            height: 200%;
            background: rgba(75, 142, 240, 0.18);
            transform: rotate(15deg);
        }

        .hero-glow-lines::after {
            content: '';
            position: absolute;
            top: -50%;
            left: 62%;
            width: 1px;
            height: 200%;
            background: rgba(240, 122, 58, 0.14);
            transform: rotate(-12deg);
        }

        .hero-fade {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 200px;
            background: rgba(7, 8, 14, 0.72);
            z-index: 1;
        }

        #heroCanvas,
        #heroCanvas2 {
            position: absolute;
            inset: 0;
            z-index: 0;
            opacity: 0.35;
        }

        #heroCanvas2 {
            opacity: 0.2;
            z-index: 3;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(75, 142, 240, 0.07);
            border: 1px solid rgba(75, 142, 240, 0.22);
            border-radius: 100px;
            padding: 6px 16px 6px 10px;
            font-size: 0.8rem;
            color: var(--blue2);
            margin-bottom: 1.5rem;
            backdrop-filter: blur(8px);
            font-family: 'Inter', sans-serif;
        }

        .hero-badge-dot {
            width: 7px;
            height: 7px;
            background: var(--green);
            border-radius: 50%;
            box-shadow: 0 0 8px var(--green);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {

            0%,
            100% {
                opacity: 1;
                box-shadow: 0 0 8px var(--green);
            }

            50% {
                opacity: 0.5;
                box-shadow: 0 0 3px var(--green);
            }
        }

        .hero-title {
            font-size: clamp(2.6rem, 4.8vw, 4.2rem);
            line-height: 1.06;
            margin-bottom: 1.4rem;
            letter-spacing: -0.03em;
        }

        .hero-title .line2 {
            color: var(--orange);
            display: inline-block;
        }

        .hero-desc {
            color: var(--muted2);
            font-size: 1.02rem;
            line-height: 1.82;
            margin-bottom: 2.2rem;
            max-width: 470px;
            font-weight: 300;
        }

        .hero-desc strong {
            color: var(--text);
            font-weight: 500;
        }

        .hero-socials {
            display: flex;
            gap: 10px;
            z-index: 999;
        }

        .social-btn {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 10px;
            color: var(--muted2);
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.25s;
        }

        .social-btn:hover {
            border-color: var(--orange);
            color: var(--orange2);
            background: var(--orange-dim);
            transform: translateY(-2px);
        }

        .stat-card {
            padding: 1.4rem;
            border-radius: var(--radius);
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid var(--border);
            text-align: center;
            transition: all 0.3s;
            backdrop-filter: blur(12px);
        }

        .stat-card:hover {
            border-color: rgba(240, 122, 58, 0.28);
            background: rgba(255, 255, 255, 0.055);
        }

        .stat-icon {
            font-size: 1.3rem;
            margin-bottom: 8px;
            line-height: 1;
        }

        .stat-number {
            font-family: 'Bricolage Grotesque', sans-serif;
            font-size: 2rem;
            font-weight: 700;
            color: var(--orange);
            line-height: 1;
            letter-spacing: -0.03em;
        }

        .stat-label {
            font-size: 0.78rem;
            color: var(--muted);
            margin-top: 5px;
            text-transform: uppercase;
            letter-spacing: 0.08em;
        }

        .availability-card {
            margin-top: 14px;
            padding: 1rem 1.4rem;
            background: rgba(74, 222, 128, 0.05);
            border: 1px solid rgba(74, 222, 128, 0.18);
            border-radius: var(--radius);
            display: flex;
            align-items: center;
            gap: 12px;
            backdrop-filter: blur(12px);
        }

        .avail-dot {
            width: 9px;
            height: 9px;
            background: var(--green);
            border-radius: 50%;
            box-shadow: 0 0 8px var(--green);
            flex-shrink: 0;
            animation: pulse 2s infinite;
        }

        /* About */
        #about {
            padding: 7rem 0;
        }

        .about-image-stack {
            position: relative;
        }

        .about-img-main {
            width: 100%;
            aspect-ratio: 4/5;
            object-fit: cover;
            border-radius: 20px;
            border: 1px solid var(--border);
            display: block;
        }

        .about-img-overlay {
            position: absolute;
            bottom: -28px;
            right: -28px;
            width: 52%;
            aspect-ratio: 1;
            object-fit: cover;
            border-radius: 16px;
            border: 3px solid var(--bg);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.55);
        }

        .exp-badge {
            position: absolute;
            top: 22px;
            left: -20px;
            background: #0d1e50;
            border: 1px solid rgba(75, 142, 240, 0.28);
            border-radius: 12px;
            padding: 1rem 1.1rem;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
        }

        .exp-badge .num {
            font-family: 'Bricolage Grotesque', sans-serif;
            font-size: 1.9rem;
            font-weight: 700;
            color: var(--blue2);
            line-height: 1;
        }

        .exp-badge .lbl {
            font-size: 0.68rem;
            color: var(--muted2);
            text-transform: uppercase;
            letter-spacing: 0.08em;
        }

        .about-text p {
            color: var(--muted2);
            margin-bottom: 1.1rem;
            font-size: 0.98rem;
            line-height: 1.78;
            font-weight: 300;
        }

        .about-details {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            margin: 1.8rem 0;
        }

        .detail-item {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .detail-key {
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--muted);
            font-family: 'Inter', sans-serif;
        }

        .detail-val {
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--text);
        }

        .recognition-strip {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 1.5rem;
        }

        .badge-pill {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 4px 12px;
            background: var(--blue-dim);
            border: 1px solid rgba(75, 142, 240, 0.2);
            border-radius: 100px;
            font-size: 0.78rem;
            color: var(--blue2);
        }

        .badge-pill i {
            font-size: 0.75rem;
        }

        /* Timeline */
        #timeline {
            padding: 7rem 0;
        }

        .timeline-col-title {
            display: flex;
            align-items: center;
            gap: 10px;
            font-family: 'Bricolage Grotesque', sans-serif;
            font-size: 1.05rem;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid var(--border);
            letter-spacing: -0.01em;
        }

        .timeline-col-title i {
            color: var(--orange);
            width: 18px;
            text-align: center;
        }

        .timeline-list {
            position: relative;
        }

        .timeline-list::before {
            content: '';
            position: absolute;
            left: 6px;
            top: 8px;
            bottom: 0;
            width: 1px;
            background: var(--orange);
        }

        .tl-item {
            position: relative;
            padding-left: 2.4rem;
            margin-bottom: 1.8rem;
        }

        .tl-dot {
            position: absolute;
            left: 0;
            top: 8px;
            width: 13px;
            height: 13px;
            border-radius: 50%;
            background: var(--orange);
            border: 2px solid var(--bg);
            box-shadow: 0 0 0 3px var(--orange-dim);
        }

        .tl-card {
            padding: 1.3rem;
            border-radius: var(--radius);
            background: var(--surface);
            border: 1px solid var(--border);
            transition: all 0.3s;
        }

        .tl-card:hover {
            border-color: rgba(75, 142, 240, 0.25);
            background: var(--surface2);
        }

        .tl-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            flex-wrap: wrap;
            gap: 6px;
            margin-bottom: 5px;
        }

        .tl-title {
            font-family: 'Bricolage Grotesque', sans-serif;
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--text);
            letter-spacing: -0.01em;
        }

        .tl-year {
            font-size: 0.7rem;
            color: var(--orange2);
            background: var(--orange-dim);
            border: 1px solid rgba(240, 122, 58, 0.22);
            padding: 2px 9px;
            border-radius: 100px;
            white-space: nowrap;
            font-family: 'Inter', sans-serif;
        }

        .tl-org {
            font-size: 0.82rem;
            color: var(--blue2);
            margin-bottom: 7px;
        }

        .tl-org i {
            font-size: 0.7rem;
            margin-right: 4px;
        }

        .tl-desc {
            font-size: 0.85rem;
            color: var(--muted);
            line-height: 1.68;
            font-weight: 300;
        }

        /* Skills */
        #skills {
            padding: 7rem 0;
        }

        .skills-wrapper {
            margin-top: 3rem;
        }

        .skill-category {
            margin-bottom: 2.2rem;
        }

        .skill-cat-title {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--muted);
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .skill-cat-title::after {
            content: '';
            flex: 1;
            height: 1px;
            background: var(--border);
        }

        .skill-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 9px;
        }

        .skill-chip {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            padding: 7px 14px;
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 9px;
            font-size: 0.84rem;
            font-weight: 500;
            color: var(--muted2);
            transition: all 0.25s;
            cursor: default;
        }

        .skill-chip:hover {
            border-color: rgba(200, 169, 110, 0.38);
            color: var(--gold2);
            background: rgba(200, 169, 110, 0.06);
            transform: translateY(-2px);
        }

        .skill-chip i {
            font-size: 0.95rem;
            color: var(--gold);
            width: 14px;
            text-align: center;
        }

        .skill-level {
            font-size: 0.68rem;
            color: var(--muted);
            background: rgba(255, 255, 255, 0.06);
            padding: 2px 6px;
            border-radius: 4px;
        }

        /* Services */
        #services {
            padding: 7rem 0;
        }

        .service-card {
            padding: 1.8rem;
            border-radius: var(--radius);
            background: var(--surface);
            border: 1px solid var(--border);
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--gold);
            opacity: 0;
            transition: opacity 0.3s;
        }

        .service-card:hover {
            border-color: rgba(200, 169, 110, 0.28);
            background: var(--surface2);
            transform: translateY(-4px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

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

        .service-icon {
            width: 48px;
            height: 48px;
            border-radius: 11px;
            background: rgba(200, 169, 110, 0.08);
            border: 1px solid rgba(200, 169, 110, 0.18);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            color: var(--gold);
            margin-bottom: 1.1rem;
        }

        .service-title {
            font-family: 'Bricolage Grotesque', sans-serif;
            font-size: 1rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 0.65rem;
        }

        .service-desc {
            font-size: 0.85rem;
            color: var(--muted);
            line-height: 1.7;
            margin-bottom: 1.1rem;
        }

        .service-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 5px;
        }

        .mini-tag {
            font-size: 0.7rem;
            color: var(--cyan);
            background: rgba(99, 179, 237, 0.07);
            border: 1px solid rgba(99, 179, 237, 0.18);
            padding: 2px 8px;
            border-radius: 4px;
        }

        /* Projects */
        #work {
            padding: 7rem 0;
        }

        .project-card {
            border-radius: var(--radius);
            background: var(--surface);
            border: 1px solid var(--border);
            overflow: hidden;
            transition: all 0.3s;
        }

        .project-card:hover {
            border-color: rgba(200, 169, 110, 0.28);
            transform: translateY(-4px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
        }

        .project-thumb {
            width: 100%;
            height: 185px;
            object-fit: cover;
            display: block;
            transition: transform 0.4s;
        }

        .project-card:hover .project-thumb {
            transform: scale(1.03);
        }

        .project-thumb-placeholder {
            width: 100%;
            height: 185px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
        }

        .thumb-1 {
            background: #0d1e3d;
        }

        .thumb-2 {
            background: #1a0d3d;
        }

        .thumb-3 {
            background: #0d2a1a;
        }

        .thumb-4 {
            background: #2a1a0d;
        }

        .thumb-5 {
            background: #0d1a2a;
        }

        .thumb-6 {
            background: #1a0d2a;
        }

        .project-body {
            padding: 1.3rem;
        }

        .project-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 7px;
        }

        .project-type {
            font-size: 0.72rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--gold);
        }

        .project-year {
            font-size: 0.72rem;
            color: var(--muted);
        }

        .project-title {
            font-family: 'Bricolage Grotesque', sans-serif;
            font-size: 1rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 5px;
        }

        .project-desc {
            font-size: 0.83rem;
            color: var(--muted);
            line-height: 1.6;
            margin-bottom: 0.9rem;
        }

        .project-stack {
            display: flex;
            flex-wrap: wrap;
            gap: 5px;
        }

        .stack-tag {
            font-size: 0.7rem;
            padding: 2px 8px;
            border-radius: 4px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--border);
            color: var(--muted2);
        }

        /* Testimonials – slider layout */
        #testimonials {
            padding: 7rem 0;
        }

        .testimonial-slider {
            overflow: hidden;
            position: relative;
        }

        .testimonial-track {
            display: flex;
            transition: transform 0.7s ease-out;
            will-change: transform;
        }

        .testimonial-card {
            flex: 0 0 calc(100% / 3);
            /* 3 cards visible on desktop */
            padding: 1.8rem;
            border-radius: var(--radius);
            background: var(--surface);
            border: 1px solid var(--border);
            transition: all 0.3s;
            position: relative;
        }

        .testimonial-card:hover {
            border-color: rgba(200, 169, 110, 0.28);
            background: var(--surface2);
        }

        .quote-mark {
            font-size: 3.5rem;
            color: var(--gold);
            opacity: 0.18;
            line-height: 1;
            font-family: Georgia, serif;
            position: absolute;
            top: 1rem;
            left: 1.3rem;
        }

        .testimonial-text {
            font-size: 0.9rem;
            color: var(--muted2);
            line-height: 1.75;
            margin-bottom: 1.4rem;
            padding-top: 0.8rem;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 11px;
        }

        .author-avatar {
            width: 42px;
            height: 42px;
            border-radius: 11px;
            background: var(--orange);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Bricolage Grotesque', sans-serif;
            font-weight: 700;
            color: #fff;
            font-size: 0.9rem;
            flex-shrink: 0;
        }

        .author-name {
            font-weight: 600;
            font-size: 0.9rem;
            color: var(--text);
        }

        .author-role {
            font-size: 0.75rem;
            color: var(--muted);
        }

        .stars {
            color: var(--gold);
            font-size: 0.78rem;
            margin-top: 3px;
        }

        .testimonial-dots {
            margin-top: 2rem;
            display: flex;
            justify-content: center;
            gap: 8px;
        }

        .testimonial-dots button {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            border: none;
            background: rgba(255, 255, 255, 0.2);
            cursor: pointer;
            transition: background 0.3s;
        }

        .testimonial-dots button.active {
            background: var(--orange);
        }

        /* Contact */
        #contact {
            padding: 7rem 0;
        }

        .contact-item {
            display: flex;
            gap: 14px;
            padding: 1.1rem;
            border-radius: var(--radius);
            background: var(--surface);
            border: 1px solid var(--border);
            margin-bottom: 10px;
            transition: all 0.25s;
        }

        .contact-item:hover {
            border-color: rgba(200, 169, 110, 0.28);
        }

        .contact-icon {
            width: 40px;
            height: 40px;
            background: rgba(200, 169, 110, 0.08);
            border: 1px solid rgba(200, 169, 110, 0.18);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold);
            font-size: 0.95rem;
            flex-shrink: 0;
        }

        .contact-label {
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--muted);
            margin-bottom: 3px;
        }

        .contact-value {
            font-size: 0.92rem;
            font-weight: 500;
            color: var(--text);
        }

        .contact-socials {
            display: flex;
            gap: 9px;
            margin-top: 1.4rem;
        }

        .contact-form {
            padding: 2rem;
            border-radius: 18px;
            background: var(--surface);
            border: 1px solid var(--border);
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }

        .form-group {
            margin-bottom: 12px;
        }

        .form-label {
            display: block;
            font-size: 0.75rem;
            font-weight: 500;
            color: var(--muted2);
            margin-bottom: 5px;
            text-transform: uppercase;
            letter-spacing: 0.06em;
        }

        .form-input,
        .form-textarea,
        .form-select {
            width: 100%;
            padding: 0.7rem 0.9rem;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid var(--border);
            border-radius: 9px;
            color: var(--text);
            font-family: 'Inter', sans-serif;
            font-size: 0.88rem;
            transition: all 0.25s;
            -webkit-appearance: none;
            appearance: none;
        }

        .form-input:focus,
        .form-textarea:focus,
        .form-select:focus {
            outline: none;
            border-color: rgba(200, 169, 110, 0.45);
            background: rgba(200, 169, 110, 0.03);
            box-shadow: 0 0 0 3px rgba(200, 169, 110, 0.07);
        }

        .form-input::placeholder,
        .form-textarea::placeholder {
            color: var(--muted);
        }

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

        .form-select option {
            background: #0a0f1c;
        }

        .form-submit {
            width: 100%;
            padding: 0.8rem;
            font-size: 0.92rem;
            font-weight: 600;
            font-family: 'Inter', sans-serif;
            letter-spacing: 0.04em;
        }

        .success-msg {
            display: none;
            margin-top: 10px;
            padding: 0.7rem;
            background: rgba(74, 222, 128, 0.07);
            border: 1px solid rgba(74, 222, 128, 0.22);
            border-radius: 8px;
            color: var(--green);
            font-size: 0.85rem;
            text-align: center;
        }

        footer {
            border-top: 1px solid var(--border);
            background: rgba(7, 8, 14, 0.92);
        }

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

        .fade-up {
            opacity: 0;
            transform: translateY(28px);
            transition: opacity 0.65s ease, transform 0.65s ease;
        }

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

        .stack-row {
            display: flex;
            flex-wrap: wrap;
            gap: 5px;
            margin-top: 9px;
        }

        @media (max-width: 768px) {

            .nav-links,
            .nav-cta .btn-ghost {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .about-img-overlay,
            .exp-badge {
                display: none;
            }

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

            .testimonial-card {
                flex: 0 0 100%;
            }

            /* single card on mobile */
        }
  