        /* ===== Reset & Base ===== */
        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --color-bg: #ffffff;
            --color-bg-light: #f8fafc;
            --color-bg-card: #f1f5f9;
            --color-text: #0f172a;
            --color-text-muted: #64748b;
            --color-accent: #0d9488;
            --color-accent-light: #14b8a6;
            --color-accent-glow: rgba(13, 148, 136, 0.08);
            --color-border: rgba(15, 23, 42, 0.08);
            --radius: 16px;
            --radius-sm: 10px;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background: var(--color-bg);
            color: var(--color-text);
            line-height: 1.7;
            overflow-x: hidden;
        }

        /* ===== Animated Background ===== */
        .bg-glow {
            position: fixed;
            top: -200px;
            left: 50%;
            transform: translateX(-50%);
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(13, 148, 136, 0.06) 0%, transparent 70%);
            pointer-events: none;
            z-index: 0;
        }

        .bg-glow-2 {
            position: fixed;
            bottom: -300px;
            right: -200px;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(99, 102, 241, 0.04) 0%, transparent 70%);
            pointer-events: none;
            z-index: 0;
        }

        /* ===== Layout ===== */
        .container {
            max-width: 1080px;
            margin: 0 auto;
            padding: 0 24px;
            position: relative;
            z-index: 1;
        }

        /* ===== Navigation ===== */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            padding: 16px 0;
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            background: rgba(255, 255, 255, 0.85);
            border-bottom: 1px solid var(--color-border);
            transition: all 0.3s ease;
        }

        nav .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .nav-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            color: var(--color-text);
        }

        .nav-brand img {
            width: 40px;
            height: 40px;
            border-radius: 50%;
        }

        .nav-brand span {
            font-size: 1.2rem;
            font-weight: 600;
            font-family: 'JetBrains Mono', monospace;
            letter-spacing: -0.5px;
        }

        .nav-brand .dot {
            color: var(--color-accent);
        }

        .nav-contact {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 24px;
            border: 1px solid var(--color-accent);
            border-radius: 100px;
            color: var(--color-accent);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .nav-contact:hover {
            background: var(--color-accent);
            color: var(--color-bg);
            box-shadow: 0 0 30px rgba(13, 148, 136, 0.2);
        }

        .nav-left {
            display: flex;
            align-items: center;
            gap: 40px;
        }

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

        .nav-links a {
            color: var(--color-text-muted);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--color-text);
        }

        .nav-links a.active::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--color-accent);
            border-radius: 2px;
        }

        /* ===== Hero Section ===== */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 120px 0 80px;
        }

        .hero-inner {
            max-width: 720px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 20px;
            background: var(--color-accent-glow);
            border: 1px solid rgba(34, 211, 167, 0.2);
            border-radius: 100px;
            font-size: 0.85rem;
            color: var(--color-accent);
            font-weight: 500;
            margin-bottom: 32px;
            animation: fadeInUp 0.8s ease;
        }

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

        .hero h1 {
            font-size: clamp(2.5rem, 6vw, 4rem);
            font-weight: 700;
            line-height: 1.15;
            margin-bottom: 24px;
            letter-spacing: -1.5px;
            animation: fadeInUp 0.8s ease 0.1s both;
        }

        .hero h1 .highlight {
            background: linear-gradient(135deg, var(--color-accent), #6366f1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero p {
            font-size: 1.15rem;
            color: var(--color-text-muted);
            max-width: 560px;
            margin: 0 auto 40px;
            line-height: 1.8;
            animation: fadeInUp 0.8s ease 0.2s both;
        }

        .hero-cta {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
            animation: fadeInUp 0.8s ease 0.3s both;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 32px;
            background: var(--color-accent);
            color: var(--color-bg);
            border-radius: 100px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 40px rgba(13, 148, 136, 0.25);
        }

        .btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 32px;
            background: transparent;
            color: var(--color-text);
            border: 1px solid var(--color-border);
            border-radius: 100px;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }

        .btn-secondary:hover {
            border-color: var(--color-text-muted);
            background: rgba(0, 0, 0, 0.03);
        }

        /* ===== Section Styles ===== */
        section {
            padding: 100px 0;
        }

        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--color-accent);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 16px;
        }

        .section-label::before {
            content: '';
            width: 24px;
            height: 2px;
            background: var(--color-accent);
            border-radius: 2px;
        }

        .section-title {
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            font-weight: 700;
            letter-spacing: -1px;
            margin-bottom: 20px;
        }

        .section-desc {
            font-size: 1.05rem;
            color: var(--color-text-muted);
            max-width: 560px;
            line-height: 1.8;
        }

        /* ===== About Section ===== */
        .about {
            border-top: 1px solid var(--color-border);
        }

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

        .about-image {
            position: relative;
        }

        .about-image-wrapper {
            width: 100%;
            aspect-ratio: 1;
            max-width: 380px;
            margin: 0 auto;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--color-bg-card), var(--color-bg-light));
            border: 1px solid var(--color-border);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .about-image-wrapper::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(34, 211, 167, 0.05), rgba(99, 102, 241, 0.05));
        }

        .about-image-wrapper img {
            width: 65%;
            height: 65%;
            object-fit: contain;
            position: relative;
            z-index: 1;
            filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
        }

        .about-stats {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-top: 32px;
        }

        .stat {
            padding: 20px;
            background: var(--color-bg-card);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-sm);
            text-align: center;
        }

        .stat-number {
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--color-accent);
            font-family: 'JetBrains Mono', monospace;
        }

        .stat-label {
            font-size: 0.8rem;
            color: var(--color-text-muted);
            margin-top: 4px;
        }

        /* ===== Services ===== */
        .services {
            border-top: 1px solid var(--color-border);
        }

        .services-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .services-header .section-desc {
            margin: 0 auto;
        }

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

        .service-card {
            padding: 36px 28px;
            background: var(--color-bg-card);
            border: 1px solid var(--color-border);
            border-radius: var(--radius);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .service-card:hover {
            transform: translateY(-4px);
            border-color: rgba(13, 148, 136, 0.2);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06), 0 0 40px var(--color-accent-glow);
        }

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

        .service-icon {
            width: 52px;
            height: 52px;
            border-radius: 14px;
            background: var(--color-accent-glow);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 1.5rem;
        }

        .service-card h3 {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 12px;
            letter-spacing: -0.3px;
        }

        .service-card p {
            font-size: 0.9rem;
            color: var(--color-text-muted);
            line-height: 1.7;
        }

        /* ===== CTA Section ===== */
        .cta-section {
            border-top: 1px solid var(--color-border);
        }

        .cta-box {
            text-align: center;
            padding: 80px 40px;
            background: linear-gradient(135deg, var(--color-bg-card), rgba(13, 148, 136, 0.04));
            border: 1px solid var(--color-border);
            border-radius: var(--radius);
            position: relative;
            overflow: hidden;
        }

        .cta-box::before {
            content: '';
            position: absolute;
            top: -1px;
            left: 20%;
            right: 20%;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
        }

        .cta-box h2 {
            font-size: clamp(1.6rem, 3.5vw, 2.2rem);
            font-weight: 700;
            margin-bottom: 16px;
            letter-spacing: -0.5px;
        }

        .cta-box p {
            color: var(--color-text-muted);
            margin-bottom: 32px;
            font-size: 1.05rem;
        }

        /* ===== Footer ===== */
        footer {
            border-top: 1px solid var(--color-border);
            padding: 40px 0;
        }

        .footer-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 16px;
        }

        .footer-brand {
            display: flex;
            align-items: center;
            gap: 10px;
            font-family: 'JetBrains Mono', monospace;
            font-weight: 500;
            font-size: 0.95rem;
            color: var(--color-text-muted);
        }

        .footer-brand img {
            width: 28px;
            height: 28px;
            border-radius: 6px;
        }

        .footer-info {
            font-size: 0.85rem;
            color: var(--color-text-muted);
        }

        .footer-location {
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        /* ===== Animations ===== */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(24px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.4; }
        }

        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ===== Responsive ===== */
        @media (max-width: 900px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .about-grid {
                grid-template-columns: 1fr;
                gap: 48px;
            }

            .about-image {
                order: -1;
            }

            .about-image-wrapper {
                max-width: 280px;
            }
        }

        @media (max-width: 600px) {
            .services-grid {
                grid-template-columns: 1fr;
            }

            section {
                padding: 60px 0;
            }

            .hero {
                padding: 100px 0 60px;
            }

            .cta-box {
                padding: 48px 24px;
            }

            .about-stats {
                grid-template-columns: 1fr 1fr;
            }

            .nav-links {
                display: none;
            }

            .nav-contact span {
                display: none;
            }
        }
        /* ===== Reset & Base ===== */
        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --color-bg: #ffffff;
            --color-bg-light: #f8fafc;
            --color-bg-card: #f1f5f9;
            --color-text: #0f172a;
            --color-text-muted: #64748b;
            --color-accent: #0d9488;
            --color-accent-light: #14b8a6;
            --color-accent-glow: rgba(13, 148, 136, 0.08);
            --color-border: rgba(15, 23, 42, 0.08);
            --radius: 16px;
            --radius-sm: 10px;
        }

        html { scroll-behavior: smooth; }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background: var(--color-bg);
            color: var(--color-text);
            line-height: 1.7;
            overflow-x: hidden;
        }

        .bg-glow {
            position: fixed;
            top: -200px;
            left: 50%;
            transform: translateX(-50%);
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(13, 148, 136, 0.06) 0%, transparent 70%);
            pointer-events: none;
            z-index: 0;
        }

        .bg-glow-2 {
            position: fixed;
            bottom: -300px;
            right: -200px;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(99, 102, 241, 0.04) 0%, transparent 70%);
            pointer-events: none;
            z-index: 0;
        }

        .container {
            max-width: 1080px;
            margin: 0 auto;
            padding: 0 24px;
            position: relative;
            z-index: 1;
        }

        /* ===== Navigation ===== */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            padding: 16px 0;
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            background: rgba(255, 255, 255, 0.85);
            border-bottom: 1px solid var(--color-border);
        }

        nav .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .nav-left {
            display: flex;
            align-items: center;
            gap: 40px;
        }

        .nav-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            color: var(--color-text);
        }

        .nav-brand img {
            width: 40px;
            height: 40px;
            border-radius: 50%;
        }

        .nav-brand span {
            font-size: 1.2rem;
            font-weight: 600;
            font-family: 'JetBrains Mono', monospace;
            letter-spacing: -0.5px;
        }

        .nav-brand .dot { color: var(--color-accent); }

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

        .nav-links a {
            color: var(--color-text-muted);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--color-text);
        }

        .nav-links a.active::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--color-accent);
            border-radius: 2px;
        }

        .nav-contact {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 24px;
            border: 1px solid var(--color-accent);
            border-radius: 100px;
            color: var(--color-accent);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .nav-contact:hover {
            background: var(--color-accent);
            color: var(--color-bg);
            box-shadow: 0 0 30px rgba(13, 148, 136, 0.2);
        }

        /* ===== Page Header ===== */
        .page-header {
            padding: 160px 0 80px;
            text-align: center;
        }

        .page-header .section-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--color-accent);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 16px;
        }

        .page-header .section-label::before {
            content: '';
            width: 24px;
            height: 2px;
            background: var(--color-accent);
            border-radius: 2px;
        }

        .page-header h1 {
            font-size: clamp(2rem, 5vw, 3rem);
            font-weight: 700;
            letter-spacing: -1.5px;
            margin-bottom: 16px;
            animation: fadeInUp 0.8s ease;
        }

        .page-header h1 .highlight {
            background: linear-gradient(135deg, var(--color-accent), #6366f1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .page-header p {
            font-size: 1.1rem;
            color: var(--color-text-muted);
            max-width: 520px;
            margin: 0 auto;
            animation: fadeInUp 0.8s ease 0.1s both;
        }

        /* ===== About Content ===== */
        .about-content {
            padding: 0 0 100px;
        }

        .about-card {
            background: var(--color-bg-card);
            border: 1px solid var(--color-border);
            border-radius: var(--radius);
            padding: 60px;
            position: relative;
            overflow: hidden;
        }

        .about-card::before {
            content: '';
            position: absolute;
            top: -1px;
            left: 20%;
            right: 20%;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
        }

        .about-body {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 60px;
            align-items: start;
        }

        .about-text p {
            font-size: 1.05rem;
            color: var(--color-text-muted);
            line-height: 1.9;
            margin-bottom: 24px;
        }

        .about-text p:last-child {
            margin-bottom: 0;
        }

        .about-text a {
            color: var(--color-accent);
            text-decoration: none;
            border-bottom: 1px solid rgba(34, 211, 167, 0.3);
            transition: border-color 0.3s ease;
        }

        .about-text a:hover {
            border-bottom-color: var(--color-accent);
        }

        .about-text strong {
            color: var(--color-text);
            font-weight: 600;
        }

        /* Sidebar */
        .about-sidebar {
            position: sticky;
            top: 120px;
        }

        .sidebar-card {
            background: var(--color-bg-light);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-sm);
            padding: 28px;
            margin-bottom: 20px;
        }

        .sidebar-card h3 {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--color-accent);
            margin-bottom: 16px;
            font-weight: 600;
        }

        .sidebar-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 8px 0;
            font-size: 0.9rem;
            color: var(--color-text-muted);
        }

        .sidebar-item svg {
            flex-shrink: 0;
            color: var(--color-accent);
        }

        .collab-list {
            list-style: none;
        }

        .collab-list li {
            padding: 6px 0;
            font-size: 0.88rem;
            color: var(--color-text-muted);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .collab-list li::before {
            content: '';
            width: 5px;
            height: 5px;
            background: var(--color-accent);
            border-radius: 50%;
            flex-shrink: 0;
        }

        /* ===== CTA Section ===== */
        .cta-section {
            padding: 0 0 100px;
        }

        .cta-box {
            text-align: center;
            padding: 80px 40px;
            background: linear-gradient(135deg, var(--color-bg-card), rgba(13, 148, 136, 0.04));
            border: 1px solid var(--color-border);
            border-radius: var(--radius);
            position: relative;
            overflow: hidden;
        }

        .cta-box::before {
            content: '';
            position: absolute;
            top: -1px;
            left: 20%;
            right: 20%;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
        }

        .cta-box h2 {
            font-size: clamp(1.6rem, 3.5vw, 2.2rem);
            font-weight: 700;
            margin-bottom: 16px;
            letter-spacing: -0.5px;
        }

        .cta-box p {
            color: var(--color-text-muted);
            margin-bottom: 32px;
            font-size: 1.05rem;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 32px;
            background: var(--color-accent);
            color: var(--color-bg);
            border-radius: 100px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 40px rgba(13, 148, 136, 0.25);
        }

        /* ===== Footer ===== */
        footer {
            border-top: 1px solid var(--color-border);
            padding: 40px 0;
        }

        .footer-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 16px;
        }

        .footer-brand {
            display: flex;
            align-items: center;
            gap: 10px;
            font-family: 'JetBrains Mono', monospace;
            font-weight: 500;
            font-size: 0.95rem;
            color: var(--color-text-muted);
        }

        .footer-brand img {
            width: 28px;
            height: 28px;
            border-radius: 6px;
        }

        .footer-info {
            font-size: 0.85rem;
            color: var(--color-text-muted);
        }

        .footer-location {
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        /* ===== Animations ===== */
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(24px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ===== Responsive ===== */
        @media (max-width: 900px) {
            .about-body {
                grid-template-columns: 1fr;
            }

            .about-sidebar {
                position: static;
            }
        }

        @media (max-width: 600px) {
            .page-header {
                padding: 120px 0 48px;
            }

            .about-card {
                padding: 32px 20px;
            }

            .nav-links {
                display: none;
            }
        }
        /* ===== Reset & Base ===== */
        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --color-bg: #ffffff;
            --color-bg-light: #f8fafc;
            --color-bg-card: #f1f5f9;
            --color-text: #0f172a;
            --color-text-muted: #64748b;
            --color-accent: #0d9488;
            --color-accent-light: #14b8a6;
            --color-accent-glow: rgba(13, 148, 136, 0.08);
            --color-border: rgba(15, 23, 42, 0.08);
            --radius: 16px;
            --radius-sm: 10px;
        }

        html { scroll-behavior: smooth; }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background: var(--color-bg);
            color: var(--color-text);
            line-height: 1.7;
            overflow-x: hidden;
        }

        .bg-glow {
            position: fixed;
            top: -200px;
            left: 50%;
            transform: translateX(-50%);
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(13, 148, 136, 0.06) 0%, transparent 70%);
            pointer-events: none;
            z-index: 0;
        }

        .bg-glow-2 {
            position: fixed;
            bottom: -300px;
            right: -200px;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(99, 102, 241, 0.04) 0%, transparent 70%);
            pointer-events: none;
            z-index: 0;
        }

        .container {
            max-width: 1080px;
            margin: 0 auto;
            padding: 0 24px;
            position: relative;
            z-index: 1;
        }

        /* ===== Navigation ===== */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            padding: 16px 0;
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            background: rgba(255, 255, 255, 0.85);
            border-bottom: 1px solid var(--color-border);
        }

        nav .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .nav-left {
            display: flex;
            align-items: center;
            gap: 40px;
        }

        .nav-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            color: var(--color-text);
        }

        .nav-brand img {
            width: 40px;
            height: 40px;
            border-radius: 50%;
        }

        .nav-brand span {
            font-size: 1.2rem;
            font-weight: 600;
            font-family: 'JetBrains Mono', monospace;
            letter-spacing: -0.5px;
        }

        .nav-brand .dot { color: var(--color-accent); }

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

        .nav-links a {
            color: var(--color-text-muted);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--color-text);
        }

        .nav-links a.active::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--color-accent);
            border-radius: 2px;
        }

        .nav-contact {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 24px;
            border: 1px solid var(--color-accent);
            border-radius: 100px;
            color: var(--color-accent);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .nav-contact:hover {
            background: var(--color-accent);
            color: var(--color-bg);
            box-shadow: 0 0 30px rgba(13, 148, 136, 0.2);
        }

        /* ===== Page Header ===== */
        .page-header {
            padding: 160px 0 80px;
            text-align: center;
        }

        .page-header .section-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--color-accent);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 16px;
        }

        .page-header .section-label::before {
            content: '';
            width: 24px;
            height: 2px;
            background: var(--color-accent);
            border-radius: 2px;
        }

        .page-header h1 {
            font-size: clamp(2rem, 5vw, 3rem);
            font-weight: 700;
            letter-spacing: -1.5px;
            margin-bottom: 16px;
            animation: fadeInUp 0.8s ease;
        }

        .page-header h1 .highlight {
            background: linear-gradient(135deg, var(--color-accent), #6366f1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .page-header p {
            font-size: 1.1rem;
            color: var(--color-text-muted);
            max-width: 520px;
            margin: 0 auto;
            animation: fadeInUp 0.8s ease 0.1s both;
        }

        /* ===== Contact Content ===== */
        .contact-content {
            padding: 0 0 100px;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
        }

        .contact-card {
            background: var(--color-bg-card);
            border: 1px solid var(--color-border);
            border-radius: var(--radius);
            padding: 48px 40px;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
        }

        .contact-card:hover {
            border-color: rgba(13, 148, 136, 0.2);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
        }

        .contact-card::before {
            content: '';
            position: absolute;
            top: -1px;
            left: 20%;
            right: 20%;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

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

        .contact-icon {
            width: 56px;
            height: 56px;
            border-radius: 14px;
            background: var(--color-accent-glow);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            font-size: 1.5rem;
        }

        .contact-card h3 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 12px;
            letter-spacing: -0.3px;
        }

        .contact-card p {
            font-size: 0.95rem;
            color: var(--color-text-muted);
            line-height: 1.8;
            margin-bottom: 8px;
        }

        .contact-card a {
            color: var(--color-accent);
            text-decoration: none;
            font-weight: 500;
            border-bottom: 1px solid rgba(34, 211, 167, 0.3);
            transition: border-color 0.3s ease;
        }

        .contact-card a:hover {
            border-bottom-color: var(--color-accent);
        }

        /* Full-width card */
        .contact-card-full {
            grid-column: 1 / -1;
        }

        .company-details {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 32px;
            margin-top: 20px;
        }

        .detail-item h4 {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--color-accent);
            margin-bottom: 8px;
            font-weight: 600;
        }

        .detail-item p {
            font-size: 0.9rem;
            color: var(--color-text-muted);
            line-height: 1.7;
            margin-bottom: 0;
        }

        /* Languages badge */
        .lang-badges {
            display: flex;
            gap: 10px;
            margin-top: 16px;
            flex-wrap: wrap;
        }

        .lang-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 14px;
            background: var(--color-accent-glow);
            border: 1px solid rgba(34, 211, 167, 0.15);
            border-radius: 100px;
            font-size: 0.82rem;
            color: var(--color-accent);
            font-weight: 500;
        }

        /* ===== Button ===== */
        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 32px;
            background: var(--color-accent);
            color: var(--color-bg);
            border-radius: 100px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 40px rgba(13, 148, 136, 0.25);
        }

        /* ===== Footer ===== */
        footer {
            border-top: 1px solid var(--color-border);
            padding: 40px 0;
        }

        .footer-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 16px;
        }

        .footer-brand {
            display: flex;
            align-items: center;
            gap: 10px;
            font-family: 'JetBrains Mono', monospace;
            font-weight: 500;
            font-size: 0.95rem;
            color: var(--color-text-muted);
        }

        .footer-brand img {
            width: 28px;
            height: 28px;
            border-radius: 6px;
        }

        .footer-info {
            font-size: 0.85rem;
            color: var(--color-text-muted);
        }

        .footer-location {
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        /* ===== Animations ===== */
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(24px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ===== Responsive ===== */
        @media (max-width: 768px) {
            .contact-grid {
                grid-template-columns: 1fr;
            }

            .company-details {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .contact-card {
                padding: 32px 24px;
            }
        }

        @media (max-width: 600px) {
            .page-header {
                padding: 120px 0 48px;
            }

            .nav-links {
                display: none;
            }
        }
