/* ==================== 全局樣式 ==================== */
:root {
    --primary-color: #0056b3;
    --secondary-color: #0072E3;
    --text-color: #333;
    --white: #ffffff;
    --black: #000000;
    --shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', 'Microsoft JhengHei', Arial, sans-serif;
}

body {
    line-height: 1.6;
    color: var(--text-color);
    background:
        radial-gradient(1100px 520px at -8% -12%, rgba(12, 108, 196, 0.14), rgba(12, 108, 196, 0)),
        radial-gradient(900px 460px at 108% 0%, rgba(0, 180, 219, 0.12), rgba(0, 180, 219, 0)),
        linear-gradient(180deg, #eff6ff 0%, #f8fbff 40%, #f2f7ff 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==================== 導航列樣式 ==================== */
.navbar {
    background: linear-gradient(
        145deg,
        #FFFFFF 0%,
        #0066CC 10%,
        #0066CC 35%,
        #FFFFFF 60%,
        #FFFFFF 70%,
        #F9F900 90%
    );
    padding: 0.82rem 0;
    box-shadow: 0 10px 24px rgba(5, 40, 79, 0.2);
    position: sticky;
    top: 0;
    z-index: 100;
    overflow: hidden;
    min-height: 96px;
}

.navbar::before {
    content: "";
    position: absolute;
    right: -2%;
    top: -24%;
    width: 48%;
    height: 180%;
    background:
        radial-gradient(circle at 92% 8%, rgba(255,255,255,0.56) 0%, rgba(255,255,255,0.2) 14%, rgba(255,255,255,0) 34%),
        repeating-linear-gradient(136deg, rgba(255,255,255,0.24) 0 2px, rgba(255,255,255,0.04) 2px 10px, rgba(255,255,255,0) 10px 22px),
        linear-gradient(136deg, rgba(255,255,255,0.26) 0%, rgba(255,255,255,0.09) 24%, rgba(255,255,255,0.02) 42%, rgba(255,255,255,0) 64%);
    opacity: 0.92;
    transform: rotate(-6deg);
    pointer-events: none;
}

.navbar::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(255,255,255,0.15), rgba(255,255,255,0.7), rgba(255,255,255,0.15));
    pointer-events: none;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 24px;
    min-height: 76px;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 2px solid rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.15);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 8px;
}

.nav-toggle-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
}

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

.logo-img {
    width: 84px;
    height: 94px;
    object-fit: contain;
    flex-shrink: 0;
    margin-right: 2px;
}

.company-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.company-name {
    color: var(--white);
    font-size: 1.58rem;
    font-weight: 700;
    letter-spacing: 0.6px;
    line-height: 1.12;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.24);
}

.company-enname {
    color: #f8fbff;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.2px;
}

.company-fullname {
    color: #0f366b;
    font-size: 0.79rem;
    font-weight: 700;
    letter-spacing: 0.7px;
    margin-top: 2px;
}

.nav-links {
    display: flex;
    gap: 0.68rem;
    list-style: none;
}

/* ==================== 首頁樣式 ==================== */
.hero {
    background: linear-gradient(rgba(0,43,92,0.5), rgba(0,43,92,0.5)),
                url('/releases/zh-20260907-005000/images/background.jpg');
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    margin-top: -70px;
    padding-top: 20px;
}

.hero, .fixed-hero {
    height: 60vh !important; /* 強制設定 */
    min-height: unset;  /* 避免最小高度影響 */
    max-height: unset;  /* 避免最大高度影響 */
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(42,90,142,0.3);
}

/* ==================== 頁腳樣式 ==================== */
.footer {
    background-color: #002b5c;
    color: var(--white);
    padding: 2rem 0;
    margin-top: 4rem;
    text-align: center;
}

/* ==================== 響應式設計 ==================== */
@media (max-width: 768px) {
    .nav-container {
        flex-wrap: wrap;
        row-gap: 10px;
        padding: 8px 14px 12px;
    }

    .logo {
        gap: 8px;
    }

    .logo-img {
        width: 64px;
        height: 72px;
    }

    .company-name {
        font-size: 1.15rem;
    }

    .company-enname,
    .company-fullname {
        font-size: 0.74rem;
    }

    .nav-links {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
        gap: 8px;
        padding: 4px 0 2px;
    }

    .nav-links li a {
        width: 100%;
        height: 42px;
    }

    .nav-toggle {
        display: none;
    }

    nav.navbar.nav-open .nav-links {
        display: grid;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }
}

/* ==================== 公司簡介頁面樣式 ==================== */
.about-page {
    padding: 5px 0 50px 0;  /* 保留適當的頂部空間 */
    text-align: center;
}

/* 公司簡介主內容樣式 */
.about-page .container {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
}

/* 三張照片樣式 */
.hero-grid {
    display: grid;
    grid-template-columns: repeat(3, calc(33.33% - 20px));
    gap: 20px;  /* 照片之間的間隔 */
    padding: 20px;  /* 外層間隔 */
    margin: 30px 0;  /* 上下留有適當空間 */
}

.hero-box {
    background-size: cover;
    background-position: center;
    height: 400px;  /* 固定照片高度 */
    border-radius: 15px;  /* 圓角 */
    overflow: hidden;  /* 隱藏超出部分 */
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);  /* 陰影 */
    transition: transform 0.3s ease;  /* 滑鼠懸停動畫 */
    position: relative;  /* 用於覆蓋層 */
}

.hero-box:hover {
    transform: translateY(-5px);  /* 滑鼠懸停時向上移動 */
    cursor: pointer;  /* 滑鼠指針變為手 */
}

.hero-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.3));  /* 遮罩層 */
    border-radius: 15px;
}

/* 歷史時間軸樣式 */
.history-section {
    padding: 50px 20px;
    background-color: #f4f4f4;
}

