        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', 'Noto Sans SC', sans-serif;
            background: #ffffff;
            color: #0f172a;
            overflow-x: hidden;
        }

        .particles-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 0;
        }

        .particle {
            position: absolute;
            background: rgba(5, 150, 105, 0.12);
            border-radius: 50%;
            animation: float 20s infinite linear;
        }

        @keyframes float {
            0% {
                transform: translateY(100vh) translateX(0) scale(0);
                opacity: 0;
            }

            10% {
                opacity: 1;
            }

            90% {
                opacity: 1;
            }

            100% {
                transform: translateY(-100vh) translateX(100px) scale(1);
                opacity: 0;
            }
        }

        .glow {
            position: absolute;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(5, 150, 105, 0.06) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .glass {
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.4);
        }

        .photo-container {
            border-radius: 20px;
            overflow: visible;
            box-shadow: 0 0 0 2px rgba(134, 239, 172, 0.3), 
                        0 0 60px rgba(16, 185, 129, 0.15),
                        0 30px 60px -15px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            position: relative;
            background: #fff;
        }

        .photo-container:hover {
            transform: translateY(-4px);
            box-shadow: 0 0 0 2px rgba(134, 239, 172, 0.5), 
                        0 0 80px rgba(16, 185, 129, 0.25),
                        0 40px 80px -20px rgba(0, 0, 0, 0.12);
        }

        .photo-container::before {
            content: '';
            position: absolute;
            top: -3px;
            left: -3px;
            right: -3px;
            bottom: -3px;
            background: linear-gradient(135deg, rgba(16, 185, 129, 0.3), rgba(5, 150, 105, 0.2));
            border-radius: 24px;
            z-index: -1;
            filter: blur(8px);
            opacity: 0.7;
        }

        .photo-container > img {
            border-radius: 16px 16px 0 0;
            display: block;
            width: 100%;
        }

        .glass-tag {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-top: 1px solid rgba(226, 232, 240, 0.8);
            border-radius: 0 0 16px 16px;
            padding: 16px 20px;
            box-shadow: 0 -4px 20px -4px rgba(0, 0, 0, 0.04);
            transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .glass-tag .icon-box {
            width: 44px;
            height: 44px;
            border-radius: 10px;
            background: linear-gradient(135deg, #059669, #10b981);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            flex-shrink: 0;
        }

        .glass-tag .text-content h3 {
            font-size: 16px;
            font-weight: 700;
            color: #1e293b;
            margin: 0;
            line-height: 1.3;
        }

        .glass-tag .text-content p {
            font-size: 13px;
            color: #64748b;
            margin: 0;
            line-height: 1.4;
        }

        .hero-image-wrapper {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 0 0 2px rgba(134, 239, 172, 0.3), 
                        0 0 60px rgba(16, 185, 129, 0.15),
                        0 30px 60px -15px rgba(0, 0, 0, 0.08);
            position: relative;
            background: #fff;
        }

        .home-hero .hero-image-wrapper {
            border-radius: 20px;
            width: 100%;
            max-width: 760px;
            margin-left: auto;
            box-shadow: 0 22px 55px -28px rgba(15, 23, 42, 0.42);
        }

        .home-hero-photo {
            aspect-ratio: 2271 / 1575;
            min-height: 0;
            overflow: hidden;
            background: #f8fafc;
            position: relative;
        }

        .home-hero-carousel { position: relative; }

        .home-hero-photo img {
            position: absolute;
            inset: 0;
            opacity: 0;
            transition: opacity 0.7s ease;
        }

        .home-hero-photo img.is-active { opacity: 1; }

        .home-hero-carousel-control {
            position: absolute;
            top: 50%;
            z-index: 2;
            width: 42px;
            height: 42px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #0f172a;
            background: rgba(255, 255, 255, 0.9);
            border: 1px solid rgba(226, 232, 240, 0.9);
            border-radius: 999px;
            box-shadow: 0 8px 20px rgba(15, 23, 42, 0.16);
            transform: translateY(-50%);
            opacity: 0;
            cursor: pointer;
            transition: opacity 0.2s ease, background 0.2s ease, color 0.2s ease;
        }

        .home-hero-carousel:hover .home-hero-carousel-control,
        .home-hero-carousel:focus-within .home-hero-carousel-control { opacity: 1; }
        .home-hero-carousel-control:hover,
        .home-hero-carousel-control:focus-visible { color: #fff; background: #059669; outline: none; }
        .home-hero-carousel-control.is-previous { left: 16px; }
        .home-hero-carousel-control.is-next { right: 16px; }
        .home-hero-carousel-control svg { width: 21px; height: 21px; }

        .home-hero-carousel-dots {
            position: absolute;
            z-index: 2;
            right: 18px;
            bottom: 16px;
            display: flex;
            gap: 7px;
        }

        .home-hero-carousel-dots button {
            width: 8px;
            height: 8px;
            padding: 0;
            border: 0;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.66);
            box-shadow: 0 1px 3px rgba(15, 23, 42, 0.22);
            cursor: pointer;
            transition: width 0.2s ease, background 0.2s ease;
        }

        .home-hero-carousel-dots button.is-active { width: 24px; background: #10b981; }
        .home-hero-carousel-dots button:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }

        .hero-image-wrapper::before {
            content: '';
            position: absolute;
            top: -3px;
            left: -3px;
            right: -3px;
            bottom: -3px;
            background: linear-gradient(135deg, rgba(16, 185, 129, 0.3), rgba(5, 150, 105, 0.2));
            border-radius: 24px;
            z-index: -1;
            filter: blur(8px);
            opacity: 0.7;
        }

        .hero-image-wrapper img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .home-hero .hero-image-wrapper img {
            object-fit: contain;
        }

        .hero-image-caption {
            background: rgba(255, 255, 255, 0.98);
            padding: 14px 18px;
            border-top: 1px solid rgba(226, 232, 240, 0.6);
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .home-hero .hero-image-caption {
            margin: -1px 0 0;
            padding: 18px;
            border-radius: 0 0 18px 18px;
            box-shadow: none;
        }

        .hero-image-caption .icon-box {
            width: 48px;
            height: 48px;
            border-radius: 10px;
            background: linear-gradient(135deg, #059669, #10b981);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            flex-shrink: 0;
        }

        .hero-image-caption .text h3 {
            font-size: 18px;
            font-weight: 700;
            color: #1e293b;
            margin: 0;
            line-height: 1.3;
        }

        .hero-image-caption .text p {
            font-size: 14px;
            color: #64748b;
            margin: 0;
            line-height: 1.4;
        }

        .home-hero-title {
            text-wrap: balance;
        }

        .home-primary-btn {
            min-width: 128px;
        }

        .home-scroll-hint {
            pointer-events: none;
        }

        @media (min-width: 1024px) {
            .home-hero-media {
                transform: translate(36px, 18px);
            }

            .home-hero-photo {
                min-height: 0;
            }
        }

        @media (min-width: 1024px) and (max-width: 1280px) {
            .home-hero-media {
                transform: translate(20px, 18px);
            }

            .home-hero .hero-image-wrapper {
                max-width: 720px;
            }
        }

        @media (max-width: 640px) {
            .home-hero {
                min-height: auto;
            }

            .home-hero-title {
                font-size: 3.3rem;
                line-height: 0.98;
            }

            .home-hero-photo {
                min-height: 0;
                aspect-ratio: 2271 / 1575;
            }

            .home-hero-carousel-control { width: 36px; height: 36px; opacity: 1; }
            .home-hero-carousel-control.is-previous { left: 12px; }
            .home-hero-carousel-control.is-next { right: 12px; }
        }

        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        .parallax-img {
            transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .product-card {
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .product-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 25px 50px -12px rgba(5, 150, 105, 0.12);
        }

        .location-card {
            display: block;
            text-decoration: none;
            background: #ffffff;
            border: 1px solid #e2e8f0;
            box-shadow: 0 20px 40px -20px rgba(15, 23, 42, 0.08);
            transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .location-card:hover {
            background: linear-gradient(135deg, #059669 0%, #047857 100%);
            border-color: rgba(5, 150, 105, 0.35);
            box-shadow: 0 30px 60px -20px rgba(5, 150, 105, 0.2);
        }

        .location-card .location-title,
        .location-card .location-meta,
        .location-card .location-label,
        .location-card .location-status,
        .location-card .location-visit {
            transition: color 0.3s ease;
        }

        .location-card:hover .location-title,
        .location-card:hover .location-meta,
        .location-card:hover .location-label,
        .location-card:hover .location-status,
        .location-card:hover .location-visit {
            color: #ffffff;
        }

        .location-card:hover .location-icon {
            color: rgba(255, 255, 255, 0.9);
        }

        /* 瀵艰埅鏍忔粴鍔ㄦ晥鏋?*/
        .nav-scrolled {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
        }

        .gradient-text {
            background: linear-gradient(135deg, #059669 0%, #10b981 50%, #f59e0b 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .grid-bg {
            background-image:
                linear-gradient(rgba(5, 150, 105, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(5, 150, 105, 0.03) 1px, transparent 1px);
            background-size: 60px 60px;
        }

        .philosophy-card {
            transition: all 0.4s ease;
        }

        .philosophy-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px -15px rgba(5, 150, 105, 0.15);
        }

        .leader-message-section {
            margin: 5rem 0 4.5rem;
        }

        .leader-message-eyebrow {
            color: #059669;
            font-size: 2rem;
            line-height: 1.2;
            font-weight: 800;
            letter-spacing: 0.08em;
        }

        .leader-message-card {
            display: grid;
            grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
            gap: clamp(2rem, 6vw, 7rem);
            align-items: center;
            padding: clamp(2rem, 5vw, 4.75rem) clamp(1.5rem, 5vw, 4.5rem);
            border-radius: 2rem;
            background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
            border: 1px solid rgba(226, 232, 240, 0.85);
            box-shadow: 0 30px 80px -58px rgba(15, 23, 42, 0.45);
        }

        .leader-message-card + .leader-message-card {
            margin-top: 3rem;
        }

        .leader-message-card-reverse {
            grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
        }

        .leader-message-card-reverse .leader-message-photo {
            order: 2;
        }

        .leader-message-card-reverse .leader-message-copy {
            order: 1;
        }

        .leader-message-photo {
            overflow: hidden;
            border-radius: 1.25rem;
            background: #f1f5f9;
            box-shadow: 0 28px 68px -42px rgba(15, 23, 42, 0.55);
        }

        .leader-message-photo img {
            display: block;
            width: 100%;
            aspect-ratio: 4 / 5;
            object-fit: cover;
        }

        .leader-message-copy {
            color: #475569;
        }

        .leader-quote-mark {
            height: 2.5rem;
            color: rgba(5, 150, 105, 0.18);
            font-size: 4rem;
            line-height: 1;
            font-weight: 900;
            margin-bottom: 1rem;
        }

        .leader-name-row {
            display: flex;
            align-items: baseline;
            gap: 1rem;
            margin-bottom: 1.5rem;
            padding-left: 1rem;
            border-left: 4px solid #047857;
        }

        .leader-name {
            color: #0f172a;
            font-size: clamp(1.45rem, 3vw, 2rem);
            font-weight: 900;
            letter-spacing: 0;
        }

        .leader-title {
            color: #047857;
            font-size: 0.9rem;
            font-weight: 900;
            text-transform: uppercase;
        }

        .leader-message-copy p {
            font-size: 1rem;
            line-height: 2;
            color: #475569;
            max-width: 42rem;
        }

        .leader-signature {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 0.2rem;
            margin-top: 1.75rem;
            color: #64748b;
            font-style: italic;
            font-weight: 600;
        }

        @media (max-width: 900px) {
            .leader-message-card,
            .leader-message-card-reverse {
                grid-template-columns: 1fr;
            }

            .leader-message-card-reverse .leader-message-photo,
            .leader-message-card-reverse .leader-message-copy {
                order: initial;
            }

            .leader-message-photo {
                max-width: 24rem;
                margin: 0 auto;
            }
        }

        @media (max-width: 640px) {
            .leader-message-section {
                margin: 3.5rem 0;
            }

            .leader-name-row {
                flex-direction: column;
                gap: 0.35rem;
            }

            .leader-message-copy p {
                line-height: 1.85;
            }
        }

        .motto-char {
            display: inline-block;
            transition: all 0.3s;
        }

        .motto-char:hover {
            transform: translateY(-5px);
            color: #f59e0b;
        }

        .motto-panel {
            margin-top: 4.5rem;
        }

        .corporate-motto-label {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 14.25rem;
            margin: 0 auto 0.35rem;
            padding: 0.85rem 1.7rem;
            color: #6ee7b7;
            font-size: 0.9rem;
            font-weight: 900;
            line-height: 1;
            letter-spacing: 0.14em;
        }

        .corporate-motto-label + h2 {
            margin-top: 0.2rem;
        }

        @media (max-width: 640px) {
            .motto-panel {
                margin-top: 3rem;
                padding: 2.5rem 1.25rem !important;
            }

            .corporate-motto-label {
                min-width: 0;
                max-width: 100%;
                padding: 0.75rem 1rem;
                font-size: 0.76rem;
                letter-spacing: 0.1em;
            }
        }

        /* 宸ヨ壓鏍囩 */
        .process-tag {
            position: relative;
            overflow: hidden;
        }

        .process-tag::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, #059669, #f59e0b);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s;
        }

        .process-tag:hover::after {
            transform: scaleX(1);
        }

        .process-eyebrow {
            margin: 0 0 0.45rem;
            color: #6ee7b7;
            font-size: 0.9rem;
            font-weight: 900;
            line-height: 1;
            letter-spacing: 0.14em;
            text-transform: uppercase;
        }

        .rd-process-eyebrow {
            margin: 0 0 0.55rem;
            color: #059669;
            font-size: 0.9rem;
            font-weight: 900;
            line-height: 1;
            letter-spacing: 0.14em;
            text-transform: uppercase;
        }

        .research-process-card {
            position: relative;
            display: block;
            overflow: hidden;
            border-radius: 1.5rem;
            background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
            border: 1px solid rgba(209, 250, 229, 0.9);
            padding: 2rem;
            text-align: center;
            text-decoration: none;
            cursor: default;
            box-shadow: 0 18px 45px -28px rgba(15, 23, 42, 0.35);
            transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s, border-color 0.35s;
        }

        .research-process-card::after {
            content: '';
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            height: 4px;
            background: linear-gradient(90deg, #059669, #10b981);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.35s ease;
        }

        .research-process-card:hover {
            transform: translateY(-6px);
            border-color: rgba(16, 185, 129, 0.45);
            box-shadow: 0 28px 65px -32px rgba(5, 150, 105, 0.45);
        }

        .research-process-card:hover::after {
            transform: scaleX(1);
        }

        .research-icon {
            width: 4rem;
            height: 4rem;
            margin: 0 auto 1.25rem;
            border-radius: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #047857;
            background: #ecfdf5;
            transition: background 0.35s, color 0.35s;
        }

        .research-process-card:hover .research-icon {
            background: #059669;
            color: #ffffff;
        }

        .research-process-card h3 {
            font-size: 1.25rem;
            font-weight: 800;
            color: #0f172a;
            margin-bottom: 0.75rem;
        }

        .research-process-card p {
            color: #64748b;
            font-size: 0.925rem;
            line-height: 1.75;
        }

        .research-image-card {
            aspect-ratio: 4 / 3;
            margin: 0;
            overflow: hidden;
            border: 1px solid rgba(209, 250, 229, 0.9);
            border-radius: 1.5rem;
            background: #f8fafc;
            box-shadow: 0 18px 45px -28px rgba(15, 23, 42, 0.35);
        }

        .research-image-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .research-image-card:hover img {
            transform: scale(1.05);
        }

        .equipment-card {
            position: relative;
            overflow: hidden;
        }

        .equipment-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(5, 150, 105, 0.08), transparent);
            transform: rotate(45deg);
            transition: all 0.6s;
            opacity: 0;
        }

        .equipment-card:hover::before {
            opacity: 1;
            transform: rotate(45deg) translate(50%, 50%);
        }

        .equipment-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 2rem;
        }

        .equipment-list-item {
            display: flex;
            flex-direction: column;
            overflow: hidden;
            border-radius: 1.75rem;
            background: #ffffff;
            border: 1px solid rgba(226, 232, 240, 0.9);
            box-shadow: 0 24px 60px -36px rgba(15, 23, 42, 0.45);
            transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s, border-color 0.35s;
        }

        .equipment-list-item:hover {
            transform: translateY(-4px);
            border-color: rgba(16, 185, 129, 0.35);
            box-shadow: 0 34px 75px -42px rgba(5, 150, 105, 0.4);
        }

        .equipment-list-image {
            position: relative;
            min-height: 300px;
            aspect-ratio: 16 / 10;
            background: #e2e8f0;
            overflow: hidden;
        }

        .equipment-list-image img {
            width: 100%;
            height: 100%;
            min-height: 300px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .equipment-list-item:hover .equipment-list-image img {
            transform: scale(1.035);
        }

        .equipment-eyebrow {
            margin: 0 0 0.55rem;
            color: #059669;
            font-size: 0.9rem;
            font-weight: 900;
            line-height: 1;
            letter-spacing: 0.14em;
            text-transform: uppercase;
        }

        .equipment-list-content {
            display: flex;
            min-height: 300px;
            flex-direction: column;
            justify-content: center;
            padding: clamp(1.75rem, 3vw, 2.5rem);
        }

        @media (max-width: 1023px) {
            .equipment-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .equipment-list-image,
            .equipment-list-image img {
                min-height: 260px;
            }

            .equipment-list-content {
                min-height: auto;
            }
        }

        @media (max-width: 640px) {
            .equipment-grid {
                grid-template-columns: 1fr;
            }
        }

        .timeline-eyebrow {
            margin: 0 0 0.55rem;
            color: #059669;
            font-size: 0.9rem;
            font-weight: 900;
            line-height: 1;
            letter-spacing: 0.14em;
            text-transform: uppercase;
        }

        .contact-eyebrow {
            margin: 0 0 0.9rem;
            color: #059669;
            font-size: 0.9rem;
            font-weight: 900;
            line-height: 1;
            letter-spacing: 0.14em;
            text-transform: uppercase;
        }

        .contact-page {
            background: linear-gradient(180deg, #f8fafc 0%, #ffffff 46%, #f8fafc 100%);
            color: #0f172a;
        }

        .contact-hero {
            position: relative;
            overflow: hidden;
            padding: 9.5rem 1rem 4.5rem;
        }

        .contact-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(circle at 15% 20%, rgba(5, 150, 105, 0.08), transparent 28rem),
                radial-gradient(circle at 84% 38%, rgba(59, 130, 246, 0.08), transparent 30rem);
            pointer-events: none;
        }

        .contact-hero-inner {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
            align-items: center;
            gap: clamp(2rem, 5vw, 5rem);
            max-width: 78rem;
            margin: 0 auto;
        }

        .contact-hero-copy h1 {
            margin: 0;
            color: #0f172a;
            font-size: clamp(3.2rem, 7vw, 5.6rem);
            font-weight: 950;
            line-height: 0.98;
            letter-spacing: 0;
        }

        .contact-lead {
            max-width: 38rem;
            margin: 1.6rem 0 0;
            color: #475569;
            font-size: 1.08rem;
            line-height: 1.9;
            font-weight: 600;
        }

        .contact-quick-list {
            display: grid;
            gap: 1rem;
            margin-top: 2rem;
        }

        .contact-quick-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            width: min(100%, 30rem);
            padding: 1rem 1.1rem;
            border: 1px solid rgba(209, 250, 229, 0.95);
            border-radius: 1.15rem;
            background: rgba(255, 255, 255, 0.82);
            box-shadow: 0 24px 55px -42px rgba(15, 23, 42, 0.42);
        }

        .contact-quick-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 3rem;
            height: 3rem;
            border-radius: 0.95rem;
            background: #ecfdf5;
            color: #059669;
            flex: 0 0 auto;
        }

        .contact-quick-icon svg {
            width: 1.35rem;
            height: 1.35rem;
        }

        .contact-quick-item strong,
        .contact-quick-item span {
            display: block;
        }

        .contact-quick-item strong {
            color: #0f172a;
            font-size: 1rem;
            font-weight: 900;
        }

        .contact-quick-item span {
            margin-top: 0.25rem;
            color: #64748b;
            font-size: 0.86rem;
            font-weight: 700;
        }

        .contact-hero-media {
            position: relative;
            min-width: 0;
            overflow: hidden;
            border-radius: 1.75rem;
            background: #e2e8f0;
            border: 1px solid rgba(226, 232, 240, 0.9);
            box-shadow: 0 34px 80px -48px rgba(15, 23, 42, 0.55);
        }

        .contact-hero-media img {
            display: block;
            width: 100%;
            aspect-ratio: 980 / 620;
            object-fit: cover;
        }

        .contact-media-badge {
            position: absolute;
            left: 1.25rem;
            right: 1.25rem;
            bottom: 1.25rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            padding: 0.95rem 1rem;
            border-radius: 1rem;
            background: rgba(255, 255, 255, 0.92);
            box-shadow: 0 18px 40px -28px rgba(15, 23, 42, 0.55);
        }

        .contact-media-badge span {
            color: #059669;
            font-size: 0.78rem;
            font-weight: 950;
            letter-spacing: 0.16em;
        }

        .contact-media-badge strong {
            color: #334155;
            font-size: 0.9rem;
            font-weight: 800;
            text-align: right;
        }

        .contact-info-section {
            padding: 0 1rem 5rem;
        }

        .contact-info-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 1.5rem;
            max-width: 78rem;
            margin: 0 auto;
        }

        .contact-info-card {
            padding: clamp(1.75rem, 3vw, 2.5rem);
            border-radius: 1.5rem;
            background: #ffffff;
            border: 1px solid rgba(226, 232, 240, 0.95);
            box-shadow: 0 30px 70px -52px rgba(15, 23, 42, 0.5);
        }

        .contact-info-card-accent {
            background: linear-gradient(135deg, #ecfdf5 0%, #ffffff 68%);
            border-color: rgba(167, 243, 208, 0.9);
        }

        .contact-info-card > p {
            margin: 0 0 0.75rem;
            color: #059669;
            font-size: 0.82rem;
            font-weight: 950;
            letter-spacing: 0.14em;
        }

        .contact-info-card h2 {
            margin: 0 0 0.9rem;
            color: #0f172a;
            font-size: 1.75rem;
            line-height: 1.2;
            font-weight: 950;
        }

        .contact-info-card > span {
            display: block;
            color: #64748b;
            line-height: 1.75;
            font-weight: 600;
        }

        .contact-info-card dl {
            display: grid;
            gap: 0.8rem;
            margin: 1.5rem 0 0;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(226, 232, 240, 0.95);
        }

        .contact-info-card dl div {
            display: grid;
            grid-template-columns: 5rem minmax(0, 1fr);
            gap: 1rem;
        }

        .contact-info-card dt {
            color: #64748b;
            font-weight: 800;
        }

        .contact-info-card dd {
            margin: 0;
            color: #0f172a;
            font-weight: 900;
        }

        @media (max-width: 1023px) {
            .contact-hero {
                padding-top: 8rem;
            }

            .contact-hero-inner,
            .contact-info-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 640px) {
            .contact-hero {
                padding-top: 7rem;
                padding-bottom: 3rem;
            }

            .contact-hero-copy h1 {
                font-size: 3rem;
            }

            .contact-media-badge,
            .contact-info-card dl div {
                grid-template-columns: 1fr;
            }

            .contact-media-badge {
                align-items: flex-start;
                flex-direction: column;
            }

            .contact-media-badge strong {
                text-align: left;
            }
        }

        .contact-page-cyber {
            min-height: 100vh;
            background: #020617;
            color: #ffffff;
        }

        .contact-cyber-hero {
            position: relative;
            min-height: 760px;
            overflow: hidden;
            isolation: isolate;
            padding: 10rem 1rem 5rem;
            background: #020617;
        }

        .contact-cyber-bg,
        .contact-cyber-grid,
        .contact-cyber-scan {
            position: absolute;
            pointer-events: none;
        }

        .contact-cyber-bg {
            inset: 0;
            background-image:
                linear-gradient(90deg, rgba(2, 6, 23, 0.94), rgba(2, 6, 23, 0.72) 45%, rgba(2, 6, 23, 0.34)),
                url('../images/事务楼正面照（浅）.png');
            background-position: center;
            background-size: cover;
            transform: scale(1.02);
        }

        .contact-cyber-grid {
            inset: 0;
            background-image:
                linear-gradient(rgba(16, 185, 129, 0.14) 1px, transparent 1px),
                linear-gradient(90deg, rgba(16, 185, 129, 0.14) 1px, transparent 1px);
            background-size: 72px 72px;
            mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.18));
            animation: contactGridShift 18s linear infinite;
        }

        .contact-cyber-scan {
            top: 0;
            right: 0;
            left: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, rgba(52, 211, 153, 0.95), transparent);
            box-shadow: 0 0 24px rgba(52, 211, 153, 0.85);
            animation: contactScan 5s ease-in-out infinite;
        }

        @keyframes contactGridShift {
            to {
                background-position: 72px 72px;
            }
        }

        @keyframes contactScan {
            0%,
            100% {
                opacity: 0.12;
                transform: translateY(0);
            }

            50% {
                opacity: 1;
                transform: translateY(720px);
            }
        }

        .contact-cyber-shell {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
            align-items: center;
            gap: clamp(2rem, 5vw, 5rem);
            max-width: 78rem;
            margin: 0 auto;
        }

        .contact-cyber-copy {
            max-width: 46rem;
        }

        .contact-page-cyber .contact-eyebrow {
            margin: 0 0 1rem;
            color: #34d399;
        }

        .contact-cyber-copy h1 {
            margin: 0;
            color: #ffffff;
            font-size: clamp(4rem, 9vw, 7rem);
            font-weight: 950;
            line-height: 0.9;
            letter-spacing: 0;
            text-shadow: 0 0 34px rgba(16, 185, 129, 0.35);
        }

        .contact-cyber-copy p:not(.contact-eyebrow) {
            max-width: 42rem;
            margin: 1.8rem 0 0;
            color: rgba(226, 232, 240, 0.9);
            font-size: 1.18rem;
            font-weight: 700;
            line-height: 1.9;
        }

        .contact-cyber-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-top: 2.2rem;
        }

        .contact-cyber-actions a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 9.5rem;
            height: 3.2rem;
            border-radius: 999px;
            font-weight: 900;
            text-decoration: none;
            transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
        }

        .contact-cyber-actions a:first-child {
            color: #022c22;
            background: #10b981;
            box-shadow: 0 20px 42px -24px rgba(16, 185, 129, 0.75);
        }

        .contact-cyber-actions a:last-child {
            color: #d1fae5;
            border: 1px solid rgba(167, 243, 208, 0.45);
            background: rgba(15, 23, 42, 0.55);
            backdrop-filter: blur(14px);
        }

        .contact-cyber-actions a:hover {
            transform: translateY(-3px);
        }

        .contact-command-panel {
            position: relative;
            overflow: hidden;
            padding: 1.3rem;
            border: 1px solid rgba(52, 211, 153, 0.42);
            border-radius: 1.25rem;
            background: rgba(2, 6, 23, 0.62);
            box-shadow:
                0 30px 90px -46px rgba(16, 185, 129, 0.72),
                inset 0 0 0 1px rgba(255, 255, 255, 0.04);
            backdrop-filter: blur(20px);
        }

        .contact-command-panel::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(120deg, transparent 0%, rgba(52, 211, 153, 0.16) 45%, transparent 70%);
            transform: translateX(-120%);
            animation: contactPanelSweep 5.5s ease-in-out infinite;
            pointer-events: none;
        }

        @keyframes contactPanelSweep {
            0%,
            30% {
                transform: translateX(-120%);
            }

            70%,
            100% {
                transform: translateX(120%);
            }
        }

        .command-panel-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            padding-bottom: 1rem;
            margin-bottom: 1rem;
            color: #6ee7b7;
            font-size: 0.78rem;
            font-weight: 950;
            letter-spacing: 0.18em;
            border-bottom: 1px solid rgba(148, 163, 184, 0.22);
        }

        .command-panel-header i {
            width: 0.65rem;
            height: 0.65rem;
            border-radius: 50%;
            background: #34d399;
            box-shadow: 0 0 18px #34d399;
        }

        .command-panel-row {
            position: relative;
            display: grid;
            grid-template-columns: 4.5rem minmax(0, 1fr);
            gap: 1rem;
            padding: 1rem;
            margin-top: 0.75rem;
            border: 1px solid rgba(148, 163, 184, 0.16);
            border-radius: 0.95rem;
            background: rgba(15, 23, 42, 0.56);
        }

        .command-panel-row span {
            color: #94a3b8;
            font-weight: 800;
        }

        .command-panel-row strong {
            color: #f8fafc;
            font-weight: 900;
            word-break: break-word;
        }

        .contact-cyber-cards {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 1.25rem;
            max-width: 78rem;
            padding: 0 1rem 5rem;
            margin: -3rem auto 0;
        }

        .contact-cyber-card {
            min-height: 12rem;
            padding: 1.6rem;
            border: 1px solid rgba(52, 211, 153, 0.28);
            border-radius: 1.15rem;
            background: linear-gradient(180deg, rgba(15, 23, 42, 0.96), rgba(6, 78, 59, 0.86));
            box-shadow: 0 28px 70px -52px rgba(0, 0, 0, 0.9);
            transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
        }

        .contact-cyber-card:hover {
            border-color: rgba(110, 231, 183, 0.72);
            box-shadow: 0 32px 82px -48px rgba(16, 185, 129, 0.68);
            transform: translateY(-6px);
        }

        .contact-cyber-card span {
            color: #6ee7b7;
            font-weight: 950;
            letter-spacing: 0.14em;
        }

        .contact-cyber-card h2 {
            margin: 0.9rem 0 0.65rem;
            color: #ffffff;
            font-size: 1.55rem;
            font-weight: 950;
        }

        .contact-cyber-card p {
            color: #cbd5e1;
            font-weight: 700;
            line-height: 1.75;
        }

        @media (max-width: 1023px) {
            .contact-cyber-hero {
                min-height: auto;
                padding-top: 8rem;
            }

            .contact-cyber-shell,
            .contact-cyber-cards {
                grid-template-columns: 1fr;
            }

            .contact-cyber-cards {
                margin-top: 0;
            }
        }

        @media (max-width: 640px) {
            .contact-cyber-copy h1 {
                font-size: 3.6rem;
            }

            .command-panel-row {
                grid-template-columns: 1fr;
                gap: 0.35rem;
            }

            .contact-cyber-actions a {
                width: 100%;
            }
        }

        .contact-page-refined {
            background:
                linear-gradient(180deg, #ffffff 0%, #f8fafc 58%, #ffffff 100%);
            color: #0f172a;
        }

        .contact-refined-hero {
            position: relative;
            overflow: hidden;
            padding: 8.5rem 1rem 3rem;
        }

        .contact-refined-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(5, 150, 105, 0.035) 1px, transparent 1px),
                linear-gradient(90deg, rgba(5, 150, 105, 0.035) 1px, transparent 1px);
            background-size: 64px 64px;
            mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.72), transparent 72%);
            pointer-events: none;
        }

        .contact-refined-heading {
            position: relative;
            z-index: 1;
            max-width: 48rem;
            margin: 0 auto 3.25rem;
            text-align: center;
        }

        .contact-refined-heading h1 {
            margin: 0;
            color: #0f172a;
            font-size: clamp(3.2rem, 6vw, 5.35rem);
            font-weight: 950;
            line-height: 0.98;
            letter-spacing: 0;
        }

        .contact-refined-heading > p:not(.contact-eyebrow) {
            max-width: 46rem;
            margin: 1.2rem auto 0;
            color: #475569;
            font-size: 1.08rem;
            font-weight: 600;
            line-height: 1.9;
        }

        .contact-refined-panel {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
            gap: clamp(1.5rem, 3vw, 2.5rem);
            align-items: stretch;
            max-width: 78rem;
            margin: 0 auto;
            padding: clamp(1rem, 2vw, 1.4rem);
            border: 1px solid rgba(209, 250, 229, 0.95);
            border-radius: 1.65rem;
            background: rgba(255, 255, 255, 0.9);
            box-shadow: 0 30px 80px -56px rgba(15, 23, 42, 0.46);
            backdrop-filter: blur(16px);
        }

        .contact-refined-media {
            position: relative;
            overflow: hidden;
            min-height: 28rem;
            border-radius: 1.25rem;
            background: #e2e8f0;
        }

        .contact-refined-media img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .contact-refined-panel:hover .contact-refined-media img {
            transform: scale(1.035);
        }

        .contact-refined-badge {
            position: absolute;
            right: 1.25rem;
            bottom: 1.25rem;
            left: 1.25rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            padding: 1rem 1.1rem;
            border: 1px solid rgba(255, 255, 255, 0.72);
            border-radius: 1rem;
            background: rgba(255, 255, 255, 0.92);
            box-shadow: 0 18px 42px -30px rgba(15, 23, 42, 0.58);
            backdrop-filter: blur(16px);
        }

        .contact-refined-badge span {
            color: #059669;
            font-size: 0.76rem;
            font-weight: 950;
            letter-spacing: 0.14em;
        }

        .contact-refined-badge strong {
            color: #0f172a;
            font-weight: 900;
            white-space: nowrap;
        }

        .contact-refined-info {
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: clamp(1.5rem, 3vw, 2.5rem);
            border-radius: 1.25rem;
            background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
            border: 1px solid rgba(226, 232, 240, 0.92);
        }

        .contact-info-title span {
            display: block;
            color: #059669;
            font-size: 0.78rem;
            font-weight: 950;
            line-height: 1;
            letter-spacing: 0.14em;
        }

        .contact-info-title h2 {
            margin: 0.65rem 0 0;
            color: #0f172a;
            font-size: clamp(1.7rem, 3vw, 2.25rem);
            font-weight: 950;
            line-height: 1.15;
        }

        .contact-info-list {
            display: grid;
            gap: 0.85rem;
            margin: 1.6rem 0 0;
        }

        .contact-info-list div {
            display: grid;
            grid-template-columns: 5.5rem minmax(0, 1fr);
            gap: 1rem;
            padding: 0.95rem 1rem;
            border: 1px solid rgba(209, 250, 229, 0.85);
            border-radius: 0.95rem;
            background: #ffffff;
            transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
        }

        .contact-info-list div:hover {
            border-color: rgba(5, 150, 105, 0.34);
            box-shadow: 0 18px 42px -34px rgba(5, 150, 105, 0.55);
            transform: translateY(-2px);
        }

        .contact-info-list dt {
            color: #64748b;
            font-weight: 800;
        }

        .contact-info-list dd {
            margin: 0;
            color: #0f172a;
            font-weight: 900;
            word-break: break-word;
        }

        .contact-info-list a {
            color: #047857;
            text-decoration: none;
        }

        .contact-refined-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 0.9rem;
            margin-top: 1.6rem;
        }

        .contact-refined-actions a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 8.75rem;
            height: 3rem;
            border-radius: 999px;
            font-weight: 900;
            text-decoration: none;
            transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
        }

        .contact-refined-actions a:first-child {
            color: #ffffff;
            background: linear-gradient(135deg, #059669, #10b981);
            box-shadow: 0 18px 38px -24px rgba(5, 150, 105, 0.72);
        }

        .contact-refined-actions a:last-child {
            color: #047857;
            border: 1px solid rgba(5, 150, 105, 0.26);
            background: #ffffff;
        }

        .contact-refined-actions a:hover {
            transform: translateY(-2px);
        }

        .contact-refined-services {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 1.25rem;
            max-width: 78rem;
            margin: 0 auto;
            padding: 0 1rem 5rem;
        }

        .contact-service-card {
            position: relative;
            overflow: hidden;
            min-height: 13rem;
            padding: 1.7rem;
            border: 1px solid rgba(226, 232, 240, 0.95);
            border-radius: 1.25rem;
            background: #ffffff;
            box-shadow: 0 24px 60px -44px rgba(15, 23, 42, 0.42);
            transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
        }

        .contact-service-card::after {
            content: '';
            position: absolute;
            right: -2rem;
            bottom: -2rem;
            width: 8rem;
            height: 8rem;
            border-radius: 50%;
            background: rgba(209, 250, 229, 0.65);
            transition: transform 0.3s ease;
        }

        .contact-service-card:hover {
            border-color: rgba(16, 185, 129, 0.42);
            box-shadow: 0 30px 68px -44px rgba(5, 150, 105, 0.48);
            transform: translateY(-5px);
        }

        .contact-service-card:hover::after {
            transform: scale(1.18);
        }

        .contact-service-card span,
        .contact-service-card h2,
        .contact-service-card p {
            position: relative;
            z-index: 1;
        }

        .contact-service-card span {
            color: #059669;
            font-weight: 950;
            letter-spacing: 0.14em;
        }

        .contact-service-card h2 {
            margin: 0.85rem 0 0.75rem;
            color: #0f172a;
            font-size: 1.45rem;
            font-weight: 950;
        }

        .contact-service-card p {
            margin: 0;
            color: #64748b;
            font-weight: 650;
            line-height: 1.8;
        }

        @media (max-width: 1023px) {
            .contact-refined-panel,
            .contact-refined-services {
                grid-template-columns: 1fr;
            }

            .contact-refined-media {
                min-height: 22rem;
            }
        }

        @media (max-width: 640px) {
            .contact-refined-hero {
                padding-top: 7rem;
            }

            .contact-refined-heading {
                margin-bottom: 2rem;
            }

            .contact-refined-heading h1 {
                font-size: 3.1rem;
            }

            .contact-refined-badge,
            .contact-info-list div {
                grid-template-columns: 1fr;
            }

            .contact-refined-badge {
                align-items: flex-start;
                flex-direction: column;
            }

            .contact-refined-actions a {
                width: 100%;
            }
        }

        .contact-page-simple {
            background: #f8fafc;
            color: #0f172a;
        }

        .contact-simple-hero {
            padding: 9rem 1rem 2.25rem;
            background:
                linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
            border-bottom: 1px solid rgba(226, 232, 240, 0.8);
        }

        .contact-simple-wrap {
            display: grid;
            grid-template-columns: minmax(0, 1fr) minmax(320px, 0.55fr);
            gap: clamp(2rem, 5vw, 5rem);
            align-items: end;
            max-width: 76rem;
            margin: 0 auto;
        }

        .contact-simple-wrap-single {
            grid-template-columns: minmax(0, 0.72fr);
            align-items: center;
        }

        .contact-simple-copy {
            max-width: 48rem;
        }

        .contact-simple-copy h1 {
            margin: 0;
            color: #0f172a;
            font-size: clamp(3.5rem, 7vw, 6rem);
            font-weight: 950;
            line-height: 0.95;
            letter-spacing: 0;
        }

        .contact-simple-copy > p:not(.contact-eyebrow) {
            max-width: 43rem;
            margin: 1.4rem 0 0;
            color: #475569;
            font-size: 1.12rem;
            font-weight: 600;
            line-height: 1.9;
        }

        .contact-simple-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 0.9rem;
            margin-top: 2rem;
        }

        .contact-simple-actions a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 9rem;
            height: 3rem;
            border-radius: 999px;
            font-weight: 900;
            text-decoration: none;
            transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
        }

        .contact-simple-actions a:first-child {
            color: #ffffff;
            background: #059669;
            box-shadow: 0 18px 36px -24px rgba(5, 150, 105, 0.7);
        }

        .contact-simple-actions a:last-child {
            color: #047857;
            background: #ffffff;
            border: 1px solid rgba(5, 150, 105, 0.22);
        }

        .contact-simple-actions a:hover {
            transform: translateY(-2px);
        }

        .contact-simple-card {
            padding: 1.65rem;
            border: 1px solid rgba(209, 250, 229, 0.95);
            border-radius: 1.25rem;
            background: #ffffff;
            box-shadow: 0 26px 62px -48px rgba(15, 23, 42, 0.55);
        }

        .contact-simple-card > span {
            display: block;
            color: #059669;
            font-size: 0.78rem;
            font-weight: 950;
            line-height: 1;
            letter-spacing: 0.14em;
        }

        .contact-simple-card h2 {
            margin: 0.65rem 0 1.25rem;
            color: #0f172a;
            font-size: 1.65rem;
            font-weight: 950;
            line-height: 1.18;
        }

        .contact-simple-card dl {
            display: grid;
            gap: 0.85rem;
            margin: 0;
        }

        .contact-simple-card dl div {
            padding-bottom: 0.85rem;
            border-bottom: 1px solid rgba(226, 232, 240, 0.9);
        }

        .contact-simple-card dl div:last-child {
            padding-bottom: 0;
            border-bottom: 0;
        }

        .contact-simple-card dt {
            color: #64748b;
            font-size: 0.86rem;
            font-weight: 800;
        }

        .contact-simple-card dd {
            margin: 0.2rem 0 0;
            color: #0f172a;
            font-weight: 900;
            line-height: 1.55;
            word-break: break-word;
        }

        .contact-simple-card a {
            color: #047857;
            text-decoration: none;
        }

        .contact-simple-showcase {
            position: relative;
            max-width: 76rem;
            margin: 2.5rem auto 0;
            padding: 0 1rem;
        }

        .contact-simple-showcase img {
            display: block;
            width: 100%;
            height: clamp(18rem, 38vw, 31rem);
            object-fit: cover;
            border-radius: 1.35rem;
            box-shadow: 0 28px 70px -52px rgba(15, 23, 42, 0.6);
        }

        .contact-simple-showcase-caption {
            position: absolute;
            right: 2rem;
            bottom: 1rem;
            max-width: min(28rem, calc(100% - 4rem));
            padding: 1rem 1.15rem;
            border: 1px solid rgba(255, 255, 255, 0.72);
            border-radius: 1rem;
            background: rgba(255, 255, 255, 0.92);
            box-shadow: 0 18px 42px -30px rgba(15, 23, 42, 0.5);
            backdrop-filter: blur(14px);
        }

        .contact-simple-showcase-caption span {
            display: block;
            color: #059669;
            font-size: 0.75rem;
            font-weight: 950;
            letter-spacing: 0.14em;
        }

        .contact-simple-showcase-caption strong {
            display: block;
            margin-top: 0.35rem;
            color: #0f172a;
            font-weight: 900;
        }

        .contact-simple-services {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 1.25rem;
            max-width: 76rem;
            margin: 0 auto;
            padding: 1.5rem 1rem 5rem;
        }

        .contact-simple-service {
            padding: 1.45rem;
            border: 1px solid rgba(226, 232, 240, 0.95);
            border-radius: 1rem;
            background: #ffffff;
            transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
        }

        .contact-simple-service:hover {
            border-color: rgba(5, 150, 105, 0.35);
            box-shadow: 0 24px 56px -44px rgba(5, 150, 105, 0.48);
            transform: translateY(-4px);
        }

        .contact-simple-service span {
            color: #059669;
            font-size: 0.82rem;
            font-weight: 950;
            letter-spacing: 0.14em;
        }

        .contact-simple-service h2 {
            margin: 0.75rem 0 0.55rem;
            color: #0f172a;
            font-size: 1.35rem;
            font-weight: 950;
        }

        .contact-simple-service p {
            margin: 0;
            color: #64748b;
            font-weight: 650;
            line-height: 1.75;
        }

        .contact-window-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 1.25rem;
            max-width: 76rem;
            margin: 0 auto;
            padding: 1.5rem 1rem 5rem;
        }

        .contact-window-card {
            display: flex;
            flex-direction: column;
            min-height: 100%;
            border-color: rgba(167, 243, 208, 0.9);
            box-shadow: 0 24px 56px -46px rgba(15, 23, 42, 0.7);
        }

        .contact-window-card h2 {
            margin-bottom: 0.5rem;
            font-size: 1.5rem;
        }

        .contact-window-intro {
            margin: 0 0 1.35rem;
            color: #64748b;
            font-weight: 650;
            line-height: 1.7;
        }

        .contact-window-card dl {
            flex: 1;
        }

        @media (max-width: 1023px) {
            .contact-simple-wrap,
            .contact-simple-services,
            .contact-window-grid {
                grid-template-columns: 1fr;
            }

            .contact-simple-card {
                max-width: none;
            }

            .contact-window-grid {
                padding-top: 1rem;
            }
        }

        @media (max-width: 640px) {
            .contact-simple-hero {
                padding-top: 7rem;
            }

            .contact-simple-copy h1 {
                font-size: 3.1rem;
            }

            .contact-simple-actions a {
                width: 100%;
            }

            .contact-simple-showcase-caption {
                position: static;
                max-width: none;
                margin: -1.5rem 1rem 0;
            }
        }

        .timeline-item {
            position: relative;
            padding-left: 2rem;
            padding-bottom: 2rem;
            border-left: 2px solid #e2e8f0;
        }

        .timeline-item::before {
            content: '';
            position: absolute;
            left: -6px;
            top: 0;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #059669;
            border: 2px solid white;
            box-shadow: 0 0 0 4px rgba(5, 150, 105, 0.2);
        }

        .timeline-item:last-child {
            border-left: 2px solid transparent;
        }

        .timeline-item.active::before {
            background: #0f172a;
            box-shadow: 0 0 0 6px rgba(15, 23, 42, 0.2);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {

            0%,
            100% {
                box-shadow: 0 0 0 4px rgba(5, 150, 105, 0.2);
            }

            50% {
                box-shadow: 0 0 0 8px rgba(5, 150, 105, 0.1);
            }
        }

        .mobile-menu-panel {
            background: rgba(255, 255, 255, 0.96);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border: 1px solid rgba(226, 232, 240, 0.95);
            box-shadow: 0 24px 50px -24px rgba(15, 23, 42, 0.2);
        }

        .mobile-nav-link {
            display: block;
            padding: 0.85rem 1rem;
            border-radius: 0.9rem;
            color: #334155;
            font-weight: 600;
            transition: background-color 0.25s ease, color 0.25s ease;
        }

        .mobile-nav-link:hover {
            background: #f1f5f9;
            color: #059669;
        }

        .mobile-nav-link.active {
            background: #ecfdf5;
            color: #059669;
        }

        @media (max-width: 1024px) {
            .glow {
                width: 420px;
                height: 420px;
            }
        }

        @media (max-width: 768px) {
            .glow {
                width: 280px;
                height: 280px;
                opacity: 0.7;
            }

            .reveal {
                transform: translateY(24px);
            }

            #global-map {
                height: 420px !important;
            }
        }

        @media (max-width: 640px) {
            #global-map {
                height: 340px !important;
            }
        }

        #global-map .leaflet-control-attribution {
            right: 8px;
            bottom: 6px;
            margin: 0;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.62);
            color: rgba(51, 65, 85, 0.72);
            font-size: 8px;
            line-height: 1.1;
            padding: 1px 4px;
            transform: scale(0.72);
            transform-origin: right bottom;
            box-shadow: 0 3px 10px rgba(15, 23, 42, 0.06);
        }

        #global-map .leaflet-control-attribution a {
            color: rgba(4, 120, 87, 0.78);
            text-decoration: none;
        }

        .global-eyebrow {
            margin: 0 0 0.55rem;
            color: #059669;
            font-size: 0.9rem;
            font-weight: 900;
            line-height: 1;
            letter-spacing: 0.14em;
            text-transform: uppercase;
        }

        .global-map-card {
            padding: 24px;
            overflow: hidden;
            border: 1px solid rgba(15, 23, 42, 0.08);
            border-radius: 24px;
            background: #ffffff;
            box-shadow: 0 20px 60px rgba(15, 23, 42, 0.12);
        }

        .global-map-canvas {
            width: 100%;
            height: 720px;
            overflow: hidden;
            border: 1px solid #e2e8f0;
            border-radius: 20px;
        }

        @media (max-width: 1024px) {
            .global-map-canvas {
                height: 420px;
            }
        }

        @media (max-width: 640px) {
            .global-map-card {
                padding: 12px;
                border-radius: 18px;
            }

            .global-map-canvas {
                height: 340px;
                border-radius: 14px;
            }
        }

        #global-map .leaflet-control-layers {
            border: 0;
            border-radius: 0.875rem;
            box-shadow: 0 16px 40px -24px rgba(15, 23, 42, 0.45);
            overflow: hidden;
        }

        #global-map .leaflet-control-layers-expanded {
            padding: 0.625rem 0.75rem;
            color: #0f172a;
            font-size: 0.8125rem;
            font-weight: 700;
        }

        #global-map .global-map-label {
            position: relative;
            border: 0;
            border-radius: 0.75rem;
            background: #ffffff;
            color: #0f172a;
            box-shadow: 0 10px 26px rgba(15, 23, 42, 0.22);
            padding: 0.75rem 0.85rem;
            white-space: normal;
            width: 220px;
            max-width: 220px;
            line-height: 1.35;
            pointer-events: auto;
        }

        #global-map .global-map-label::before {
            content: '';
            position: absolute;
            left: 50%;
            bottom: -9px;
            width: 18px;
            height: 18px;
            background: #ffffff;
            transform: translateX(-50%) rotate(45deg);
            box-shadow: 5px 5px 12px rgba(15, 23, 42, 0.08);
            z-index: -1;
        }

        #global-map .global-map-label-name {
            font-size: 0.84rem;
            font-weight: 900;
            color: #0f172a;
            margin-bottom: 0.35rem;
            word-break: normal;
        }

        #global-map .global-map-label-address {
            font-size: 0.72rem;
            font-weight: 600;
            color: #475569;
            margin-bottom: 0.45rem;
            word-break: break-word;
        }

        #global-map .global-map-label-type {
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
            font-size: 0.72rem;
            font-weight: 900;
            color: #334155;
        }

        #global-map .global-map-label-type span {
            width: 0.45rem;
            height: 0.45rem;
            border-radius: 999px;
            display: inline-block;
        }

        /* 鍦板浘鏍囪鍔ㄧ敾 */
        .map-pin {
            animation: bounce 2s infinite;
        }

        @keyframes bounce {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-10px);
            }
        }

        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: #f1f5f9;
        }

        ::-webkit-scrollbar-thumb {
            background: #059669;
            border-radius: 4px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: #047857;
        }

        /* 鏃堕棿杞村浘鐗?*/
        .timeline-img {
            transition: all 0.4s ease;
        }

        .timeline-img:hover {
            transform: scale(1.05);
        }

        .btn-primary {
            background: linear-gradient(135deg, #059669 0%, #047857 100%);
            transition: all 0.3s ease;
        }

        .btn-primary:hover {
            background: linear-gradient(135deg, #047857 0%, #065f46 100%);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px -10px rgba(5, 150, 105, 0.4);
        }

        .btn-accent {
            background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
            transition: all 0.3s ease;
        }

        .btn-accent:hover {
            background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px -10px rgba(245, 158, 11, 0.4);
        }

        /* 鏍囩鏍峰紡 */
        .tag-green {
            background: rgba(5, 150, 105, 0.1);
            color: #059669;
        }

        .tag-orange {
            background: rgba(245, 158, 11, 0.1);
            color: #d97706;
        }

        .tag-blue {
            background: rgba(15, 23, 42, 0.08);
            color: #0f172a;
        }

        #greeting {
            background: linear-gradient(180deg, #ffffff 0%, #fbfdfb 100%);
        }

        #greeting .greeting-card {
            border-left: 6px solid #059669;
            background: linear-gradient(135deg, rgba(5, 150, 105, 0.04), rgba(255, 255, 255, 0.9));
            box-shadow: 0 8px 30px rgba(2, 6, 23, 0.06);
        }

        #greeting .greeting-content p {
            color: #334155;
            line-height: 1.85;
        }

        #greeting .text-center h2 {
            font-size: 3rem;
            line-height: 1.05;
        }

        #greeting .text-center p {
            font-size: 1.05rem;
        }

        @media (max-width: 768px) {
            #greeting .text-center h2 {
                font-size: 2.75rem;
            }

            #greeting .text-center p {
                font-size: 0.95rem;
            }
        }

        .greeting-portrait {
            border-radius: 12px;
            box-shadow: 0 30px 60px rgba(2, 6, 23, 0.08);
            background: transparent;
        }

        @media (max-width: 1024px) {
            #greeting .greeting-card {
                margin-bottom: 12px;
            }

            #greeting .greeting-content {
                padding: 1.25rem;
            }
        }

        @media (max-width: 640px) {
            .greeting-portrait {
                display: none;
            }
        }

        .person-card {
            transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s;
        }

        .person-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 30px 60px rgba(2, 6, 23, 0.09);
        }

        .person-img {
            flex-shrink: 0;
            box-shadow: 0 12px 30px rgba(2, 6, 23, 0.06);
            background: #fff;
        }

        @media (max-width: 768px) {
            #greeting {
                padding-top: 1.5rem;
                padding-bottom: 1.5rem;
            }

            .person-img {
            width: 72px;
            height: 72px;
        }
    }



        .leader-card {
            transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s;
            gap: 1.25rem;
        }

        .leader-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 40px 80px rgba(2, 6, 23, 0.10);
        }

        .leader-img {
            flex-shrink: 0;
            box-shadow: 0 18px 50px rgba(2, 6, 23, 0.08);
            background: #fff;
            object-fit: cover;
        }

        .leader-img.w-40 {
            width: 160px;
            height: 160px;
        }

        .leader-img.w-36 {
            width: 144px;
            height: 144px;
        }

        .leader-img-tall {
            width: 160px;
            height: 260px;
            object-fit: cover;
        }

        .leader-img-tall-sm {
            width: 144px;
            height: 240px;
            object-fit: cover;
        }

        @media (max-width: 1024px) {
            .leader-card {
                padding: 1.25rem;
            }

            .leader-img.w-40,
            .leader-img.w-36 {
                width: 120px;
                height: 120px;
            }

            .leader-img-tall {
                width: 120px;
                height: 200px;
            }

            .leader-img-tall-sm {
                width: 110px;
                height: 180px;
            }
        }

        @media (max-width: 640px) {
            .leader-card {
                flex-direction: column;
                align-items: flex-start;
            }

            .leader-img.w-40,
            .leader-img.w-36 {
                width: 96px;
                height: 96px;
            }

            .leader-img-tall {
                width: 96px;
                height: 160px;
            }

            .leader-img-tall-sm {
                width: 88px;
                height: 150px;
            }
        }

        #philosophy {
            --philo-accent: #059669;
        }

        #philosophy {
            --philo-accent: #059669;
        }

        #philosophy .text-4xl,
        #philosophy h2 {
            font-size: 3.2rem;
            /* 鏍囬鏇村ぇ */
            line-height: 1.03;
            letter-spacing: -0.02em;
        }

        @media (min-width: 1024px) {

            #philosophy .text-4xl,
            #philosophy h2 {
                font-size: 4rem;
            }
        }

        #philosophy .max-w-3xl p {
            font-size: 1.95rem;
            color: #334155;
            line-height: 1.85;
            font-weight: 500;
            word-break: keep-all;
            overflow-wrap: normal;
        }

        @media (min-width: 1024px) {
            #philosophy .max-w-3xl p {
                font-size: 2.4rem;
            }
        }

        @media (max-width: 640px) {

            #philosophy .max-w-3xl p {
                word-break: normal;
                overflow-wrap: break-word;
            }
        }


        .philo-paragraph {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.8rem;
        }

        .philo-line {
            display: block;
            text-align: center;
            letter-spacing: 0.01em;
            max-width: 100%;
            margin: 0 auto;
        }

        @media (min-width: 768px) {

            .philo-line {
                white-space: normal;
            }
        }

        .philo-line:first-child {
            white-space: nowrap;
            display: inline-block;
        }

        @media (max-width: 1400px) {
            .philo-line:first-child {
                white-space: normal;
                font-size: 1.6rem;
            }
        }

        @media (max-width: 1024px) {
            .philo-line:first-child {
                font-size: 1.35rem;
            }
        }

        @media (max-width: 767px) {

            .philo-line {
                white-space: normal;
            }
        }

        .philo-paragraph .philo-line:last-child {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .philo-inline {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            white-space: nowrap;
        }

        @media (max-width: 767px) {
            .philo-paragraph .philo-line:last-child {
                display: block;
                text-align: center;
            }

            .philo-inline {
                display: inline-block;
                white-space: normal;
            }
        }

        .philo-blocks {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
        }

        .philo-top,
        .philo-bottom {
            margin: 0;
            text-align: center;
        }

        .philo-top {
            white-space: nowrap;
        }

        .philo-bottom {
            white-space: normal;
            display: inline-block;
        }

        .philo-em {
            display: inline-block;
            white-space: nowrap;
            margin: 0 0.4rem;
        }

        @media (max-width: 1400px) {
            .philo-top {
                white-space: normal;
            }
        }

        @media (max-width: 1024px) {

            .philo-top,
            .philo-bottom {
                font-size: 1.35rem;
            }
        }

        @media (min-width: 1024px) {
            .about-right {
                display: block;
            }
        }

        .photo-frame {
            padding: 0;
            border-radius: 20px;
            background: transparent;
            border: none;
            box-shadow: 0 18px 50px rgba(2, 6, 23, 0.06);
            /* 绋嶅己鐨勯槾褰憋紝淇濇寔灞傛 */
            overflow: hidden;
        }

        .photo-frame img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 0;
            /* 鐢卞灞傚鍣ㄦ帶鍒跺渾瑙?*/
        }

        .photo-frame video {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 0;
        }

        .about-video-frame {
            width: 100%;
            max-width: 100%;
            height: clamp(260px, 42vw, 550px);
            aspect-ratio: 16 / 9;
            background: #0f172a;
            contain: layout paint;
        }

        .about-content-grid {
            display: grid;
            grid-template-columns: minmax(0, 1fr);
            gap: 2rem;
            align-items: start;
        }

        .about-video-column,
        .about-copy-column {
            min-width: 0;
        }

        @media (min-width: 1024px) {
            .about-content-grid {
                grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
            }
        }

        .about-video-lazy video { cursor: pointer; }
        .about-video-play {
            position: absolute;
            inset: 50% auto auto 50%;
            transform: translate(-50%, -50%);
            display: inline-flex;
            align-items: center;
            gap: .65rem;
            padding: .85rem 1.25rem;
            border-radius: 999px;
            color: #fff;
            background: rgb(2 44 34 / .88);
            box-shadow: 0 12px 30px rgb(0 0 0 / .25);
            transition: transform .2s ease, background .2s ease;
            z-index: 2;
        }
        .about-video-play:hover { transform: translate(-50%, -50%) scale(1.04); background: rgb(4 120 87 / .95); }
        .about-video-lazy.is-loaded .about-video-play { display: none; }

        @media (max-width: 768px) {
            .about-video-frame {
                aspect-ratio: 16 / 10;
                height: auto;
            }
        }

        #products .product-card.small-img .h-56 {
            height: 12rem;
            /* 192px */
        }

        @media (min-width: 1300px) {
            #products .product-card.small-img .h-56 {
                height: 16rem;
                /* 256px */
            }
        }

        @media (max-width: 768px) {
            #products .product-card.small-img .h-56 {
                height: 11rem;
                /* 176px */
            }
        }

        #products .product-card.small-img-sm .h-56 {
            height: 10rem;
            /* 160px */
        }

        @media (min-width: 1400px) {
            #products .product-card.small-img-sm .h-56 {
                height: 13.75rem;
                /* 220px */
            }
        }

        @media (max-width: 768px) {
            #products .product-card.small-img-sm .h-56 {
                height: 9rem;
                /* 144px */
            }
        }

        #products .product-card.small-img-sm .h-56 .group img {
            transform: scale(0.4);
            transform-origin: center;
            transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        }

        #products .product-card.small-img-sm .h-56 .group:hover img {
            transform: scale(0.44);
            /* 0.4 * 1.1 */
        }



        @media (min-width: 1400px) {
            .photo-frame img {
                height: 520px;
            }
        }

        @media (min-width: 1024px) {
            .process-list {
                display: flex;
                flex-wrap: wrap;
                justify-content: center;
                gap: 1.5rem;
                align-items: stretch;
            }

            .process-list>.process-tag {
                flex: 0 0 calc(25% - 1.125rem);
                max-width: calc(25% - 1.125rem);
                box-sizing: border-box;
            }
        }

        @media (min-width: 1400px) {
            .process-list {
                gap: 2rem;
            }

            .process-list>.process-tag {
                flex: 0 0 calc(25% - 1.5rem);
                max-width: calc(25% - 1.5rem);
            }
        }


        .badge-list {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px;
        }

        .ph-badge {
            flex: 0 0 calc(50% - 12px);
            max-width: calc(50% - 12px);
            box-sizing: border-box;
            display: flex;
            align-items: center;
            justify-content: center;
        }


        @media (min-width: 1024px) {

            .philo-bottom {
                white-space: nowrap;
            }
        }

        #philosophy .text-primary-600 {
            color: var(--philo-accent) !important;
            font-size: 1.12em;
        }

        #philosophy .philosophy-card {
            width: 15rem;
            /* 240px */
            padding: 1.15rem;
        }

        @media (min-width: 1024px) {
            #philosophy .philosophy-card {
                width: 17rem;
            }
        }

        #philosophy {
            padding-top: 0.75rem;
            padding-bottom: 4.5rem;
        }

        #philosophy .text-center {
            margin-bottom: 2.25rem;
        }


        /* Ensure both leader cards have equal height */
        .greeting-grid {
            align-items: stretch;
            /* grid items stretch vertically */
        }

        .greeting-grid>div {
            display: flex;
            flex-direction: column;
        }

        .greeting-grid>div>.leader-card {
            flex: 1 1 auto;
            display: flex;
            flex-direction: row;
            align-items: flex-start;
        }

        @media (max-width: 1024px) {
            .greeting-grid>div>.leader-card {
                flex-direction: row;
            }
        }

        @media (max-width: 640px) {
            .greeting-grid>div>.leader-card {
                flex-direction: column;
            }
        }



        .nav-btn {
            width: 7rem;
        }

        @media (max-width: 640px) {
            #philosophy .max-w-3xl.philo-blocks {
                gap: 0.65rem !important;
            }

            #philosophy .max-w-3xl .philo-top,
            #philosophy .max-w-3xl .philo-bottom {
                font-size: 1.05rem !important;
                line-height: 1.7 !important;
            }

            #philosophy .max-w-3xl .philo-em {
                margin: 0 0.12rem !important;
            }
        }

