@import url('./theme.css');

/* 人才招募頁樣式 */
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-dark: #0B1120;
            --primary-blue: #1A2332;
            --accent-blue: #2D4A6E;
            --accent-cyan: #00D4FF;
            --accent-gold: #FFB800;
            --silver: #A8B2C1;
            --light-gray: #F5F7FA;
            --dark-gray: #1E2936;
            --white: #FFFFFF;
            --text-dark: #E8EDF4;
            --text-gray: #9CA8B8;
            --bg-dark: #0F1825;
            --bg-section: #141D2B;
        }

        body {
            font-family: 'Noto Sans TC', 'Poppins', sans-serif;
            color: var(--text-dark);
            background: var(--bg-dark);
            overflow-x: hidden;
        }

        .gradient-bg {
            background: linear-gradient(135deg, #0B1120 0%, #1A2845 50%, #2D4A6E 100%);
            position: relative;
        }

        .gradient-bg::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 20% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
                        radial-gradient(circle at 80% 80%, rgba(255, 184, 0, 0.08) 0%, transparent 50%);
            pointer-events: none;
        }

        .tech-pattern {
            background-image: 
                linear-gradient(rgba(0, 212, 255, 0.05) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0, 212, 255, 0.05) 1px, transparent 1px);
            background-size: 50px 50px;
            position: relative;
        }

        .tech-pattern::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 50% 50%, rgba(0, 212, 255, 0.03) 0%, transparent 70%);
            pointer-events: none;
        }
        .loader-wrapper {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #0B1120 0%, #1A2845 100%);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 0.5s ease, visibility 0.5s ease;
        }

        .loader-wrapper.hidden {
            opacity: 0;
            visibility: hidden;
        }

        .loader {
            width: 80px;
            height: 80px;
            border: 4px solid rgba(0, 212, 255, 0.2);
            border-top-color: var(--accent-cyan);
            border-radius: 50%;
            animation: spin 1s linear infinite;
            box-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: transparent;
            backdrop-filter: none;
            border-bottom: 1px solid transparent;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        nav.scrolled {
            background: rgba(6, 12, 24, 0.42);
            backdrop-filter: blur(8px);
            box-shadow: 0 10px 32px rgba(0, 0, 0, 0.18);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

        .nav-link {
            color: rgba(255, 255, 255, 0.96);
            text-decoration: none;
            padding: 0.5rem 1rem;
            transition: all 0.3s ease;
            position: relative;
            font-weight: 800;
            text-shadow: 0 2px 12px rgba(0, 0, 0, 0.72), 0 0 18px rgba(0, 0, 0, 0.36);
        }

        .nav-link:hover {
            color: #ffffff;
            text-shadow: 0 2px 12px rgba(0, 0, 0, 0.82), 0 0 18px rgba(0, 212, 255, 0.62);
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--accent-cyan), var(--accent-gold));
            transition: all 0.3s ease;
            transform: translateX(-50%);
            box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
        }

        .nav-link:hover::after {
            width: 80%;
        }
        .desktop-menu {
            display: flex !important;
            align-items: center;
            gap: 0.15rem;
            flex-wrap: nowrap;
            min-width: 0;
        }

        .desktop-menu .nav-link {
            white-space: nowrap;
            padding: 0.48rem 0.68rem;
            font-size: 0.92rem;
        }

        .mobile-menu {
            display: none;
            position: fixed;
            top: 80px;
            left: 0;
            width: 100%;
            max-height: calc(100svh - 80px);
            overflow-y: auto;
            background: rgba(11, 17, 32, 0.98);
            backdrop-filter: blur(20px);
            padding: 0.75rem 1rem 1rem;
            transform: translateY(-12px);
            opacity: 0;
            visibility: hidden;
            transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
            border-bottom: 1px solid rgba(0, 212, 255, 0.2);
            box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
        }

        .mobile-menu.active {
            transform: translateY(0);
            opacity: 1;
            visibility: visible;
        }

        .mobile-menu .nav-link {
            display: block;
            padding: 0.85rem 1rem;
            border-bottom: 1px solid rgba(0, 212, 255, 0.08);
            white-space: nowrap;
        }

        .mobile-menu .nav-link:last-child {
            border-bottom: none;
        }

        .hamburger {
            display: none;
            width: 44px;
            height: 44px;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            cursor: pointer;
            border: 1px solid rgba(255, 255, 255, 0.36);
            border-radius: 10px;
            background: rgba(0, 0, 0, 0.12);
            box-shadow: 0 2px 14px rgba(0, 0, 0, 0.25);
            flex-shrink: 0;
            padding: 0;
            appearance: none;
        }


        .hamburger.active span:nth-child(1) {
            transform: translateY(9px) rotate(45deg);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: translateY(-9px) rotate(-45deg);
        }
        .hamburger span {
            width: 24px;
            height: 3px;
            background: var(--accent-cyan);
            margin: 3px 0;
            transition: 0.3s;
            box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
        }
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 30% 50%, rgba(0, 212, 255, 0.15) 0%, transparent 50%),
                        radial-gradient(circle at 70% 50%, rgba(255, 184, 0, 0.1) 0%, transparent 50%);
            animation: pulse 8s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 0.5; }
            50% { opacity: 0.8; }
        }

        .glow-text {
            text-shadow: 0 4px 18px rgba(0, 0, 0, 0.95), 0 0 30px rgba(0, 212, 255, 0.55), 0 0 70px rgba(0, 212, 255, 0.28);
        }
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        .service-card {
            background: linear-gradient(145deg, var(--bg-section) 0%, var(--dark-gray) 100%);
            border: 1px solid rgba(0, 212, 255, 0.15);
            border-radius: 16px;
            padding: 2rem;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--accent-cyan), var(--accent-gold));
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .service-card:hover {
            transform: translateY(-8px);
            border-color: var(--accent-cyan);
            box-shadow: 0 12px 40px rgba(0, 212, 255, 0.3), 0 0 60px rgba(0, 212, 255, 0.1);
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }
        .advantage-item {
            background: linear-gradient(135deg, var(--bg-section) 0%, var(--dark-gray) 100%);
            border: 1px solid rgba(0, 212, 255, 0.2);
            border-radius: 12px;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
        }

        .advantage-item:hover {
            background: linear-gradient(135deg, var(--dark-gray) 0%, var(--accent-blue) 100%);
            border-color: var(--accent-cyan);
            transform: scale(1.05);
            box-shadow: 0 8px 30px rgba(0, 212, 255, 0.2);
        }

        .advantage-number {
            font-size: 3rem;
            font-weight: 700;
            background: linear-gradient(135deg, var(--accent-cyan), var(--accent-gold));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.3));
        }
        .process-step {
            position: relative;
            padding-left: 3rem;
        }

        .process-step::before {
            content: '';
            position: absolute;
            left: 0.75rem;
            top: 3rem;
            width: 2px;
            height: calc(100% - 3rem);
            background: linear-gradient(180deg, var(--accent-cyan), transparent);
        }

        .process-step:last-child::before {
            display: none;
        }

        .step-number {
            position: absolute;
            left: 0;
            top: 0;
            width: 2.5rem;
            height: 2.5rem;
            background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
            color: var(--primary-dark);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            box-shadow: 0 4px 20px rgba(0, 212, 255, 0.5), 0 0 30px rgba(0, 212, 255, 0.3);
        }
        .cta-button {
            background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
            color: var(--primary-dark);
            padding: 1rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            display: inline-block;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(0, 212, 255, 0.4), 0 0 40px rgba(0, 212, 255, 0.2);
            position: relative;
            overflow: hidden;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s ease;
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 30px rgba(0, 212, 255, 0.6), 0 0 60px rgba(0, 212, 255, 0.3);
        }
        .form-input {
            width: 100%;
            padding: 1rem;
            border: 1px solid rgba(0, 212, 255, 0.2);
            border-radius: 8px;
            background: var(--bg-section);
            color: var(--text-dark);
            transition: all 0.3s ease;
            font-family: 'Noto Sans TC', sans-serif;
        }

        .form-input:focus {
            outline: none;
            border-color: var(--accent-cyan);
            box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.2), 0 0 20px rgba(0, 212, 255, 0.1);
        }
        .map-container {
            width: 100%;
            height: 400px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }
        footer {
            background: linear-gradient(180deg, var(--bg-dark) 0%, var(--primary-dark) 100%);
            color: var(--text-gray);
            border-top: 1px solid rgba(0, 212, 255, 0.2);
        }

        .footer-link {
            color: var(--text-gray);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-link:hover {
            color: var(--accent-cyan);
            text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
        }
        @media (max-width: 768px) {
            footer {
                text-align: center;
            }

            footer .max-w-7xl > .grid {
                grid-template-columns: minmax(0, 1fr);
                gap: 2.6rem;
                justify-items: center;
                margin-bottom: 2rem;
            }

            footer .max-w-7xl > .grid > div {
                width: 100%;
                max-width: 380px;
                text-align: center;
            }

            footer .max-w-7xl > .grid > div:first-child {
                grid-column: auto;
                max-width: 440px;
                padding-bottom: 2.1rem;
                border-bottom: 1px solid rgba(0, 212, 255, 0.16);
            }

            footer .max-w-7xl > .grid h3 {
                font-size: clamp(2rem, 10vw, 3rem);
                letter-spacing: 0.04em;
                line-height: 1.15;
            }

            footer .max-w-7xl > .grid h4 {
                position: relative;
                display: inline-block;
                font-size: 1.35rem;
                margin-bottom: 1.45rem;
                padding-bottom: 0.85rem;
            }

            footer .max-w-7xl > .grid h4::after {
                content: '';
                position: absolute;
                left: 50%;
                bottom: 0;
                width: min(220px, 74vw);
                height: 1px;
                transform: translateX(-50%);
                background: linear-gradient(90deg, rgba(0, 212, 255, 0), rgba(0, 212, 255, 0.75), rgba(0, 212, 255, 0));
                box-shadow: 0 0 14px rgba(0, 212, 255, 0.45);
            }

            footer .max-w-7xl > .grid ul {
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 0.55rem;
                font-size: 1.05rem;
                line-height: 1.7;
            }

            footer .max-w-7xl > .grid li {
                width: 100%;
                text-align: center;
                overflow-wrap: anywhere;
            }

            footer .footer-link {
                display: inline-block;
            }
        }

        @media (max-width: 380px) {
            footer .max-w-7xl > .grid {
                gap: 2.25rem;
            }

            footer .max-w-7xl > .grid h3 {
                font-size: 2rem;
            }

            footer .max-w-7xl > .grid h4 {
                font-size: 1.18rem;
            }

            footer .max-w-7xl > .grid ul {
                font-size: 0.96rem;
            }
        }
        .global-map-cover {
            position: relative;
            min-height: 660px;
            overflow: hidden;
            display: flex;
            align-items: center;
            background-image:
                linear-gradient(90deg, rgba(11, 17, 32, 0.88) 0%, rgba(11, 17, 32, 0.54) 42%, rgba(11, 17, 32, 0.18) 100%),
                url('../global-service-map.png');
            background-size: cover;
            background-position: center center;
            background-repeat: no-repeat;
        }

        .global-map-cover::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                linear-gradient(180deg, rgba(11, 17, 32, 0.42) 0%, rgba(11, 17, 32, 0.12) 45%, rgba(11, 17, 32, 0.54) 100%);
            pointer-events: none;
        }

        .global-map-cover > div {
            position: relative;
            z-index: 1;
        }

        .global-location-card {
            background: rgba(7, 18, 32, 0.54);
            border: 1px solid rgba(0, 212, 255, 0.34);
            box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.06);
        }
        .about-cover {
            position: relative;
            min-height: 560px;
            display: flex;
            align-items: center;
            overflow: hidden;
            background-image:
                linear-gradient(90deg, rgba(11, 17, 32, 0.96) 0%, rgba(11, 17, 32, 0.82) 42%, rgba(11, 17, 32, 0.44) 72%, rgba(11, 17, 32, 0.3) 100%),
                url('../company-entrance.webp');
            background-size: cover;
            background-position: center center;
            background-repeat: no-repeat;
        }

        .about-cover::after {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(0, 212, 255, 0.04) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0, 212, 255, 0.04) 1px, transparent 1px);
            background-size: 44px 44px;
            opacity: 0.45;
            pointer-events: none;
        }

        .about-cover__content {
            position: relative;
            z-index: 1;
            max-width: 680px;
        }

        .about-cover__label {
            display: inline-flex;
            align-items: center;
            padding: 0.42rem 0.8rem;
            margin-bottom: 1.25rem;
            border: 1px solid rgba(0, 212, 255, 0.26);
            border-radius: 999px;
            background: rgba(0, 212, 255, 0.08);
            color: var(--accent-cyan);
            font-weight: 700;
            font-size: 0.9rem;
        }
        .brand-logo-link {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            color: var(--white);
            text-decoration: none;
            font-weight: 700;
            letter-spacing: 0;
        }

        .brand-logo-link img {
            width: auto;
            height: clamp(42px, 4.2vw, 56px);
            max-width: min(230px, 46vw);
            object-fit: contain;
            filter: drop-shadow(0 2px 14px rgba(0, 0, 0, 0.68));
        }

        .brand-logo-link span {
            display: none;
        }
        .hero-cover {
            background-image:
                linear-gradient(90deg, rgba(11, 17, 32, 0.92) 0%, rgba(11, 17, 32, 0.68) 45%, rgba(11, 17, 32, 0.24) 100%),
                url('../hero-cover-equipment-wide.png');
            background-size: cover;
            background-position: center center;
            background-repeat: no-repeat;
        }

        .hero-cover::after {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(0, 212, 255, 0.045) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0, 212, 255, 0.045) 1px, transparent 1px);
            background-size: 50px 50px;
            pointer-events: none;
        }

        .hero-bg-video {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center center;
            z-index: 0;
            filter: brightness(0.48) saturate(0.9) contrast(1.08);
        }

        .hero-video-overlay {
            position: absolute;
            inset: 0;
            z-index: 1;
            background:
                linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
                linear-gradient(90deg, rgba(11, 17, 32, 0.96) 0%, rgba(11, 17, 32, 0.82) 46%, rgba(11, 17, 32, 0.42) 100%);
            pointer-events: none;
        }

        .hero::before,
        .hero-cover::after {
            z-index: 1;
        }

        .hero-cover > div {
            position: relative;
            z-index: 2;
            padding-top: clamp(1.25rem, 3vw, 2.25rem);
            padding-bottom: clamp(1.25rem, 3vw, 2.25rem);
        }

        .hero-cover > div::before {
            content: '';
            position: absolute;
            inset: -1.25rem 0;
            z-index: -1;
            border-radius: 28px;
            background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.58) 0%, rgba(0, 0, 0, 0.34) 46%, rgba(0, 0, 0, 0) 74%);
            pointer-events: none;
        }
        .service-trigger {
            width: 100%;
            min-height: 100%;
            border: 1px solid rgba(0, 212, 255, 0.15);
            color: inherit;
            text-align: left;
            cursor: pointer;
            font: inherit;
        }

        .service-trigger:focus-visible {
            outline: 3px solid rgba(0, 212, 255, 0.45);
            outline-offset: 4px;
        }

        .service-index {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 3rem;
            height: 3rem;
            margin-bottom: 1.25rem;
            border-radius: 999px;
            border: 1px solid rgba(0, 212, 255, 0.28);
            background: rgba(0, 212, 255, 0.08);
            color: var(--accent-cyan);
            font-weight: 800;
            font-size: 0.95rem;
            letter-spacing: 0.04em;
        }


        .detail-link {
            display: inline-flex;
            align-items: center;
            margin-top: 1.25rem;
            color: var(--accent-gold);
            font-weight: 700;
            font-size: 0.95rem;
        }

        .service-modal {
            position: fixed;
            inset: 0;
            z-index: 2000;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 1.5rem;
        }

        .service-modal.active {
            display: flex;
        }

        .service-modal__backdrop {
            position: absolute;
            inset: 0;
            background: rgba(4, 8, 16, 0.78);
            backdrop-filter: blur(10px);
        }

        .service-modal__dialog {
            position: relative;
            width: min(760px, 100%);
            max-height: min(760px, calc(100vh - 3rem));
            overflow: auto;
            padding: clamp(1.5rem, 4vw, 2.5rem);
            border: 1px solid rgba(0, 212, 255, 0.3);
            border-radius: 20px;
            background: linear-gradient(145deg, rgba(20, 29, 43, 0.98), rgba(30, 41, 54, 0.98));
            box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45), 0 0 70px rgba(0, 212, 255, 0.16);
        }

        .service-modal__close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            width: 2.5rem;
            height: 2.5rem;
            border: 1px solid rgba(0, 212, 255, 0.24);
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.04);
            color: var(--text-dark);
            font-size: 1.4rem;
            cursor: pointer;
        }

        .service-modal__eyebrow {
            color: var(--accent-cyan);
            font-weight: 700;
            letter-spacing: 0;
            margin-bottom: 0.5rem;
        }

        .service-modal__dialog h3 {
            padding-right: 2.5rem;
            margin-bottom: 1rem;
            color: var(--white);
            font-size: clamp(1.75rem, 4vw, 2.4rem);
            line-height: 1.25;
        }

        .service-modal__dialog p {
            color: var(--text-gray);
            margin-bottom: 1.25rem;
        }

        .service-modal__list {
            display: grid;
            gap: 0.75rem;
            margin: 1.25rem 0 0;
            padding: 0;
            list-style: none;
        }

        .service-modal__list li {
            position: relative;
            padding-left: 1.4rem;
            color: var(--text-dark);
        }

        .service-modal__list li::before {
            content: '';
            position: absolute;
            top: 0.75rem;
            left: 0;
            width: 0.5rem;
            height: 0.5rem;
            border-radius: 999px;
            background: var(--accent-gold);
            box-shadow: 0 0 12px rgba(255, 184, 0, 0.45);
        }

        .service-modal__tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem;
            margin-top: 1.5rem;
        }

        .service-modal__tags span {
            padding: 0.45rem 0.75rem;
            border: 1px solid rgba(0, 212, 255, 0.24);
            border-radius: 999px;
            color: var(--accent-cyan);
            background: rgba(0, 212, 255, 0.07);
            font-size: 0.9rem;
            font-weight: 700;
        }
        .insight-card,
        .project-card {
            background: linear-gradient(145deg, var(--bg-section) 0%, var(--dark-gray) 100%);
            border: 1px solid rgba(0, 212, 255, 0.16);
            border-radius: 16px;
            padding: 1.6rem;
            transition: all 0.35s ease;
            position: relative;
            overflow: hidden;
        }

        .insight-card {
            width: 100%;
            min-height: 100%;
            color: inherit;
            text-align: left;
            cursor: pointer;
            font: inherit;
        }

        .insight-card::before,
        .project-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--accent-cyan), var(--accent-gold));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.35s ease;
        }

        .insight-card:hover,
        .project-card:hover {
            transform: translateY(-6px);
            border-color: rgba(0, 212, 255, 0.42);
            box-shadow: 0 14px 42px rgba(0, 212, 255, 0.16);
        }

        .insight-card:hover::before,
        .project-card:hover::before {
            transform: scaleX(1);
        }

        .insight-card:focus-visible {
            outline: 3px solid rgba(0, 212, 255, 0.45);
            outline-offset: 4px;
        }

        .update-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.35rem 0.7rem;
            border: 1px solid rgba(0, 212, 255, 0.24);
            border-radius: 999px;
            color: var(--accent-cyan);
            background: rgba(0, 212, 255, 0.08);
            font-size: 0.82rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .article-meta {
            color: var(--accent-gold);
            font-size: 0.9rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
        }

        .project-list {
            display: grid;
            gap: 1rem;
        }

        .project-card {
            padding: 1.35rem;
        }

        .project-card time {
            display: block;
            color: var(--accent-cyan);
            font-weight: 700;
            font-size: 0.9rem;
            margin-bottom: 0.45rem;
        }

        .article-modal__body {
            display: grid;
            gap: 1rem;
            color: var(--text-gray);
            line-height: 1.8;
        }

        .article-modal__body h4 {
            color: var(--text-dark);
            font-size: 1.1rem;
            font-weight: 700;
            margin-top: 0.5rem;
        }

        .article-modal__body ul {
            list-style: none;
            display: grid;
            gap: 0.65rem;
        }

        .article-modal__body li {
            position: relative;
            padding-left: 1.2rem;
        }

        .article-modal__body li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0.72rem;
            width: 0.45rem;
            height: 0.45rem;
            border-radius: 999px;
            background: var(--accent-cyan);
            box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
        }


        .article-report-gallery {
            margin-top: 1.75rem;
            display: grid;
            gap: 1rem;
        }

        .article-report-gallery > h4 {
            margin-top: 0.25rem;
        }

        .article-report-figure {
            margin: 0;
            padding: 0.8rem;
            border: 1px solid rgba(0, 212, 255, 0.22);
            border-radius: 18px;
            background: rgba(8, 17, 32, 0.58);
        }

        .article-report-figure img {
            display: block;
            width: 100%;
            height: auto;
            border-radius: 12px;
            background: #081120;
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
        }

        .article-report-figure figcaption {
            margin-top: 0.7rem;
            color: var(--text-gray);
            font-size: 0.95rem;
            font-weight: 700;
        }
        @media (max-width: 1180px) {
            .desktop-menu {
                display: none !important;
            }

            .hamburger {
            display: flex !important;
            width: 44px;
            height: 44px;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            cursor: pointer;
            border: 1px solid rgba(255, 255, 255, 0.36);
            border-radius: 10px;
            background: rgba(0, 0, 0, 0.12);
            box-shadow: 0 2px 14px rgba(0, 0, 0, 0.25);
            flex-shrink: 0;
            padding: 0;
            appearance: none;
        }

            .mobile-menu {
                display: block;
                top: 72px;
                max-height: calc(100svh - 72px);
            }

            nav .h-20 {
                height: 72px;
            }

            .brand-logo-link {
                gap: 0.55rem;
            }

            .brand-logo-link img {
                height: 36px;
                max-width: 160px;
            }

            .brand-logo-link span {
                display: none;
            }
        }

        @media (max-width: 768px) {
            body {
                overflow-x: hidden;
            }

            .nav-link::after {
                display: none;
            }

            .hero {
                min-height: 560px;
                height: min(100svh, 640px);
                padding-top: 88px;
                padding-bottom: 48px;
            }

            .hero h1 {
                font-size: clamp(1.7rem, 7vw, 2.45rem);
                line-height: 1.15;
                max-width: 92vw;
                margin-left: auto;
                margin-right: auto;
            }

            .hero p {
                font-size: clamp(0.98rem, 4vw, 1.2rem);
                line-height: 1.55;
                max-width: 90vw;
            }

            .hero-bg-video {
                object-fit: cover;
                object-position: center center;
            }

            .hero-cover {
                background-size: cover;
                background-position: center center;
            }

            .hero-video-overlay {
                background:
                    linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
                    linear-gradient(180deg, rgba(11, 17, 32, 0.9) 0%, rgba(11, 17, 32, 0.74) 46%, rgba(11, 17, 32, 0.92) 100%);
            }

            .hero-cover::after {
                background-size: 34px 34px;
                opacity: 0.7;
            }

            .about-cover,
            .global-map-cover {
                min-height: auto;
                background-size: 100% auto;
                background-position: center top;
                background-color: #050914;
                padding-top: min(58vw, 340px);
                padding-bottom: 4.5rem;
                align-items: flex-start;
            }

            .about-cover {
                background-image:
                    linear-gradient(180deg, rgba(11, 17, 32, 0.18) 0%, rgba(11, 17, 32, 0.78) 44%, rgba(11, 17, 32, 0.98) 78%),
                    url('../company-entrance.webp');
            }

            .global-map-cover {
                background-image:
                    linear-gradient(180deg, rgba(11, 17, 32, 0.12) 0%, rgba(11, 17, 32, 0.72) 48%, rgba(11, 17, 32, 0.96) 82%),
                    url('../global-service-map.png');
            }

            .about-cover__content {
                max-width: 100%;
            }

            .global-map-cover .grid,
            #services .grid,
            #process .grid {
                gap: 1.25rem;
            }

            .service-card,
            .insight-card,
            .project-card,
            .advantage-item {
                margin-bottom: 0;
            }

            .service-modal {
                padding: 0.75rem;
            }

            .service-modal__dialog {
                max-height: calc(100svh - 1.5rem);
                border-radius: 16px;
            }

            .article-report-figure {
                padding: 0.45rem;
            }

            .article-report-figure figcaption {
                font-size: 0.82rem;
            }

            .advantage-number {
                font-size: 2rem;
            }
        }
        .kuse-branding {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--text-gray);
            text-decoration: none;
            font-size: 0.875rem;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .kuse-branding:hover {
            color: var(--accent-cyan);
            transform: translateY(-2px);
            text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
        }

        .kuse-branding svg {
            height: 1.2em;
            transition: transform 0.3s ease;
        }

        .kuse-branding:hover svg {
            transform: scale(1.1);
        }
        .brand-logo-link .brand-mark-img {
            width: auto;
            height: clamp(40px, 3.9vw, 50px);
            max-width: none;
            object-fit: contain;
            filter: drop-shadow(0 3px 14px rgba(0, 0, 0, 0.62));
            flex-shrink: 0;
        }

        .brand-logo-link .brand-wordmark {
            display: inline-flex;
            flex-direction: column;
            justify-content: center;
            line-height: 1;
            color: #fff;
            text-shadow: 0 3px 14px rgba(0, 0, 0, 0.76);
            white-space: nowrap;
        }

        .brand-logo-link .brand-wordmark strong {
            display: block;
            font-family: 'Poppins', 'Noto Sans TC', sans-serif;
            font-size: clamp(1.08rem, 1.45vw, 1.42rem);
            font-weight: 700;
            letter-spacing: 0.08em;
        }

        .brand-logo-link .brand-wordmark em {
            display: block;
            margin-top: 0.34rem;
            font-style: normal;
            font-size: clamp(0.72rem, 0.92vw, 0.9rem);
            font-weight: 500;
            letter-spacing: 0.44em;
        }

        @media (max-width: 768px) {
            .brand-logo-link .brand-mark-img {
                height: 38px;
            }

            .brand-logo-link .brand-wordmark {
                display: none;
            }
        }
