        :root {
            --primary-navy: #0f172a;
            --secondary-blue: #1e3a8a;
            --accent-cyan: #06b6d4;
            --slate-50: #f8fafc;
            --slate-100: #f1f5f9;
            --slate-200: #e2e8f0;
            --slate-400: #94a3b8;
            --slate-600: #475569;
            --slate-800: #1e293b;
            --white: #ffffff;
            --success: #047857;
            --warning: #f59e0b;
            --danger: #ef4444;

            --font-sans: 'Inter', 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
            --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
            --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
            --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-sans);
            line-height: 1.6;
            color: var(--slate-800);
            background-color: var(--white);
            overflow-x: hidden;
        }

        /* Utility Classes */
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        .section-padding {
            padding: 6rem 0;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.875rem 1.75rem;
            font-size: 0.875rem;
            font-weight: 600;
            text-decoration: none;
            border-radius: 0.375rem;
            transition: var(--transition);
            cursor: pointer;
            border: none;
            letter-spacing: 0.025em;
        }

        .btn-primary {
            background-color: var(--secondary-blue);
            color: var(--white);
            box-shadow: var(--shadow-md);
        }

        .btn-primary:hover {
            background-color: var(--primary-navy);
            transform: translateY(-1px);
            box-shadow: var(--shadow-lg);
        }

        .btn-outline {
            background-color: transparent;
            color: var(--white);
            border: 2px solid rgba(255, 255, 255, 0.3);
        }

        .btn-outline:hover {
            background-color: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.5);
        }

        .btn-ghost {
            background-color: transparent;
            color: var(--slate-600);
            border: 1px solid var(--slate-200);
        }

        .btn-ghost:hover {
            background-color: var(--slate-50);
            color: var(--primary-navy);
        }

        /* Header */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--slate-200);
            transition: var(--transition);
        }

        .header.scrolled {
            box-shadow: var(--shadow-md);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 4.5rem;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            text-decoration: none;
        }

        .logo-icon {
            width: 2.5rem;
            height: 2.5rem;
            background: linear-gradient(135deg, var(--secondary-blue) 0%, var(--accent-cyan) 100%);
            border-radius: 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-weight: 700;
            font-size: 0.875rem;
            letter-spacing: -0.025em;
        }

        .logo-text {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--primary-navy);
            letter-spacing: -0.025em;
        }

        .logo-text span {
            color: var(--slate-600);
            font-weight: 400;
        }

        .nav {
            display: none;
        }

        .nav-list {
            display: flex;
            align-items: center;
            gap: 2.5rem;
            list-style: none;
        }

        .nav-link {
            text-decoration: none;
            color: var(--slate-600);
            font-size: 0.875rem;
            font-weight: 500;
            transition: var(--transition);
            position: relative;
        }

        .nav-link:hover {
            color: var(--secondary-blue);
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent-cyan);
            transition: var(--transition);
        }

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

        .header-actions {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .lang-toggle {
            display: flex;
            background-color: var(--slate-100);
            border-radius: 0.375rem;
            padding: 0.25rem;
            gap: 0.25rem;
        }

        .lang-btn {
            padding: 0.375rem 0.75rem;
            font-size: 0.75rem;
            font-weight: 600;
            border: none;
            background: transparent;
            color: var(--slate-600);
            cursor: pointer;
            border-radius: 0.25rem;
            transition: var(--transition);
        }

        .lang-btn.active {
            background-color: var(--white);
            color: var(--primary-navy);
            box-shadow: var(--shadow-sm);
        }

        .mobile-menu-btn {
            display: flex;
            flex-direction: column;
            gap: 4px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
        }

        .mobile-menu-btn span {
            width: 24px;
            height: 2px;
            background-color: var(--slate-800);
            transition: var(--transition);
        }

        /* Hero Section */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            background-color: var(--primary-navy);
            overflow: hidden;
            margin-top: 0;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            background:
                linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 58, 138, 0.85) 100%),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect fill="none" stroke="%23334155" stroke-width="0.5" x="0" y="0" width="100" height="100"/><line x1="0" y1="50" x2="100" y2="50" stroke="%23334155" stroke-width="0.25"/><line x1="50" y1="0" x2="50" y2="100" stroke="%23334155" stroke-width="0.25"/></svg>');
            background-size: cover, 50px 50px;
            opacity: 0.4;
        }

        .hero-visual {
            position: absolute;
            inset: 0;
            background: linear-gradient(to right, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.4) 100%);
            display: flex;
            align-items: center;
            justify-content: flex-end;
            padding-right: 10%;
        }

        .hero-weld-visual {
            width: 600px;
            height: 400px;
            background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
            border-radius: 0.5rem;
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-xl);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .hero-weld-visual::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                repeating-linear-gradient(90deg,
                    transparent,
                    transparent 2px,
                    rgba(6, 182, 212, 0.1) 2px,
                    rgba(6, 182, 212, 0.1) 4px);
        }

        .weld-bead {
            position: absolute;
            top: 50%;
            left: 10%;
            right: 10%;
            height: 8px;
            background: linear-gradient(to right, #94a3b8, #e2e8f0, #94a3b8);
            border-radius: 4px;
            box-shadow: 0 0 20px rgba(6, 182, 212, 0.5);
            transform: translateY(-50%);
        }

        .weld-sparks {
            position: absolute;
            width: 4px;
            height: 4px;
            background: var(--accent-cyan);
            border-radius: 50%;
            box-shadow: 0 0 10px var(--accent-cyan);
            animation: sparkle 2s infinite;
        }

        @keyframes sparkle {

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

            50% {
                opacity: 1;
                transform: scale(1);
            }
        }

        .hero-content {
            position: relative;
            z-index: 10;
            max-width: 640px;
            padding-top: 6rem;
        }

        .hero-label {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            background-color: rgba(6, 182, 212, 0.1);
            border: 1px solid rgba(6, 182, 212, 0.3);
            border-radius: 2rem;
            color: var(--accent-cyan);
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 1.5rem;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            line-height: 1.1;
            color: var(--white);
            margin-bottom: 1.5rem;
            letter-spacing: -0.025em;
        }

        .hero-title span {
            color: var(--accent-cyan);
        }

        .hero-subtitle {
            font-size: 1.25rem;
            color: var(--slate-200);
            margin-bottom: 2.5rem;
            font-weight: 300;
            line-height: 1.6;
        }

        .hero-ctas {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .hero-stats {
            display: flex;
            gap: 3rem;
            margin-top: 4rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .stat-item {
            display: flex;
            flex-direction: column;
        }

        .stat-number {
            font-size: 2rem;
            font-weight: 700;
            color: var(--white);
            line-height: 1;
        }

        .stat-label {
            font-size: 0.875rem;
            color: var(--slate-400);
            margin-top: 0.25rem;
        }

        /* Section Headers */
        .section-header {
            text-align: center;
            max-width: 640px;
            margin: 0 auto 4rem;
        }

        .section-label {
            display: inline-block;
            padding: 0.5rem 1rem;
            background-color: rgba(30, 58, 138, 0.1);
            color: var(--secondary-blue);
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            border-radius: 2rem;
            margin-bottom: 1rem;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-navy);
            margin-bottom: 1rem;
            letter-spacing: -0.025em;
        }

        .section-desc {
            font-size: 1.125rem;
            color: var(--slate-600);
            line-height: 1.7;
        }

        /* Leadership Section */
        .leadership {
            background-color: var(--slate-50);
            position: relative;
            overflow: hidden;
        }

        .leadership::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background: linear-gradient(to left, rgba(30, 58, 138, 0.03) 0%, transparent 100%);
        }

        .leadership-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
        }

        .leadership-visual {
            position: relative;
        }

        .profile-card {
            background-color: var(--white);
            border-radius: 1rem;
            overflow: hidden;
            box-shadow: var(--shadow-xl);
            border: 1px solid var(--slate-200);
        }

        .profile-image {
            width: 100%;
            height: 400px;
            background: linear-gradient(135deg, var(--slate-200) 0%, var(--slate-100) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .profile-image::before {
            content: 'MW';
            font-size: 6rem;
            font-weight: 700;
            color: var(--slate-300);
            letter-spacing: -0.05em;
        }

        .profile-badge {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            background-color: var(--secondary-blue);
            color: var(--white);
            padding: 0.5rem 1rem;
            border-radius: 0.375rem;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .profile-info {
            padding: 2rem;
        }

        .profile-name {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-navy);
            margin-bottom: 0.25rem;
        }

        .profile-role {
            color: var(--accent-cyan);
            font-weight: 600;
            font-size: 0.875rem;
            margin-bottom: 1.5rem;
        }

        .profile-bio {
            color: var(--slate-600);
            line-height: 1.7;
            font-size: 0.9375rem;
        }

        .credentials-list {
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid var(--slate-100);
            list-style: none;
        }

        .credential-item {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            margin-bottom: 1rem;
            font-size: 0.875rem;
            color: var(--slate-600);
        }

        .credential-icon {
            width: 20px;
            height: 20px;
            background-color: rgba(16, 185, 129, 0.1);
            color: var(--success);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
            flex-shrink: 0;
            margin-top: 0.125rem;
        }

        .leadership-content {
            padding: 2rem 0;
        }

        .heritage-title {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary-navy);
            margin-bottom: 1.5rem;
            line-height: 1.3;
        }

        .heritage-text {
            color: var(--slate-600);
            line-height: 1.8;
            margin-bottom: 1.5rem;
            font-size: 1.0625rem;
        }

        .singapore-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1rem 1.5rem;
            background-color: var(--white);
            border: 2px solid var(--secondary-blue);
            border-radius: 0.5rem;
            margin-top: 2rem;
            box-shadow: var(--shadow-md);
        }

        .badge-icon {
            width: 40px;
            height: 40px;
            background-color: var(--secondary-blue);
            color: var(--white);
            border-radius: 0.375rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.875rem;
        }

        .badge-content h4 {
            font-size: 0.875rem;
            font-weight: 700;
            color: var(--primary-navy);
            margin-bottom: 0.125rem;
        }

        .badge-content p {
            font-size: 0.75rem;
            color: var(--slate-600);
        }

        /* Competencies Section */
        .competencies {
            background-color: var(--white);
        }

        .competencies-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .competency-card {
            background-color: var(--white);
            border: 1px solid var(--slate-200);
            border-radius: 0.75rem;
            padding: 2.5rem;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .competency-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(to bottom, var(--secondary-blue), var(--accent-cyan));
            transform: scaleY(0);
            transition: transform 0.3s ease;
        }

        .competency-card:hover {
            box-shadow: var(--shadow-xl);
            transform: translateY(-4px);
            border-color: var(--slate-300);
        }

        .competency-card:hover::before {
            transform: scaleY(1);
        }

        .competency-icon {
            width: 3.5rem;
            height: 3.5rem;
            background: linear-gradient(135deg, rgba(30, 58, 138, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
            border-radius: 0.75rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            border: 1px solid rgba(30, 58, 138, 0.1);
        }

        .competency-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--primary-navy);
            margin-bottom: 0.75rem;
        }

        .competency-desc {
            color: var(--slate-600);
            line-height: 1.7;
            font-size: 0.9375rem;
        }

        .competency-specs {
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid var(--slate-100);
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
        }

        .spec-tag {
            padding: 0.375rem 0.875rem;
            background-color: var(--slate-50);
            border: 1px solid var(--slate-200);
            border-radius: 2rem;
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--slate-600);
        }

        /* Facility Section */
        .facility {
            background-color: var(--slate-50);
            position: relative;
        }

        .facility-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 4rem;
            align-items: start;
        }

        .floor-plan-container {
            background-color: var(--white);
            border-radius: 1rem;
            padding: 2rem;
            box-shadow: var(--shadow-lg);
            border: 1px solid var(--slate-200);
        }

        .floor-plan-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 1.5rem;
        }

        .floor-plan-title {
            font-size: 1rem;
            font-weight: 700;
            color: var(--primary-navy);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .floor-plan-legend {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .legend-item {
            display: flex;
            align-items: center;
            gap: 0.375rem;
            font-size: 0.75rem;
            color: var(--slate-600);
        }

        .legend-color {
            width: 12px;
            height: 12px;
            border-radius: 2px;
        }

        .floor-plan {
            position: relative;
            width: 100%;
            aspect-ratio: 4/3;
            background-color: var(--slate-100);
            border-radius: 0.5rem;
            overflow: hidden;
            border: 2px solid var(--slate-300);
        }

        .zone {
            position: absolute;
            border: 2px solid rgba(255, 255, 255, 0.5);
            border-radius: 0.25rem;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
            font-weight: 700;
            color: rgba(255, 255, 255, 0.9);
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
        }

        .zone:hover {
            transform: scale(1.02);
            z-index: 10;
            box-shadow: var(--shadow-xl);
            filter: brightness(1.1);
        }

        .zone-production {
            background-color: rgba(30, 58, 138, 0.85);
            top: 10%;
            left: 5%;
            width: 60%;
            height: 35%;
        }

        .zone-qc {
            background-color: rgba(16, 185, 129, 0.85);
            top: 10%;
            right: 5%;
            width: 28%;
            height: 35%;
        }

        .zone-assembly {
            background-color: rgba(6, 182, 212, 0.85);
            bottom: 10%;
            left: 5%;
            width: 45%;
            height: 40%;
        }

        .zone-ncr {
            background-color: rgba(245, 158, 11, 0.85);
            bottom: 10%;
            right: 5%;
            width: 20%;
            height: 40%;
        }

        .zone-storage {
            background-color: rgba(100, 116, 139, 0.85);
            bottom: 10%;
            right: 28%;
            width: 18%;
            height: 40%;
        }

        .zone-safety {
            position: absolute;
            width: 24px;
            height: 24px;
            background-color: var(--danger);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 0.75rem;
            box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.3);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {

            0%,
            100% {
                box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.3);
            }

            50% {
                box-shadow: 0 0 0 8px rgba(239, 68, 68, 0.1);
            }
        }

        .facility-features {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .feature-card {
            background-color: var(--white);
            padding: 1.5rem;
            border-radius: 0.75rem;
            border: 1px solid var(--slate-200);
            display: flex;
            gap: 1rem;
            transition: var(--transition);
        }

        .feature-card:hover {
            box-shadow: var(--shadow-md);
            border-color: var(--slate-300);
        }

        .feature-icon {
            width: 3rem;
            height: 3rem;
            background-color: var(--slate-50);
            border-radius: 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            flex-shrink: 0;
        }

        .feature-content h3 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--primary-navy);
            margin-bottom: 0.375rem;
        }

        .feature-content p {
            font-size: 0.875rem;
            color: var(--slate-600);
            line-height: 1.6;
        }

        .compliance-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            margin-top: 0.75rem;
            padding: 0.375rem 0.75rem;
            background-color: rgba(16, 185, 129, 0.1);
            color: #047857;
            border-radius: 2rem;
            font-size: 0.75rem;
            font-weight: 600;
        }

        /* IP Protection Section */
        .ip-protection {
            background-color: var(--primary-navy);
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .ip-protection::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(circle at 20% 50%, rgba(6, 182, 212, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(30, 58, 138, 0.3) 0%, transparent 50%);
        }

        .ip-protection .section-title,
        .ip-protection .section-desc {
            color: var(--white);
        }

        .ip-protection .section-label {
            background-color: rgba(255, 255, 255, 0.1);
            color: var(--accent-cyan);
            border: 1px solid rgba(6, 182, 212, 0.3);
        }

        .ip-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            position: relative;
        }

        .ip-card {
            background-color: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 0.75rem;
            padding: 2rem;
            backdrop-filter: blur(10px);
            transition: var(--transition);
        }

        .ip-card:hover {
            background-color: rgba(255, 255, 255, 0.08);
            transform: translateY(-2px);
            border-color: rgba(6, 182, 212, 0.3);
        }

        .ip-icon {
            width: 3rem;
            height: 3rem;
            background-color: rgba(6, 182, 212, 0.1);
            border: 1px solid rgba(6, 182, 212, 0.3);
            border-radius: 0.75rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            margin-bottom: 1.25rem;
        }

        .ip-title {
            font-size: 1.125rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            color: var(--white);
        }

        .ip-desc {
            color: var(--slate-600);
            line-height: 1.7;
            font-size: 0.9375rem;
        }

        /* Contact Section */
        .contact {
            background-color: var(--white);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .contact-card {
            display: flex;
            gap: 1rem;
            padding: 1.5rem;
            background-color: var(--slate-50);
            border-radius: 0.75rem;
            border: 1px solid var(--slate-200);
            transition: var(--transition);
        }

        .contact-card:hover {
            background-color: var(--white);
            box-shadow: var(--shadow-md);
            border-color: var(--slate-300);
        }

        .contact-icon {
            width: 3rem;
            height: 3rem;
            background-color: var(--secondary-blue);
            color: var(--white);
            border-radius: 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .contact-icon svg {
            width: 1.25rem;
            height: 1.25rem;
        }

        .contact-details h3 {
            font-size: 0.875rem;
            font-weight: 700;
            color: var(--slate-600);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 0.375rem;
        }

        .contact-details p,
        .contact-details a {
            color: var(--primary-navy);
            font-weight: 600;
            text-decoration: none;
            transition: color 0.2s;
        }

        .contact-details a:hover {
            color: var(--secondary-blue);
        }

        .map-container {
            background-color: var(--slate-100);
            border-radius: 1rem;
            overflow: hidden;
            height: 100%;
            min-height: 400px;
            border: 1px solid var(--slate-200);
        }

        .map-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: var(--slate-600);
            gap: 1rem;
        }

        /* Footer */
        .footer {
            background-color: var(--primary-navy);
            color: var(--slate-400);
            padding: 4rem 0 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 1.5rem;
        }

        .footer-logo-icon {
            width: 2.5rem;
            height: 2.5rem;
            background: linear-gradient(135deg, var(--secondary-blue) 0%, var(--accent-cyan) 100%);
            border-radius: 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-weight: 700;
            font-size: 0.875rem;
        }

        .footer-logo-text {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--white);
        }

        .footer-desc {
            line-height: 1.7;
            max-width: 300px;
        }

        .footer-links h4 {
            color: var(--white);
            font-size: 0.875rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 1.25rem;
        }

        .footer-links ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .footer-links a {
            color: var(--slate-400);
            text-decoration: none;
            font-size: 0.9375rem;
            transition: color 0.2s;
        }

        .footer-links a:hover {
            color: var(--accent-cyan);
        }

        .footer-bottom {
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            flex-direction: column;
            gap: 1rem;
            align-items: center;
            text-align: center;
        }

        .footer-legal {
            font-size: 0.875rem;
        }

        .footer-social {
            display: flex;
            gap: 1rem;
        }

        .social-link {
            width: 2.5rem;
            height: 2.5rem;
            background-color: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--slate-400);
            transition: var(--transition);
        }

        .social-link:hover {
            background-color: rgba(6, 182, 212, 0.1);
            border-color: rgba(6, 182, 212, 0.3);
            color: var(--accent-cyan);
            transform: translateY(-2px);
        }

        /* Tooltip */
        .zone-tooltip {
            position: fixed;
            background-color: var(--primary-navy);
            color: var(--white);
            padding: 0.75rem 1rem;
            border-radius: 0.5rem;
            font-size: 0.875rem;
            font-weight: 500;
            pointer-events: none;
            opacity: 0;
            transition: opacity 0.2s;
            z-index: 1000;
            box-shadow: var(--shadow-xl);
            border: 1px solid rgba(255, 255, 255, 0.1);
            max-width: 250px;
        }

        .zone-tooltip.visible {
            opacity: 1;
        }

        .data-card {
            background: var(--white);
            border: 1px solid var(--slate-200);
            border-radius: 1rem;
            padding: 2rem;
            box-shadow: var(--shadow-sm);
        }

        .data-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .data-status {
            font-weight: 600;
            color: var(--slate-600);
        }

        .data-table-wrap {
            border-radius: 0.75rem;
            border: 1px solid var(--slate-200);
            overflow-x: auto;
            background: var(--slate-50);
        }

        .data-table {
            width: 100%;
            border-collapse: collapse;
            min-width: 520px;
        }

        .data-table thead {
            background: var(--slate-100);
        }

        .data-table th,
        .data-table td {
            text-align: left;
            padding: 0.875rem 1rem;
            border-bottom: 1px solid var(--slate-200);
            font-size: 0.875rem;
        }

        .data-table th {
            text-transform: uppercase;
            letter-spacing: 0.08em;
            font-size: 0.75rem;
            color: var(--slate-600);
        }

        .data-note {
            margin-top: 1rem;
            color: var(--slate-600);
            font-size: 0.8125rem;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in {
            animation: fadeInUp 0.6s ease forwards;
        }

        /* Responsive */
        @media (min-width: 768px) {
            .nav {
                display: block;
            }

            .mobile-menu-btn {
                display: none;
            }

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

            .competencies-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .ip-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-grid {
                grid-template-columns: 2fr repeat(3, 1fr);
            }

            .footer-bottom {
                flex-direction: row;
                justify-content: space-between;
                text-align: left;
            }
        }

        @media (min-width: 1024px) {
            .hero-content {
                padding-top: 0;
            }

            .hero-visual {
                display: flex;
            }

            .leadership-grid {
                grid-template-columns: 5fr 7fr;
            }

            .facility-grid {
                grid-template-columns: 3fr 2fr;
            }

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

            .competencies-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .ip-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        @media (max-width: 767px) {
            .hero {
                min-height: auto;
                padding: 8rem 0 4rem;
            }

            .hero-visual {
                display: none;
            }

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

            .hero-stats {
                flex-direction: column;
                gap: 1.5rem;
            }

            .section-padding {
                padding: 4rem 0;
            }

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

            .competency-card,
            .ip-card {
                padding: 1.5rem;
            }

            .floor-plan {
                aspect-ratio: 3/4;
            }

            .zone {
                font-size: 0.625rem;
            }
        }