/* Shared page components */
.xianggai-map-marker {
            width: 22px;
            height: 22px;
            border-radius: 50%;
            border: 3px solid rgba(255, 255, 255, 0.95);
            box-shadow: 0 0 0 6px rgba(239, 68, 68, 0.25);
            background: #ef4444;
        }

        #products {
            background-color: #F5F7FA;
            min-height: 100vh;
        }

        body.products-page {
            padding-top: 5rem;
        }

        @media (min-width: 1024px) {
            body.products-page {
                padding-top: 6rem;
            }
        }

        #products .products-inner {
            max-width: 80rem;
            margin: 0 auto;
            padding: 16px 1rem 72px;
        }

        @media (min-width: 640px) {
            #products .products-inner {
                padding-left: 1.5rem;
                padding-right: 1.5rem;
            }
        }

        @media (min-width: 1024px) {
            #products .products-inner {
                padding-left: 2rem;
                padding-right: 2rem;
            }
        }

        #products .products-header {
            text-align: center;
            margin-bottom: 34px;
        }

        #products .products-header h2 {
            color: #059669;
            font-size: 16px;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 10px;
            font-weight: 700;
        }

        #products .products-header h1 {
            font-size: clamp(2.25rem, 4vw, 3.25rem);
            color: #333333;
            margin-bottom: 18px;
            font-weight: 800;
            line-height: 1.08;
        }

        #products .products-header p {
            color: #888888;
            font-size: 18px;
            font-weight: 500;
        }

        #products .category-nav {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 44px;
            flex-wrap: wrap;
        }

        #products .nav-btn {
            padding: 10px 24px;
            border: 1px solid #E0E0E0;
            background: #ffffff;
            border-radius: 30px;
            cursor: pointer;
            font-size: 15px;
            color: #888888;
            transition: all 0.3s ease;
            outline: none;
        }

        #products .nav-btn:hover {
            border-color: #2ECC71;
            color: #2ECC71;
        }

        #products .nav-btn.active {
            background-color: #ffffff;
            color: #047857;
            border-color: #d1fae5;
            box-shadow: none;
            font-weight: 700;
        }

        #products .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 26px;
        }

        @media (max-width: 640px) {
            #products .products-inner {
                padding-top: 16px;
                padding-bottom: 56px;
            }

            #products .category-nav {
                justify-content: flex-start;
                overflow-x: auto;
                flex-wrap: nowrap;
                padding-bottom: 6px;
            }

            #products .nav-btn {
                flex: 0 0 auto;
            }
        }

        #products .product-card {
            background: #FFFFFF;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            border: 1px solid transparent;
            position: relative;
            overflow: hidden;
        }

        #products .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
            border-color: rgba(46, 204, 113, 0.2);
        }

        /* Keep the original card hover and add the process-card style accent line. */
        #products .product-card::after {
            content: '';
            position: absolute;
            right: 0;
            bottom: 0;
            left: 0;
            height: 4px;
            background: linear-gradient(90deg, #059669, #10b981);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
        }

        #products .product-card:hover::after {
            transform: scaleX(1);
        }

        #products .card-image-placeholder {
            width: 100%;
            height: 230px;
            background-color: #ffffff;
            border-radius: 8px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #CBD5E0;
            font-size: 40px;
            overflow: hidden;
        }

        #products .card-image-placeholder img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            padding: 10px;
            transition: transform 0.35s ease;
        }

        #products .product-card:hover .card-image-placeholder img {
            transform: scale(1.1);
        }

        #products .product-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 10px;
        }

        #products .product-title {
            font-size: 18px;
            font-weight: bold;
            color: #333333;
        }

        #products .tag {
            font-size: 12px;
            padding: 4px 10px;
            border-radius: 4px;
            background-color: #E8F8F0;
            color: #27AE60;
            font-weight: 500;
        }

        #products .product-desc {
            font-size: 14px;
            color: #888888;
            line-height: 1.6;
            margin-bottom: 20px;
            flex-grow: 1;
        }

        #products .features {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            border-top: 1px solid #EEEEEE;
            padding-top: 15px;
        }

        #products .feature-item {
            font-size: 12px;
            color: #999999;
            display: flex;
            align-items: center;
        }

        #products .feature-item::before {
            content: '';
            display: inline-block;
            width: 4px;
            height: 4px;
            background-color: #2ECC71;
            border-radius: 50%;
            margin-right: 6px;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        #products .fade-in {
            animation: fadeIn 0.4s ease forwards;
        }

        #philosophy .philosophy-hero {
            max-width: 68rem;
            margin-left: auto;
            margin-right: auto;
            padding: clamp(0.75rem, 2vw, 1.5rem) clamp(1.25rem, 4vw, 3rem) 0;
        }

        #philosophy .philosophy-hero-title {
            font-size: clamp(2.75rem, 5.2vw, 4.5rem) !important;
            line-height: 1.05 !important;
            letter-spacing: 0 !important;
            font-weight: 900 !important;
            color: #0f172a;
            margin-bottom: 1.45rem !important;
        }

        #philosophy .philo-blocks {
            display: grid;
            gap: 1.15rem;
            max-width: 54rem !important;
        }

        #philosophy .philo-blocks .philo-top,
        #philosophy .philo-blocks .philo-bottom {
            font-size: clamp(1.55rem, 2.45vw, 2.35rem) !important;
            line-height: 1.65 !important;
            font-weight: 700 !important;
            color: #1e293b !important;
            letter-spacing: 0 !important;
            margin: 0;
        }

        #philosophy .philo-blocks .philo-em {
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
            color: #059669 !important;
            font-size: 1.06em !important;
            font-weight: 900 !important;
            text-shadow: none;
            white-space: nowrap;
        }

        #philosophy .philosophy-hero .mt-8 {
            margin-top: 2.4rem !important;
        }

        #philosophy .philosophy-hero .philosophy-card {
            width: min(100%, 17rem) !important;
            padding: 1.35rem 1.5rem !important;
            border-radius: 1.35rem !important;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(240, 253, 250, 0.7));
            box-shadow: 0 24px 56px -42px rgba(15, 23, 42, 0.5);
        }

        #philosophy .philosophy-hero .philosophy-card h3 {
            font-size: 1.45rem;
            font-weight: 900;
            color: #0f172a;
            margin-top: 0.3rem;
        }

        #philosophy .philosophy-hero .philosophy-card p {
            font-size: 1.16rem;
            line-height: 1.55;
            color: #64748b;
        }

        #philosophy .philosophy-hero .philosophy-card > div:first-child,
        #philosophy .philosophy-hero .philosophy-card h3,
        #philosophy .philosophy-hero .philosophy-card p {
            transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
        }

        #philosophy .philosophy-hero .philosophy-card:hover > div:first-child {
            transform: translateY(-2px);
        }

        #philosophy .philosophy-hero .philosophy-card:nth-child(1):hover {
            border-color: rgba(5, 150, 105, 0.38);
            background: linear-gradient(180deg, #ecfdf5, #ffffff);
            box-shadow: 0 28px 58px -34px rgba(5, 150, 105, 0.52);
        }

        #philosophy .philosophy-hero .philosophy-card:nth-child(1):hover > div:first-child {
            background-color: #059669 !important;
            color: #ffffff !important;
        }

        #philosophy .philosophy-hero .philosophy-card:nth-child(1):hover h3 {
            color: #047857;
        }

        #philosophy .philosophy-hero .philosophy-card:nth-child(2):hover {
            border-color: rgba(5, 150, 105, 0.34);
            background: linear-gradient(180deg, #ecfdf5, #ffffff);
            box-shadow: 0 28px 58px -34px rgba(5, 150, 105, 0.48);
        }

        #philosophy .philosophy-hero .philosophy-card:nth-child(2):hover > div:first-child {
            background-color: #059669 !important;
            color: #ffffff !important;
        }

        #philosophy .philosophy-hero .philosophy-card:nth-child(2):hover h3 {
            color: #047857;
        }

        #philosophy .philosophy-hero .philosophy-card:nth-child(3):hover {
            border-color: rgba(16, 185, 129, 0.34);
            background: linear-gradient(180deg, #f0fdf4, #ffffff);
            box-shadow: 0 28px 58px -34px rgba(16, 185, 129, 0.48);
        }

        #philosophy .philosophy-hero .philosophy-card:nth-child(3):hover > div:first-child {
            background-color: #10b981 !important;
            color: #ffffff !important;
        }

        #philosophy .philosophy-hero .philosophy-card:nth-child(3):hover h3 {
            color: #065f46;
        }

        @media (max-width: 640px) {
            #philosophy .philosophy-hero {
                padding-top: 0.75rem;
            }

            #philosophy .philosophy-hero-title {
                font-size: 2.35rem !important;
            }

            #philosophy .philo-blocks .philo-top,
            #philosophy .philo-blocks .philo-bottom {
                font-size: 1.28rem !important;
                line-height: 1.75 !important;
            }

            #philosophy .philo-blocks .philo-em {
                white-space: normal;
            }
        }

        #philosophy .philosophy-platforms {
            display: flex;
            justify-content: center;
            width: min(100%, 68rem);
            height: 15rem;
            margin-left: auto;
            margin-right: auto;
            overflow: hidden;
            border-radius: 0;
            box-shadow: 0 30px 70px -46px rgba(15, 23, 42, 0.5);
        }

        #philosophy .philosophy-platform-card {
            position: relative;
            flex: 1 1 0;
            width: auto !important;
            min-width: 0;
            height: 100%;
            padding: 0 !important;
            overflow: hidden;
            border: 0 !important;
            border-radius: 0 !important;
            background-position: center;
            background-size: cover;
            box-shadow: none !important;
            cursor: default;
            transition: flex 0.55s cubic-bezier(0.16, 1, 0.3, 1), filter 0.55s ease, transform 0.55s ease;
        }

        #philosophy .philosophy-hero .philosophy-platform-card {
            border-radius: 0 !important;
        }

        #philosophy .philosophy-platform-card:nth-child(1) {
            background-image: url('../images/全景照2.jpg');
        }

        #philosophy .philosophy-platform-card:nth-child(2) {
            background-image: url('../images/涂装.jpg');
        }

        #philosophy .philosophy-platform-card:nth-child(3) {
            background-image: url('../images/事务楼正面照（浅）.png');
        }

        #philosophy .philosophy-platforms:hover .philosophy-platform-card {
            flex: 0.78 1 0;
            filter: saturate(0.86);
        }

        #philosophy .philosophy-platforms .philosophy-platform-card:hover {
            flex: 1.75 1 0;
            filter: saturate(1.08);
        }

        #philosophy .philosophy-platform-overlay {
            position: absolute;
            inset: 0;
            background:
                linear-gradient(90deg, rgba(6, 78, 59, 0.78), rgba(5, 150, 105, 0.54)),
                linear-gradient(180deg, rgba(2, 44, 34, 0.18), rgba(6, 78, 59, 0.82));
            transition: background 0.45s ease, opacity 0.45s ease;
        }

        #philosophy .philosophy-platform-card:nth-child(2) .philosophy-platform-overlay {
            background:
                linear-gradient(90deg, rgba(2, 44, 34, 0.82), rgba(4, 120, 87, 0.58)),
                linear-gradient(180deg, rgba(6, 78, 59, 0.2), rgba(2, 44, 34, 0.82));
        }

        #philosophy .philosophy-platform-card:nth-child(3) .philosophy-platform-overlay {
            background:
                linear-gradient(90deg, rgba(6, 78, 59, 0.76), rgba(16, 185, 129, 0.5)),
                linear-gradient(180deg, rgba(5, 150, 105, 0.16), rgba(6, 78, 59, 0.78));
        }

        #philosophy .philosophy-platform-card:hover .philosophy-platform-overlay {
            background:
                linear-gradient(90deg, rgba(2, 44, 34, 0.84), rgba(5, 150, 105, 0.72)),
                linear-gradient(180deg, rgba(16, 185, 129, 0.12), rgba(6, 78, 59, 0.78));
        }

        #philosophy .philosophy-platform-content {
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            height: 100%;
            padding: 1.5rem;
            color: #ffffff;
            text-align: center;
            transition: align-items 0.45s ease, text-align 0.45s ease;
        }

        #philosophy .philosophy-platform-card:hover .philosophy-platform-content {
            align-items: flex-start;
            text-align: left;
            padding-left: 2rem;
            padding-right: 2rem;
        }

        #philosophy .philosophy-platform-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 3.5rem;
            height: 3.5rem;
            margin: 0 0 0.75rem;
            color: #ffffff;
            border: 1px solid rgba(255, 255, 255, 0.48);
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.14);
            backdrop-filter: blur(10px);
            transition: transform 0.35s ease, background 0.35s ease;
        }

        #philosophy .philosophy-platform-card:hover .philosophy-platform-icon {
            background: rgba(16, 185, 129, 0.86);
            transform: translateY(-3px);
        }

        #philosophy .philosophy-platform-card h3 {
            margin: 0;
            color: #ffffff !important;
            font-size: 1.5rem !important;
            font-weight: 950;
            line-height: 1.2;
        }

        #philosophy .philosophy-platform-card p {
            margin: 0.35rem 0 0;
            color: rgba(255, 255, 255, 0.82) !important;
            font-size: 1.05rem !important;
            font-weight: 750;
            line-height: 1.5;
        }

        #philosophy .philosophy-platform-card span {
            display: block;
            max-width: 19rem;
            margin-top: 1rem;
            color: rgba(255, 255, 255, 0.88);
            font-size: 0.95rem;
            font-weight: 650;
            line-height: 1.75;
            opacity: 0;
            transform: translateY(0.8rem);
            transition: opacity 0.35s ease, transform 0.35s ease;
        }

        #philosophy .philosophy-platform-card:hover span {
            opacity: 1;
            transform: translateY(0);
        }

        @media (max-width: 767px) {
            #philosophy .philosophy-platforms {
                flex-direction: column;
                height: auto;
                border-radius: 0;
            }

            #philosophy .philosophy-platform-card,
            #philosophy .philosophy-platforms:hover .philosophy-platform-card,
            #philosophy .philosophy-platforms .philosophy-platform-card:hover {
                flex: none;
                min-height: 12rem;
            }

            #philosophy .philosophy-platform-card span {
                opacity: 1;
                transform: none;
            }

            #philosophy .philosophy-platform-content,
            #philosophy .philosophy-platform-card:hover .philosophy-platform-content {
                align-items: flex-start;
                text-align: left;
                padding: 1.5rem;
            }
        }

/* Match the reference text-card dimensions across locale versions. */
#timeline .timeline-copy-card {
    width: 480px !important;
    max-width: 100% !important;
    min-height: 176px;
    box-sizing: border-box;
    overflow-wrap: anywhere;
}