.timeline {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    background: #fff;
    padding: 20px;
    margin: 10px 0;
    border-left: 5px solid var(--primary-color);
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.timeline-item h3 {
    color: var(--primary-color);
    margin-bottom: 8px;
}

/* 願景與價值觀樣式 */
.vision-section {
    padding: 50px 0;
}

.vision-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 20px;
}

.vision-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.vision-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.vision-card p {
    color: #666;
    line-height: 1.6;
}

/* 公司簡介頁面響應式設計 */
@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .hero-box {
        height: 300px;
    }

    .vision-grid {
        grid-template-columns: 1fr;
    }

    .timeline {
        max-width: 100%;
    }
}


/* ==================== 產品介紹頁面樣式 ==================== */
.products-page {
    padding: 50px 0;
    text-align: center;
}

.products-page .page-header {
    background: linear-gradient(rgba(0, 43, 92, 0.8), rgba(0, 43, 92, 0.8));
    background-size: cover;
    background-position: center;
    padding: 100px 20px;
    color: var(--white);
}

.suppliers-section {
    padding: 50px 20px;
}

.supplier-card {
    background: #ffffff;
    padding: 20px;
    margin: 20px 0;
    box-shadow: var(--shadow);
    border-radius: 8px;
}

/* ==================== 聯絡我們頁面樣式 ==================== */
.contact-page {
    padding: 50px 0;
}

.contact-hero {
    text-align: center;
    padding: 50px 20px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.contact-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.contact-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-map {
    margin: 50px 0;
}

.map-container {
    width: 100%;
    height: 400px;
    margin-top: 20px;
}

.contact-form {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* ==================== 導覽列按鈕樣式 - 現代玻璃擬態設計 ==================== */
 
.nav-links li a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 96px;
    height: 40px;
    color: #f8fcff !important;
    background: linear-gradient(180deg, #2aa0ec 0%, #2382de 53%, #1f6ccf 100%) !important;
    border: 1px solid #6dc7ff !important;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.2px;
    border-radius: 999px;
    text-decoration: none !important;
    transition: all 0.3s ease-in-out;
    box-shadow: inset 0 2px 0 rgba(255,255,255,0.48), inset 0 -1px 0 rgba(14,71,136,0.45), 0 6px 14px rgba(8, 43, 85, 0.28);
    overflow: hidden;
}

/* 按鈕發光效果 */
.nav-links li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.nav-links li a:hover::before {
    left: 100%;
}
 
.nav-links li a:hover {
    background: linear-gradient(180deg, #42b6f6 0%, #2f94e5 53%, #2a7ddd 100%) !important;
    border-color: #8dd8ff !important;
    transform: translateY(-2px);
    box-shadow: inset 0 2px 0 rgba(255,255,255,0.65), inset 0 -1px 0 rgba(13,67,130,0.42), 0 9px 18px rgba(7, 47, 94, 0.35);
    text-decoration: none !important;
}

 
.nav-links li a.active {
    background: linear-gradient(180deg, #ffffff, #f0f8ff) !important;
    border-color: rgba(255,255,255,0.95) !important;
    color: #0d4b93 !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.96), 0 8px 18px rgba(9, 47, 92, 0.28);
    text-decoration: none !important;
}

/* 按鈕點擊效果 */
.nav-links li a:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* ==================== 其他修正樣式 ==================== */
.fixed-hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    margin: 0;
    padding: 0;
}

/* ==================== 公司簡介 - 三格背景圖片 ==================== */
.hero-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    height: 80vh;
}

.hero-box {
    background-size: cover;
    background-position: center;
    height: 100%;
}

/* ==================== 響應式設計 - 公司簡介頁面 ==================== */
@media (max-width: 768px) {
    .hero-grid {
        display: flex;
        flex-direction: column;
        height: auto;
    }

    .hero-box {
        height: 33vh;
        width: 100%;
    }
}

.cta-button {
    display: block;
    width: 200px;
    margin: 20px auto 0;
}

/* ==================== 表單按鈕樣式 ==================== */
.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(42,90,142,0.3);
}

/* 合作夥伴Logo框框樣式 */
.partner-logo {
    display: inline-block;
    width: 200px;  /* 框框寬度 */
    height: 100px; /* 框框高度 */
    margin: 20px;  /* 間隔 */
    border: 3px solid transparent;  /* 無色邊框 */
    border-radius: 10px;  /* 輪廓角度 */
    transition: transform 0.3s ease;  /* 氣動效果 */
    overflow: hidden;  /* 隱藏超出框框的部分 */
}

.partner-logo:hover {
    transform: scale(1.05);  /* Hover時放大效果 */
    cursor: pointer;  /* 滑鼠指針變手 */
}

.partner-logo img {
    width: 100%;  /* 圖片寬度填滿框框 */
    height: 100%;  /* 圖片高度填滿框框 */
    object-fit: contain;  /* 圖片比例不變，適應框框 */
}

/* 響應式設計針對行動裝置 */
@media (max-width: 768px) {
    .partner-logo {
        width: 150px;  /* 行動裝置框框寬度 */
        height: 80px;  /* 行動裝置框框高度 */
        margin: 10px;  /* 行動裝置間隔 */
    }
}

/* 聯絡我們 Hero 區塊 - 漸層背景與光影效果 */
.contact-hero {
    background: linear-gradient(135deg, #0072E3, #00A3E0);
    text-align: center;
    padding: 80px 20px;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.contact-hero h1 {
    font-size: 2.8rem;
    font-weight: bold;
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.contact-hero p {
    font-size: 1.4rem;
    position: relative;
    z-index: 2;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

/* 增加光影變化效果 */
.contact-hero::before {
    content: "";
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4), transparent);
    animation: floatingLight 5s infinite alternate ease-in-out;
}

.contact-hero::after {
    content: "";
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4), transparent);
    animation: floatingLight 6s infinite alternate ease-in-out;
}

/* 光影動畫 */
@keyframes floatingLight {
    from {
        transform: translateY(0) scale(1);
    }
    to {
        transform: translateY(-20px) scale(1.1);
    }
}

/* ==================== 半導體展照片展示 ==================== */
.expo-section {
    background:
        radial-gradient(circle at 10% 10%, rgba(232, 243, 255, 0.9), rgba(232, 243, 255, 0)),
        linear-gradient(180deg, #f8fbff 0%, #eff5fc 100%);
    padding: 62px 20px;
    text-align: center;
}

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

    .navbar {
        min-height: 0;
    }

    .nav-container,
    .logo,
    .company-text,
    .nav-links {
        min-width: 0;
    }

    .company-fullname {
        overflow-wrap: anywhere;
        letter-spacing: 0.2px;
    }

    .nav-links li a {
        width: 100%;
        min-width: 0;
        padding: 0 10px;
        font-size: 0.9rem;
    }
}

@media (max-width: 520px) {
    .nav-container {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .logo {
        width: 100%;
        max-width: 100%;
    }

    .company-text {
        max-width: calc(100vw - 110px);
    }

    .company-name,
    .company-enname,
    .company-fullname {
        overflow-wrap: anywhere;
    }

    .company-fullname {
        display: none;
    }

    .nav-links {
        width: calc(100vw - 28px);
        max-width: calc(100vw - 28px);
        grid-template-columns: 1fr;
    }

    .nav-links li a {
        width: 100% !important;
    }
}

.expo-section .container {
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid #dce9f7;
    border-radius: 22px;
    padding: 26px;
    box-shadow: 0 20px 44px rgba(5, 45, 89, 0.08);
}

.expo-section h2 {
    font-size: clamp(1.65rem, 2.8vw, 2.3rem);
    color: #0a4f95;
    margin-bottom: 10px;
    line-height: 1.24;
}

.expo-section p {
    font-size: 1.03rem;
    color: #526980;
    max-width: 860px;
    margin: 0 auto 12px;
}

.expo-gallery {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 14px;
    margin-top: 22px;
}

.expo-image {
    grid-column: span 4;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid #d2e1f2;
    box-shadow: 0 10px 24px rgba(9, 43, 86, 0.13);
    background: #fff;
}

.expo-image:nth-child(1) {
    grid-column: span 6;
    aspect-ratio: 16 / 10;
}

.expo-image:nth-child(2),
.expo-image:nth-child(3) {
    grid-column: span 3;
    aspect-ratio: 1 / 1;
}

.expo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.45s ease, filter 0.35s ease;
}

.expo-image:hover img {
    transform: scale(1.07);
    filter: saturate(1.08);
}

@media (max-width: 980px) {
    .expo-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .expo-image,
    .expo-image:nth-child(1),
    .expo-image:nth-child(2),
    .expo-image:nth-child(3) {
        grid-column: auto;
        aspect-ratio: 4 / 3;
    }
}

@media (max-width: 768px) {
    .expo-section {
        padding: 42px 14px;
    }

    .expo-section .container {
        padding: 18px;
        border-radius: 16px;
    }

    .expo-gallery {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .expo-image {
        aspect-ratio: 16 / 11;
    }
}

/* ==================== 首頁改版（僅 index） ==================== */
.home-page .home-hero {
    position: relative;
    color: #fff;
    background:
        linear-gradient(115deg, rgba(0, 34, 78, 0.88), rgba(0, 90, 176, 0.7)),
        url('/releases/zh-20260907-005000/images/background.jpg') center/cover no-repeat;
    padding: 78px 0 70px;
}

.home-page .home-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.36));
    pointer-events: none;
}

