﻿        /* 錨點（#id）：平滑捲動；若系統開啟「減少動態效果」則維持瞬間跳轉 */
        @media (prefers-reduced-motion: no-preference) {
            html {
                scroll-behavior: smooth;
            }
        }

        /* 首屏 banner：全寬背景 + 左側漸變 + 左對齊標題／副標（勿用 flex 排字：大寬屏下子項會被壓窄致逐字直排） */
        .carousel-container {
            position: relative;
            width: 100%;
            height: clamp(400px, 68vh, 720px);
            background-color: #1a1510;
            background-image: linear-gradient(105deg, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.18) 42%, transparent 68%),
                url("/banner-2.jpg");
            background-position: center center, center 22%;
            background-size: cover, cover;
            background-repeat: no-repeat, no-repeat;
            margin: auto;
            overflow: hidden;
            display: block;
            z-index: 100;
            top: 0;
        }

        .carousel-container__scrim {
            position: absolute;
            inset: 0;
            pointer-events: none;
            z-index: 0;
            background: linear-gradient(90deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.08) 48%, transparent 72%);
        }

        .carousel-container .carousel-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .carousel-container .carousel-text {
            position: absolute;
            z-index: 1;
            left: max(24px, calc((100% - 1180px) / 2));
            top: 50%;
            transform: translateY(-50%);
            box-sizing: border-box;
            width: min(42rem, calc(100% - 2 * max(24px, calc((100% - 1180px) / 2))));
            max-width: min(720px, 92vw);
            margin: 0;
            padding: 0;
            text-align: left;
            color: #ffffff;
            writing-mode: horizontal-tb;
            word-break: normal;
            overflow-wrap: break-word;
            white-space: normal;
        }

        .carousel-container .carousel-text__headline {
            margin: 0 0 clamp(10px, 1.5vw, 18px);
            font-family: system-ui, -apple-system, "Segoe UI", "PingFang TC", "Microsoft JhengHei", sans-serif;
            font-size: clamp(2rem, 4.2vw, 3.25rem);
            font-weight: 500;
            line-height: 1.15;
            letter-spacing: -0.02em;
            text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
            writing-mode: horizontal-tb;
            word-break: normal;
            overflow-wrap: break-word;
        }

        .carousel-container .carousel-text__sub {
            margin: 0;
            max-width: none;
            font-family: system-ui, -apple-system, "Segoe UI", "PingFang TC", "Microsoft JhengHei", sans-serif;
            font-size: clamp(0.9375rem, 1.35vw, 1.1875rem);
            font-weight: 400;
            line-height: 1.55;
            color: rgba(255, 255, 255, 0.96);
            text-shadow: 0 1px 16px rgba(0, 0, 0, 0.35);
            writing-mode: horizontal-tb;
            word-break: normal;
            overflow-wrap: break-word;
        }

        .carousel-container .carousel-text__headline span,
        .carousel-container .carousel-text__sub span {
            display: inline;
            writing-mode: inherit;
            word-break: inherit;
        }

        .carousel-container .progress-bar-group {
            position: absolute;
            bottom: 30px;
            left: 0;
            right: 0;
            display: flex;
            gap: 6px;
            padding: 0 12px;
            justify-content: center;
        }

        .carousel-container .progress-bar-group .progress-bar {
            flex: 1;
            max-width: 80px;
            height: 5px;
            background-color: rgba(255, 255, 255, 0.5);
            border-radius: 4px;
            overflow: hidden;
        }

        .carousel-container .progress-bar-group .progress-bar .progress-inner {
            height: 100%;
            transition: width 0.05s linear;
            background-color: #2763e5;
            border-radius: 4px;
        }

        /* baner 样式 */
        .baner {
            color: var(--ex-home-textcolor2, #000);
            background: #f6f8fa;
        }

        /* 其他原有样式 */
        .introduce {
            background-image: linear-gradient(#25252d);
            background-size: 100% 170px;
            background-repeat: no-repeat;
            background-position: bottom;
        }

        .introduce .advantage-panel {
            padding-bottom: 70px;
        }

        .introduce .advantage-panel .header {
            padding-top: 120px;
            text-align: center;
        }

        .introduce .advantage-panel .header .title {
            text-align: center;
            font-size: 40px;
            font-weight: 700;
            color: #25252d;
            line-height: 56px;
        }

        .introduce .advantage-panel .header .describe {
            text-align: center;
            margin-top: 10px;
            margin-bottom: 70px;
        }

        .introduce .advantage-panel .header .describe .text {
            text-align: center;
            font-size: 24px;
            font-weight: 700;
            color: #25252d;
            line-height: 33px;
            display: inline-block;
            padding: 0 20px;
            position: relative;
        }

        .introduce .advantage-panel .header .describe .text:after {
            content: '';
            display: inline-block;
            width: 1px;
            height: 26px;
            background: #cfcfd4;
            position: absolute;
            right: 0;
            top: 50%;
            -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
        }

        .introduce .advantage-panel .body .card-box {
            background: #fff;
            transition: all 0.3s;
            margin: 20px;
        }

        .introduce .advantage-panel .body .card-box .picture {
            width: 100%;
            height: 150px;
            overflow: hidden;
        }

        .introduce .advantage-panel .body .card-box .picture .img {
            height: 100%;
            width: 100%;
            object-fit: cover;
        }

        .introduce .advantage-panel .body .card-box .content {
            height: 300px;
            padding: 30px;
            box-sizing: border-box;
        }

        .introduce .advantage-panel .body .card-box .content .title {
            font-size: 28px;
            font-weight: 700;
            color: #25252d;
            line-height: 40px;
            margin-bottom: 15px;
            transition: all 0.3s;
        }

        .introduce .advantage-panel .body .card-box .content .desc p {
            font-size: 16px;
            font-weight: 400;
            color: #63636c;
            line-height: 22px;
            margin-bottom: 5px;
            transition: all 0.3s;
        }

        .introduce .advantage-panel .body .card-box:hover .content .title,
        .introduce .advantage-panel .body .card-box:hover .content .desc p {
            color: #fff;
        }

        .introduce .advantage-panel .body .card-box:hover {
            background: #2763e5;
            -webkit-transform: scale(1.1);
            transform: scale(1.1);
        }

        .introduce .advantage-panel .body .card-box .content p:hover {
            color: #ffffff !important;
        }

        .drak {
            background: #25252d;
        }

        .drak .map-container {
            max-width: 1200px;
            margin: 0 auto;
            color: #fff;
            padding-top: 70px;
            padding-bottom: 57px;
        }

        .drak .map-container .map-header {
            color: #fff;
            padding: 0 20px;
        }

        .drak .map-container .map-header .title {
            font-size: 40px;
            font-weight: 800;
            color: #fff;
            line-height: 56px;
            margin-bottom: 12px;
        }

        .drak .map-container .map-header .secTitle {
            font-size: 19px;
            font-weight: 500;
            color: #fff;
            line-height: 26px;
            margin-bottom: 50px;
        }

        .drak .map-container .map-header .desc .text {
            font-size: 16px;
            font-weight: 400;
            color: #cfcfd4;
            line-height: 22px;
            margin-bottom: 10px;
        }

        .drak .map-container .map-panel {
            color: #fff;
            margin-top: 99px;
            position: relative;
            overflow: hidden;
        }

        .drak .map-container .map-panel .loaction {
            color: #fff;
            width: 21px;
            height: 28px;
            position: absolute;
        }

        .drak .map-container .map-panel .loaction .ripple-container {
            position: absolute;
            width: 101px;
            height: 101px;
            top: 50%;
            left: 50%;
            -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
        }

        .drak .map-container .map-panel .loaction .ripple-container .ripple {
            position: absolute;
            animation: ripple-data-v-122716a6 3s linear infinite;
            border-radius: 50%;
            width: 101px;
            height: 101px;
            background: #2763e5;
            opacity: 0;
        }


        @keyframes ripple-data-v-122716a6 {
            0% {
                -webkit-transform: scale(0.1);
                transform: scale(0.1);
                opacity: 0.15;
            }

            50% {
                opacity: 0.05;
                -webkit-transform: scale(2);
                transform: scale(2);
            }

            to {
                opacity: 0;
                -webkit-transform: scale(3);
                transform: scale(3);
            }
        }

        @keyframes bounce-data-v-122716a6 {
            0% {
                -webkit-transform: translateY(0);
                transform: translateY(0);
            }

            65% {
                -webkit-transform: translateY(-4px);
                transform: translateY(-4px);
            }

            to {
                -webkit-transform: translateY(0);
                transform: translateY(0);
            }
        }


        .baner .jss1809 {
            width: 100%;
            height: 48px;
            display: flex;
            background: #181818;
            justify-content: center;
        }

        .baner .jss1809 .jss1810 {
            color: #fff;
            width: 1176px;
            height: 48px;
            margin: 0 auto;
            display: flex;
            font-size: 14px;
            align-items: center;
            justify-content: space-between;
        }

        .baner .jss1809 .jss1810 .jss1811 {
            display: flex;
            align-items: center;
            height: 24px;
            overflow: hidden;
            position: relative;
        }

        .baner .jss1809 .jss1810 .jss1811 .home_scroll_container {
            margin-top: 24px;
            list-style: none;
            transition: transform 0.5s ease;
        }

        .baner .jss1809 .jss1810 .jss1811 .home_scroll_container li {
            font-size: 14px;
            height: 24px;
            line-height: 24px;
            text-align: left;
            cursor: pointer;
        }

        .baner .jss1809 .jss1810 .jss1814 {
            color: #fff;
            display: flex;
            align-items: center;
            flex-shrink: 0;
            margin-left: 10px;
            text-decoration-line: none;
        }

        .baner .market_container_title {
            margin-top: 100px;
            color: #060a0f;
            display: flex;
            justify-content: flex-start;
            font-size: 40px;
            font-style: normal;
            font-weight: 700;
            height: 56px;
            line-height: 56px;
            position: relative;
        }

        .baner .home-green {
            display: flex;
            justify-content: center;
            color: #18cb9e;
        }

        .white {
            background: #fff;
        }

        .white .download-panel {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            padding: 80px 20px;
        }

        .white .download-panel .left {
            padding-right: 65px;
            box-sizing: border-box;
            padding-top: 30px;
        }

        .white .download-panel .left .title {
            font-size: 40px;
            font-weight: 700;
            color: #25252d;
            line-height: 56px;
            margin-bottom: 4px;
        }

        .white .download-panel .left .secTitle {
            font-size: 32px;
            font-weight: 400;
            color: #25252d;
            line-height: 45px;
            margin-bottom: 5px;
        }

        .white .download-panel .left .describe .text {
            list-style: none;
            font-size: 24px;
            font-weight: 700;
            color: #25252d;
            line-height: 33px;
            margin-bottom: 5px;
        }

        .white .download-panel .left .download-code {
            font-family: PingFangSC-Regular, PingFang SC;
            margin-top: 40px;
        }

        .white .download-panel .left .download-code .download-list {
            font-family: PingFangSC-Regular, PingFang SC;
            list-style: none;
            display: flex;
            flex-wrap: wrap;
        }

        .white .download-panel .left .download-code .download-list .item {
            font-family: PingFangSC-Regular, PingFang SC;
            list-style: none;
            margin-right: 20px;
            position: relative;
            cursor: pointer;
            text-align: center;
        }

        .white .download-panel .left .download-code .download-list .item .img {
            list-style: none;
            cursor: pointer;
            text-align: center;
            width: 80px;
            height: 80px;
            border-radius: 10px;
            border: 1px solid #cfcfd4;
            display: flex;
            -webkit-box-pack: center;
            justify-content: center;
            -webkit-box-align: center;
            align-items: center;
        }

        .white .download-panel .left .download-code .download-list .item .img .ios {
            font-style: normal;
            background-repeat: no-repeat;
            height: 30px;
            width: 30px;
            background-position: 50%;
            background-image: url('./assets/jia/iph.png');
            /* 需替换为实际图片路径 */
            display: inline-block;
            background-size: 24px 30px;
        }

        .white .download-panel .left .download-code .download-list .item .img .android {
            font-style: normal;
            background-repeat: no-repeat;
            height: 30px;
            width: 30px;
            background-position: 50%;
            background-image: url('./assets/jia/anz.png');
            /* 需替换为实际图片路径 */
            display: inline-block;
            background-size: 26px 30px;
        }

        .white .download-panel .left .download-code .download-list .item .img .googlePlay {
            font-style: normal;
            background-repeat: no-repeat;
            height: 30px;
            width: 30px;
            background-position: 50%;
            display: inline-block;
            background-image: url('./assets/jia/guge.png');
            /* 需替换为实际图片路径 */
            background-size: 100% 100%;
        }

        .white .download-panel .left .download-code .download-list .item .img .mac {
            font-style: normal;
            background-repeat: no-repeat;
            height: 30px;
            width: 30px;
            background-position: 50%;
            background-image: url('./assets/jia/pc.png');
            /* 需替换为实际图片路径 */
            display: inline-block;
            background-size: 30px 27px;
        }

        .white .download-panel .left .download-code .download-list .item .img .pc {
            font-style: normal;
            background-repeat: no-repeat;
            height: 30px;
            width: 30px;
            background-position: 50%;
            display: inline-block;
            background-image: url('./assets/jia/win.png');
            /* 需替换为实际图片路径 */
            background-size: 25px 25px;
        }

        .white .download-panel .right {
            text-align: center;
            padding-top: 60px;
        }

        .white .download-panel .right img {
            width: 80%;
        }

        .light {
            background: #f6f8fa;
        }

        #common-header {
            position: relative;
            z-index: 10000;
        }

        .light .about-panel {
            max-width: 1200px;
            margin: 0 auto;
            padding: 120px 0 234px;
        }

        .light .about-panel .underline-title {
            text-align: -webkit-center;
        }

        .light .about-panel .underline-title .title {
            font-size: 40px;
            font-weight: 700;
            color: #25252d;
            line-height: 56px;
        }

        .light .about-panel .underline-title .title .underline {
            display: inline-block;
            margin-top: 30px;
            width: 100px;
            height: 4px;
            background: #2763e5;
        }

        .light .about-panel .list {
            margin-top: 205px;
            width: 100%;
            display: flex;
        }

        .light .about-panel .list .item {
            text-align: center;
        }

        .light .about-panel .list .item .info .number {
            text-align: center;
            font-size: 90px;
            font-weight: 700;
            color: #25252d;
            line-height: 90px;
        }

        .light .about-panel .list .item .info .unit {
            text-align: center;
            font-size: 18px;
            font-weight: 700;
            color: #25252d;
            line-height: 25px;
        }

        .light .about-panel .desc {
            text-align: center;
            margin-top: 30px;
        }

        .light .about-panel .desc p {
            font-size: 16px;
            font-weight: 400;
            color: #25252d;
            line-height: 22px;
            margin-bottom: 10px;
        }

        .carousel-image {
            width: 100%;
            height: 100%;
            object-fit: fill;
        }
        /* 默认隐藏所有语言块 */
        .lang-block {
            display: none;
        }

        body.disclaimer-modal-open {
            overflow: hidden;
        }

        /* 緊急聲明彈窗：深底、金銅強調（無藍色）、左對齊標題、聯絡雙欄 */
        #disclaimer-modal-overlay {
            position: fixed;
            inset: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(10, 12, 18, 0.82);
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 99999;
            padding: clamp(12px, 3vw, 24px);
            box-sizing: border-box;
            animation: disclaimerFadeIn 0.28s ease-out;
        }

        #disclaimer-modal-content {
            --dm-surface: #1a222e;
            --dm-accent: #8c3f3e;
            --dm-accent-hover: #a85352;
            --dm-accent-soft: rgba(140, 63, 62, 0.35);
            --dm-accent-muted: rgba(140, 63, 62, 0.18);
            --dm-scroll-track: #121820;
            --dm-scroll-thumb: #8c3f3e;
            --dm-scroll-thumb-hover: #a85352;
            --dm-emphasis-text: #e8ddd6;
            --dm-border-subtle: rgba(140, 63, 62, 0.28);

            background-color: var(--dm-surface);
            color: rgba(255, 255, 255, 0.9);
            padding: clamp(20px, 3.5vw, 32px) clamp(18px, 3.5vw, 28px) clamp(22px, 3.5vw, 30px);
            border-radius: 16px;
            max-width: 520px;
            width: 100%;
            position: relative;
            box-shadow: 0 28px 56px rgba(0, 0, 0, 0.5), 0 0 0 1px var(--dm-border-subtle);
            max-height: min(90vh, 860px);
            overflow-y: auto;
            animation: disclaimerSlideUp 0.36s ease-out;
            font-family: system-ui, -apple-system, "Segoe UI", "PingFang TC", "Microsoft JhengHei", sans-serif;
            scrollbar-width: thin;
            scrollbar-color: var(--dm-scroll-thumb) var(--dm-scroll-track);
        }

        #disclaimer-modal-content::-webkit-scrollbar {
            width: 8px;
        }

        #disclaimer-modal-content::-webkit-scrollbar-track {
            background: var(--dm-scroll-track);
            border-radius: 4px;
        }

        #disclaimer-modal-content::-webkit-scrollbar-thumb {
            background: var(--dm-scroll-thumb);
            border-radius: 4px;
            border: 2px solid var(--dm-surface);
        }

        #disclaimer-modal-content::-webkit-scrollbar-thumb:hover {
            background: var(--dm-scroll-thumb-hover);
        }

        .disclaimer-modal__header {
            margin: 0 0 clamp(18px, 2.8vw, 24px);
            padding: 0 44px 16px 0;
            border-bottom: 1px solid var(--dm-border-subtle);
        }

        .disclaimer-modal__header-inner {
            display: flex;
            align-items: center;
            gap: 14px;
            flex-wrap: wrap;
        }

        .disclaimer-modal__icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 42px;
            height: 42px;
            flex-shrink: 0;
            font-size: 1.15rem;
            line-height: 1;
            border-radius: 10px;
            background: var(--dm-accent-muted);
            border: 1px solid var(--dm-accent-soft);
        }

        .disclaimer-modal__title {
            margin: 0;
            flex: 1;
            min-width: 0;
            font-size: clamp(1.2rem, 2.8vw, 1.42rem);
            font-weight: 700;
            line-height: 1.3;
            letter-spacing: 0.05em;
            color: #f1f5f9;
            text-align: left;
            font-family: system-ui, -apple-system, "Segoe UI", "PingFang TC", "Microsoft JhengHei", "Noto Sans TC", sans-serif;
        }

        .lang-block[lang="en"] .disclaimer-modal__title {
            letter-spacing: 0.02em;
        }

        .disclaimer-modal__body {
            margin-bottom: 2px;
        }

        .disclaimer-modal__p {
            font-size: clamp(0.875rem, 2vw, 0.9375rem);
            line-height: 1.82;
            margin: 0 0 1.15em;
            text-align: left;
            color: rgba(248, 250, 252, 0.88);
        }

        .disclaimer-modal__p:last-child {
            margin-bottom: 0;
        }

        .disclaimer-modal__highlight {
            color: var(--dm-emphasis-text);
            font-weight: 700;
            text-decoration: underline;
            text-decoration-color: var(--dm-accent-soft);
            text-underline-offset: 0.2em;
        }

        .contact-info-modal__head .disclaimer-modal__highlight {
            text-decoration: none;
        }

        .disclaimer-modal__footer {
            margin-top: 1.35em;
            margin-bottom: 0 !important;
            padding-top: 1.1em;
            border-top: 1px solid var(--dm-border-subtle);
            color: rgba(226, 232, 240, 0.82);
            font-size: 0.92em;
            line-height: 1.78;
        }

        .contact-info-modal {
            margin: clamp(16px, 2.5vw, 22px) 0;
            padding: 0;
            background: rgba(0, 0, 0, 0.28);
            border: 1px solid var(--dm-border-subtle);
            border-radius: 12px;
            overflow: hidden;
        }

        .contact-info-modal__head {
            padding: 12px 16px 10px;
            font-size: 0.8125rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            border-bottom: 1px solid var(--dm-border-subtle);
            background: var(--dm-accent-muted);
        }

        .lang-block[lang="zh-Hant"] .contact-info-modal__head {
            text-transform: none;
            letter-spacing: 0.12em;
            font-size: 0.875rem;
        }

        .contact-info-modal__grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
        }

        .contact-info-modal__item {
            padding: 14px 16px 16px;
            display: flex;
            flex-direction: column;
            gap: 6px;
            border-right: 1px solid rgba(255, 255, 255, 0.06);
        }

        .contact-info-modal__item:last-child {
            border-right: none;
        }

        .contact-info-modal__label {
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--dm-accent-hover);
        }

        .lang-block[lang="zh-Hant"] .contact-info-modal__label {
            text-transform: none;
            letter-spacing: 0.1em;
            font-size: 0.75rem;
        }

        .contact-info-modal__value {
            font-size: clamp(0.8125rem, 1.9vw, 0.875rem);
            line-height: 1.45;
            color: rgba(248, 250, 252, 0.95);
            word-break: break-all;
        }

        #disclaimer-close-btn {
            position: absolute;
            top: 12px;
            right: 12px;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.06);
            border: none;
            border-radius: 10px;
            color: #94a3b8;
            font-size: 26px;
            font-weight: 300;
            line-height: 1;
            cursor: pointer;
            padding: 0;
            transition: color 0.2s, background 0.2s, transform 0.2s;
        }

        #disclaimer-close-btn:hover {
            color: #f1f5f9;
            background: rgba(255, 255, 255, 0.12);
        }

        #disclaimer-close-btn:focus-visible {
            outline: 2px solid var(--dm-accent);
            outline-offset: 2px;
        }

        @keyframes disclaimerFadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes disclaimerSlideUp {
            from { transform: translateY(16px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }

        @media (max-width: 768px) {
            #disclaimer-modal-content {
                padding: 18px 16px 20px;
            }

            .disclaimer-modal__header {
                padding-right: 48px;
                padding-bottom: 14px;
            }

            .disclaimer-modal__header-inner {
                gap: 10px;
            }

            .disclaimer-modal__icon {
                width: 38px;
                height: 38px;
                font-size: 1.05rem;
            }

            .disclaimer-modal__title {
                font-size: 1.12rem;
            }

            .disclaimer-modal__p,
            .contact-info-modal__value {
                font-size: 0.875rem;
            }

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

            .contact-info-modal__item {
                border-right: none;
                border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            }

            .contact-info-modal__item:last-child {
                border-bottom: none;
            }
        }
.photo-placeholder { overflow: hidden; }
.photo-placeholder img { width: 100%; }

        /* 新聞活動 — EFG Insights 三欄卡片 */
        .news-events-section--efg {
            padding: 48px 20px 64px;
            background: #fff;
        }
        .news-events-section--efg .news-events-section__inner {
            max-width: 1200px;
            margin: 0 auto;
        }
        .news-events-section--efg .strategic-text2 {
            margin-bottom: 28px;
        }
        .news-events-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
            align-items: stretch;
        }
        .news-card {
            display: flex;
            flex-direction: column;
            background: #fff;
            border: 1px solid #e8e8ec;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
            transition: box-shadow 0.2s ease, transform 0.2s ease;
        }
        .news-card:hover {
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
            transform: translateY(-2px);
        }
        .news-card__visual {
            position: relative;
            display: block;
            aspect-ratio: 548 / 250;
            overflow: hidden;
            background: #1a1d24;
            cursor: default;
        }
        .news-card__visual img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        .news-card__kicker {
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            margin: 0;
            padding: 28px 14px 12px;
            font-size: 12px;
            line-height: 1.35;
            font-weight: 600;
            letter-spacing: 0.02em;
            color: #fff;
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
            background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.2) 55%, transparent 100%);
        }
        .news-card__body {
            flex: 1;
            display: flex;
            flex-direction: column;
            padding: 18px 16px 20px;
        }
        .news-card__title {
            margin: 0 0 12px;
            font-size: 17px;
            font-weight: 700;
            line-height: 1.35;
            color: #111;
        }
        .news-card__text {
            flex: 1;
        }
        .news-card__text p {
            margin: 0 0 10px;
            font-size: 14px;
            line-height: 1.65;
            color: #444;
            text-align: justify;
        }
        .news-card__text p:last-child {
            margin-bottom: 0;
        }
        @media (max-width: 992px) {
            .news-events-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
        }

        /* 關於我們 —「我們的服務」雙欄圖卡 + 底部重疊白底文案（對齊 EFG 參考版式） */
        #AboutMe.about-services {
            box-sizing: border-box;
            width: 100%;
            background: #f4f4f5;
            border-bottom: 1px solid #e8e8ea;
            padding: clamp(48px, 6vw, 96px) max(24px, calc((100% - 1180px) / 2)) clamp(56px, 7vw, 100px);
        }

        #AboutMe.about-services .about-services__inner {
            box-sizing: border-box;
            max-width: 1180px;
            margin: 0 auto;
        }

        #AboutMe.about-services .about-services__header {
            text-align: center;
            max-width: 720px;
            margin: 0 auto clamp(40px, 5vw, 56px);
        }

        #AboutMe.about-services .about-services__title {
            margin: 0 0 16px;
            font-size: clamp(1.75rem, 3.2vw, 2.25rem);
            font-weight: 700;
            line-height: 1.2;
            letter-spacing: -0.02em;
            color: #1a1a1a;
        }

        #AboutMe.about-services .about-services__lead {
            margin: 0;
            font-size: clamp(0.9375rem, 1.15vw, 1.0625rem);
            line-height: 1.75;
            color: #555;
        }

        #AboutMe.about-services .about-services__grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: clamp(20px, 3vw, 32px);
            align-items: stretch;
        }

        #AboutMe.about-services .service-card {
            box-sizing: border-box;
            display: flex;
            flex-direction: column;
            min-width: 0;
            background: transparent;
        }

        #AboutMe.about-services .service-card__visual {
            position: relative;
            height: clamp(240px, 32vw, 340px);
            overflow: hidden;
            border-radius: 2px 2px 0 0;
            background: #e5e5e7;
        }

        #AboutMe.about-services .service-card__img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center 20%;
        }

        #AboutMe.about-services .service-card__panel {
            position: relative;
            z-index: 1;
            margin: clamp(-72px, -8vw, -56px) clamp(16px, 2.5vw, 28px) 0;
            padding: clamp(22px, 2.8vw, 28px) clamp(22px, 3vw, 32px) clamp(26px, 3.2vw, 32px);
            background: #ffffff;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
            border-radius: 2px;
        }

        #AboutMe.about-services .service-card__title {
            margin: 0 0 12px;
            font-size: clamp(1.125rem, 1.35vw, 1.25rem);
            font-weight: 700;
            line-height: 1.3;
            color: #1a1a1a;
        }

        #AboutMe.about-services .service-card__text {
            margin: 0;
            font-size: clamp(0.875rem, 1vw, 0.9375rem);
            line-height: 1.7;
            color: #444;
        }

        @media screen and (max-width: 768px) {
            #AboutMe.about-services .about-services__grid {
                grid-template-columns: 1fr;
            }

            #AboutMe.about-services .service-card__visual {
                height: clamp(220px, 48vw, 300px);
            }

            #AboutMe.about-services .service-card__panel {
                margin-top: clamp(-64px, -10vw, -48px);
            }
        }

        /* 獨立資產管理：頂部全寬橫幅（圖1）+ 白卡疊層內文 */
        .about-iam-panel {
            box-sizing: border-box;
            width: 100%;
            background: #f4f4f5;
            border-bottom: 1px solid #e8e8ea;
        }

        .about-iam-panel__hero-stack {
            position: relative;
            width: 100%;
            padding: 0 0 clamp(16px, 2.5vw, 32px);
        }

        .about-iam-panel__hero {
            position: relative;
            min-height: clamp(260px, 34vw, 420px);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: stretch;
            width: 100%;
            box-sizing: border-box;
            padding-left: max(24px, calc((100% - 1180px) / 2));
            padding-right: max(24px, calc((100% - 1180px) / 2));
            padding-bottom: clamp(52px, 7vw, 84px);
        }

        .about-iam-panel__hero-media {
            position: absolute;
            inset: 0;
            background-color: #2a2a2a;
            background-image: linear-gradient(105deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.32) 45%, rgba(0, 0, 0, 0.2) 100%),
                url("/banner-3.jpg");
            background-size: cover;
            background-position: center 28%;
            /* 圖1：橫幅右下大圓角 */
            border-radius: 0 0 clamp(36px, 6vw, 88px) 0;
        }

        .about-iam-panel__hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.2) 55%, rgba(0, 0, 0, 0.38) 100%);
            pointer-events: none;
            border-radius: inherit;
        }

        .about-iam-panel__hero-inner {
            position: relative;
            z-index: 1;
            box-sizing: border-box;
            width: 100%;
            max-width: 1180px;
            margin: 0 auto;
            padding: clamp(36px, 5vw, 56px) 0 clamp(8px, 1.5vw, 16px);
            flex: 0 0 auto;
            min-width: 0;
        }

        .about-iam-panel__hero .about-iam-panel__kicker {
            margin: 0 0 12px;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.88);
        }

        .about-iam-panel__hero .about-iam-panel__title {
            margin: 0 0 14px;
            max-width: min(40rem, 100%);
            font-size: clamp(2rem, 4.2vw, 2.85rem);
            font-weight: 700;
            line-height: 1.12;
            letter-spacing: -0.02em;
            color: #ffffff;
        }

        .about-iam-panel__hero .about-iam-panel__sub {
            margin: 0;
            max-width: min(44rem, 100%);
            font-size: clamp(0.9375rem, 1.2vw, 1.125rem);
            line-height: 1.65;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.94);
        }

        .about-iam-panel__intro-card {
            position: relative;
            z-index: 2;
            width: min(1180px, calc(100% - 32px));
            max-width: 100%;
            margin: clamp(-36px, -4.5vw, -20px) auto 0;
            padding: clamp(36px, 4.5vw, 52px) clamp(24px, 3.5vw, 48px) clamp(40px, 5vw, 56px);
            background: #ffffff;
            border-radius: 10px;
            box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.05);
            box-sizing: border-box;
        }

        .about-iam-panel__intro-inner {
            box-sizing: border-box;
            max-width: 880px;
            margin: 0 auto;
            text-align: left;
        }

        .about-iam-panel__section-title {
            margin: 0 0 14px;
            font-size: clamp(1.125rem, 2vw, 1.375rem);
            font-weight: 700;
            line-height: 1.3;
            color: #5c4f45;
        }

        .about-iam-panel__section-title--spaced {
            margin-top: clamp(28px, 3.5vw, 40px);
        }

        .about-iam-panel__p {
            margin: 0 0 1rem;
            font-size: clamp(0.9375rem, 1.1vw, 1rem);
            line-height: 1.75;
            color: #3d3d42;
        }

        .about-iam-panel__btn-touch {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin: 8px 0 0;
            padding: 12px 26px;
            font-size: 0.9375rem;
            font-weight: 700;
            color: #fff;
            background: linear-gradient(180deg, #8b2942 0%, #6b1f33 100%);
            border-radius: 3px;
            text-decoration: none;
            box-shadow: 0 4px 14px rgba(80, 20, 35, 0.28);
            transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
        }

        .about-iam-panel__btn-touch:hover {
            transform: translateY(-1px);
            filter: brightness(1.05);
            box-shadow: 0 6px 18px rgba(80, 20, 35, 0.34);
        }

        .about-iam-panel__btn-touch:focus-visible {
            outline: 2px solid #f97316;
            outline-offset: 3px;
        }

        .about-iam-panel__list {
            margin: clamp(18px, 2.2vw, 26px) 0 clamp(12px, 1.5vw, 18px);
            padding-left: 1.25rem;
            font-size: clamp(0.9375rem, 1.05vw, 1rem);
            line-height: 1.65;
            color: #333;
        }

        .about-iam-panel__list li {
            margin-bottom: 0.55rem;
        }

        .about-iam-panel__list li:last-child {
            margin-bottom: 0;
        }

        .about-iam-panel__note {
            margin: clamp(20px, 2.5vw, 28px) 0 clamp(14px, 1.8vw, 20px);
            font-size: 0.8125rem;
            line-height: 1.55;
            color: #64748b;
        }

        .about-iam-panel__cta {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 22px;
            font-size: 0.9375rem;
            font-weight: 700;
            color: #fff;
            background: linear-gradient(to top, #0044ab 0, #0052bc 100%);
            border-radius: 6px;
            text-decoration: none;
            box-shadow: 0 4px 14px rgba(0, 68, 171, 0.25);
            transition: transform 0.15s ease, box-shadow 0.15s ease;
        }

        .about-iam-panel__cta:hover {
            transform: translateY(-1px);
            box-shadow: 0 6px 18px rgba(0, 68, 171, 0.32);
        }

        .about-iam-panel__cta:focus-visible {
            outline: 2px solid #f97316;
            outline-offset: 3px;
        }

        /* IAM：與客戶及 IAM 合作流程（手風琴，對齊 EFG 官網） */
        .about-iam-workflow {
            margin-top: clamp(28px, 3.5vw, 40px);
            padding-top: clamp(24px, 3vw, 34px);
            border-top: 1px solid #e8e8ea;
        }

        .about-iam-workflow__title {
            margin: 0 0 12px;
            font-size: clamp(1.25rem, 2.2vw, 1.5rem);
            font-weight: 700;
            line-height: 1.25;
            color: #1a1a1a;
        }

        .about-iam-workflow__lead {
            margin: 0 0 clamp(20px, 2.5vw, 28px);
            font-size: clamp(0.9375rem, 1.08vw, 1rem);
            line-height: 1.65;
            color: #475569;
        }

        .about-iam-workflow__steps {
            border-top: 1px solid #e5e7eb;
        }

        .about-iam-workflow__item {
            border-bottom: 1px solid #e5e7eb;
        }

        .about-iam-workflow__item summary {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            list-style: none;
            cursor: pointer;
            padding: 16px 0 14px;
            font-size: clamp(0.9375rem, 1.05vw, 1.0625rem);
            font-weight: 600;
            color: #1e293b;
            user-select: none;
        }

        .about-iam-workflow__item summary::-webkit-details-marker {
            display: none;
        }

        .about-iam-workflow__summary-label {
            flex: 1;
            min-width: 0;
            text-align: left;
        }

        .about-iam-workflow__item summary::after {
            content: "";
            flex-shrink: 0;
            width: 8px;
            height: 8px;
            margin-top: -4px;
            border-right: 2px solid #64748b;
            border-bottom: 2px solid #64748b;
            transform: rotate(45deg);
            transition: transform 0.2s ease;
        }

        .about-iam-workflow__item[open] summary::after {
            margin-top: 2px;
            transform: rotate(-135deg);
        }

        .about-iam-workflow__body {
            padding: 0 28px 16px 0;
            font-size: clamp(0.875rem, 1vw, 0.9375rem);
            line-height: 1.65;
            color: #475569;
        }

        @media screen and (max-width: 520px) {
            .about-iam-workflow__body {
                padding-right: 0;
            }
        }

        .about-iam-workflow__fn {
            margin: 14px 0 0;
            font-size: 0.8125rem;
            line-height: 1.5;
            color: #64748b;
        }

        /* 關於我們下方 — 資產管理橫幅 + 公司概況白卡疊入同一視覺塊 + 負責任投資 */
        .about-asset-story {
            box-sizing: border-box;
            width: 100%;
        }

        .about-asset-story__hero-stack {
            position: relative;
            width: 100%;
            padding: 0 0 clamp(16px, 2.5vw, 32px);
        }

        .about-asset-story__hero {
            position: relative;
            min-height: clamp(248px, 30vw, 380px);
            /* 勿用 row + 單一子項：部分環境下 flex 子項會被壓成極窄寬度，中文逐字換行 */
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: stretch;
            width: 100%;
            box-sizing: border-box;
            padding-left: max(24px, calc((100% - 1180px) / 2));
            padding-right: max(24px, calc((100% - 1180px) / 2));
            /* 底部留白：供白卡疊上；略收減少「上下空洞」 */
            padding-bottom: clamp(40px, 6vw, 72px);
        }

        .about-asset-story__hero-media {
            position: absolute;
            inset: 0;
            background-color: #2a2a2a;
            background-image: linear-gradient(105deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.28) 42%, rgba(0, 0, 0, 0.12) 100%),
                url("/banner-1.jpg");
            background-size: cover;
            background-position: center 22%;
        }

        .about-asset-story__hero-overlay {
            position: absolute;
            inset: 0;
            /* 右側略加深，減少「大塊死黑空洞」感，仍保留左側讀字對比 */
            background: linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.22) 52%, rgba(0, 0, 0, 0.35) 100%);
            pointer-events: none;
        }

        .about-asset-story__hero-inner {
            position: relative;
            z-index: 1;
            box-sizing: border-box;
            width: 100%;
            max-width: 1180px;
            margin: 0 auto;
            padding: clamp(32px, 5vw, 56px) 0 clamp(12px, 2vw, 20px);
            flex: 0 0 auto;
            min-width: 0;
        }

        .about-asset-story__hero-title {
            margin: 0 0 12px;
            max-width: min(40rem, 100%);
            font-size: clamp(2rem, 4vw, 2.75rem);
            font-weight: 700;
            line-height: 1.15;
            letter-spacing: -0.02em;
            color: #ffffff;
            writing-mode: horizontal-tb;
            word-break: normal;
            overflow-wrap: break-word;
        }

        .about-asset-story__hero-lead {
            margin: 0;
            max-width: min(44rem, 100%);
            font-size: clamp(0.9375rem, 1.2vw, 1.125rem);
            line-height: 1.65;
            color: rgba(255, 255, 255, 0.94);
            writing-mode: horizontal-tb;
            word-break: normal;
            overflow-wrap: break-word;
        }

        .about-asset-story__hero-title span,
        .about-asset-story__hero-lead span {
            writing-mode: inherit;
            word-break: inherit;
        }

        .about-asset-story__hero-overview {
            position: relative;
            z-index: 2;
            /* 與站內主欄 1180 對齊，顯著加寬白卡，減少左右大留白 */
            width: min(1180px, calc(100% - 32px));
            max-width: 100%;
            margin: clamp(-32px, -4vw, -18px) auto 0;
            padding: clamp(36px, 5vw, 52px) clamp(28px, 4vw, 64px) clamp(40px, 5.5vw, 56px);
            background: #ffffff;
            border-radius: 10px;
            box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.05);
            box-sizing: border-box;
        }

        .about-asset-story__overview-inner {
            max-width: 100%;
            margin: 0 auto;
            text-align: left;
        }

        .about-asset-story__overview-inner > .about-asset-story__accent-title {
            margin: 0 0 12px;
        }

        .about-asset-story__hero-overview .about-asset-story__bar-lead {
            display: inline-block;
            width: fit-content;
            max-width: min(48rem, 100%);
            margin-left: auto;
            margin-right: auto;
            text-align: left;
        }

        .about-asset-story__hero-overview .about-asset-story__body {
            text-align: left;
            text-justify: auto;
            margin-left: auto;
            margin-right: auto;
        }

        .about-asset-story__accent-title {
            margin: 0 0 20px;
            font-size: clamp(1.5rem, 2.4vw, 1.875rem);
            font-weight: 700;
            line-height: 1.3;
            color: #926b45;
        }

        .about-asset-story__hero-overview .about-asset-story__accent-title {
            margin-bottom: 14px;
        }

        .about-asset-story__bar-lead {
            margin: 0 auto 24px;
            max-width: 100%;
            padding: 0 0 0 18px;
            border-left: 3px solid #c4a574;
            text-align: left;
            font-size: clamp(0.9375rem, 1.1vw, 1.0625rem);
            line-height: 1.75;
            color: #5c5c5c;
            word-break: normal;
            overflow-wrap: break-word;
        }

        .about-asset-story__overview-label {
            margin: 8px 0 14px;
            font-size: 0.9375rem;
            font-weight: 600;
            letter-spacing: 0.08em;
            color: #6b6b6b;
            text-transform: uppercase;
        }

        .about-asset-story__body {
            margin: 0 0 1rem;
            font-size: clamp(0.9375rem, 1.05vw, 1rem);
            line-height: 1.85;
            color: #555;
            text-align: left;
            text-justify: auto;
            word-break: normal;
            overflow-wrap: break-word;
        }

        .about-asset-story__overview-inner .about-asset-story__body:last-of-type {
            margin-bottom: 0;
        }

        .about-asset-story__responsible {
            background: #f5f5f6;
            padding: clamp(28px, 3.5vw, 48px) max(24px, calc((100% - 1180px) / 2)) clamp(32px, 4vw, 56px);
            border-top: 1px solid #e6e6e8;
        }

        .about-asset-story__responsible-inner {
            display: grid;
            grid-template-columns: minmax(0, 1fr) minmax(300px, 1.12fr);
            gap: clamp(20px, 2.5vw, 36px);
            align-items: stretch;
            max-width: 1180px;
            margin: 0 auto;
        }

        .about-asset-story__responsible-copy {
            min-width: 0;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 4px 0;
            max-width: 34rem;
        }

        .about-asset-story__responsible-copy .about-asset-story__accent-title {
            text-align: left;
            margin-bottom: 14px;
        }

        .about-asset-story__responsible-copy .about-asset-story__body {
            margin-bottom: 22px;
            text-align: left;
            text-justify: auto;
        }

        .about-asset-story__btn {
            display: inline-block;
            padding: 12px 28px;
            font-size: 0.9375rem;
            font-weight: 600;
            color: #ffffff;
            text-decoration: none;
            background-color: #8c3f3e;
            border-radius: 2px;
            transition: background-color 0.2s ease, opacity 0.2s ease;
        }

        .about-asset-story__btn:hover {
            background-color: #6d312f;
        }

        .about-asset-story__btn:focus-visible {
            outline: 2px solid #8c3f3e;
            outline-offset: 3px;
        }

        .about-asset-story__responsible-visual {
            min-height: min(360px, 42vw);
            border-radius: 4px;
            overflow: hidden;
            background: #e8e8ea;
            display: flex;
            align-items: stretch;
        }

        .about-asset-story__responsible-img {
            display: block;
            width: 100%;
            height: 100%;
            min-height: 240px;
            object-fit: cover;
            object-position: center 28%;
        }

        @media screen and (max-width: 900px) {
            .about-asset-story__responsible-inner {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .about-asset-story__responsible-copy {
                max-width: none;
            }

            .about-asset-story__responsible-visual {
                min-height: 220px;
                order: -1;
            }

            .about-asset-story__responsible-img {
                min-height: 220px;
                max-height: 48vw;
            }

            .about-asset-story__responsible-copy .about-asset-story__accent-title {
                text-align: center;
            }

            .about-asset-story__responsible-copy {
                text-align: center;
                align-items: center;
            }

            .about-asset-story__responsible-copy .about-asset-story__body {
                text-align: left;
            }
        }

        @media screen and (max-width: 480px) {
            .about-asset-story__overview-inner .about-asset-story__body,
            .about-asset-story__responsible-copy .about-asset-story__body {
                text-align: left;
                text-justify: auto;
            }
        }

        /* 首頁 #video：手機版高度隨影片比例自適應（覆蓋 index-wpr-used 的 41vw） */
        @media screen and (max-width: 768px) {
            .video {
                height: auto !important;
            }
        }