@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;
        }

        html {
            scroll-padding-top: 92px;
        }

        .max-w-7xl {
            max-width: 80rem;
        }

        .mx-auto {
            margin-left: auto;
            margin-right: auto;
        }

        .px-4 {
            padding-left: 1rem;
            padding-right: 1rem;
        }

        .py-20 {
            padding-top: 5rem;
            padding-bottom: 5rem;
        }

        .grid {
            display: grid;
        }

        .flex {
            display: flex;
        }

        .hidden {
            display: none;
        }

        .block {
            display: block;
        }

        .items-center {
            align-items: center;
        }

        .justify-between {
            justify-content: space-between;
        }

        .text-center {
            text-align: center;
        }

        .w-full {
            width: 100%;
        }

        .w-24 {
            width: 6rem;
        }

        .h-1 {
            height: 0.25rem;
        }

        .h-20 {
            height: 5rem;
        }

        .max-w-xl {
            max-width: 36rem;
        }

        .max-w-3xl {
            max-width: 48rem;
        }

        .flex-col {
            flex-direction: column;
        }

        .gap-4 {
            gap: 1rem;
        }

        .gap-8 {
            gap: 2rem;
        }

        .gap-12 {
            gap: 3rem;
        }

        .space-x-8 > * + * {
            margin-left: 2rem;
        }

        .space-y-6 > * + * {
            margin-top: 1.5rem;
        }

        .mb-4 {
            margin-bottom: 1rem;
        }

        .mb-6 {
            margin-bottom: 1.5rem;
        }

        .mb-8 {
            margin-bottom: 2rem;
        }

        .mb-12 {
            margin-bottom: 3rem;
        }

        .mb-16 {
            margin-bottom: 4rem;
        }

        .text-2xl {
            font-size: 1.5rem;
            line-height: 1.3;
        }

        .text-3xl {
            font-size: 1.875rem;
            line-height: 1.25;
        }

        .text-4xl {
            font-size: 2.25rem;
            line-height: 1.2;
        }

        .text-lg {
            font-size: 1.125rem;
            line-height: 1.7;
        }

        .font-bold {
            font-weight: 700;
        }

        @media (min-width: 640px) {
            .sm\:px-6 {
                padding-left: 1.5rem;
                padding-right: 1.5rem;
            }
        }

        @media (min-width: 768px) {
            .md\:flex {
                display: flex;
            }

            .md\:hidden {
                display: none;
            }

            .md\:grid-cols-2 {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .md\:flex-row {
                flex-direction: row;
            }

            .md\:items-end {
                align-items: flex-end;
            }

            .md\:justify-between {
                justify-content: space-between;
            }

            .md\:text-5xl {
                font-size: 3rem;
                line-height: 1.12;
            }
        }

        @media (min-width: 1024px) {
            .lg\:px-8 {
                padding-left: 2rem;
                padding-right: 2rem;
            }

            .lg\:grid-cols-2 {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .lg\:grid-cols-3 {
                grid-template-columns: repeat(3, minmax(0, 1fr));
            }

            .lg\:col-span-3 {
                grid-column: span 3 / span 3;
            }
        }

        .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;
        }

        nav > .max-w-7xl {
            max-width: none;
            padding-left: clamp(1rem, 2.5vw, 3rem);
            padding-right: clamp(1rem, 2.5vw, 3rem);
        }

        .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);
        }

        .hero-subtitle {
            color: #FFFFFF;
            font-weight: 800;
            letter-spacing: 0;
            text-shadow: 0 4px 16px rgba(0, 0, 0, 0.98), 0 0 26px rgba(0, 212, 255, 0.58);
        }
        .fade-in {
            opacity: 1;
            transform: none;
            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);
        }

        .partner-service-card {
            grid-column: 1 / -1;
            padding: clamp(1.15rem, 2.6vw, 2rem);
            border: 1px solid rgba(0, 212, 255, 0.2);
            border-radius: 22px;
            background:
                radial-gradient(circle at 12% 0%, rgba(0, 212, 255, 0.14), transparent 34%),
                radial-gradient(circle at 88% 12%, rgba(255, 184, 0, 0.12), transparent 32%),
                linear-gradient(145deg, rgba(10, 18, 31, 0.98), rgba(20, 29, 43, 0.96));
            box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.04);
            overflow: hidden;
            position: relative;
        }

        .partner-service-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(0, 212, 255, 0.06) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0, 212, 255, 0.05) 1px, transparent 1px);
            background-size: 38px 38px;
            mask-image: linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent);
            pointer-events: none;
            opacity: 0.52;
        }

        .partner-service-header,
        .partner-card-grid,
        .partner-brand-intro {
            position: relative;
            z-index: 1;
        }

        .partner-service-header {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 1.5rem;
            margin-bottom: 1.2rem;
        }

        .partner-service-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 0.45rem;
            margin-bottom: 0.55rem;
            color: var(--accent-cyan);
            font-size: 0.82rem;
            font-weight: 800;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .partner-service-eyebrow::before {
            content: '';
            width: 9px;
            height: 9px;
            border-radius: 50%;
            background: var(--accent-gold);
            box-shadow: 0 0 16px rgba(255, 184, 0, 0.7);
        }

        .partner-service-header h3 {
            color: var(--text-dark);
            font-size: clamp(1.55rem, 2.2vw, 2.1rem);
            line-height: 1.3;
            font-weight: 800;
            margin: 0;
        }

        .partner-service-header p {
            max-width: 540px;
            color: rgba(226, 232, 240, 0.78);
            line-height: 1.75;
            margin: 0;
        }

        .partner-card-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: clamp(1rem, 2vw, 1.35rem);
        }

        .partner-brand-card {
            display: flex;
            flex-direction: column;
            min-height: 440px;
            padding: 1rem;
            border: 1px solid rgba(0, 212, 255, 0.24);
            border-radius: 19px;
            background:
                linear-gradient(150deg, rgba(16, 27, 44, 0.98), rgba(8, 14, 25, 0.96)),
                radial-gradient(circle at 50% 0%, rgba(0, 212, 255, 0.16), transparent 48%);
            color: inherit;
            text-decoration: none;
            position: relative;
            overflow: hidden;
            box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.035), 0 18px 44px rgba(0, 0, 0, 0.24);
            transition: transform 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease;
        }

        .partner-brand-card::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: inherit;
            padding: 1px;
            background: linear-gradient(145deg, rgba(0, 212, 255, 0.72), rgba(255, 184, 0, 0.44), rgba(0, 212, 255, 0.12));
            -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0.58;
            pointer-events: none;
        }

        .partner-brand-card::after {
            content: '';
            position: absolute;
            inset: auto -20% -34% 24%;
            height: 58%;
            background: radial-gradient(circle, rgba(0, 212, 255, 0.18), transparent 62%);
            transform: rotate(-8deg);
            pointer-events: none;
        }

        .partner-brand-card:hover,
        .partner-brand-card.is-active,
        .partner-brand-card:focus-visible {
            transform: translateY(-6px);
            border-color: rgba(0, 212, 255, 0.7);
            box-shadow: 0 22px 58px rgba(0, 212, 255, 0.14), 0 0 0 1px rgba(0, 212, 255, 0.22);
            outline: none;
        }

        .partner-brand-card--pvd:hover,
        .partner-brand-card--pvd.is-active,
        .partner-brand-card--pvd:focus-visible {
            border-color: rgba(255, 184, 0, 0.72);
            box-shadow: 0 22px 58px rgba(255, 184, 0, 0.13), 0 0 0 1px rgba(255, 184, 0, 0.22);
        }

        .partner-card-tag {
            align-self: flex-start;
            padding: 0.36rem 0.72rem;
            border: 1px solid rgba(0, 212, 255, 0.4);
            border-radius: 999px;
            color: var(--accent-cyan);
            background: rgba(0, 212, 255, 0.09);
            font-size: 0.76rem;
            font-weight: 900;
            letter-spacing: 0.08em;
        }

        .partner-brand-card--pvd .partner-card-tag {
            border-color: rgba(255, 184, 0, 0.46);
            color: var(--accent-gold);
            background: rgba(255, 184, 0, 0.1);
        }

        .partner-card-name {
            margin-top: 1rem;
            color: #fff;
            font-size: clamp(1.55rem, 2.2vw, 2.2rem);
            font-weight: 900;
            line-height: 1.08;
            letter-spacing: 0;
        }

        .partner-card-name span {
            display: block;
            margin-top: 0.22rem;
            color: rgba(226, 232, 240, 0.72);
            font-family: 'Poppins', 'Noto Sans TC', sans-serif;
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 0.16em;
            text-transform: uppercase;
        }

        .partner-card-position {
            margin-top: 0.7rem;
            color: rgba(226, 232, 240, 0.78);
            line-height: 1.65;
        }

        .partner-card-visual {
            flex: 1;
            min-height: 180px;
            margin: 1.15rem 0;
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 16px;
            background:
                radial-gradient(circle at 50% 48%, rgba(0, 212, 255, 0.2), transparent 44%),
                linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            position: relative;
        }

        .partner-brand-card--pvd .partner-card-visual {
            background:
                radial-gradient(circle at 54% 48%, rgba(255, 184, 0, 0.23), transparent 42%),
                linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
        }

        .partner-card-visual::before {
            content: '';
            position: absolute;
            inset: 16px;
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 0 40px rgba(0, 212, 255, 0.18);
        }

        .partner-card-visual svg {
            position: relative;
            z-index: 1;
            width: min(74%, 260px);
            height: auto;
            stroke: currentColor;
            fill: none;
            stroke-width: 1.4;
            stroke-linecap: round;
            stroke-linejoin: round;
            color: rgba(232, 237, 244, 0.9);
            filter: drop-shadow(0 0 16px rgba(0, 212, 255, 0.25));
        }

        .partner-brand-card--pvd .partner-card-visual svg {
            filter: drop-shadow(0 0 16px rgba(255, 184, 0, 0.24));
        }

        .partner-card-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 46px;
            border-radius: 999px;
            color: #06101d;
            background: linear-gradient(135deg, #00D4FF, #7BEAFF);
            font-weight: 900;
            box-shadow: 0 10px 26px rgba(0, 212, 255, 0.24);
        }

        .partner-brand-card--pvd .partner-card-button {
            background: linear-gradient(135deg, #FFB800, #FFE08A);
            box-shadow: 0 10px 26px rgba(255, 184, 0, 0.2);
        }

        .partner-brand-intro {
            margin-top: 1.2rem;
            padding: 1.1rem 1.25rem;
            border: 1px solid rgba(0, 212, 255, 0.18);
            border-radius: 16px;
            background: rgba(5, 10, 18, 0.42);
        }

        .partner-brand-intro__label {
            color: var(--accent-cyan);
            font-size: 0.78rem;
            font-weight: 900;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .partner-brand-intro h4 {
            margin-top: 0.36rem;
            margin-bottom: 0.45rem;
            color: #fff;
            font-size: 1.28rem;
            font-weight: 800;
        }

        .partner-brand-intro p {
            color: rgba(226, 232, 240, 0.82);
            line-height: 1.78;
            margin: 0;
        }
        .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);
        }


        .process-layout {
            width: min(1240px, 100%);
            margin: 0 auto;
            display: grid;
            grid-template-columns: minmax(0, 780px) minmax(240px, 320px);
            gap: clamp(3.25rem, 8vw, 7rem);
            align-items: start;
            justify-content: space-between;
        }

        .process-list {
            min-width: 0;
            max-width: 780px;
        }

        .process-articles-card {
            position: sticky;
            top: 110px;
            justify-self: end;
            width: min(100%, 320px);
            border: 1px solid rgba(0, 212, 255, 0.22);
            border-radius: 18px;
            padding: 1.15rem;
            background:
                linear-gradient(145deg, rgba(13, 24, 39, 0.96), rgba(17, 28, 44, 0.92)),
                radial-gradient(circle at 8% 0%, rgba(0, 212, 255, 0.12), transparent 42%);
            box-shadow: 0 18px 52px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.04);
        }

        .process-articles-card h3 {
            color: var(--text-dark);
            font-size: 1.22rem;
            font-weight: 800;
            margin-bottom: 1.05rem;
        }

        .process-article-list {
            display: grid;
        }

        .process-article-link {
            display: block;
            padding: 0.66rem 0;
            color: var(--text-gray);
            text-decoration: none;
            font-size: 0.92rem;
            font-weight: 700;
            line-height: 1.55;
            border-bottom: 1px solid rgba(168, 178, 193, 0.14);
            transition: color 0.25s ease, padding-left 0.25s ease;
        }

        .process-article-link:hover {
            color: var(--accent-cyan);
            padding-left: 0.35rem;
        }

        .process-article-cta {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            margin-top: 1.2rem;
            min-height: 52px;
            padding: 0.86rem 1rem;
            border-radius: 999px;
            color: var(--primary-dark);
            background: linear-gradient(135deg, #00D4FF, #7BEAFF);
            text-decoration: none;
            font-weight: 800;
            box-shadow: 0 12px 32px rgba(0, 212, 255, 0.28), 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
        }

        .process-article-cta:hover {
            transform: translateY(-1px);
            box-shadow: 0 14px 34px rgba(0, 212, 255, 0.28);
        }
        .cta-button {
            background: linear-gradient(135deg, #00D4FF, #7BEAFF);
            color: var(--primary-dark);
            min-height: 54px;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 800;
            display: inline-block;
            transition: all 0.3s ease;
            box-shadow: 0 8px 28px rgba(0, 212, 255, 0.46), 0 0 42px rgba(0, 212, 255, 0.22);
            position: relative;
            overflow: hidden;
        }

        .cta-row {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            align-items: center;
        }

        .secondary-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 54px;
            padding: 1rem 2rem;
            border: 1px solid rgba(232, 237, 244, 0.22);
            border-radius: 50px;
            color: var(--text-dark);
            background: rgba(232, 237, 244, 0.06);
            text-decoration: none;
            font-weight: 800;
            transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
        }

        .secondary-button:hover,
        .secondary-button:focus-visible {
            transform: translateY(-2px);
            border-color: rgba(0, 212, 255, 0.5);
            background: rgba(0, 212, 255, 0.1);
        }

        .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.22rem;
                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.78rem;
            color: var(--white);
            text-decoration: none;
            font-weight: 700;
            letter-spacing: 0;
            min-width: 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));
            flex-shrink: 0;
        }

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

        .brand-wordmark strong {
            display: block;
            font-family: 'Poppins', 'Noto Sans TC', sans-serif;
            font-size: clamp(1.35rem, 1.8vw, 1.85rem);
            font-weight: 700;
            letter-spacing: 0;
        }

        .brand-wordmark em {
            display: block;
            margin-top: 0.42rem;
            font-style: normal;
            font-size: clamp(0.92rem, 1.1vw, 1.12rem);
            font-weight: 500;
            letter-spacing: 0;
        }
        .hero.hero-cover {
            position: relative;
            display: block;
            min-height: 0;
            background: #02060b;
            overflow: hidden;
            isolation: isolate;
        }

        .hero-bg-image {
            position: absolute;
            inset: 0;
            z-index: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: 64% center;
            pointer-events: none;
            user-select: none;
        }

        .hero-bg-fill {
            display: none;
            position: absolute;
            inset: -8%;
            z-index: 0;
            width: 116%;
            height: 116%;
            object-fit: cover;
            object-position: center center;
            pointer-events: none;
            user-select: none;
        }

        .hero.hero-cover::before,
        .hero.hero-cover::after {
            display: none;
        }

        .hero-shell {
            position: relative;
            z-index: 2;
            display: flex;
            align-items: center;
            width: 100%;
            max-width: min(1560px, calc(100% - 4rem));
            margin-left: auto;
            margin-right: auto;
            box-sizing: border-box;
            padding-left: 0;
            padding-right: 0;
            height: 100%;
            min-height: 0;
            padding-top: clamp(4.9rem, 8svh, 6.6rem);
            padding-bottom: clamp(1.15rem, 3svh, 2.2rem);
        }

        .hero-copy {
            max-width: min(720px, 54vw);
            color: var(--white);
            margin-top: clamp(2.6rem, 6vh, 5rem);
        }

        .hero-copy.fade-in.visible {
            transform: translateY(clamp(2.35rem, 5vh, 4rem));
        }

        .hero-main-title {
            margin: 0 0 clamp(1.1rem, 2vh, 1.55rem);
            color: #fffdf7;
            font-family: 'Noto Serif TC', 'Noto Serif CJK TC', 'Source Han Serif TC', 'PMingLiU', serif;
            font-size: clamp(2.35rem, 3.35vw, 4.05rem);
            line-height: 1.28;
            font-weight: 500;
            letter-spacing: 0;
            text-shadow: 0 5px 22px rgba(0, 0, 0, 0.96), 0 0 18px rgba(255, 184, 0, 0.18);
        }

        .hero-title-line {
            display: block;
            white-space: nowrap;
        }

        .hero-dot {
            display: inline !important;
            color: var(--accent-gold);
            margin: 0 0.12em;
            text-shadow: 0 0 18px rgba(255, 184, 0, 0.55);
        }

        .hero-audience-pill {
            display: inline-flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.58rem;
            max-width: 100%;
            margin-bottom: clamp(1rem, 2vh, 1.45rem);
            padding: 0.66rem 1.24rem;
            border: 1px solid rgba(255, 184, 0, 0.94);
            border-radius: 999px;
            background: rgba(0, 0, 0, 0.2);
            color: var(--accent-gold);
            font-size: clamp(0.96rem, 1.2vw, 1.13rem);
            font-weight: 700;
            letter-spacing: 0;
            box-shadow: inset 0 0 18px rgba(255, 184, 0, 0.08), 0 0 22px rgba(0, 0, 0, 0.3);
            text-shadow: 0 4px 16px rgba(0, 0, 0, 0.86);
        }

        .hero-description {
            max-width: 600px;
            margin: 0;
            color: rgba(255, 255, 255, 0.92);
            font-size: clamp(1rem, 1.28vw, 1.18rem);
            line-height: 1.88;
            font-weight: 500;
            letter-spacing: 0;
            text-shadow: 0 4px 16px rgba(0, 0, 0, 0.92);
        }

        .hero-features {
            display: grid;
            grid-template-columns: repeat(4, minmax(92px, 118px));
            gap: 0;
            justify-content: start;
            width: max-content;
            max-width: 100%;
            margin-top: clamp(1.55rem, 3.2vh, 2.45rem);
            margin-left: -0.35rem;
        }

        .hero-feature {
            min-width: 0;
            padding: 0 0.95rem;
            color: rgba(255, 255, 255, 0.92);
            text-align: center;
            border-right: 1px solid rgba(255, 255, 255, 0.46);
            text-shadow: 0 4px 16px rgba(0, 0, 0, 0.9);
        }

        .hero-feature:first-child {
            padding-left: 0;
        }

        .hero-feature:last-child {
            border-right: 0;
            padding-right: 0;
        }

        .hero-feature__icon {
            display: flex;
            justify-content: center;
            align-items: center;
            width: clamp(48px, 4.1vw, 58px);
            height: clamp(48px, 4.1vw, 58px);
            margin: 0 auto 0.68rem;
            color: rgba(255, 255, 255, 0.92);
            filter: drop-shadow(0 5px 13px rgba(0, 0, 0, 0.72));
        }

        .hero-feature__icon svg {
            width: 100%;
            height: 100%;
            stroke: currentColor;
            fill: none;
            stroke-width: 1.42;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .hero-feature__label {
            display: block;
            font-size: clamp(0.92rem, 1.05vw, 1.02rem);
            font-weight: 700;
            letter-spacing: 0;
        }

        @media (max-width: 1400px) and (min-width: 1181px) {
            .hero-bg-image {
                object-position: 67% center;
            }

            .hero-shell {
                padding-top: clamp(4.5rem, 7svh, 5.7rem);
                padding-bottom: clamp(1rem, 2.6svh, 1.7rem);
            }

            .hero-copy {
                max-width: min(600px, 50vw);
            }

            .hero-main-title {
                font-size: clamp(2.2rem, 3vw, 3.55rem);
                line-height: 1.24;
            }

            .hero-description {
                line-height: 1.76;
            }
        }

        @media (max-width: 1180px) {
            .hero-bg-image {
                object-position: 72% center;
            }

            .hero-shell {
                padding-left: clamp(1rem, 3vw, 2rem);
                padding-right: clamp(1rem, 3vw, 2rem);
                padding-top: 4.8rem;
                padding-bottom: 1.4rem;
            }

            .hero-copy {
                max-width: min(590px, 68vw);
            }

            .hero-main-title {
                font-size: clamp(2rem, 4.65vw, 3.05rem);
            }
        }

        @media (max-width: 768px) {
            .brand-logo-link {
                gap: 0.56rem;
            }

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

            .hero-bg-fill {
                display: block;
                filter: blur(18px) brightness(0.62) saturate(1.08);
                transform: scale(1.04);
                opacity: 0.88;
            }

            .hero-bg-image {
                z-index: 1;
                object-fit: contain;
                object-position: center center;
                transform: scale(0.96);
                filter: brightness(0.92) saturate(1.05);
            }

            .hero.hero-cover {
                min-height: 0;
                height: 100svh;
                max-height: 100svh;
                padding: 0;
            }

            .hero.hero-cover::before,
            .hero.hero-cover::after {
                display: none;
            }

            .hero-shell {
                align-items: center;
                padding-top: 4.35rem;
                padding-bottom: 0.75rem;
            }

            .hero-copy {
                max-width: 100%;
                margin-top: clamp(2rem, 5vh, 3.4rem);
            }

            .hero-copy.fade-in.visible {
                transform: translateY(clamp(1.4rem, 3vh, 2.2rem));
            }

            .hero-main-title {
                max-width: 96vw;
                font-size: clamp(1.45rem, 6.15vw, 2.05rem);
                line-height: 1.34;
                margin-bottom: 0.62rem;
            }

            .hero-title-line {
                white-space: nowrap;
            }

            .hero-audience-pill {
                border-radius: 16px;
                padding: 0.44rem 0.62rem;
                gap: 0.32rem;
                font-size: clamp(0.7rem, 2.95vw, 0.82rem);
                line-height: 1.45;
                margin-bottom: 0.56rem;
            }

            .hero-description {
                max-width: 92vw;
                font-size: clamp(0.76rem, 3vw, 0.9rem);
                line-height: 1.52;
            }

            .hero-features {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 0.45rem;
                max-width: 92vw;
                width: 100%;
                margin-top: 0.88rem;
                margin-left: 0;
            }

            .hero-feature,
            .hero-feature:first-child,
            .hero-feature:last-child {
                padding: 0.54rem 0.44rem;
                border: 1px solid rgba(255, 255, 255, 0.28);
                border-radius: 12px;
                background: rgba(0, 0, 0, 0.12);
            }

            .hero-feature__icon {
                width: 30px;
                height: 30px;
                margin-bottom: 0.26rem;
            }

            .hero-feature__label {
                font-size: 0.76rem;
            }
        }

        @media (max-width: 420px) {
            .hero-shell {
                padding-top: 4.1rem;
            }
        }
        .service-trigger {
            display: block;
            width: 100%;
            min-height: 100%;
            border: 1px solid rgba(0, 212, 255, 0.15);
            color: inherit;
            text-align: left;
            text-decoration: none;
            cursor: pointer;
            font: inherit;
        }

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

        .service-flip-card {
            display: block;
            width: 100%;
            min-height: 0;
            aspect-ratio: 1 / 1;
            padding: 0;
            border: 0;
            border-radius: 16px;
            background: transparent;
            box-shadow: none;
            perspective: 1100px;
            overflow: visible;
        }

        .service-flip-card::before {
            display: none;
        }

        .service-flip-card:hover {
            transform: none;
            border-color: transparent;
            box-shadow: none;
        }

        .service-flip-card__inner {
            position: relative;
            display: block;
            width: 100%;
            height: 100%;
            min-height: clamp(286px, 27vw, 368px);
            border-radius: 16px;
            transform-style: preserve-3d;
            transition: transform 0.72s cubic-bezier(0.2, 0.75, 0.2, 1);
        }

        .service-flip-card:hover .service-flip-card__inner,
        .service-flip-card:focus-visible .service-flip-card__inner {
            transform: rotateY(180deg);
        }

        .service-flip-card__face {
            position: absolute;
            inset: 0;
            display: flex;
            flex-direction: column;
            overflow: hidden;
            border: 1px solid rgba(0, 212, 255, 0.22);
            border-radius: inherit;
            backface-visibility: hidden;
            -webkit-backface-visibility: hidden;
            box-shadow: 0 16px 38px rgba(0, 0, 0, 0.26);
        }

        .service-flip-card__front {
            background: #07111d;
            align-items: center;
            justify-content: center;
        }

        .service-flip-card__front img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center center;
            transform-origin: center center;
            display: block;
            transition: filter 0.5s ease;
        }

        .service-flip-card:hover .service-flip-card__front img {
            filter: brightness(0.96) saturate(1.05);
        }

        .service-flip-card__back {
            justify-content: center;
            gap: 0.8rem;
            padding: clamp(1.25rem, 2.4vw, 2rem);
            color: var(--text-dark);
            background:
                radial-gradient(circle at 14% 0%, rgba(0, 212, 255, 0.14), transparent 36%),
                linear-gradient(145deg, var(--bg-section) 0%, var(--dark-gray) 100%);
            transform: rotateY(180deg);
            text-align: left;
        }

        .service-flip-card__back .service-index {
            margin-bottom: 0.1rem;
        }

        .service-flip-card__title {
            display: block;
            color: var(--text-dark);
            font-size: clamp(1.35rem, 1.8vw, 1.75rem);
            font-weight: 800;
            line-height: 1.25;
        }

        .service-flip-card__summary {
            display: block;
            color: var(--text-gray);
            font-size: clamp(0.95rem, 1.08vw, 1.05rem);
            line-height: 1.75;
        }

        .service-flip-card__meta {
            display: block;
            color: var(--accent-cyan);
            font-size: 0.92rem;
            font-weight: 700;
            line-height: 1.5;
        }

        .service-flip-card__back .detail-link {
            margin-top: 0.25rem;
        }

        .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: 500;
            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;
        }

        .oem-coating-showcase {
            position: relative;
            margin-top: 2rem;
            padding: clamp(1.1rem, 2vw, 1.65rem);
            overflow: hidden;
            border: 1px solid rgba(var(--theme-accent-rgb), 0.26);
            border-radius: 16px;
            background:
                radial-gradient(circle at 12% 0%, rgba(var(--theme-accent-rgb), 0.16), transparent 34%),
                radial-gradient(circle at 82% 16%, rgba(77, 255, 225, 0.08), transparent 32%),
                linear-gradient(145deg, rgba(5, 14, 26, 0.92), rgba(2, 8, 17, 0.86));
            backdrop-filter: blur(16px) saturate(1.08);
            box-shadow:
                inset 0 1px 0 rgba(255, 255, 255, 0.06),
                0 22px 55px rgba(0, 0, 0, 0.26),
                0 0 36px rgba(var(--theme-accent-rgb), 0.08);
        }

        .oem-coating-showcase::before {
            content: '';
            position: absolute;
            inset: 0;
            pointer-events: none;
            background:
                linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
                linear-gradient(rgba(255, 255, 255, 0.032) 1px, transparent 1px);
            background-size: 46px 46px;
            opacity: 0.12;
        }

        .oem-coating-showcase > * {
            position: relative;
            z-index: 1;
        }

        .oem-coating-showcase__header {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 1.5rem;
            margin-bottom: 0.85rem;
        }

        .oem-coating-showcase__title-group {
            display: flex;
            align-items: flex-start;
            gap: 0.95rem;
            max-width: 820px;
        }

        .oem-coating-showcase__icon {
            display: inline-flex;
            width: 3.1rem;
            height: 3.1rem;
            align-items: center;
            justify-content: center;
            flex: 0 0 auto;
            border: 1px solid rgba(var(--theme-accent-rgb), 0.28);
            border-radius: 14px;
            color: var(--accent-cyan);
            background: rgba(var(--theme-accent-rgb), 0.08);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 0 24px rgba(var(--theme-accent-rgb), 0.14);
        }

        .oem-coating-showcase__icon svg {
            width: 1.9rem;
            height: 1.9rem;
            fill: none;
            stroke: currentColor;
            stroke-width: 1.8;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .oem-coating-showcase__eyebrow {
            display: block;
            margin-bottom: 0.18rem;
            color: var(--accent-cyan);
            font-family: 'Poppins', 'Noto Sans TC', sans-serif;
            font-size: 0.68rem;
            font-weight: 700;
            letter-spacing: 0.14em;
        }

        .oem-coating-showcase h2,
        .oem-coating-showcase h3 {
            margin: 0;
            color: #f8fbff;
            font-size: clamp(1.35rem, 2.2vw, 2rem);
            font-weight: 800;
            line-height: 1.25;
            letter-spacing: 0.02em;
        }

        .oem-coating-showcase__lead {
            margin: 0.5rem 0 0;
            color: rgba(226, 239, 246, 0.84);
            font-size: clamp(0.92rem, 1.15vw, 1.03rem);
            line-height: 1.75;
            font-weight: 500;
        }

        .oem-coating-showcase__description {
            max-width: 1020px;
            margin: 0.2rem 0 1.1rem;
            color: rgba(203, 219, 228, 0.76);
            font-size: 0.95rem;
            line-height: 1.78;
        }

        .oem-coating-showcase__cta {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.55rem;
            min-width: 154px;
            min-height: 42px;
            padding: 0.68rem 1.12rem;
            flex: 0 0 auto;
            border: 1px solid rgba(var(--theme-accent-rgb), 0.56);
            border-radius: 999px;
            color: #e8feff;
            background: linear-gradient(135deg, rgba(var(--theme-accent-rgb), 0.34), rgba(45, 223, 255, 0.16));
            box-shadow: 0 0 18px rgba(var(--theme-accent-rgb), 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.14);
            font-size: 0.9rem;
            font-weight: 800;
            text-decoration: none;
            transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
        }

        .oem-coating-showcase__cta:hover,
        .oem-coating-showcase__cta:focus-visible {
            transform: translateY(-2px);
            border-color: rgba(77, 255, 225, 0.78);
            background: linear-gradient(135deg, rgba(var(--theme-accent-rgb), 0.46), rgba(45, 223, 255, 0.24));
            box-shadow: 0 0 26px rgba(var(--theme-accent-rgb), 0.3), 0 12px 28px rgba(0, 0, 0, 0.22);
            outline: none;
        }

        .oem-coating-finishes {
            display: grid;
            grid-template-columns: repeat(9, minmax(0, 1fr));
            gap: 0.64rem;
            margin-top: 1rem;
        }

        .oem-coating-finish {
            position: relative;
            min-width: 0;
            min-height: 100%;
            padding: 0.58rem;
            border: 1px solid rgba(var(--theme-accent-rgb), 0.16);
            border-radius: 10px;
            background: linear-gradient(180deg, rgba(10, 24, 39, 0.78), rgba(4, 11, 22, 0.72));
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
            transition: transform 0.26s ease, border-color 0.26s ease, box-shadow 0.26s ease;
        }

        .oem-coating-finish::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: inherit;
            pointer-events: none;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 42%);
            opacity: 0.52;
        }

        .oem-coating-finish:hover {
            transform: translateY(-4px);
            border-color: rgba(77, 255, 225, 0.42);
            box-shadow: 0 15px 34px rgba(0, 0, 0, 0.28), 0 0 22px rgba(var(--theme-accent-rgb), 0.12);
        }

        .oem-coating-finish--rainbow {
            border-color: rgba(77, 255, 225, 0.26);
            background:
                linear-gradient(180deg, rgba(10, 24, 39, 0.78), rgba(4, 11, 22, 0.72)) padding-box,
                linear-gradient(135deg, #2ef7ff, #8d6cff, #ffb24d, #4dffe1) border-box;
            border: 1px solid transparent;
        }

        .oem-coating-finish__image {
            position: relative;
            overflow: hidden;
            aspect-ratio: 1.18 / 1;
            margin-bottom: 0.62rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 7px;
            background:
                radial-gradient(circle at 28% 18%, rgba(255, 255, 255, 0.18), transparent 36%),
                #07111d;
        }

        .oem-coating-finish__image img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center center;
            filter: saturate(1.04) contrast(1.02);
        }

        .oem-coating-finish h3,
        .oem-coating-finish h4 {
            margin: 0;
            color: #f8fbff;
            font-size: 0.94rem;
            font-weight: 800;
            line-height: 1.28;
            letter-spacing: 0.02em;
        }

        .oem-coating-finish span {
            display: block;
            margin-top: 0.18rem;
            color: var(--accent-cyan);
            font-family: 'Poppins', 'Noto Sans TC', sans-serif;
            font-size: 0.66rem;
            line-height: 1.35;
            font-weight: 600;
        }

        .oem-coating-finish p {
            margin: 0.3rem 0 0;
            color: rgba(213, 226, 235, 0.76);
            font-size: 0.75rem;
            line-height: 1.5;
        }

        .oem-coating-showcase__note {
            display: flex;
            align-items: flex-start;
            gap: 0.6rem;
            margin: 1.05rem 0 0;
            color: rgba(203, 219, 228, 0.72);
            font-size: 0.86rem;
            line-height: 1.7;
        }

        .oem-coating-showcase__note span {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 1.05rem;
            height: 1.05rem;
            margin-top: 0.18rem;
            flex: 0 0 auto;
            border: 1px solid rgba(var(--theme-accent-rgb), 0.36);
            border-radius: 999px;
            color: var(--accent-cyan);
            font-family: 'Poppins', sans-serif;
            font-size: 0.68rem;
            font-weight: 700;
        }

        @media (max-width: 1180px) {
            .oem-coating-finishes {
                grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
            }
        }

        @media (max-width: 768px) {
            .oem-coating-showcase {
                margin-top: 1.55rem;
                padding: 1rem;
                border-radius: 15px;
            }

            .oem-coating-showcase__header {
                display: block;
                margin-bottom: 0.8rem;
            }

            .oem-coating-showcase__title-group {
                display: block;
            }

            .oem-coating-showcase__icon {
                width: 2.65rem;
                height: 2.65rem;
                margin-bottom: 0.7rem;
                border-radius: 12px;
            }

            .oem-coating-showcase__icon svg {
                width: 1.58rem;
                height: 1.58rem;
            }

            .oem-coating-showcase h2,
            .oem-coating-showcase h3 {
                font-size: clamp(1.35rem, 6vw, 1.68rem);
            }

            .oem-coating-showcase__lead {
                font-size: 0.94rem;
                line-height: 1.68;
            }

            .oem-coating-showcase__description {
                margin-top: 0.7rem;
                font-size: 0.88rem;
                line-height: 1.72;
            }

            .oem-coating-showcase__cta {
                width: 100%;
                min-height: 44px;
                margin-top: 0.95rem;
            }

            .oem-coating-finishes {
                display: flex;
                gap: 0.72rem;
                width: 100%;
                max-width: 100%;
                margin-top: 1rem;
                padding: 0 0.08rem 0.65rem;
                overflow-x: auto;
                overflow-y: hidden;
                scroll-snap-type: x mandatory;
                -webkit-overflow-scrolling: touch;
                overscroll-behavior-x: contain;
            }

            .oem-coating-finishes::-webkit-scrollbar {
                height: 5px;
            }

            .oem-coating-finishes::-webkit-scrollbar-track {
                background: rgba(255, 255, 255, 0.06);
                border-radius: 999px;
            }

            .oem-coating-finishes::-webkit-scrollbar-thumb {
                background: rgba(var(--theme-accent-rgb), 0.52);
                border-radius: 999px;
            }

            .oem-coating-finish {
                flex: 0 0 160px;
                scroll-snap-align: start;
                padding: 0.62rem;
            }

            .oem-coating-finish h3,
            .oem-coating-finish h4 {
                font-size: 0.98rem;
            }

            .oem-coating-finish span {
                font-size: 0.68rem;
            }

            .oem-coating-finish p {
                font-size: 0.78rem;
            }

            .oem-coating-showcase__note {
                font-size: 0.82rem;
            }
        }

        .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--brand .service-modal__dialog {
            width: min(1060px, 100%);
            background:
                radial-gradient(circle at 18% 0%, rgba(0, 212, 255, 0.14), transparent 34%),
                radial-gradient(circle at 82% 10%, rgba(255, 184, 0, 0.12), transparent 32%),
                linear-gradient(145deg, rgba(15, 25, 41, 0.98), rgba(9, 16, 28, 0.98));
        }

        .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;
        }

        .service-modal [hidden] {
            display: none !important;
        }

        .service-modal__custom {
            margin-top: 1.4rem;
        }

        .service-modal--brand .service-modal__custom {
            margin-top: 0.75rem;
        }

        .service-modal--brand .service-modal__tags {
            display: none;
        }

        .service-modal--brand .partner-card-grid {
            margin-top: 0.65rem;
            align-items: stretch;
            perspective: 1200px;
        }

        .service-modal--brand .partner-brand-card {
            display: grid;
            grid-template-rows: auto auto auto minmax(116px, 1fr) auto auto;
            min-height: 430px;
            padding: 0.76rem;
            border: 1px solid rgba(255, 206, 119, 0.5);
            border-radius: 24px;
            clip-path: none;
            background:
                radial-gradient(circle at 50% 8%, rgba(255, 221, 145, 0.2), transparent 24%),
                radial-gradient(circle at 50% 44%, rgba(0, 212, 255, 0.14), transparent 38%),
                linear-gradient(160deg, #1d2740 0%, #07111f 46%, #020812 100%);
            box-shadow:
                inset 0 0 0 2px rgba(255, 238, 183, 0.08),
                inset 0 0 34px rgba(255, 184, 0, 0.08),
                0 22px 56px rgba(0, 0, 0, 0.34);
            transform-style: preserve-3d;
        }

        .service-modal--brand .partner-brand-card::before {
            background:
                linear-gradient(145deg, rgba(255, 218, 138, 0.95), rgba(0, 212, 255, 0.55), rgba(255, 184, 0, 0.78));
            opacity: 0.82;
        }

        .service-modal--brand .partner-brand-card::after {
            inset: 0.45rem;
            height: auto;
            border: 1px solid rgba(255, 224, 154, 0.14);
            border-radius: 18px;
            background:
                linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent),
                radial-gradient(circle at 50% 18%, rgba(255, 184, 0, 0.14), transparent 30%);
            transform: none;
            opacity: 0.75;
        }

        .service-modal--brand .partner-brand-card:hover,
        .service-modal--brand .partner-brand-card.is-active,
        .service-modal--brand .partner-brand-card:focus-visible {
            transform: translateY(-8px) rotateX(1deg);
            border-color: rgba(255, 222, 154, 0.86);
            box-shadow:
                inset 0 0 0 2px rgba(255, 238, 183, 0.1),
                0 28px 70px rgba(0, 212, 255, 0.15),
                0 0 0 1px rgba(255, 184, 0, 0.26);
        }

        .service-modal--brand .partner-brand-card--pvd {
            background:
                radial-gradient(circle at 50% 8%, rgba(255, 221, 145, 0.22), transparent 24%),
                radial-gradient(circle at 48% 44%, rgba(255, 184, 0, 0.14), transparent 38%),
                linear-gradient(160deg, #211d34 0%, #101523 48%, #050812 100%);
        }

        .partner-card-cost {
            position: absolute;
            top: 0.7rem;
            left: 0.7rem;
            z-index: 4;
            width: 2.65rem;
            height: 2.65rem;
            display: grid;
            place-items: center;
            border-radius: 50% 50% 46% 46%;
            border: 2px solid rgba(255, 238, 183, 0.82);
            background:
                radial-gradient(circle at 35% 25%, #eaffff, #27d9ff 34%, #0d4c88 72%, #06142a 100%);
            color: #fff;
            font-family: 'Poppins', 'Noto Sans TC', sans-serif;
            font-size: 0.92rem;
            font-weight: 900;
            letter-spacing: 0.02em;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.68);
            box-shadow: 0 8px 22px rgba(0, 212, 255, 0.36);
        }

        .partner-brand-card--pvd .partner-card-cost {
            background:
                radial-gradient(circle at 35% 25%, #fff8c4, #ffba2d 38%, #9b5912 72%, #1d1104 100%);
            box-shadow: 0 8px 22px rgba(255, 184, 0, 0.28);
        }

        .service-modal--brand .partner-card-tag {
            justify-self: end;
            position: relative;
            z-index: 2;
            padding: 0.3rem 0.72rem;
            border-color: rgba(255, 224, 154, 0.34);
            background: rgba(255, 224, 154, 0.08);
            color: #ffe7ad;
        }

        .service-modal--brand .partner-card-name {
            position: relative;
            z-index: 2;
            align-self: end;
            margin-top: 0.65rem;
            padding: 0.68rem 0.85rem 0.56rem;
            border: 1px solid rgba(255, 224, 154, 0.18);
            border-radius: 999px;
            background:
                linear-gradient(90deg, rgba(255, 184, 0, 0.2), rgba(0, 212, 255, 0.12), rgba(255, 184, 0, 0.14)),
                rgba(4, 10, 20, 0.76);
            text-align: center;
            font-size: clamp(1.35rem, 2vw, 1.8rem);
            line-height: 1;
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
        }

        .service-modal--brand .partner-card-name span {
            margin-top: 0.3rem;
            color: rgba(255, 255, 255, 0.76);
            font-size: 0.68rem;
            letter-spacing: 0.2em;
        }

        .partner-card-model {
            position: relative;
            z-index: 2;
            margin-top: 0.55rem;
            color: rgba(255, 235, 190, 0.92);
            text-align: center;
            font-size: 0.9rem;
            font-weight: 800;
            letter-spacing: 0.03em;
        }

        .service-modal--brand .partner-card-position {
            position: relative;
            z-index: 2;
            margin-top: 0.62rem;
            padding: 0.64rem 0.72rem;
            min-height: 6.2rem;
            border: 1px solid rgba(255, 224, 154, 0.16);
            border-radius: 12px;
            color: rgba(235, 241, 249, 0.84);
            background: rgba(2, 7, 15, 0.62);
            font-size: 0.82rem;
            line-height: 1.58;
        }

        .partner-card-function,
        .partner-card-industry {
            display: block;
        }

        .partner-card-industry {
            margin-top: 0.45rem;
            padding-top: 0.48rem;
            border-top: 1px solid rgba(255, 224, 154, 0.12);
            color: rgba(226, 232, 240, 0.8);
            font-size: 0.75rem;
            line-height: 1.52;
        }

        .partner-card-industry strong {
            color: #fff;
            font-weight: 900;
        }

        .partner-card-art {
            position: relative;
            z-index: 2;
            height: clamp(158px, 18vw, 212px);
            min-height: 0;
            margin: 0.55rem 0 0.55rem;
            border: 1px solid rgba(255, 224, 154, 0.24);
            border-radius: 999px 999px 22px 22px;
            background:
                radial-gradient(circle at 50% 32%, rgba(95, 255, 211, 0.2), transparent 28%),
                radial-gradient(circle at 52% 52%, rgba(0, 212, 255, 0.18), transparent 48%),
                linear-gradient(180deg, rgba(12, 33, 52, 0.9), rgba(3, 10, 20, 0.98));
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            box-shadow: inset 0 0 34px rgba(0, 212, 255, 0.08);
        }

        .partner-card-art::before {
            content: '';
            position: absolute;
            inset: 12px 18px 18px;
            border-radius: inherit;
            border: 1px solid rgba(255, 255, 255, 0.08);
            background:
                linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
            background-size: 22px 22px;
            opacity: 0.72;
        }

        .partner-card-art--pvd {
            background:
                radial-gradient(circle at 50% 34%, rgba(255, 184, 0, 0.22), transparent 28%),
                radial-gradient(circle at 52% 52%, rgba(0, 212, 255, 0.12), transparent 48%),
                linear-gradient(180deg, rgba(45, 28, 15, 0.88), rgba(4, 8, 15, 0.98));
        }

        .partner-card-art svg {
            position: relative;
            z-index: 1;
            width: min(82%, 300px);
            height: auto;
            stroke: rgba(248, 252, 255, 0.92);
            fill: rgba(255, 255, 255, 0.03);
            stroke-width: 1.55;
            stroke-linecap: round;
            stroke-linejoin: round;
            filter: drop-shadow(0 0 18px rgba(0, 212, 255, 0.28));
        }

        .partner-card-art--pvd svg {
            filter: drop-shadow(0 0 18px rgba(255, 184, 0, 0.26));
        }

        .partner-card-art img {
            position: relative;
            z-index: 1;
            width: auto;
            max-width: 90%;
            max-height: calc(100% - 18px);
            object-fit: contain;
            border-radius: 12px;
            filter: drop-shadow(0 18px 26px rgba(0, 0, 0, 0.36));
        }

        .partner-card-specs {
            position: relative;
            z-index: 2;
            display: none;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0.36rem;
            margin: 0.05rem 0 0.55rem;
        }

        .partner-card-specs span {
            padding: 0.22rem 0.5rem;
            border: 1px solid rgba(0, 212, 255, 0.24);
            border-radius: 999px;
            color: rgba(212, 242, 255, 0.88);
            background: rgba(0, 212, 255, 0.07);
            font-size: 0.68rem;
            font-weight: 800;
        }

        .service-modal--brand .partner-brand-intro {
            margin-top: 1.1rem;
        }
        .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.15rem;
        }

        .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: 38px;
                max-width: 186px;
            }

            .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;
            }

            .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%;
            }


            .process-layout {
                grid-template-columns: minmax(0, 1fr);
                gap: 1.6rem;
            }

            .process-list {
                max-width: none;
            }

            .process-step {
                padding-left: 2.65rem;
            }

            .process-step.mb-12 {
                margin-bottom: 1.65rem;
            }

            .process-step::before {
                left: 1rem;
                top: 2.45rem;
                height: calc(100% - 2.45rem);
            }

            .step-number {
                width: 2.15rem;
                height: 2.15rem;
                font-size: 0.95rem;
            }

            .process-step h3 {
                color: #F8FAFC !important;
                font-size: 1.12rem;
                line-height: 1.4;
                margin-bottom: 0.28rem;
            }

            .process-step p {
                color: rgba(226, 232, 240, 0.86) !important;
                font-size: 0.94rem;
                line-height: 1.68;
            }

            .process-articles-card {
                position: static;
                width: 100%;
                padding: 1rem;
                border-radius: 16px;
            }

            .process-articles-card h3 {
                font-size: 1.08rem;
                margin-bottom: 0.72rem;
            }

            .process-article-link {
                padding: 0.48rem 0;
                font-size: 0.86rem;
                line-height: 1.48;
            }

            .process-article-cta {
                margin-top: 0.9rem;
            }
            .global-map-cover .grid,
            #services .grid,
            #process .grid {
                gap: 1.25rem;
            }

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

            .partner-service-card {
                padding: 1rem;
                border-radius: 18px;
            }

            .partner-service-header {
                display: block;
                margin-bottom: 1rem;
            }

            .partner-service-header h3 {
                font-size: 1.38rem;
            }

            .partner-service-header p {
                margin-top: 0.65rem;
                font-size: 0.92rem;
                line-height: 1.68;
            }

            .partner-card-grid {
                grid-template-columns: minmax(0, 1fr);
                gap: 0.9rem;
            }

            .partner-brand-card {
                min-height: 360px;
                padding: 0.9rem;
                border-radius: 16px;
            }

            .partner-card-name {
                font-size: 1.5rem;
            }

            .partner-card-position {
                font-size: 0.9rem;
            }

            .partner-card-visual {
                min-height: 138px;
                margin: 0.9rem 0;
            }

            .partner-card-button {
                min-height: 44px;
                font-size: 0.92rem;
            }

            .partner-brand-intro {
                margin-top: 0.95rem;
                padding: 0.95rem;
            }

            .partner-brand-intro h4 {
                font-size: 1.08rem;
            }

            .partner-brand-intro p {
                font-size: 0.9rem;
                line-height: 1.7;
            }

            .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);
        }
        .hero.hero-cover {
            height: 100svh;
            min-height: 0;
            max-height: 100svh;
            padding: 0;
            background: #02060b;
        }

        .hero.hero-cover .hero-bg-fill {
            display: none;
            object-fit: cover;
            object-position: center center;
            filter: none;
            transform: none;
            opacity: 1;
        }

        .hero.hero-cover .hero-bg-image {
            z-index: 0;
            object-fit: cover;
            object-position: 64% center;
            filter: none;
            opacity: 1;
            transform: none;
        }

        .hero.hero-cover .hero-bg-mobile-image {
            display: none;
            position: absolute;
            inset: 0;
            z-index: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center center;
            pointer-events: none;
            user-select: none;
        }

        .hero.hero-cover::before,
        .hero.hero-cover::after {
            display: none;
        }

        .hero.hero-cover .hero-shell {
            height: 100%;
            min-height: 0;
            max-width: none;
            margin-left: 0;
            margin-right: 0;
            padding: clamp(5.4rem, 9svh, 7rem) clamp(1rem, 3vw, 4rem) clamp(2rem, 5svh, 4rem);
            align-items: center;
        }

        .hero.hero-cover .hero-copy {
            position: relative;
            z-index: 2;
            width: min(960px, 64vw);
            max-width: 960px;
            margin-top: 0;
        }

        .hero-copy.fade-in.visible {
            transform: none;
        }

        .hero-kicker {
            display: inline-flex;
            align-items: center;
            gap: 0.85rem;
            margin-bottom: clamp(1.15rem, 2.4svh, 1.55rem);
            color: var(--accent-cyan);
            font-family: 'Poppins', 'Noto Sans TC', sans-serif;
            font-size: clamp(0.68rem, 0.8vw, 0.82rem);
            font-weight: 700;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            text-shadow: 0 0 18px rgba(var(--theme-accent-rgb), 0.42);
        }

        .hero-kicker span {
            width: clamp(1.6rem, 3vw, 2.6rem);
            height: 2px;
            background: linear-gradient(90deg, var(--accent-cyan), rgba(var(--theme-accent-rgb), 0.16));
            box-shadow: 0 0 14px rgba(var(--theme-accent-rgb), 0.62);
        }

        .hero.hero-cover .hero-main-title {
            max-width: 920px;
            margin: 0 0 clamp(1rem, 2.1svh, 1.45rem);
            color: #fff8ed;
            font-family: 'Noto Serif TC', 'Noto Serif CJK TC', 'Source Han Serif TC', serif;
            font-size: clamp(2.7rem, 4.25vw, 5.15rem);
            line-height: 1.2;
            font-weight: 600;
            letter-spacing: 0.015em;
            text-wrap: balance;
            text-shadow:
                0 8px 28px rgba(0, 0, 0, 0.98),
                0 0 24px rgba(var(--theme-accent-rgb), 0.16),
                0 1px 0 rgba(255, 255, 255, 0.16);
        }

        .hero.hero-cover .hero-title-line {
            display: block;
            white-space: nowrap;
        }

        .hero.hero-cover .hero-title-line:first-child,
        .hero.hero-cover .hero-title-line:last-child {
            font-size: 1em;
            font-weight: 600;
            margin: 0;
        }

        .hero-title-emphasis {
            color: #fff8ed;
            font-weight: 700;
            letter-spacing: 0.01em;
            text-shadow:
                0 8px 28px rgba(0, 0, 0, 0.98),
                0 0 26px rgba(var(--theme-accent-rgb), 0.42);
        }

        .hero-description {
            max-width: 780px;
            margin: 0;
            color: rgba(238, 231, 220, 0.84);
            font-size: clamp(1rem, 1.15vw, 1.22rem);
            line-height: 1.86;
            font-weight: 500;
            letter-spacing: 0.035em;
            text-shadow: 0 5px 18px rgba(0, 0, 0, 0.95);
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 1.25rem;
            margin-top: clamp(1.45rem, 3.2svh, 2rem);
        }

        .hero-action {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.82rem;
            min-width: 164px;
            min-height: 56px;
            padding: 0.95rem 1.55rem;
            border-radius: 5px;
            font-size: 1rem;
            font-weight: 700;
            letter-spacing: 0.04em;
            text-decoration: none;
            transition: transform 0.26s ease, border-color 0.26s ease, background 0.26s ease, box-shadow 0.26s ease;
        }

        .hero-action--primary {
            color: #06101d;
            background: linear-gradient(135deg, var(--accent-cyan), var(--accent-gold));
            border: 1px solid rgba(var(--theme-accent-rgb), 0.88);
            box-shadow: 0 14px 34px rgba(var(--theme-accent-rgb), 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.22);
        }

        .hero-action--secondary {
            color: var(--accent-cyan);
            background: rgba(12, 8, 4, 0.36);
            border: 1px solid rgba(var(--theme-accent-rgb), 0.72);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
        }

        .hero-action:hover,
        .hero-action:focus-visible {
            transform: translateY(-2px);
            box-shadow: 0 18px 42px rgba(var(--theme-accent-rgb), 0.3), 0 0 34px rgba(var(--theme-accent-rgb), 0.18);
            outline: none;
        }

        .hero-features {
            display: grid;
            grid-template-columns: repeat(3, minmax(170px, 1fr));
            gap: 0;
            width: min(820px, 100%);
            margin: clamp(2.2rem, 5svh, 3.2rem) 0 0;
        }

        .hero-feature,
        .hero-feature:first-child,
        .hero-feature:last-child {
            display: flex;
            align-items: center;
            gap: 0.9rem;
            min-width: 0;
            padding: 0 1.55rem;
            border-right: 1px solid rgba(255, 255, 255, 0.24);
            color: rgba(255, 250, 240, 0.9);
            text-align: left;
            background: transparent;
            text-shadow: 0 5px 18px rgba(0, 0, 0, 0.92);
        }

        .hero-feature:first-child {
            padding-left: 0;
        }

        .hero-feature:last-child {
            padding-right: 0;
            border-right: 0;
        }

        .hero-feature__icon {
            flex: 0 0 auto;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 48px;
            height: 48px;
            margin: 0;
            color: var(--accent-cyan);
            border: 1px solid rgba(var(--theme-accent-rgb), 0.52);
            border-radius: 999px;
            background: rgba(var(--theme-accent-rgb), 0.07);
            filter: drop-shadow(0 0 16px rgba(var(--theme-accent-rgb), 0.24));
        }

        .hero-feature__icon svg {
            width: 29px;
            height: 29px;
            stroke: currentColor;
            fill: none;
            stroke-width: 1.7;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .hero-feature__text {
            display: grid;
            gap: 0.18rem;
            min-width: 0;
        }

        .hero-feature__text strong {
            color: #fff7eb;
            font-size: 1rem;
            font-weight: 700;
            line-height: 1.25;
        }

        .hero-feature__text small {
            color: rgba(238, 231, 220, 0.72);
            font-size: 0.82rem;
            font-weight: 500;
            line-height: 1.35;
        }

        @media (max-width: 1400px) and (min-width: 1181px) {
            .hero.hero-cover .hero-copy {
                width: min(850px, 67vw);
            }

            .hero.hero-cover .hero-main-title {
                font-size: clamp(2.45rem, 3.95vw, 4.55rem);
                line-height: 1.2;
            }
        }

        @media (max-width: 1180px) {
            .hero.hero-cover {
                min-height: 0;
            }

            .hero.hero-cover .hero-bg-image {
                object-position: 72% center;
                opacity: 0.58;
            }

            .hero.hero-cover .hero-copy {
                width: min(760px, 82vw);
                max-width: 760px;
            }

            .hero.hero-cover .hero-main-title {
                font-size: clamp(2.15rem, 5.35vw, 3.85rem);
            }

            .hero.hero-cover .hero-title-line {
                white-space: normal;
            }
        }

        @media (max-width: 768px) {
            .hero.hero-cover {
                height: 100svh;
                min-height: 0;
                padding: 0;
                background: #02060b;
            }

            .hero.hero-cover .hero-bg-video {
                display: none;
            }

            .hero.hero-cover .hero-bg-fill {
                display: none;
            }

            .hero.hero-cover .hero-bg-image {
                display: none;
            }

            .hero.hero-cover .hero-bg-mobile-image {
                display: block;
                object-position: center center;
                filter: brightness(0.66) contrast(1.08) saturate(1.08);
                opacity: 1;
            }

            .hero.hero-cover::before {
                content: '';
                position: absolute;
                inset: 0;
                z-index: 1;
                display: block;
                pointer-events: none;
                background:
                    linear-gradient(180deg, rgba(2, 6, 11, 0.86) 0%, rgba(2, 6, 11, 0.5) 38%, rgba(2, 6, 11, 0.74) 100%),
                    linear-gradient(90deg, rgba(2, 6, 11, 0.82) 0%, rgba(2, 6, 11, 0.46) 54%, rgba(2, 6, 11, 0.24) 100%);
            }

            .hero.hero-cover .hero-shell {
                align-items: center;
                padding: 5.8rem 1.05rem 1.45rem;
            }

            .hero.hero-cover .hero-copy {
                width: 100%;
                max-width: 100%;
                margin-top: 0;
            }

            .hero-kicker {
                gap: 0.65rem;
                margin-bottom: 0.82rem;
                font-size: 0.64rem;
                letter-spacing: 0.14em;
            }

            .hero-kicker span {
                width: 1.5rem;
            }

            .hero.hero-cover .hero-main-title {
                max-width: 100%;
                margin-bottom: 0.82rem;
                font-size: clamp(1.74rem, 8.15vw, 2.52rem);
                line-height: 1.32;
                letter-spacing: 0.01em;
            }

            .hero.hero-cover .hero-title-line {
                white-space: normal;
            }

            .hero-title-emphasis {
                display: inline;
            }

            .hero-description {
                max-width: 100%;
                font-size: clamp(0.92rem, 3.55vw, 1.02rem);
                line-height: 1.7;
                letter-spacing: 0.01em;
            }

            .hero-description br {
                display: none;
            }

            .hero-actions {
                display: grid;
                grid-template-columns: 1fr;
                gap: 0.8rem;
                margin-top: 1.18rem;
            }

            .hero-action {
                width: 100%;
                min-height: 52px;
                border-radius: 6px;
            }

            .hero-features {
                grid-template-columns: 1fr;
                gap: 0.72rem;
                width: 100%;
                margin-top: 1.32rem;
            }

            .hero-feature,
            .hero-feature:first-child,
            .hero-feature:last-child {
                padding: 0;
                border: 0;
            }

            .hero-feature__icon {
                width: 40px;
                height: 40px;
            }

            .hero-feature__icon svg {
                width: 24px;
                height: 24px;
            }

            .hero-feature__text strong {
                font-size: 0.94rem;
            }

            .hero-feature__text small {
                font-size: 0.78rem;
            }
        }
        .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;
            }
        }

        .hero-mobile-accent,
        .hero-mobile-subtitle,
        .hero-mobile-features {
            display: none;
        }

        @media (max-width: 768px) {
            nav#navbar {
                background: transparent;
                border-bottom: 0;
                backdrop-filter: none;
                box-shadow: none;
            }

            nav#navbar.scrolled {
                background: linear-gradient(180deg, rgba(2, 6, 11, 0.74), rgba(2, 6, 11, 0.18));
                border-bottom: 0;
                backdrop-filter: blur(12px);
                box-shadow: none;
            }

            nav#navbar > .max-w-7xl {
                padding-left: 0.88rem;
                padding-right: 0.88rem;
            }

            nav#navbar .h-20 {
                height: 64px;
            }

            nav#navbar .theme-toggle {
                display: none;
            }

            .brand-logo-link img {
                height: 30px;
                max-width: 138px;
                filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.82));
            }

            .hamburger {
                display: inline-flex !important;
                width: 38px;
                height: 38px;
                border-radius: 13px;
                border: 1px solid rgba(255, 255, 255, 0.2);
                background: rgba(5, 12, 22, 0.48);
                backdrop-filter: blur(14px);
                box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 12px 26px rgba(0, 0, 0, 0.34);
            }

            .hamburger span {
                width: 17px;
                height: 2px;
                margin: 2px 0;
                border-radius: 999px;
                background: rgba(255, 255, 255, 0.86);
                box-shadow: none;
            }

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

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

            .mobile-menu {
                top: 64px;
                max-height: calc(100svh - 64px);
                background: rgba(5, 12, 22, 0.9);
                border-bottom: 1px solid rgba(var(--theme-accent-rgb), 0.2);
            }

            .hero.hero-cover {
                display: block;
                height: 100svh;
                min-height: 720px;
                max-height: none;
                padding: 0;
                background: #02060b;
            }

            .hero.hero-cover .hero-bg-video,
            .hero.hero-cover .hero-bg-fill,
            .hero.hero-cover .hero-bg-image {
                display: none;
            }

            .hero.hero-cover .hero-bg-mobile-image {
                display: block;
                object-position: center 58%;
                filter: brightness(0.94) contrast(1.08) saturate(1.1);
                opacity: 1;
                transform: scale(1.015);
            }

            .hero.hero-cover::before {
                content: '';
                position: absolute;
                inset: 0;
                z-index: 1;
                display: block;
                pointer-events: none;
                background:
                    linear-gradient(180deg, rgba(2, 6, 11, 0.3) 0%, rgba(2, 6, 11, 0.08) 30%, rgba(2, 6, 11, 0.02) 56%, rgba(2, 6, 11, 0.46) 100%),
                    radial-gradient(circle at 50% 48%, rgba(var(--theme-accent-rgb), 0.08), transparent 44%);
            }

            .hero.hero-cover::after {
                display: none;
            }

            .hero.hero-cover .hero-shell {
                position: relative;
                z-index: 2;
                display: flex;
                flex-direction: column;
                align-items: stretch;
                justify-content: space-between;
                height: 100%;
                width: 100vw;
                max-width: none;
                margin: 0;
                padding: 4.15rem 0.82rem max(1.05rem, env(safe-area-inset-bottom));
                box-sizing: border-box;
                overflow: hidden;
            }

            .hero.hero-cover .hero-copy {
                position: relative;
                display: flex;
                flex-direction: column;
                align-items: flex-start;
                width: calc(100vw - 1.64rem);
                max-width: 100%;
                margin: 0 auto;
                padding: clamp(1rem, 4.4vw, 1.22rem) clamp(0.95rem, 4vw, 1.2rem) clamp(0.95rem, 4vw, 1.18rem);
                color: #fff8ed;
                text-align: left;
                border: 1px solid rgba(255, 255, 255, 0.12);
                border-radius: 18px;
                background:
                    linear-gradient(180deg, rgba(5, 12, 22, 0.66), rgba(5, 12, 22, 0.42)),
                    rgba(7, 16, 28, 0.48);
                backdrop-filter: blur(16px) saturate(1.12);
                box-shadow:
                    inset 0 1px 0 rgba(255, 255, 255, 0.08),
                    0 18px 42px rgba(0, 0, 0, 0.28);
                overflow: hidden;
            }

            .hero.hero-cover .hero-copy::before {
                content: '';
                position: absolute;
                inset: 0;
                pointer-events: none;
                background: linear-gradient(135deg, rgba(var(--theme-accent-rgb), 0.08), transparent 38%);
            }

            .hero-copy.fade-in.visible {
                transform: none;
            }

            .hero-kicker,
            .hero-description,
            .hero-features {
                display: none;
            }

            .hero.hero-cover .hero-main-title {
                position: relative;
                max-width: 100%;
                margin: 0;
                color: #fff8ed;
                font-family: 'Noto Serif TC', 'Noto Serif CJK TC', 'Source Han Serif TC', serif;
                font-size: clamp(1.22rem, 5.35vw, 1.48rem);
                line-height: 1.46;
                font-weight: 700;
                letter-spacing: 0.01em;
                text-align: left;
                text-shadow:
                    0 4px 18px rgba(0, 0, 0, 0.82),
                    0 0 18px rgba(0, 0, 0, 0.5);
                z-index: 1;
            }

            .hero.hero-cover .hero-title-line {
                display: block;
                white-space: nowrap;
            }

            .hero-title-emphasis {
                color: #fff8ed;
                font-weight: 700;
                letter-spacing: 0.01em;
                text-shadow: inherit;
            }

            .hero-mobile-accent {
                position: relative;
                z-index: 1;
                display: block;
                width: 2.6rem;
                height: 3px;
                margin: 0.72rem 0 0.85rem;
                border-radius: 999px;
                background: linear-gradient(90deg, var(--accent-cyan), #4dffe1);
                box-shadow: 0 0 18px rgba(var(--theme-accent-rgb), 0.62);
            }

            .hero-mobile-subtitle {
                position: relative;
                z-index: 1;
                display: block;
                margin: 0;
                color: rgba(242, 249, 250, 0.78);
                font-size: clamp(0.76rem, 3.25vw, 0.9rem);
                line-height: 1.72;
                font-weight: 500;
                letter-spacing: 0.01em;
                text-shadow: 0 3px 12px rgba(0, 0, 0, 0.72);
            }

            .hero-actions {
                position: relative;
                z-index: 1;
                display: grid;
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 0.44rem;
                width: 100%;
                margin: 0.96rem 0 0;
            }

            .hero-action {
                width: 100%;
                min-width: 0;
                min-height: 40px;
                padding: 0.58rem 0.24rem;
                border-radius: 999px;
                font-size: clamp(0.64rem, 2.6vw, 0.72rem);
                font-weight: 800;
                gap: 0.24rem;
                letter-spacing: 0.01em;
                white-space: nowrap;
                box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
            }

            .hero-action--primary {
                color: #05202a;
                background: linear-gradient(135deg, #20f1d2, #11bfd4 48%, #2ddfff);
                border-color: rgba(78, 255, 225, 0.72);
                box-shadow: 0 12px 30px rgba(20, 217, 218, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.22);
            }

            .hero-action--secondary {
                color: #f5fdff;
                background: rgba(5, 12, 22, 0.18);
                border-color: rgba(255, 255, 255, 0.34);
                backdrop-filter: blur(8px);
            }

            .hero-mobile-features {
                display: grid;
                grid-template-columns: repeat(3, minmax(0, 1fr));
                width: calc(100vw - 1.64rem);
                margin-top: auto;
                border: 1px solid rgba(255, 255, 255, 0.1);
                border-radius: 17px;
                background:
                    linear-gradient(180deg, rgba(5, 12, 22, 0.6), rgba(5, 12, 22, 0.38)),
                    rgba(5, 12, 22, 0.44);
                backdrop-filter: blur(14px) saturate(1.1);
                box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 14px 34px rgba(0, 0, 0, 0.32);
                overflow: hidden;
            }

            .hero-mobile-feature {
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                min-width: 0;
                min-height: 78px;
                padding: 0.62rem 0.28rem 0.58rem;
                color: rgba(255, 255, 255, 0.9);
                text-align: center;
                border-right: 1px solid rgba(255, 255, 255, 0.08);
            }

            .hero-mobile-feature:last-child {
                border-right: 0;
            }

            .hero-mobile-feature__icon {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                width: 27px;
                height: 27px;
                margin-bottom: 0.35rem;
                color: var(--accent-cyan);
                filter: drop-shadow(0 0 10px rgba(var(--theme-accent-rgb), 0.45));
            }

            .hero-mobile-feature__icon svg {
                width: 100%;
                height: 100%;
                fill: none;
                stroke: currentColor;
                stroke-width: 1.8;
                stroke-linecap: round;
                stroke-linejoin: round;
            }

            .hero-mobile-feature strong {
                display: block;
                color: #fffdf6;
                font-size: clamp(0.68rem, 2.85vw, 0.8rem);
                line-height: 1.2;
                font-weight: 800;
                white-space: nowrap;
            }

            .hero-mobile-feature small {
                display: block;
                margin-top: 0.16rem;
                color: rgba(234, 246, 248, 0.72);
                font-size: clamp(0.62rem, 2.5vw, 0.72rem);
                line-height: 1.2;
                font-weight: 600;
                white-space: nowrap;
            }
        }

        @media (max-width: 360px) {
            .hero.hero-cover .hero-shell {
                padding-left: 0.68rem;
                padding-right: 0.68rem;
            }

            .hero.hero-cover .hero-copy {
                padding: 0.92rem 0.82rem 0.9rem;
            }

            .hero.hero-cover .hero-main-title {
                font-size: clamp(1.26rem, 6.35vw, 1.5rem);
                letter-spacing: 0;
            }

            .hero-actions {
                gap: 0.44rem;
            }

            .hero-action {
                min-height: 38px;
                padding: 0.58rem 0.32rem;
                font-size: 0.7rem;
            }

            .hero-mobile-feature {
                min-height: 72px;
                padding-left: 0.18rem;
                padding-right: 0.18rem;
            }

            .hero-mobile-feature__icon {
                width: 24px;
                height: 24px;
            }
        }

        @media (max-width: 330px) {
            .hero-actions {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .service-modal--brand .service-modal__dialog h3 {
                font-size: clamp(1.6rem, 8vw, 2.05rem);
                margin-bottom: 0.65rem;
            }

            .service-modal--brand .service-modal__dialog p {
                font-size: 0.95rem;
                line-height: 1.72;
            }

            .service-modal--brand .service-modal__tags {
                display: none;
            }

            .service-modal--brand .partner-brand-card {
                min-height: 0;
                padding: 0.64rem;
            }

            .partner-card-cost {
                width: 2.8rem;
                height: 2.8rem;
                font-size: 0.92rem;
            }

            .partner-card-model {
                font-size: 0.82rem;
            }

            .partner-card-art {
                height: clamp(182px, 58vw, 238px);
                margin: 0.48rem 0;
            }

            .service-modal--brand .partner-card-position {
                min-height: 0;
                font-size: 0.82rem;
                line-height: 1.55;
            }

            .partner-card-industry {
                font-size: 0.74rem;
                line-height: 1.5;
            }

            .partner-card-specs {
                display: none;
            }

            .service-modal--brand .partner-brand-intro {
                margin-top: 0.9rem;
            }
        }