.home-page .home-hero-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 26px;
    align-items: end;
}

.home-page .hero-kicker {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1.1px;
    color: #d2ebff;
    text-transform: uppercase;
}

.home-page .home-hero-content h1 {
    font-size: clamp(2.1rem, 3.9vw, 3.45rem);
    line-height: 1.15;
    margin: 0 0 14px;
}

.home-page .home-hero-content p {
    max-width: 60ch;
    font-size: 1.08rem;
    color: #ebf4ff;
    margin-bottom: 22px;
}

.home-page .hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.home-page .cta-button-secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.65);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.home-page .cta-button-secondary:hover {
    background: rgba(255, 255, 255, 0.14);
}

.home-page .home-hero-highlights {
    display: grid;
    grid-template-columns: 1fr;
    gap: 11px;
}

.home-page .hero-highlight-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 14px;
    backdrop-filter: blur(4px);
    padding: 14px 16px;
}

.home-page .hero-highlight-card h2 {
    font-size: 1.02rem;
    margin-bottom: 4px;
}

.home-page .hero-highlight-card p {
    margin: 0;
    color: #e7f4ff;
    font-size: 0.95rem;
}

.home-page .home-capabilities,
.home-page .home-quick-links {
    padding: 52px 0;
}

.home-page .home-capabilities {
    background:
        radial-gradient(1200px 420px at 0% -10%, rgba(24, 115, 214, 0.12), rgba(24, 115, 214, 0)),
        linear-gradient(180deg, #f5f9ff 0%, #edf4fb 100%);
}

.home-page .home-quick-links {
    background:
        radial-gradient(1100px 400px at 100% 10%, rgba(0, 153, 255, 0.09), rgba(0, 153, 255, 0)),
        linear-gradient(180deg, #ffffff 0%, #f5f9ff 100%);
}

.home-page .section-heading {
    margin-bottom: 22px;
}

.home-page .section-heading h2 {
    color: #003c79;
    font-size: clamp(1.6rem, 2.4vw, 2.2rem);
    margin-bottom: 8px;
}

.home-page .section-heading p {
    color: #44607c;
    max-width: 62ch;
}

.home-page .capabilities-grid,
.home-page .quick-links-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.home-page .capability-card,
.home-page .quick-link-card {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid #d6e3f3;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 10px 24px rgba(5, 40, 79, 0.06);
    position: relative;
    overflow: hidden;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.home-page .capability-card::before,
.home-page .quick-link-card::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 3px;
    background: linear-gradient(90deg, #1a73c8, #4bb2ff, #72d8ff);
    opacity: 0.9;
}

.home-page .capability-card h3,
.home-page .quick-link-card h3 {
    color: #0b447f;
    margin-bottom: 8px;
    font-size: 1.12rem;
}

.home-page .capability-card p,
.home-page .quick-link-card p {
    color: #48627f;
    margin: 0;
}

.home-page .quick-link-card {
    text-decoration: none;
}

.home-page .capability-card:hover,
.home-page .quick-link-card:hover {
    transform: translateY(-3px);
    border-color: #9cc6ec;
    box-shadow: 0 16px 32px rgba(0, 69, 136, 0.16);
}

.home-page .expo-section {
    background: transparent;
    border-top: 1px solid #e2ecf8;
}

.home-page .expo-section h2 {
    color: #0f4b8c;
}

@media (max-width: 980px) {
    .home-page .home-hero-container {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .home-page .home-hero-highlights {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .home-page .home-hero {
        padding: 50px 0 42px;
    }

    .home-page .home-hero-content p {
        font-size: 0.98rem;
    }

    .home-page .home-hero-highlights {
        grid-template-columns: 1fr;
    }

    .home-page .capabilities-grid,
    .home-page .quick-links-grid {
        grid-template-columns: 1fr;
    }

    .home-page .home-capabilities,
    .home-page .home-quick-links {
        padding: 38px 0;
    }
}

/* ==================== 公司簡介改版（about-v2） ==================== */
.about-v2-page {
    background:
        radial-gradient(1200px 520px at 8% -10%, rgba(8, 99, 185, 0.15), rgba(8, 99, 185, 0)),
        radial-gradient(900px 480px at 92% 2%, rgba(52, 176, 227, 0.13), rgba(52, 176, 227, 0)),
        linear-gradient(180deg, #edf5ff 0%, #f7fbff 45%, #eef6ff 100%);
}

.about-v2-main {
    padding-bottom: 56px;
}

.about-v2-hero {
    padding: 36px 0 22px;
}

.about-v2-hero-inner {
    display: grid;
    grid-template-columns: 1.08fr 1fr;
    gap: 22px;
    align-items: stretch;
}

.about-v2-copy {
    background: linear-gradient(155deg, #0b4e95 0%, #1064bd 62%, #1778d1 100%);
    color: #fff;
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 20px 42px rgba(8, 51, 98, 0.2);
}

.about-v2-kicker {
    display: inline-block;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #cce8ff;
    margin-bottom: 10px;
    font-weight: 700;
}

.about-v2-copy h1 {
    font-size: clamp(1.75rem, 3vw, 2.55rem);
    line-height: 1.2;
    margin-bottom: 12px;
}

.about-v2-copy p {
    color: #eaf4ff;
    font-size: 1rem;
}

.about-v2-stats {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.about-v2-stat {
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 14px;
    padding: 12px 10px;
    background: rgba(255, 255, 255, 0.1);
    text-align: center;
}

.about-v2-stat strong {
    display: block;
    font-size: 1.28rem;
    line-height: 1.1;
}

.about-v2-stat span {
    font-size: 0.84rem;
    color: #deeeff;
}

.about-v2-photos {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.about-v2-photo {
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    min-height: 170px;
    box-shadow: 0 10px 24px rgba(6, 42, 82, 0.14);
    position: relative;
    overflow: hidden;
}

.about-v2-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.28));
}

.about-v2-photo-lg {
    grid-column: span 2;
    min-height: 230px;
}

.about-v2-capabilities,
.about-v2-timeline-wrap {
    padding: 30px 0;
}

.about-v2-section-head {
    margin-bottom: 16px;
}

.about-v2-section-head h2 {
    color: #0b447f;
    font-size: clamp(1.5rem, 2.3vw, 2rem);
    margin-bottom: 8px;
}

.about-v2-section-head p {
    color: #506983;
}

.about-v2-cap-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.about-v2-cap-card {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border-radius: 14px;
    border: 1px solid #d9e7f6;
    padding: 20px;
    box-shadow: 0 10px 24px rgba(8, 43, 82, 0.08);
    position: relative;
    overflow: hidden;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.about-v2-cap-card::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 3px;
    background: linear-gradient(90deg, #1a73c8, #4bb2ff, #72d8ff);
    opacity: 0.9;
}

.about-v2-cap-card:hover {
    transform: translateY(-3px);
    border-color: #9cc6ec;
    box-shadow: 0 16px 32px rgba(0, 69, 136, 0.16);
}

.about-v2-cap-card h3 {
    font-size: 1.1rem;
    color: #0d4d8e;
    margin-bottom: 8px;
}

.about-v2-cap-card p {
    margin: 0;
    color: #57708a;
}

.about-v2-timeline {
    display: grid;
    gap: 10px;
}

.about-v2-time-item {
    display: grid;
    grid-template-columns: 84px 1fr;
    gap: 16px;
    align-items: center;
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
    border-radius: 14px;
    border: 1px solid #dce9f8;
    padding: 12px 16px;
    box-shadow: 0 8px 20px rgba(10, 44, 85, 0.06);
}

.about-v2-time-item time {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    border-radius: 999px;
    background: linear-gradient(135deg, #0f64be, #1684d9);
    color: #fff;
    font-weight: 800;
    letter-spacing: 0.3px;
}

.about-v2-time-item p {
    margin: 0;
    color: #526b84;
}

.about-v2-cta {
    margin-top: 10px;
}

.about-v2-cta-inner {
    background: linear-gradient(145deg, #083d75, #0f5ca9);
    color: #fff;
    border-radius: 20px;
    padding: 30px 24px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(5, 37, 73, 0.18);
}

.about-v2-cta-inner h2 {
    font-size: clamp(1.35rem, 2.5vw, 2rem);
    margin-bottom: 8px;
}

.about-v2-cta-inner p {
    color: #d9ebff;
    margin-bottom: 18px;
}

@media (max-width: 980px) {
    .about-v2-hero-inner {
        grid-template-columns: 1fr;
    }

    .about-v2-cap-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-v2-copy {
        padding: 22px 18px;
    }

    .about-v2-stats {
        grid-template-columns: 1fr;
    }

    .about-v2-photo {
        min-height: 152px;
    }

    .about-v2-photo-lg {
        min-height: 190px;
    }

    .about-v2-time-item {
        grid-template-columns: 1fr;
        gap: 8px;
        text-align: left;
    }

    .about-v2-time-item time {
        width: fit-content;
        min-width: 82px;
        padding: 0 14px;
    }
}

/* ==================== 聯絡頁改版（contact-v2） ==================== */
.contact-v2-page {
    background:
        radial-gradient(1100px 500px at 6% -12%, rgba(10, 103, 191, 0.15), rgba(10, 103, 191, 0)),
        radial-gradient(860px 460px at 96% 6%, rgba(45, 173, 224, 0.12), rgba(45, 173, 224, 0)),
        linear-gradient(180deg, #edf5ff 0%, #f7fbff 45%, #eff7ff 100%);
}

.contact-v2-main {
    padding-bottom: 56px;
}

.contact-v2-hero {
    padding: 34px 0 20px;
}

.contact-v2-hero-inner {
    border-radius: 20px;
    background: linear-gradient(150deg, #0a4f97 0%, #1068c1 65%, #1d7ed5 100%);
    color: #fff;
    padding: 28px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 18px;
    align-items: center;
    box-shadow: 0 18px 40px rgba(8, 52, 101, 0.2);
}

.contact-v2-kicker {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #d2ebff;
    margin-bottom: 8px;
}

.contact-v2-hero-copy h1 {
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    line-height: 1.2;
    margin-bottom: 10px;
}

.contact-v2-hero-copy p {
    margin: 0;
    color: #e7f2ff;
    max-width: 60ch;
}

.contact-v2-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.contact-v2-page .cta-button-secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.66);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.contact-v2-page .cta-button-secondary:hover {
    background: rgba(255, 255, 255, 0.14);
}

.contact-v2-overview,
.contact-v2-persons,
.contact-v2-map,
.contact-v2-form {
    padding: 24px 0;
}

.contact-v2-overview-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.contact-v2-card {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid #d8e6f6;
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 10px 24px rgba(6, 42, 81, 0.08);
}

.contact-v2-card h3 {
    color: #0f4f93;
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.contact-v2-card p {
    margin: 0 0 6px;
    color: #516b85;
}

.contact-v2-list {
    margin: 0;
    padding-left: 18px;
}

.contact-v2-list li {
    margin-bottom: 6px;
    color: #516b85;
}

.contact-v2-list a,
.contact-v2-person-card a {
    color: #0b5db5;
    text-decoration: none;
}

.contact-v2-list a:hover,
.contact-v2-person-card a:hover {
    text-decoration: underline;
}

.contact-v2-section-head {
    margin-bottom: 14px;
}

.contact-v2-section-head h2 {
    color: #0c487f;
    font-size: clamp(1.4rem, 2.3vw, 2rem);
    margin-bottom: 6px;
}

.contact-v2-section-head p {
    margin: 0;
    color: #58718b;
}

.contact-v2-person-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.contact-v2-person-card {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid #dce9f8;
    border-radius: 14px;
    padding: 16px;
    box-shadow: 0 8px 22px rgba(8, 43, 83, 0.06);
}

.contact-v2-person-card h4 {
    margin: 0 0 8px;
    color: #104e91;
}

.contact-v2-person-card p {
    margin: 0 0 4px;
    color: #57708a;
}

.contact-v2-map .map-container {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #d7e7f7;
    box-shadow: 0 12px 28px rgba(8, 43, 83, 0.1);
}

.contact-v2-form-box {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid #dce8f8;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 12px 26px rgba(9, 44, 84, 0.08);
}

.contact-v2-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.contact-v2-page .form-group label {
    font-weight: 700;
    color: #2d4e71;
}

.contact-v2-page .form-group input,
.contact-v2-page .form-group textarea {
    border: 1px solid #cfe0f3;
    border-radius: 10px;
    padding: 11px 12px;
    background: #fdfefe;
}

.contact-v2-page .form-group input:focus,
.contact-v2-page .form-group textarea:focus {
    outline: 2px solid rgba(18, 106, 194, 0.2);
    border-color: #95bee7;
}

@media (max-width: 980px) {
    .contact-v2-hero-inner {
        grid-template-columns: 1fr;
    }

    .contact-v2-hero-actions {
        justify-content: flex-start;
    }

    .contact-v2-overview-grid,
    .contact-v2-person-grid {
        grid-template-columns: 1fr;
    }

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

/* ==================== 首頁 v3：News + Brand Film ==================== */
.home-v3-page {
    --home-ink: #082a4d;
    --home-blue: #075fae;
    --home-cyan: #39b8df;
    --home-pale: #eef6fc;
    background: #f7fafc;
    color: var(--home-ink);
}

.home-v3-page .navbar {
    min-height: 80px;
    padding: 0;
    overflow: visible;
    background:
        linear-gradient(102deg, #032f63 0%, #0875c8 48%, #f7fbff 78%, #f3e500 100%);
}

.home-v3-page .navbar::before {
    right: 0;
    top: 0;
    width: 42%;
    height: 100%;
    transform: none;
}

.home-v3-page .nav-container {
    min-height: 80px;
}

.home-v3-page .logo-img {
    width: 62px;
    height: 68px;
}

.home-v3-page .company-name {
    font-size: 1.34rem;
}

.home-v3-page .company-enname {
    font-size: 0.88rem;
}

.home-v3-page .company-fullname {
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.72rem;
}

.home-v3-page .nav-links li a {
    min-width: 92px;
    height: 40px;
}

.home-v3-page .home-v3-hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 80% 26%, rgba(54, 190, 227, 0.33), transparent 27%),
        linear-gradient(108deg, rgba(0, 26, 58, 0.97) 0%, rgba(0, 57, 107, 0.9) 54%, rgba(0, 84, 151, 0.78) 100%),
        url('/releases/zh-20260907-005000/images/background.jpg') center/cover no-repeat;
    padding: 82px 0 76px;
}

.home-v3-page .home-v3-hero::after {
    content: "";
    position: absolute;
    inset: auto -12% -68% 32%;
    height: 520px;
    border-radius: 50%;
    border: 1px solid rgba(113, 220, 255, 0.23);
    box-shadow: 0 0 110px rgba(23, 177, 224, 0.18);
    pointer-events: none;
}

.home-v3-page .home-v3-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.72fr);
    align-items: center;
    gap: 64px;
}

.home-v3-page .section-eyebrow {
    display: inline-block;
    color: #1374bd;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.home-v3-page .section-eyebrow-light {
    color: #9adfff;
}

.home-v3-page .home-v3-hero h1 {
    max-width: 13ch;
    margin: 0 0 18px;
    color: #fff;
    font-size: clamp(2.4rem, 4.6vw, 4.25rem);
    line-height: 1.08;
    letter-spacing: -0.035em;
}

html[lang^="en"] .home-v3-page .home-v3-hero h1 {
    max-width: 19ch;
    font-size: clamp(2.3rem, 3.4vw, 3.3rem);
}

.home-v3-page .home-v3-hero-copy > p {
    max-width: 58ch;
    color: #dbeeff;
    font-size: 1.08rem;
    margin-bottom: 28px;
}

.home-v3-page .home-v3-actions,
.home-v3-page .news-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.home-v3-page .home-v3-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 11px 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, #0b8cdb, #0759b1);
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    box-shadow: 0 12px 28px rgba(0, 79, 151, 0.23);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-v3-page .home-v3-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(0, 79, 151, 0.32);
}

.home-v3-page .home-v3-button-ghost {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.54);
    box-shadow: none;
}

.home-v3-page .home-v3-brand-visual {
    position: relative;
    min-height: 350px;
    display: grid;
    place-items: center;
    border-radius: 34px;
    border: 1px solid rgba(167, 226, 255, 0.28);
    background:
        linear-gradient(rgba(255,255,255,0.06), rgba(255,255,255,0.02)),
        repeating-linear-gradient(90deg, transparent 0 31px, rgba(142, 224, 255, 0.07) 31px 32px),
        repeating-linear-gradient(0deg, transparent 0 31px, rgba(142, 224, 255, 0.06) 31px 32px);
    box-shadow: inset 0 0 60px rgba(34, 176, 225, 0.08), 0 30px 70px rgba(0, 15, 42, 0.25);
}

.home-v3-page .home-v3-brand-visual img {
    position: relative;
    z-index: 2;
    width: 180px;
    height: 180px;
    object-fit: contain;
    filter: drop-shadow(0 14px 26px rgba(0, 0, 0, 0.25));
}

.home-v3-page .home-v3-brand-visual > span {
    position: absolute;
    bottom: 22px;
    color: #bdeaff;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.15em;
}

.home-v3-page .brand-orbit {
    position: absolute;
    border: 1px solid rgba(126, 218, 255, 0.32);
    border-radius: 50%;
}

.home-v3-page .brand-orbit-one { width: 250px; height: 250px; }
.home-v3-page .brand-orbit-two { width: 310px; height: 180px; transform: rotate(-24deg); }

.home-v3-page .home-v3-section {
    padding: 72px 0;
}

.home-v3-page .home-v3-section-head {
    max-width: 700px;
    margin-bottom: 26px;
}

.home-v3-page .home-v3-section-head h2,
.home-v3-page .home-v3-film-copy h2,
.home-v3-page .home-v3-cta h2 {
    margin: 0 0 10px;
    color: var(--home-ink);
    font-size: clamp(1.8rem, 3vw, 2.75rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.home-v3-page .home-v3-section-head p,
.home-v3-page .home-v3-film-copy p {
    color: #52708b;
}

.home-v3-page .home-v3-news {
    background: linear-gradient(180deg, #f4f9fd 0%, #fff 100%);
}

.home-v3-page .news-feature-card {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
    overflow: hidden;
    border: 1px solid #d8e7f2;
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 24px 60px rgba(7, 57, 101, 0.11);
}

.home-v3-page .news-media {
    display: grid;
    place-items: center;
    min-height: 100%;
    padding: 22px;
    background: #f3f1f8;
}

.home-v3-page .news-media img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 16px;
}

.home-v3-page .news-content {
    padding: 38px 38px 34px;
}

.home-v3-page .news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.home-v3-page .news-label,
.home-v3-page .news-date-chip {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
}

.home-v3-page .news-label { background: #6c3d96; color: #fff; }
.home-v3-page .news-date-chip { background: #e8f3fb; color: #0c5c99; }

.home-v3-page .news-content h3 {
    margin-bottom: 10px;
    color: var(--home-ink);
    font-size: clamp(1.55rem, 2.35vw, 2.2rem);
    line-height: 1.15;
}

.home-v3-page .news-summary {
    color: #4d6981;
    margin-bottom: 20px;
}

.home-v3-page .news-facts {
    display: grid;
    gap: 9px;
    margin-bottom: 16px;
}

.home-v3-page .news-fact {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 10px;
    padding-bottom: 9px;
    border-bottom: 1px solid #e3edf4;
}

.home-v3-page .news-fact-label {
    color: #6c3d96;
    font-weight: 800;
}

.home-v3-page .news-fact-value {
    color: #193d60;
    font-weight: 700;
}

.home-v3-page .news-fact-detail {
    display: block;
    color: #6e8295;
    font-size: 0.8rem;
    font-weight: 500;
    margin-top: 2px;
}

.home-v3-page .news-program-note,
.home-v3-page .news-source-note {
    color: #6b7f92;
    font-size: 0.8rem;
    margin-bottom: 6px;
}

.home-v3-page .news-actions { margin-top: 20px; }

.home-v3-page .home-v3-text-link,
.home-v3-page .home-v3-solution-card a {
    color: #0866ad;
    font-weight: 800;
    text-decoration: none;
}

.home-v3-page .home-v3-text-link::after,
.home-v3-page .home-v3-solution-card a::after {
    content: " →";
}

.home-v3-page .home-v3-film {
    background: #071f3a;
    color: #fff;
}

.home-v3-page .home-v3-film-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
    gap: 58px;
    align-items: center;
}

.home-v3-page .home-v3-film-copy h2 { color: #fff; }
.home-v3-page .home-v3-film-copy p { color: #bad1e5; margin-bottom: 18px; }
.home-v3-page .home-v3-film-copy .home-v3-text-link { color: #75d9ff; }

.home-v3-page .video-facade,
.home-v3-page .video-embed-shell {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border: 1px solid rgba(127, 216, 255, 0.35);
    border-radius: 24px;
    background:
        radial-gradient(circle at 50% 48%, rgba(39, 186, 232, 0.27), transparent 28%),
        linear-gradient(135deg, #0a3158, #031326);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.28);
}

.home-v3-page .video-facade {
    display: grid;
    place-items: center;
    cursor: pointer;
    color: #fff;
    padding: 0;
}

.home-v3-page .video-facade-grid {
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(90deg, transparent 0 35px, rgba(127, 216, 255, 0.06) 35px 36px),
        repeating-linear-gradient(0deg, transparent 0 35px, rgba(127, 216, 255, 0.05) 35px 36px);
}

.home-v3-page .video-facade img {
    position: relative;
    z-index: 1;
    width: 132px;
    height: 132px;
    object-fit: contain;
}

.home-v3-page .video-play-icon {
    position: absolute;
    z-index: 2;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
}

.home-v3-page .video-play-icon::after {
    content: "";
    position: absolute;
    left: 29px;
    top: 23px;
    border-left: 20px solid #086bb6;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
}

.home-v3-page .video-facade-label {
    position: absolute;
    z-index: 2;
    left: 24px;
    bottom: 20px;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.05em;
}

.home-v3-page .video-embed-shell iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.home-v3-page .home-v3-solutions { background: #f4f8fb; }

.home-v3-page .home-v3-solution-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.home-v3-page .home-v3-solution-card {
    display: flex;
    flex-direction: column;
    min-height: 250px;
    padding: 26px;
    border: 1px solid #d6e5f0;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 16px 40px rgba(11, 59, 98, 0.07);
}

.home-v3-page .home-v3-solution-card > span {
    color: #44add6;
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.15em;
}

.home-v3-page .home-v3-solution-card h3 {
    margin: 18px 0 9px;
    color: var(--home-ink);
    font-size: 1.25rem;
}

.home-v3-page .home-v3-solution-card p {
    color: #58728b;
    margin-bottom: 18px;
}

.home-v3-page .home-v3-solution-card a { margin-top: auto; }

.home-v3-page .home-v3-expo { background: #fff; }

.home-v3-page .expo-summary-card {
    padding: 28px;
    border: 1px solid #dce8f1;
    border-radius: 24px;
    background: #f8fbfd;
}

.home-v3-page .expo-summary-copy { max-width: 760px; margin-bottom: 20px; }
.home-v3-page .expo-summary-copy h3 { color: var(--home-ink); font-size: 1.6rem; margin-bottom: 6px; }
.home-v3-page .expo-summary-copy p { color: #59728a; }

.home-v3-page .expo-summary-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 14px;
}

.home-v3-page .expo-summary-image {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 16px;
    background: #e9f1f7;
}

.home-v3-page .expo-summary-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.home-v3-page .expo-year-note {
    color: #6b7f92;
    font-weight: 700;
    margin-top: 16px;
}

.home-v3-page .expo-toggle {
    margin-top: 14px;
    padding: 10px 18px;
    border: 1px solid #9ac6e4;
    border-radius: 999px;
    background: #fff;
    color: #0a5d9c;
    font-weight: 800;
    cursor: pointer;
}

.home-v3-page .expo-more-content { padding-top: 22px; }
.home-v3-page .expo-more-content[hidden] { display: none; }
.home-v3-page .expo-summary-grid-extra { margin-bottom: 26px; }
.home-v3-page .expo-archive-block { padding-top: 24px; border-top: 1px solid #dce8f1; }
.home-v3-page .expo-archive-block h4 { color: var(--home-ink); font-size: 1.35rem; margin-bottom: 6px; }
.home-v3-page .expo-archive-block > p { color: #59728a; margin-bottom: 16px; }

.home-v3-page .home-v3-cta {
    padding: 58px 0;
    color: #fff;
    background: linear-gradient(115deg, #073e74, #087ac1);
}

.home-v3-page .home-v3-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.home-v3-page .home-v3-cta h2 { color: #fff; }
.home-v3-page .home-v3-cta p { color: #d5ebf8; }
.home-v3-page .home-v3-button-light { background: #fff; color: #075da4; box-shadow: none; flex: 0 0 auto; }

.home-v3-page .footer {
    margin-top: 0;
    background: #031b33;
}

.home-v3-page .home-data-error {
    padding: 18px;
    border-radius: 12px;
    background: #fff1f0;
    color: #8f2c28;
}

.home-v3-page a:focus-visible,
.home-v3-page button:focus-visible {
    outline: 3px solid #f5df22;
    outline-offset: 4px;
}

@media (max-width: 980px) {
    .home-v3-page .home-v3-hero-grid,
    .home-v3-page .home-v3-film-grid,
    .home-v3-page .news-feature-card {
        grid-template-columns: 1fr;
    }

    .home-v3-page .home-v3-brand-visual { min-height: 280px; }
    .home-v3-page .home-v3-film-copy { max-width: 700px; }
    .home-v3-page .home-v3-solution-grid { grid-template-columns: 1fr; }
    .home-v3-page .home-v3-solution-card { min-height: 0; }
}

@media (max-width: 768px) {
    .home-v3-page .navbar {
        min-height: 72px;
    }

    .home-v3-page .nav-container {
        position: relative;
        min-height: 72px;
        flex-wrap: nowrap;
        padding: 0 14px;
    }

    .home-v3-page .logo { gap: 7px; min-width: 0; }
    .home-v3-page .logo-img { width: 48px; height: 52px; }
    .home-v3-page .company-name { font-size: 1rem; }
    .home-v3-page .company-enname { font-size: 0.68rem; }
    .home-v3-page .company-fullname { display: none; }

    .home-v3-page .nav-toggle {
        display: flex;
        flex-direction: column;
        flex: 0 0 44px;
        margin-left: auto;
        background: rgba(3, 49, 94, 0.82);
        border-color: rgba(255, 255, 255, 0.5);
    }

    .home-v3-page .nav-links {
        display: none;
        position: absolute;
        z-index: 110;
        top: calc(100% + 1px);
        left: 0;
        right: 0;
        width: 100%;
        max-width: none;
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 12px 14px 16px;
        border-top: 1px solid rgba(255,255,255,0.2);
        background: rgba(3, 43, 82, 0.98);
        box-shadow: 0 20px 30px rgba(0,0,0,0.25);
    }

    .home-v3-page nav.navbar.nav-open .nav-links { display: grid; }
    .home-v3-page .nav-links li a { width: 100%; min-width: 0; height: 42px; }

    .home-v3-page .home-v3-hero { padding: 36px 0 34px; }
    .home-v3-page .home-v3-hero-grid { grid-template-columns: 1fr; gap: 26px; }
    .home-v3-page .home-v3-hero h1 { max-width: none; font-size: clamp(2rem, 10vw, 2.75rem); }
    .home-v3-page .home-v3-hero-copy > p { font-size: 0.98rem; margin-bottom: 22px; }
    .home-v3-page .home-v3-brand-visual { display: none; }

    .home-v3-page .home-v3-section { padding: 30px 0; }
    .home-v3-page .home-v3-section-head { margin-bottom: 16px; }
    .home-v3-page .home-v3-section-head h2,
    .home-v3-page .home-v3-film-copy h2,
    .home-v3-page .home-v3-cta h2 { font-size: 1.7rem; }
    .home-v3-page .news-content { padding: 20px 18px; }
    .home-v3-page .news-media { padding: 10px; }
    .home-v3-page .news-meta { align-items: flex-start; flex-direction: column; }
    .home-v3-page .news-summary { margin-bottom: 14px; }
    .home-v3-page .news-facts { gap: 5px; margin-bottom: 10px; }
    .home-v3-page .news-fact { grid-template-columns: 52px 1fr; padding-bottom: 6px; }
    .home-v3-page .news-actions { margin-top: 14px; }
    .home-v3-page .news-actions { align-items: flex-start; flex-direction: column; }

    .home-v3-page .home-v3-film-grid { gap: 24px; }
    .home-v3-page .video-facade-label { left: 16px; bottom: 12px; }
    .home-v3-page .video-facade img { width: 92px; height: 92px; }
    .home-v3-page .video-play-icon { width: 58px; height: 58px; }
    .home-v3-page .video-play-icon::after { left: 24px; top: 18px; }

    .home-v3-page .home-v3-solution-grid { gap: 12px; }
    .home-v3-page .home-v3-solution-card { padding: 18px; }
    .home-v3-page .home-v3-solution-card h3 { margin: 7px 0 5px; font-size: 1.12rem; }
    .home-v3-page .home-v3-solution-card p { margin-bottom: 10px; }

    .home-v3-page .expo-summary-card { padding: 16px; }
    .home-v3-page .expo-summary-grid {
        grid-template-columns: none;
        grid-auto-flow: column;
        grid-auto-columns: 82%;
        gap: 8px;
        overflow-x: auto;
        overscroll-behavior-inline: contain;
        scroll-snap-type: inline mandatory;
        scrollbar-width: thin;
    }
    .home-v3-page .expo-summary-image,
    .home-v3-page .expo-summary-image:first-child {
        grid-column: auto;
        aspect-ratio: 16 / 10;
        scroll-snap-align: start;
    }

    .home-v3-page .home-v3-cta { padding: 20px 0; }
    .home-v3-page .home-v3-cta-inner { align-items: flex-start; flex-direction: column; }
    .home-v3-page .footer { padding: 1rem 0; }

    html[lang^="en"] .home-v3-page .home-v3-hero { padding: 28px 0; }
    html[lang^="en"] .home-v3-page .home-v3-section { padding: 20px 0; }
    html[lang^="en"] .home-v3-page .home-v3-section-head h2,
    html[lang^="en"] .home-v3-page .home-v3-film-copy h2,
    html[lang^="en"] .home-v3-page .home-v3-cta h2 { font-size: 1.55rem; }
    html[lang^="en"] .home-v3-page .news-content { padding: 16px; }
    html[lang^="en"] .home-v3-page .home-v3-solution-card { padding: 14px 16px; }
    html[lang^="en"] .home-v3-page .expo-summary-card { padding: 12px; }
    html[lang^="en"] .home-v3-page .home-v3-cta { padding: 10px 0; }
}

@media (prefers-reduced-motion: reduce) {
    .home-v3-page *,
    .home-v3-page *::before,
    .home-v3-page *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}
