﻿/* style.css - page specific styles */

/* Hero Banner */
.hero-banner {
    position: relative;
    height: 100vh;
    min-height: 60rem;
    overflow: hidden;
}

.hero-banner .swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-banner .slide-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-banner .slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-banner .slide-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 70, 199, 0.18), rgba(0, 57, 166, 0.22));
}

.hero-banner .slide-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 0 2rem;
    max-width: 90rem;
}

/* 鏂囧瓧灞呭乏瀵归綈锛堢敤浜?banner 宸︿晶鏈夌┖鐧芥椂锛? CMS 鍚庡彴娣诲姞 text-left 绫诲嵆鍙紝涓?container 宸︿晶瀵归綈 */
.hero-content.text-left {
    text-align: left;
    width: 94%;
    max-width: 150rem;
    margin: 0 auto;
    padding: 0 2rem;
}

/* 鏂囧瓧灞呭彸瀵归綈 */
.hero-content.text-right {
    text-align: right;
    width: 94%;
    max-width: 150rem;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-content h1 {
    font-size: 4.2rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    line-height: 1.25;
}

.hero-content p {
    font-size: 2rem;
    margin-bottom: 3.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* text-left 鏃舵寜閽眳宸?*/
.hero-content.text-left .hero-buttons {
    justify-content: flex-start;
}

/* text-right 鏃舵寜閽眳鍙?*/
.hero-content.text-right .hero-buttons {
    justify-content: flex-end;
}

.hero-banner .swiper-pagination {
    bottom: 3rem;
}

.hero-banner .swiper-pagination-bullet {
    width: 1rem;
    height: 1rem;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-banner .swiper-pagination-bullet-active {
    background: #0046C7;
    width: 2.4rem;
    border-radius: 0.5rem;
}

/* Key Product Categories */
.key-categories {
    background: linear-gradient(135deg, #F4F7FB 0%, #E8EDF5 100%);
    position: relative;
    overflow: visible;
}

.key-categories::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('../images/inprobg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.06;
    pointer-events: none;
    z-index: 0;
}

.key-categories .container {
    position: relative;
    z-index: 1;
}

/* Card links (SEO semantic anchors) */
a.product-card,
a.news-card,
a.case-card {
    display: block;
    text-decoration: none;
    color: inherit;
}

.key-category-card {
    background: #fff;
    border-radius: 1.2rem;
    overflow: hidden;
    box-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 0.1rem solid transparent;
}

.key-category-card:hover {
    box-shadow: 0 1.2rem 2.8rem rgba(0, 0, 0, 0.12);
    border: 0.1rem solid #FE7610;
}

.key-category-card .card-img {
    aspect-ratio: 16/10;
}

.key-category-card .card-body {
    padding: 2.5rem;
}

.key-category-card ul {
    margin: 1.5rem 0;
}

.key-category-card li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #5A6B7B;
    font-size: 1.6rem;
}

.key-category-card li::before {
    content: '\eaf1';
    font-family: 'iconfont';
    color: #0046C7;
    font-weight: 700;
    flex-shrink: 0;
}

/* Product Series */
.product-series {
    background: #fff;
}

.product-card {
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 0.1rem solid transparent;
}

.product-card:hover {
    box-shadow: 0 1.2rem 3rem rgba(0, 0, 0, 0.12);
    border-color: #FE7610;
}

.product-card .card-img {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.product-card .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.product-card:hover .card-img img {
    transform: scale(1.05);
}

.product-card .card-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.product-card .en-name {
    font-size: 1.4rem;
    color: #0046C7;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.product-card .card-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #273342;
    line-height: 1.4;
    margin: 0 0 1rem 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 5rem;
}

.product-card .card-text {
    font-size: 1.4rem;
    color: #6B7A8A;
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 4.5rem;
    flex: 1;
}

/* ===== Shared centered section header (competitor-inspired) ===== */
.sec-head {
    text-align: center;
    max-width: 82rem;
    margin: 0 auto 4.5rem;
}

.sec-head-title {
    font-size: 3.6rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: #1A2433;
}

.sec-head-line {
    display: block;
    width: 5rem;
    height: 0.3rem;
    margin: 1.8rem auto 2rem;
    background: linear-gradient(90deg, #0046C7, #FE7610);
    border-radius: 0.3rem;
}

.sec-head-sub {
    font-size: 1.6rem;
    line-height: 1.8;
    color: #8B96A5;
}

/* ===== Key Categories carousel (Module A) ===== */
.cats-carousel {
    position: relative;
}

.cats-swiper {
    overflow: hidden;
    padding-bottom: 0.5rem;
}

.cats-swiper .swiper-wrapper {
    padding-top: 1rem;
}

.cats-swiper .swiper-slide {
    height: 100%;
}

.cat-card {
    display: block;
    height: 100%;
    background: #fff;
    border-radius: 1.4rem;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 0.4rem 2rem rgba(20, 40, 80, 0.06);
    border: 0.1rem solid #EDF1F7;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    position: relative;
}

.cat-card:hover {
    transform: translateY(-0.4rem);
    box-shadow: 0 1.2rem 3rem rgba(20, 40, 80, 0.14);
    border-color: #FE7610;
}

.cat-card-img {
    aspect-ratio: 16/11;
    overflow: hidden;
}

.cat-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.cat-card:hover .cat-card-img img {
    transform: scale(1.06);
}

.cat-card-body {
    padding: 2.6rem 2.4rem 6rem;
}

.cat-card-brand {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #8B96A5;
    margin-bottom: 1.2rem;
}

.cat-card-title {
    font-size: 2rem;
    font-weight: 600;
    color: #1A2433;
    margin-bottom: 1.2rem;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 5.2rem;
}

.cat-card:hover .cat-card-title {
    color: #0046C7;
}

.cat-card-text {
    font-size: 1.4rem;
    line-height: 1.6;
    color: #6B7787;
    margin-bottom: 1.6rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cat-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #FE7610;
    position: absolute;
    bottom: 2.6rem;
    left: 2.4rem;
    white-space: nowrap;
}

.cat-card-link::after {
    content: '';
    width: 2.2rem;
    height: 0.15rem;
    background: #FE7610;
    transition: width 0.3s ease;
}

.cat-card:hover .cat-card-link::after {
    width: 3.4rem;
}

.cats-nav {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3.5rem;
}

.cats-btn {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    border: 0.1rem solid #D5DEE8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #273342;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cats-btn:hover {
    background: #0046C7;
    border-color: #0046C7;
    color: #fff;
}

.cats-btn.swiper-button-disabled {
    opacity: 0.4;
    cursor: default;
}

.cats-btn.swiper-button-disabled:hover {
    background: transparent;
    border-color: #D5DEE8;
    color: #273342;
}

/* ===== Product Series editorial grid (Module B) ===== */
.ps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.ps-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 1.4rem;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    border: 0.1rem solid #EDF1F7;
    box-shadow: 0 0.4rem 2rem rgba(20, 40, 80, 0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.ps-card:hover {
    transform: translateY(-0.6rem);
    box-shadow: 0 1.6rem 3.6rem rgba(20, 40, 80, 0.15);
    border-color: #0046C7;
}

.ps-card-body {
    padding: 2rem 2rem 1.6rem;
}

.ps-eyebrow {
    display: block;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #FE7610;
    margin-bottom: 1rem;
}

.ps-title {
    font-size: 2.2rem;
    font-weight: 600;
    line-height: 1.3;
    color: #1A2433;
    transition: color 0.3s ease;
}

.ps-card:hover .ps-title {
    color: #0046C7;
}

.ps-line {
    display: block;
    width: 4rem;
    height: 0.2rem;
    margin: 1.6rem 0;
    background: #D5DEE8;
    transition: width 0.4s ease, background 0.4s ease;
}

.ps-card:hover .ps-line {
    width: 6rem;
    background: #0046C7;
}

.ps-card-img {
    margin-top: auto;
    aspect-ratio: 16/9;
    overflow: hidden;
    position: relative;
}

.ps-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
    will-change: transform;
}

.ps-card:hover .ps-card-img img {
    transform: scale(1.06);
}

/* 修复 hover 结束时的抖动 */
.ps-card:not(:hover) .ps-card-img img {
    transition: transform 0.6s ease;
}

/* 鍥剧墖閬僵灞?- 榛樿闅愯棌 */
.ps-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.ps-card:hover .ps-img-overlay {
    opacity: 1;
}

.ps-img-overlay .ps-text {
    font-size: 1.4rem;
    line-height: 1.6;
    color: #fff;
    margin: 0;
    transform: translateY(15px);
    transition: transform 0.4s ease;
}

.ps-card:hover .ps-img-overlay .ps-text {
    transform: translateY(0);
}

/* ===== Responsive: tablet ===== */
@media (max-width: 991px) {
    .sec-head {
        margin-bottom: 3.5rem;
    }
    .sec-head-title {
        font-size: 3rem;
    }
    .ps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.4rem;
    }
    .ps-card-body {
        padding: 1.6rem 1.6rem 1.2rem;
    }
    .ps-title {
        font-size: 2rem;
    }
}

/* ===== Responsive: mobile ===== */
@media (max-width: 575px) {
    .sec-head-title {
        font-size: 2.6rem;
    }
    .sec-head-sub {
        font-size: 1.6rem;
    }
    .cat-card-text {
        min-height: 0;
    }
    .cats-nav {
        margin-top: 2.8rem;
    }
    .cats-btn {
        width: 4.4rem;
        height: 4.4rem;
    }
    .ps-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .ps-grid .ps-card:last-child {
        display: block;
    }
}

/* Cases Showcase - 鍦嗗舰鍥剧墖鐜粫涓ぎ鍦嗚鐭╁舰 */
.cases-showcase {
    background: #F4F7FB;
    padding: 6rem 0;
    overflow: hidden;
    position: relative;
}

.cases-showcase-inner {
    position: relative;
    width: 100%;
    max-width: 120rem;
    height: 64rem;
    margin: 0 auto;
    z-index: 1;
}

/* 涓ぎ鍦嗚鐭╁舰 */
.cases-center-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60rem;
    height: 24rem;
    border-radius: 22rem;
    border: 1.6rem solid rgba(0, 70, 199, 0.18);
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 0.4rem 3rem rgba(0, 46, 130, 0.06);
}

.cases-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #273342;
    margin-bottom: 0.6rem;
}

.cases-subtitle {
    font-size: 1.6rem;
    color: #8B9BAB;
    margin-bottom: 1rem;
}

.cases-link {
    font-size: 1.35rem;
    color: #0046C7;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: gap 0.3s ease;
}

.cases-link:hover {
    gap: 0.8rem;
}

.cases-link i {
    font-size: 1.2rem;
}

/* 鍦嗗舰娴姩鍥剧墖 - 鍙屽眰鍔ㄧ敾 */
.cases-float {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    z-index: 1;
}

.cases-float img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 0.3rem solid #fff;
    box-shadow: 0 0.3rem 1.2rem rgba(0, 0, 0, 0.12);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    will-change: transform;
}

.cases-float:hover img {
    animation: none !important;
    box-shadow: 0 0.5rem 2rem rgba(0, 70, 199, 0.25);
    transform: scale(1.08);
}

.cases-float-title {
    position: absolute;
    bottom: -2.2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.2rem;
    color: #273342;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.cases-float:hover .cases-float-title {
    opacity: 1;
}

/* 鍦嗗舰鍥剧墖浣嶇疆 - 鍖归厤鍙傝€冨浘 */
.cases-float-0 {
    width: 10rem; height: 10rem;
    top: -1rem; left: 50%;
    margin-left: -5rem;
    transform-origin: 50% 70%;
    animation: cases-spin2 8s linear infinite;
}
.cases-float-0 img { animation: cases-spin2-reverse 8s linear infinite; }

.cases-float-1 {
    width: 12rem; height: 12rem;
    top: 2rem; left: 6rem;
    transform-origin: 50% 70%;
    animation: cases-spin 12s linear infinite;
}
.cases-float-1 img { animation: cases-spin-reverse 12s linear infinite; }

.cases-float-2 {
    width: 15rem; height: 15rem;
    top: 4rem; right: 18rem;
    transform-origin: 60% 50%;
    animation: cases-spin 8s linear infinite;
}
.cases-float-2 img { animation: cases-spin-reverse 8s linear infinite; }

.cases-float-3 {
    width: 12rem; height: 12rem;
    top: 8rem; right: -1rem;
    transform-origin: 60% 50%;
    animation: cases-spin 8s linear infinite;
}
.cases-float-3 img { animation: cases-spin-reverse 8s linear infinite; }

.cases-float-4 {
    width: 11rem; height: 11rem;
    bottom: 10rem; left: 2rem;
    transform-origin: 50% 70%;
    animation: cases-spin2 12s linear infinite;
}
.cases-float-4 img { animation: cases-spin2-reverse 12s linear infinite; }

.cases-float-5 {
    width: 12rem; height: 12rem;
    bottom: 8rem; left: 18rem;
    transform-origin: 50% 70%;
    animation: cases-spin 12s linear infinite;
}
.cases-float-5 img { animation: cases-spin-reverse 12s linear infinite; }

.cases-float-6 {
    width: 14rem; height: 14rem;
    bottom: 2rem; right: 16rem;
    transform-origin: 50% 70%;
    animation: cases-spin 12s linear infinite;
}
.cases-float-6 img { animation: cases-spin-reverse 12s linear infinite; }

.cases-float-7 {
    width: 11rem; height: 11rem;
    bottom: 2rem; left: 50%;
    margin-left: -5.5rem;
    transform-origin: 50% 30%;
    animation: cases-spin2 10s linear infinite;
}
.cases-float-7 img { animation: cases-spin2-reverse 10s linear infinite; }

.cases-float-8 {
    width: 13rem; height: 13rem;
    top: 10rem; left: -1rem;
    transform-origin: 40% 50%;
    animation: cases-spin 10s linear infinite;
}
.cases-float-8 img { animation: cases-spin-reverse 10s linear infinite; }

/* 瑁呴グ鍦嗘场娉?- 娴姩鍔ㄧ敾 */
.cases-circle {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    opacity: 0;
}

/* 绉诲姩绔疭wiper鍗＄墖 - 妗岄潰绔殣钘?*/
.cases-mobile-swiper {
    display: none;
}

.cases-circle-1 {
    width: 4rem; height: 4rem;
    bottom: 6rem; left: 22rem;
    background: #e8ecf1;
    animation: cases-circle-fly1 5s ease-in infinite;
}

.cases-circle-2 {
    width: 4rem; height: 4rem;
    bottom: 6rem; left: 44rem;
    background: #dce3ed;
    animation: cases-circle-fly2 6s ease-in infinite;
}

.cases-circle-3 {
    width: 6rem; height: 6rem;
    bottom: 4rem; right: 18rem;
    background: #e8ecf1;
    animation: cases-circle-fly3 9s ease-in infinite;
}

.cases-circle-4 {
    width: 4rem; height: 4rem;
    bottom: 6rem; right: 16rem;
    background: #e8ecf1;
    animation: cases-circle-fly4 10s ease-in infinite;
}

@keyframes cases-circle-fly1 {
    0% { bottom: 6rem; opacity: 0; transform: translateX(0); }
    50% { opacity: 1; transform: translateX(5rem); }
    100% { bottom: 40rem; opacity: 0; transform: translateX(-5rem); }
}

@keyframes cases-circle-fly2 {
    0% { bottom: 6rem; opacity: 0; transform: translateX(0); }
    50% { opacity: 1; transform: translateX(-2.5rem); }
    100% { bottom: 14rem; opacity: 0.7; transform: translateX(0); }
}

@keyframes cases-circle-fly3 {
    0% { bottom: 4rem; opacity: 0; transform: translateX(0); }
    50% { opacity: 1; transform: translateX(5rem); }
    100% { bottom: 19rem; opacity: 0.7; transform: translateX(0); }
}

@keyframes cases-circle-fly4 {
    0% { bottom: 6rem; opacity: 0; transform: translateX(0); }
    50% { opacity: 1; transform: translateX(5rem); }
    100% { bottom: 64rem; opacity: 0.7; transform: translateX(0); }
}

/* 鍙屽眰鍔ㄧ敾 keyframes */
@keyframes cases-spin {
    100% { transform: rotate(360deg); }
}

@keyframes cases-spin2 {
    100% { transform: rotate(-360deg); }
}

@keyframes cases-spin-reverse {
    0% { transform: rotate(360deg); }
}

@keyframes cases-spin2-reverse {
    0% { transform: rotate(-360deg); }
}

/* 鍝嶅簲寮?*/
@media (max-width: 991px) {
    .cases-showcase {
        padding: 4rem 0;
        overflow: visible;
    }
    .cases-showcase-inner {
        height: auto;
        min-height: auto;
        padding: 0;
        overflow: visible;
    }
    .cases-center-box {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: 92%;
        max-width: 44rem;
        height: auto;
        min-height: 10rem;
        border-radius: 1rem;
        border: none;
        box-shadow: none;
        background: transparent;
        margin: 0 auto 2rem;
        padding: 1rem 0;
    }
    .cases-title {
        font-size: 3.6rem;
    }
    .cases-subtitle,
    .cases-link {
        display: none;
    }
    /* 闅愯棌娴姩鍥剧墖鍜岃楗板渾 */
    .cases-float,
    .cases-circle {
        display: none;
    }
    /* 绉诲姩绔疭wiper鍗＄墖 */
    .cases-mobile-swiper {
        display: block;
        padding: 0 1rem 1rem;
    }
    .cases-mobile-swiper .swiper-slide {
        width: calc(50% - 0.5rem);
    }
    .cases-mobile-card {
        display: block;
        aspect-ratio: 1;
        border-radius: 0.8rem;
        overflow: hidden;
        position: relative;
        background: #fff;
        box-shadow: 0 0.2rem 0.8rem rgba(0, 0, 0, 0.08);
        text-decoration: none;
    }
    .cases-mobile-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }
    .cases-mobile-card:hover img {
        transform: scale(1.08);
    }
    .cases-mobile-card .cases-mobile-title {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 1rem 1.2rem;
        background: linear-gradient(to top, rgba(0, 46, 130, 0.85), transparent);
        color: #fff;
        font-size: 1.6rem;
        font-weight: 700;
        line-height: 1.3;
    }
}

@media (max-width: 575px) {
    .cases-center-box {
        min-height: 8rem;
        padding: 0.8rem 0;
    }
    .cases-title {
        font-size: 3.6rem;
    }
    .cases-mobile-card .cases-mobile-title {
        font-size: 1.4rem;
        padding: 0.8rem 1rem;
        font-weight: 700;
    }
}

/* Strength Data - Static Grid */
.strength-section {
    position: relative;
    background: #fff;
    color: #273342;
    padding: 8rem 0;
    overflow: hidden;
}

.strength-section::before {
    content: '';
    position: absolute;
    top: -10rem;
    right: -10rem;
    width: 40rem;
    height: 40rem;
    background: radial-gradient(circle, rgba(0, 70, 199, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.strength-section::after {
    content: '';
    position: absolute;
    bottom: -8rem;
    left: -8rem;
    width: 30rem;
    height: 30rem;
    background: radial-gradient(circle, rgba(254, 118, 16, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.strength-section .section-title {
    color: #273342;
}

.strength-section .section-subtitle {
    color: #8B9BAB;
}

.strength-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.strength-stat {
    background: #F4F7FB;
    border-radius: 1.6rem;
    padding: 3.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.strength-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0.4rem;
    background: linear-gradient(90deg, #0046C7, #00A8FF);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.strength-stat:nth-child(2)::before { background: linear-gradient(90deg, #FE7610, #FF9A4A); }
.strength-stat:nth-child(3)::before { background: linear-gradient(90deg, #25D366, #6BEB97); }
.strength-stat:nth-child(4)::before { background: linear-gradient(90deg, #7C3AED, #A78BFA); }
.strength-stat:nth-child(5)::before { background: linear-gradient(90deg, #0046C7, #FE7610); }

.strength-stat:hover {
    transform: translateY(-0.8rem);
    box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.08);
    background: #fff;
}

.strength-stat:hover::before {
    transform: scaleX(1);
}

.strength-stat .number {
    font-size: 4.2rem;
    font-weight: 800;
    color: #0046C7;
    line-height: 1;
    margin-bottom: 0.8rem;
}

.strength-stat:nth-child(2) .number { color: #FE7610; }
.strength-stat:nth-child(3) .number { color: #25D366; }
.strength-stat:nth-child(4) .number { color: #7C3AED; }
.strength-stat:nth-child(5) .number { color: #0046C7; }

.strength-stat .label {
    font-size: 1.6rem;
    color: #8B9BAB;
    font-weight: 500;
}

@media (max-width: 991px) {
    .strength-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 575px) {
    .strength-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .strength-stat { padding: 2.5rem 1.5rem; }
    .strength-stat .number { font-size: 3.2rem; }
}

/* Strength + Video Combined */
.strength-video-combined {
    display: flex;
    gap: 0;
    margin-top: 4rem;
    overflow: visible;
}
.sv-left {
    flex: 0 0 45%;
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f5f7fa;
    border-radius: 1.2rem 0 0 1.2rem;
}
.sv-title {
    margin-bottom: 3rem;
    font-size: 2.8rem !important;
}
.sv-stats {
    display: flex;
    flex-direction: column;
}
.sv-stat-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
.sv-stat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.sv-number {
    font-size: 5.6rem;
    font-weight: 700;
    color: #273342;
    line-height: 1;
}
.sv-unit {
    font-size: 1.6rem;
    color: #6b7b8d;
    font-weight: 500;
    margin-top: 0.3rem;
}
.sv-label {
    font-size: 1.6rem;
    color: #6b7b8d;
    font-weight: 400;
    margin-top: 0.3rem;
}
.sv-divider {
    height: 1px;
    background: #e0e4ea;
    margin: 2rem 0;
}
.sv-right {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 0 1.2rem 1.2rem 0;
}
.sv-video-text {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 3;
    padding: 3rem 3rem 0;
}
.sv-video-text p {
    font-size: 1.6rem;
    color: #fff;
    line-height: 1.8;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
    animation: svTextScroll 8s ease-in-out infinite alternate;
}
@keyframes svTextScroll {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(-1rem); opacity: 0.7; }
}
.sv-right .about-video-wrap {
    border-radius: 0;
    aspect-ratio: auto;
    height: 100%;
    min-height: 40rem;
}
.sv-right .about-video-poster {
    height: 100%;
}
.sv-right .about-video-poster img {
    height: 100%;
}
.sv-right .about-video-poster .video-overlay {
    background: linear-gradient(to bottom, rgba(0, 30, 80, 0.7) 0%, rgba(0, 30, 80, 0.3) 40%, rgba(0, 0, 0, 0.1) 100%);
}

@media (max-width: 991px) {
    .strength-video-combined {
        flex-direction: column;
        margin-top: 3rem;
    }
    .sv-left {
        flex: none;
        padding: 3rem 2rem;
        border-radius: 1.2rem 1.2rem 0 0;
    }
    .sv-right {
        border-radius: 0 0 1.2rem 1.2rem;
    }
    .sv-right .about-video-wrap {
        min-height: 25rem;
    }
    .sv-video-text {
        padding: 2rem 2rem 0;
    }
    .sv-video-text p {
        font-size: 1.4rem;
    }
}
@media (max-width: 575px) {
    .sv-left { padding: 2.5rem 1.5rem; }
    .sv-number { font-size: 4rem; }
    .sv-stat-row { gap: 1rem; }
    .sv-video-text p { font-size: 1.2rem; }
}

/* Partners */
.partners-section {
    background: #fff;
}

.partners-marquee-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    overflow: hidden;
}

.partners-marquee-row {
    position: relative;
    padding: 1.2rem 0;
}

.partners-marquee-track {
    display: flex;
    gap: 2rem;
    width: max-content;
}

/* Row 1: Left to Right */
.partners-marquee-left .partners-marquee-track {
    animation: partners-scroll-left 30s linear infinite;
}

/* Row 2: Right to Left */
.partners-marquee-right .partners-marquee-track {
    animation: partners-scroll-right 30s linear infinite;
}

/* Hover to pause */
.partners-marquee-row:hover .partners-marquee-track {
    animation-play-state: paused;
}

@keyframes partners-scroll-left {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

@keyframes partners-scroll-right {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.partners-marquee-item {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 1rem;
    padding: 2rem 3rem;
    box-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    flex-shrink: 0;
    width: calc(100% / 12 - 2rem);
}

.partners-marquee-item:hover {
    box-shadow: 0 0.6rem 1.5rem rgba(0, 0, 0, 0.08);
    transform: translateY(-0.2rem);
}

.partners-marquee-item img {
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
    max-height: 8.4rem;
    object-fit: contain;
    width: 100%;
}

.partners-marquee-item:hover img {
    filter: grayscale(0);
    opacity: 1;
}

/* News */
.news-section {
    background: #F4F7FB;
}

.news-card {
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 0.1rem solid transparent;
}

.news-card:hover {
    box-shadow: 0 1.2rem 3rem rgba(0, 0, 0, 0.12);
    border: 0.1rem solid #FE7610;
}

.news-card .card-img {
    aspect-ratio: 16/10;
    overflow: hidden;
    position: relative;
}

.news-card .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.news-card:hover .card-img img {
    transform: scale(1.05);
}

.news-card .news-date {
    color: #8B9BAB;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.news-card .card-body {
    padding: 2rem;
}

.news-card .card-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #273342;
    line-height: 1.5;
    margin: 0 0 1rem 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 5.1rem;
}

.news-card .card-text {
    font-size: 1.4rem;
    color: #6B7A8A;
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 6.72rem;
}

/* Home News Center - 3 image cards (left) + scrolling ticker (right) */
.news-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: stretch;
}

.news-figs {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.news-fig {
    display: flex;
    flex: 1;
    min-height: 13rem;
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.04);
    border: 0.1rem solid transparent;
    transition: all 0.3s ease;
}

.news-fig:hover {
    box-shadow: 0 1.2rem 3rem rgba(0, 0, 0, 0.12);
    border-color: #FE7610;
}

.news-fig-img {
    flex: 0 0 40%;
    max-width: 40%;
    overflow: hidden;
}

.news-fig-img img {
    width: 100%;
    height: 100%;
    min-height: 12rem;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.news-fig:hover .news-fig-img img {
    transform: scale(1.05);
}

.news-fig-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem 2.4rem;
}

.news-fig-title {
    font-size: 1.8rem;
    color: #273342;
    line-height: 1.4;
    margin-bottom: 0.8rem;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-fig:hover .news-fig-title {
    color: #0046C7;
}

.news-fig-text {
    font-size: 1.4rem;
    color: #5A6B7B;
    line-height: 1.6;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-fig .news-date {
    color: #8B9BAB;
    font-size: 1.4rem;
}

/* Right: vertical auto-scrolling ticker */
.news-ticker {
    position: relative;
    height: 100%;
    overflow: hidden;
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.04);
}

.news-ticker-track {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    animation: newsTicker 32s linear infinite;
}

.news-ticker:hover .news-ticker-track {
    animation-play-state: paused;
}

@keyframes newsTicker {
    from { transform: translateY(0); }
    to { transform: translateY(-50%); }
}

.news-ticker-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 1.7rem 2.4rem;
    border-bottom: 0.1rem solid #EAF0F6;
    transition: all 0.3s ease;
}

.news-ticker-item:hover {
    background: #F4F7FB;
}

.tk-title {
    flex: 1;
    min-width: 0;
    font-size: 1.6rem;
    color: #273342;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.3s ease;
}

.news-ticker-item:hover .tk-title {
    color: #0046C7;
}

.tk-date {
    flex-shrink: 0;
    font-size: 1.4rem;
    color: #8B9BAB;
}

@media (min-width: 768px) {
    .news-layout {
        grid-template-columns: 1fr 1fr;
    }
}

.list-section .news-text-list {
    width: 100%;
    max-width: 100%;
    margin: 3rem 0 0 0;
}

/* News Detail Meta */
.news-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    color: #8B9BAB;
    font-size: 1.6rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 0.1rem solid #E2E8F0;
}

.news-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

.news-meta .iconfont,
.news-meta .icon-eye,
.news-meta .icon-user {
    font-size: 1.8rem;
    color: #0046C7;
}

/* News Navigation */
.news-nav {
    display: grid;
    gap: 1.5rem;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 0.1rem solid #E2E8F0;
}

.news-nav a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #F4F7FB;
    border-radius: 1rem;
    color: #273342;
    font-weight: 500;
    transition: all 0.3s ease;
    line-height: 1.6;
    overflow: hidden;
}

.news-nav a .nav-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-nav a:hover {
    background: #0046C7;
    color: #fff;
}

.news-nav .disabled {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #F9FAFB;
    border-radius: 1rem;
    color: #B0BEC5;
    font-weight: 500;
    line-height: 1.6;
    cursor: not-allowed;
}

.news-nav .disabled .nav-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (min-width: 768px) {
    .news-nav {
        grid-template-columns: 1fr 1fr;
    }
}

/* News/Case/Product Detail Content */
.news-detail-body p,
.case-detail-body p,
.product-detail-body p {
    margin-bottom: 1.6rem;
    line-height: 1.8;
    color: #5A6B7B;
    font-size: 1.6rem;
}

.news-detail-body img,
.case-detail-body img,
.product-detail-body img {
    max-width: 100%;
    height: auto;
    margin: 2rem 0;
    border-radius: 0.8rem;
}

/* WordPress 缂栬緫鍣ㄥ浘鐗囧榻?*/
img.aligncenter,
.aligncenter img {
    display: block;
    margin-left: auto !important;
    margin-right: auto !important;
}

.alignleft {
    float: left;
    margin-right: 2rem;
}

.alignright {
    float: right;
    margin-left: 2rem;
}

.news-detail-body table,
.case-detail-body table,
.product-detail-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: #fff;
    border-radius: 0.8rem;
    overflow: hidden;
    box-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.04);
}

.news-detail-body table thead,
.case-detail-body table thead,
.product-detail-body table thead {
    background: #F4F7FB;
}

.news-detail-body table th,
.news-detail-body table td,
.case-detail-body table th,
.case-detail-body table td,
.product-detail-body table th,
.product-detail-body table td {
    padding: 1.2rem 1.6rem;
    text-align: left;
    border-bottom: 0.1rem solid #E2E8F0;
    color: #273342;
    font-size: 1.4rem;
}

.news-detail-body table th,
.case-detail-body table th,
.product-detail-body table th {
    font-weight: 600;
    color: #0046C7;
}

/* Recommended News */
.recommended-news {
    margin-top: 5rem;
}

.recommended-news .section-title {
    text-align: left;
    font-size: 2.4rem;
    margin-bottom: 2rem;
}

.news-text-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    width: 100%;
    max-width: 100%;
    margin: 3rem 0 0 0;
}

.news-text-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 1.8rem 2.4rem;
    background: #fff;
    border-radius: 0.8rem;
    border: 0.1rem solid #E2E8F0;
    transition: all 0.3s ease;
    width: 100%;
    text-decoration: none;
    color: inherit;
}

.news-text-item:hover {
    border-color: #0046C7;
    box-shadow: 0 0.4rem 1.2rem rgba(0, 70, 199, 0.08);
    transform: translateX(0.4rem);
}

.news-text-item .date {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #EEF2FF;
    color: #0046C7;
    border-radius: 0.8rem;
    padding: 1.2rem 1.6rem;
    min-width: 6rem;
    text-align: center;
    align-self: stretch;
}

.news-text-item .date .day {
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1;
    color: #0046C7;
    display: block;
    margin-bottom: 0.4rem;
}

.news-text-item .date .month {
    font-size: 1.2rem;
    text-transform: uppercase;
    color: #0046C7;
    line-height: 1;
    display: block;
    font-weight: 600;
}

.news-text-item .news-text-body {
    flex: 1 1 auto;
    min-width: 0;
}

.news-text-content {
    display: block;
}

.news-text-title {
    margin: 0 0 0.6rem 0;
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.5;
    color: #273342;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 4.8rem;
}

.news-text-title a {
    color: #273342;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-text-title a:hover {
    color: #0046C7;
}

.news-text-excerpt {
    margin: 0;
    font-size: 1.4rem;
    color: #6B7A8A;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 4.48rem;
}

/* CTA Section */
.cta-section {
    position: relative;
    background: url('../images/inquotebg.jpg') center/cover fixed;
    color: #fff;
    padding: 8rem 0;
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(0, 30, 80, 0.94) 0%, rgba(0, 46, 130, 0.88) 55%, rgba(0, 70, 199, 0.82) 100%);
    z-index: 0;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0.4rem;
    background: linear-gradient(90deg, #FE7610, #FF9A4A, #FE7610);
    z-index: 2;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 5rem;
    align-items: center;
}

.cta-left .section-title {
    color: #fff;
    text-align: left;
    margin-bottom: 1.5rem;
}

.cta-left .section-title::after {
    margin-left: 0;
}

.cta-subtitle {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 4rem;
    letter-spacing: 0.05rem;
}

.cta-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.cta-stat-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 1.2rem;
    padding: 2.6rem 1.5rem;
    text-align: center;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: transform 0.4s ease, background 0.4s ease;
}

.cta-stat-card:hover {
    transform: translateY(-0.8rem);
    background: rgba(255, 255, 255, 0.16);
}

.cta-stat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 5.4rem;
    height: 5.4rem;
    border-radius: 50%;
    background: rgba(254, 118, 16, 0.9);
    margin-bottom: 1.4rem;
}

.cta-stat-icon .iconfont {
    font-size: 2.6rem;
    color: #fff;
}

.cta-stat-num {
    font-size: 3.6rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.8rem;
}

.cta-stat-label {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    margin: 0;
}

.cta-right {
    display: flex;
    justify-content: center;
}

.cta-card {
    background: #fff;
    border-radius: 1.6rem;
    padding: 3.5rem 3rem;
    text-align: left;
    box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.25);
    width: 100%;
}

.cta-card-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #273342;
    margin-bottom: 2rem;
    text-align: center;
}

.cta-form-group {
    margin-bottom: 1.2rem;
}

.cta-form input,
.cta-form textarea {
    width: 100%;
    border: none;
    background: #f4f5f7;
    border-radius: 0.4rem;
    padding: 1.3rem 1.5rem;
    font-size: 1.4rem;
    color: #273342;
    font-family: inherit;
    transition: box-shadow 0.3s ease, background 0.3s ease;
}

.cta-form input::placeholder,
.cta-form textarea::placeholder {
    color: #9aa6b2;
}

.cta-form input:focus,
.cta-form textarea:focus {
    outline: none;
    background: #fff;
    box-shadow: 0 0 0 2px rgba(0, 70, 199, 0.4);
}

.cta-form textarea {
    resize: vertical;
    min-height: 9rem;
    line-height: 1.6;
}

/* CTA 琛ㄥ崟鍐?Phone / WhatsApp 鍖哄彿 + 鍙风爜缁勫悎 */
.cta-form .phone-input-group {
    display: flex;
    gap: 0.8rem;
}
.cta-form .phone-input-group .cta-phone-area {
    flex: 0 0 7.5rem;
    text-align: center;
    font-weight: 600;
    color: #273342;
}
.cta-form .phone-input-group input[name="contact"] {
    flex: 1;
    min-width: 0;
}

.cta-form-submit {
    width: 100%;
    margin-top: 0.5rem;
    padding: 1.4rem;
    font-size: 1.6rem;
}

.cta-form-note {
    font-size: 1.2rem;
    color: #9aa6b2;
    margin: 1.2rem 0 0;
    text-align: left;
}

/* ===== Form Alert (鎴愬姛/澶辫触鎻愮ず闈㈡澘) ===== */
.form-alert {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 1.5rem;
    margin: 0 0 1.5rem 0;
    border-radius: 0.6rem;
    font-size: 1.4rem;
    line-height: 1.5;
    font-weight: 500;
    animation: formAlertSlide 0.3s ease-out;
}
@keyframes formAlertSlide {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}
.form-alert-icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
}
.form-alert-success {
    background: #e6f9ed;
    color: #0f6e35;
    border: 1px solid #34c759;
}
.form-alert-success .form-alert-icon { background: #34c759; }
.form-alert-error {
    background: #fdecea;
    color: #a91e1e;
    border: 1px solid #d63638;
}
.form-alert-error .form-alert-icon { background: #d63638; }
.form-alert-info {
    background: #e7f1ff;
    color: #1e4fa9;
    border: 1px solid #2271b1;
}
.form-alert-info .form-alert-icon { background: #2271b1; }

@media (max-width: 991px) {
    .cta-section {
        padding: 5rem 0;
        background-attachment: scroll;
    }
    .cta-inner {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    .cta-left .section-title {
        text-align: center;
    }
    .cta-left .section-title::after {
        margin-left: auto;
    }
    .cta-subtitle {
        text-align: center;
        margin-bottom: 3rem;
    }
}

@media (max-width: 575px) {
    .cta-section {
        padding: 4rem 0;
    }
    .cta-stats {
        gap: 1rem;
    }
    .cta-stat-card {
        padding: 1.8rem 0.8rem;
    }
    .cta-stat-icon {
        width: 4.4rem;
        height: 4.4rem;
        margin-bottom: 1rem;
    }
    .cta-stat-icon .iconfont {
        font-size: 2rem;
    }
    .cta-stat-num {
        font-size: 2.6rem;
    }
    .cta-stat-label {
        font-size: 1.2rem;
    }
    .cta-card {
        padding: 3rem 2rem;
    }
    .cta-card-title {
        font-size: 2.2rem;
    }
    .cta-subtitle {
        font-size: 1.4rem;
    }
}

/* Product Detail */
.product-detail-section {
    padding: 10rem 0 6rem;
    background: #F4F7FB;
}

.product-detail-main {
    display: grid;
    gap: 3rem;
    background: #fff;
    border-radius: 1.2rem;
    padding: 2rem;
    margin-bottom: 4rem;
}

.product-gallery {
    position: relative;
}

.product-main-img {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    aspect-ratio: 16/9;
    max-width: 100%;
    min-height: 0;
    margin-bottom: 1.5rem;
    cursor: grab;          /* 榧犳爣鎷栨嫿鍏夋爣 */
}

.product-main-img:active {
    cursor: grabbing;       /* 鎷栨嫿涓厜鏍?*/
}

/* swiper 瀹瑰櫒缁濆瀹氫綅濉弧 .product-main-img,閬垮厤鎾戠垎鐖跺鍣?*/
.product-main-swiper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.product-main-swiper .swiper-wrapper {
    height: 100%;
}

.product-main-swiper .swiper-slide {
    width: 100%;
    height: 100%;
    flex-shrink: 0;
}

.product-main-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 鍏滃簳:濡傛灉 .product-main-img 涓嶅湪 grid/flex 涓?淇濆簳鏈€澶ч珮搴?*/
/* 涓诲浘鍒嗛〉鐐?*/
.product-main-pagination {
    bottom: 1rem !important;
}

.product-main-pagination .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.6;
    width: 0.7rem;
    height: 0.7rem;
    margin: 0 0.3rem !important;
    transition: all 0.25s ease;
}

.product-main-pagination .swiper-pagination-bullet-active {
    background: #FE7610;
    opacity: 1;
    width: 1.6rem;          /* 褰撳墠鍒嗛〉鐐规媺闀?*/
    border-radius: 0.35rem;
}

/* 缂╃暐鍥?鍘熺敓 grid 5 鍒楀竷灞€,姣忓紶 1/5 瀹瑰櫒瀹?16:9 姣斾緥 */
.product-thumbs {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

.product-thumbs img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 0.6rem;
    cursor: pointer;
    border: 0.2rem solid transparent;
    transition: all 0.3s ease;
}

.product-thumbs img:hover,
.product-thumbs img.active {
    border-color: #0046C7;
}

@media (max-width: 575px) {
    .product-thumbs {
        grid-template-columns: repeat(3, 1fr);
    }
}

.product-info h1 {
    font-size: 2.8rem;
    color: #273342;
    margin-bottom: 1.5rem;
}

.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 1.8rem;
}

.product-tags > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
    border-radius: 0.5rem;
    font-weight: 500;
}

.tag-bestseller {
    background: #FE7610;
    color: #fff;
    padding: 0.5rem 1.2rem;
    font-size: 1.4rem;
}

.tag-new {
    background: #22c55e;
    color: #fff;
    padding: 0.5rem 1.2rem;
    font-size: 1.4rem;
}

/* 鑷畾涔変骇鍝佹爣绛?鍗曡褰╄壊瀹炲績 */
.tag-default {
    padding: 0.5rem 1.2rem;
    color: #fff;
    font-size: 1.4rem;
    font-weight: 500;
    border-radius: 0.4rem;
    letter-spacing: 0.01em;
}

@media (max-width: 575px) {
    .product-tags {
        gap: 0.6rem;
    }
    .tag-default {
        padding: 0.4rem 0.9rem;
        font-size: 1.2rem;
    }
}

.product-params {
    width: 100%;
    margin: 2rem 0;
    border-collapse: collapse;
}

.product-params td {
    padding: 1.2rem 1.5rem;
    border-bottom: 0.1rem solid #E2E8F0;
    font-size: 1.6rem;
}

.product-params td:first-child {
    color: #8B9BAB;
    width: 40%;
}

.product-params td:last-child {
    color: #273342;
    font-weight: 500;
}

.product-action-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.product-action-buttons .btn {
    flex: 1;
    min-width: 16rem;
}

.product-tabs {
    background: #fff;
    border-radius: 1.2rem;
    padding: 2rem;
    margin-bottom: 4rem;
}

/* Recommended Products */
.recommended-section {
    padding-bottom: 6rem;
    background: #F4F7FB;
}

.recommended-section .section-title {
    margin-bottom: 3rem;
}

.recommended-swiper-wrap {
    position: relative;
}

.recommended-swiper {
    padding: 1rem 0.5rem;
    overflow: hidden;
}

.recommended-swiper .swiper-slide {
    height: auto;
}

/* Recommended: 鍒嗛〉鍣?(灞呬腑) */
.recommended-pagination {
    position: relative !important;
    width: auto !important;
    bottom: auto !important;
    margin: 3rem auto 0 !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    min-height: 1.2rem;
}

.recommended-pagination .swiper-pagination-bullet {
    width: 0.8rem;
    height: 0.8rem;
    background: #C5D2E2;
    opacity: 1;
    margin: 0 !important;
    transition: all 0.3s ease;
    cursor: pointer;
}

.recommended-pagination .swiper-pagination-bullet-active {
    background: #0046C7;
    width: 2.4rem;
    border-radius: 0.4rem;
}

.tab-nav {
    display: flex;
    gap: 0;
    border-bottom: 0.2rem solid #E2E8F0;
    margin-bottom: 3rem;
    overflow: hidden;
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}
.tab-nav button {
    flex: 1;
    padding: 1.4rem 1rem;
    font-size: 1.7rem;
    font-weight: 500;
    color: #5A6B7B;
    border-bottom: none;
    border-radius: 0.6rem;
    margin: 0 0.2rem -0.2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    cursor: pointer;
    background: transparent;
    position: relative;
    text-align: center;
}
.tab-nav button:hover {
    color: #0046C7;
    background: rgba(0, 70, 199, 0.04);
}
.tab-nav button.active {
    color: #fff;
    font-weight: 600;
    background: linear-gradient(135deg, #0046C7 0%, #0066FF 100%);
    box-shadow: 0 0.4rem 1.2rem rgba(0, 70, 199, 0.28);
}

.tab-content {
    display: none;
    font-size: 1.6rem;
    line-height: 1.8;
}

.tab-content.active {
    display: block;
}

/* ===== Tab Details 鍖哄煙棰勮 HTML 鏍峰紡 =====
 * 浜у搧璇︽儏 Details 鏍囩鍐呭鏉ヨ嚜 WP 缂栬緫鍣ㄧ殑 post_content,
 * 鍏佽鐢ㄦ埛鐢?HTML(<h3><p><table><strong><img>)鐩存帴缂栬緫,
 * 涓嬮潰缁欒繖浜涙爣绛鹃璁剧粺涓€鏍峰紡,鏃犻渶鐢ㄦ埛棰濆鍐?inline style.
 */
#tab-details h1,
#tab-details h2,
#tab-details h3,
#tab-details h4,
#tab-details h5 {
    color: #1A2533;
    font-weight: 600;
    line-height: 1.4;
    margin: 2.8rem 0 1.2rem;
}
#tab-details h1 { font-size: 2.6rem; }
#tab-details h2 { font-size: 2.2rem; }
#tab-details h3 { font-size: 2.0rem; padding-bottom: 0.8rem; border-bottom: 0.2rem solid #E2E8F0; }
#tab-details h4 { font-size: 1.8rem; }
#tab-details h5 { font-size: 1.6rem; }
#tab-details > h3:first-child,
#tab-details > h2:first-child,
#tab-details > h1:first-child {
    margin-top: 0;
}

#tab-details p {
    margin: 0 0 1.6rem;
    color: #4A5568;
    line-height: 1.85;
}

#tab-details strong {
    color: #1A2533;
    font-weight: 600;
}

#tab-details a {
    color: #0046C7;
    text-decoration: none;
    transition: color 0.2s ease;
}
#tab-details a:hover {
    color: #0066FF;
    text-decoration: underline;
}

#tab-details ul,
#tab-details ol {
    margin: 0 0 1.8rem;
    padding-left: 2.2rem;
    color: #4A5568;
}
#tab-details li {
    margin-bottom: 0.6rem;
    line-height: 1.85;
}

#tab-details img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 2.4rem auto;
    border-radius: 0.6rem;
}
#tab-details figure {
    margin: 2.4rem 0;
}
#tab-details figcaption {
    margin-top: 0.8rem;
    text-align: center;
    color: #5A6B7B;
    font-size: 1.4rem;
}

/* Table 鏍峰紡:浜у搧鍙傛暟 / 瑙勬牸 / 瀹氬埗閫夐」 绛夎〃鏍?*/
#tab-details table {
    width: 100%;
    border-collapse: collapse;
    margin: 2.4rem 0 3rem;
    background: #fff;
    border: 0.1rem solid #E2E8F0;
    border-radius: 0.6rem;
    overflow: hidden;
    font-size: 1.5rem;
}
#tab-details table thead th {
    background: linear-gradient(135deg, #0046C7 0%, #0066FF 100%);
    color: #fff;
    font-weight: 600;
    text-align: left;
    padding: 1.4rem 1.6rem;
    border-bottom: 0.2rem solid #0046C7;
    white-space: nowrap;
}
#tab-details table tbody td,
#tab-details table tbody th {
    padding: 1.2rem 1.6rem;
    border-bottom: 0.1rem solid #E2E8F0;
    color: #4A5568;
    vertical-align: middle;
    font-weight: 400;   /* 统一字重:所有列都 normal,避免 Section 500/其他 400 视觉差 */
}
/* Section 鍒?rowspan 鍚堝苟鐨勫崟鍏冩牸)鍨傜洿灞呬腑 + 灞呬腑 */
#tab-details table tbody td[rowspan] {
    vertical-align: middle;
    text-align: center;
    background: #F4F7FB;
    color: #1A2533;
    font-weight: 400;
}
#tab-details table tbody tr:nth-child(even) {
    background: #F4F7FB;
}
#tab-details table tbody tr:hover {
    background: rgba(0, 70, 199, 0.04);
}
#tab-details table tbody tr:last-child td {
    border-bottom: none;
}
#tab-details table td strong {
    color: #1A2533;
    font-weight: 600;
}

/* Contact Page */
.contact-section {
    padding: 10rem 0 6rem;
    background: #F4F7FB;
}

.contact-grid {
    display: grid;
    gap: 4rem;
    background: #fff;
    border-radius: 1.2rem;
    padding: 3rem;
}

.contact-info h2,
.contact-form-area h2 {
    font-size: 2.8rem;
    color: #273342;
    margin-bottom: 3rem;
}

.contact-info-grid {
    display: grid;
    gap: 1.5rem;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: #F4F7FB;
    border-radius: 1.2rem;
    border: 0.1rem solid transparent;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    background: #fff;
    border-color: #FE7610;
    box-shadow: 0 0.6rem 1.5rem rgba(0, 0, 0, 0.06);
}

.contact-info-icon {
    width: 5rem;
    height: 5rem;
    flex-shrink: 0;
    background: #0046C7;
    color: #fff;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
}

.contact-info-label {
    font-size: 1.4rem;
    color: #8B9BAB;
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-info-value {
    font-size: 1.6rem;
    color: #273342;
    font-weight: 600;
    line-height: 1.5;
}

/* 鍦板潃琛岀揣鍑戞牱寮?*/
.contact-info-value.address-line {
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.4;
    margin-top: 0.3rem;
}

/* 鍦板潃缁勬牱寮?*/
.address-group {
    margin-top: 0.8rem;
}

.address-item {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 0.6rem;
    font-size: 1.4rem;
    line-height: 1.5;
}

.address-item:last-child {
    margin-bottom: 0;
}

.address-tag {
    flex-shrink: 0;
    font-weight: 600;
    color: #0046C7;
    min-width: 6rem;
}

.address-text {
    color: #5A6B7B;
    font-weight: 400;
}

.contact-info-value a:hover {
    color: #0046C7;
}

.contact-info-qr {
    margin-top: 2rem;
    padding: 2rem;
    background: #F4F7FB;
    border-radius: 1.2rem;
    text-align: center;
}

.contact-info-qr img {
    max-width: 14rem;
    margin-bottom: 1rem;
}

.contact-info-qr p {
    font-size: 1.6rem;
    color: #273342;
    font-weight: 600;
}

.contact-info-qr a:hover {
    color: #0046C7;
}

.contact-form-grid {
    display: grid;
    gap: 2rem;
}

.phone-input-group {
    display: flex;
    gap: 1rem;
}

.phone-input-group .phone-area-code {
    flex: 0 0 12rem;
}

.phone-input-group .phone-number {
    flex: 1;
}

/* contact 椤甸潰琛ㄥ崟鎻愮ず闈㈡澘:璐村悎缃戞牸椤堕儴 */
.contact-form .form-alert {
    margin-bottom: 1.5rem;
}
.contact-form .form-alert-error {
    background: #fdecea;
    color: #b3261e;
    border: 1px solid rgba(179, 38, 30, 0.2);
}
.contact-form .form-alert-success {
    background: #e6f4ea;
    color: #1e6e3a;
    border: 1px solid rgba(30, 110, 58, 0.2);
}

@media (min-width: 768px) {
    .contact-form-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-form-grid .form-group:last-child,
    .contact-form-grid .form-group:nth-last-child(2) {
        grid-column: 1 / -1;
    }
}

/* FAQ */
.faq-section {
    padding: 10rem 0 6rem;
    background: #F4F7FB;
}

.faq-grid {
    display: grid;
    gap: 2rem;
}

.faq-item {
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.04);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    cursor: pointer;
    font-size: 1.6rem;
    font-weight: 600;
    color: #273342;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #0046C7;
}

.faq-question .faq-icon {
    font-size: 2.4rem;
    color: #0046C7;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
}

.faq-item.active .faq-question .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
    padding: 0 2rem 2rem;
    color: #5A6B7B;
    font-size: 1.6rem;
    line-height: 1.8;
}

/* About */
.about-section {
    padding: 10rem 0 6rem;
    background: #F4F7FB;
}

.about-view1 {
    margin-bottom: 6rem;
}

.about-view1-wrap {
    margin-bottom: 4rem;
}

.about-view1-name {
    display: inline-block;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #0046C7;
    margin-bottom: 1.6rem;
    position: relative;
    padding-left: 3.2rem;
}

.about-view1-name::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 2.4rem;
    height: 0.2rem;
    background: #FE7610;
}

.about-view1-title {
    font-size: 2.6rem;
    font-weight: 300;
    line-height: 1.4;
    color: #273342;
    margin-bottom: 2rem;
}

.about-view1-desc {
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.9;
    color: #5A6B7B;
}

.about-view1-slider {
    position: relative;
}

.about-view1-swiper {
    overflow: hidden;
}

.about-view1-swiper .swiper-slide {
    width: 85%;
    border-radius: 1.2rem;
    overflow: hidden;
}

.about-view1-swiper .swiper-slide img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    display: block;
}

.about-view1-nav {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

.av1-btn {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    border: 0.1rem solid #D5DEE8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #273342;
    cursor: pointer;
    transition: all 0.3s ease;
}

.av1-btn:hover {
    background: #0046C7;
    border-color: #0046C7;
    color: #fff;
}

.about-content {
    background: #fff;
    border-radius: 1.2rem;
    padding: 4rem;
    margin-bottom: 4rem;
}

.about-content:last-child {
    margin-bottom: 0;
}

.about-content h2 {
    font-size: 2.8rem;
    color: #273342;
    margin-bottom: 2rem;
}

.culture-scroll {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding-bottom: 1.5rem;
    scroll-snap-type: x mandatory;
}

.culture-card {
    flex: 0 0 28rem;
    scroll-snap-align: start;
    background: #F4F7FB;
    border-radius: 1.2rem;
    padding: 3rem 2rem;
    text-align: center;
    border: 0.1rem solid transparent;
    transition: all 0.3s ease;
}

.culture-card:hover {
    border-color: #FE7610;
    box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.08);
}

.culture-card .icon {
    width: 9rem;
    height: 9rem;
    background: linear-gradient(135deg, #0046C7, #0066FF);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: #fff;
    font-size: 3.6rem;
}

.culture-card h3 {
    font-size: 2rem;
    color: #273342;
    margin-bottom: 1rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2.5rem;
    background: #F4F7FB;
    border-radius: 1.2rem;
}

.stat-item .number {
    font-size: 3.6rem;
    font-weight: 700;
    color: #0046C7;
    line-height: 1;
    margin-bottom: 0.8rem;
}

.stat-item .label {
    font-size: 1.6rem;
    color: #5A6B7B;
}

/* Strength Stats (static) */
.strength-marquee {
    position: relative;
    padding: 1rem 0;
}

.strength-marquee-track {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.strength-marquee-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.6rem;
    padding: 2rem 2.6rem;
    background: #fff;
    border-radius: 1.2rem;
    white-space: nowrap;
    flex: 1 1 18rem;
    min-width: 18rem;
    max-width: 26rem;
    border-left: 0.4rem solid #0046C7;
    box-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.04);
}

.strength-marquee-item:nth-child(even) {
    border-left-color: #FE7610;
}

.strength-marquee-item .number {
    font-size: 3.6rem;
    font-weight: 800;
    color: #0046C7;
    line-height: 1;
}

.strength-marquee-item:nth-child(even) .number {
    color: #FE7610;
}

.strength-marquee-item .label {
    font-size: 1.6rem;
    color: #5A6B7B;
    font-weight: 500;
}

/* ===== Home About (merged Company Strength) ===== */
.home-about {
    background: #F4F7FB;
}

.home-about-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.home-about-tag {
    display: inline-block;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
    color: #FE7610;
    margin-bottom: 1.2rem;
}

.home-about-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: #001e50;
    line-height: 1.25;
    margin-bottom: 2rem;
}

.home-about-text p {
    font-size: 1.6rem;
    line-height: 1.85;
    color: #5A6B7B;
    margin-bottom: 1.6rem;
}

.home-about-text .btn {
    margin-top: 1rem;
}

.home-about-media {
    position: relative;
    border-radius: 1.6rem;
    overflow: hidden;
}

.home-about-media img {
    width: 100%;
    display: block;
    border-radius: 1.6rem;
}

.home-about-badge {
    position: absolute;
    left: 2rem;
    bottom: 2rem;
    background: rgba(0, 30, 80, 0.85);
    color: #fff;
    padding: 1.4rem 2rem;
    border-radius: 1rem;
    backdrop-filter: blur(4px);
}

.home-about-badge strong {
    display: block;
    font-size: 2rem;
    font-weight: 800;
}

.home-about-badge span {
    font-size: 1.4rem;
    opacity: 0.85;
}

@media (min-width: 992px) {
    .home-about-inner {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 5rem;
    }
    .home-about-title {
        font-size: 3.8rem;
    }
}

/* ===== Wide Application Scenarios ===== */
.scenarios-section {
    background: #fff;
}

.scenario-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.6rem;
}

.scenario-card {
    position: relative;
    display: block;
    border-radius: 1.2rem;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    text-decoration: none;
}

.scenario-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scenario-card:hover img {
    transform: scale(1.08);
}

.scenario-mask {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 20, 60, 0.88) 0%, rgba(0, 20, 60, 0.25) 45%, transparent 72%);
}

.scenario-label {
    position: absolute;
    left: 1.6rem;
    right: 6rem;
    bottom: 1.8rem;
    color: #fff;
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.35;
    z-index: 2;
}

.scenario-icon {
    position: absolute;
    right: 1.4rem;
    bottom: 1.4rem;
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0046C7;
    font-size: 2.4rem;
    z-index: 2;
    transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
    transform-origin: center center;
    will-change: transform;
}

.scenario-icon .iconfont {
    font-size: 2.4rem;
}

.scenario-card:hover .scenario-icon {
    background: #FE7610;
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 0.4rem 1.2rem rgba(254, 118, 16, 0.3);
}

.scenario-card:not(:hover) .scenario-icon {
    transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.scenario-card:hover .scenario-icon .iconfont {
    font-size: 2.4rem;
}

@media (min-width: 768px) {
    .scenario-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 992px) {
    .scenario-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
}

.about-video-wrap {
    position: relative;
    border-radius: 1.2rem;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.about-video-poster {
    position: relative;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.about-video-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    transition: background 0.3s ease;
}

.about-video-poster:hover .video-overlay {
    background: rgba(0, 0, 0, 0.25);
}

.about-video-poster .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6.4rem;
    height: 6.4rem;
    background: #FE7610;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    z-index: 2;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.about-video-poster .play-btn .iconfont {
    font-size: 2.2rem;
    line-height: 1;
}

.about-video-poster:hover .play-btn {
    transform: translate(-50%, -50%) scale(1.1);
}

.play-btn::after {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    content: "";
    background-color: rgba(254, 118, 16, 0.5);
    opacity: 0.4;
    animation-name: playAnimation;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-out;
    animation-delay: 0s;
    z-index: -1;
}

.play-btn::before {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    content: "";
    background-color: rgba(254, 118, 16, 0.3);
    opacity: 0.3;
    animation-name: playAnimation;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-out;
    animation-delay: 0.6s;
    z-index: -1;
}

@keyframes playAnimation {
    0% {
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

.about-video-container {
    position: absolute;
    inset: 0;
    border-radius: 1.2rem;
    overflow: hidden;
}

.about-video-container iframe {
    width: 100%;
    height: 100%;
}

.honors-grid {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
    grid-template-columns: repeat(2, 1fr);
}

/* Honors horizontal scroll - auto scroll */
.honors-scroll {
    overflow: hidden;
    padding: 1rem 0 2rem;
    position: relative;
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.honors-scroll-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: honorsAutoScroll 25s linear infinite;
}

.honors-scroll:hover .honors-scroll-track {
    animation-play-state: paused;
}

@keyframes honorsAutoScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.honor-item {
    flex-shrink: 0;
    width: 26rem;
    border-radius: 1.2rem;
    overflow: hidden;
    background: #F4F7FB;
    transition: all 0.3s ease;
    box-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.04);
}

.honor-item img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
}

.honor-item span {
    display: block;
    padding: 1.5rem;
    font-weight: 600;
    color: #273342;
    text-align: center;
    font-size: 1.6rem;
}

.honor-item:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
}

.honor-item i {
    color: #FE7610;
    font-size: 2.8rem;
}

@media (min-width: 768px) {
    .about-view1-title {
        font-size: 3.2rem;
    }
    .about-view1-swiper .swiper-slide {
        width: 58rem;
    }
    .culture-scroll {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        overflow-x: visible;
    }
    .about-stats {
        grid-template-columns: repeat(4, 1fr);
    }
    .honors-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 992px) {
    .culture-scroll {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* List Pages */
.list-section {
    padding: 10rem 0 6rem;
    background: #F4F7FB;
}

.list-grid {
    display: grid;
    gap: 2rem;
}

/* Category Filter */
.category-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
}

.category-filter a {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2rem;
    border-radius: 3rem;
    background: #fff;
    color: #273342;
    font-size: 1.6rem;
    font-weight: 500;
    border: 0.1rem solid #E2E8F0;
    transition: all 0.3s ease;
}

.category-filter a i {
    font-size: 1.6rem;
    color: #0046C7;
    transition: color 0.3s ease;
}

.category-filter a:hover i,
.category-filter a.active i {
    color: #fff;
}

.category-filter a:hover,
.category-filter a.active {
    background: #0046C7;
    color: #fff;
    border-color: #0046C7;
}

/* Service */
.service-section {
    padding: 10rem 0 6rem;
    background: #F4F7FB;
}

.service-card {
    background: #fff;
    border-radius: 1.2rem;
    padding: 3rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 0.1rem solid transparent;
}

.service-card:hover {
    box-shadow: 0 1.2rem 3rem rgba(0, 0, 0, 0.12);
    border: 0.1rem solid #FE7610;
}

.service-card .icon {
    width: 10rem;
    height: 10rem;
    background: linear-gradient(135deg, #0046C7, #0039A6);
    border-radius: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2.5rem;
    color: #fff;
    font-size: 4.2rem;
    transition: all 0.4s ease;
}

.service-card .icon .iconfont {
    font-size: 4.2rem;
}

.service-card:hover .icon {
    transform: scale(1.08) rotate(-3deg);
    border-radius: 2.4rem;
}

.service-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 4rem;
    flex-wrap: wrap;
}

.service-process {
    background: #fff;
}

.process-grid {
    display: grid;
    gap: 2rem;
}

.process-step {
    position: relative;
    text-align: center;
    padding: 3rem 2rem;
    background: #F4F7FB;
    border-radius: 1.2rem;
}

.process-step .step-number {
    width: 5rem;
    height: 5rem;
    background: #0046C7;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.process-step h3 {
    font-size: 2rem;
    color: #273342;
    margin-bottom: 1rem;
}

.global-support {
    background: linear-gradient(135deg, #0046C7 0%, #0066FF 60%, #00A8FF 100%);
    color: #fff;
    position: relative;
}

.global-support::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://picsum.photos/1920/700?random=99') center/cover;
    opacity: 0.1;
}

.global-support .section-title {
    color: #fff;
}

.support-grid {
    display: grid;
    gap: 2rem;
}

.support-item {
    background: rgba(255, 255, 255, 0.08);
    border: 0.1rem solid rgba(255, 255, 255, 0.15);
    border-radius: 1.2rem;
    padding: 3rem;
    text-align: center;
    backdrop-filter: blur(0.4rem);
}

.support-item .icon {
    font-size: 3.2rem;
    color: #FE7610;
    margin-bottom: 1.5rem;
}

.support-item .icon .iconfont {
    font-size: 3.2rem;
}

.support-item h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .process-grid,
    .support-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .process-grid,
    .support-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sitemap */
.sitemap-section {
    padding: 10rem 0 6rem;
    background: #F4F7FB;
}

.sitemap-grid {
    display: grid;
    gap: 3rem;
}

.sitemap-block {
    background: #fff;
    border-radius: 1.2rem;
    padding: 3rem;
}

.sitemap-block h3 {
    font-size: 2rem;
    color: #273342;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 0.1rem solid #E2E8F0;
}

.sitemap-block ul {
    display: grid;
    gap: 1rem;
}

.sitemap-block a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #5A6B7B;
    font-size: 1.6rem;
    transition: color 0.3s ease;
}

.sitemap-block a:hover {
    color: #0046C7;
}

.sitemap-block a::before {
    content: '';
    width: 0.6rem;
    height: 0.6rem;
    background: #FE7610;
    border-radius: 50%;
}

.sitemap-rank-list {
    counter-reset: rank;
}

.sitemap-rank-list li {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.2rem 0;
    border-bottom: 0.1rem solid #F4F7FB;
}

.sitemap-rank-list li::before {
    counter-increment: rank;
    content: counter(rank);
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0046C7;
    color: #fff;
    border-radius: 0.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* Legal Statement */
.legal-section {
    padding: 10rem 0 6rem;
    background: #F4F7FB;
}

.legal-content {
    background: #fff;
    border-radius: 1.2rem;
    padding: 4rem;
}

.legal-content h2 {
    font-size: 2.4rem;
    color: #273342;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 2rem;
    color: #5A6B7B;
    line-height: 2;
}

@media (min-width: 768px) {
    .sitemap-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .sitemap-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.sitemap-rank-section {
    margin-top: 3rem;
}

.sitemap-block.full-width {
    grid-column: 1 / -1;
}

/* Sub Navigation - Horizontal Pill Buttons */
.sub-nav {
    padding: 0 0 4rem;
}

.sub-nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.sub-nav a {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2rem;
    border-radius: 3rem;
    background: #fff;
    color: #273342;
    font-size: 1.6rem;
    font-weight: 500;
    border: 0.1rem solid #E2E8F0;
    transition: all 0.3s ease;
    text-decoration: none;
}

.sub-nav a i {
    font-size: 1.6rem;
    color: #0046C7;
    transition: color 0.3s ease;
}

.sub-nav a:hover i,
.sub-nav a.active i {
    color: #fff;
}

.sub-nav a:hover,
.sub-nav a.active {
    background: #0046C7;
    color: #fff;
    border-color: #0046C7;
}

/* Sub Navigation - Detail Page (Text Links with Underline) */
.sub-nav-detail {
    padding: 2rem 0;
    background: #fff;
    border-bottom: 0.1rem solid #E2E8F0;
}

.sub-nav-detail ul {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 3rem;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.sub-nav-detail a {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 0;
    background: transparent !important;
    color: #5A6B7B;
    font-size: 1.6rem;
    font-weight: 500;
    border: none !important;
    border-bottom: 0.2rem solid transparent;
    border-radius: 0 !important;
    transition: all 0.3s ease;
    text-decoration: none;
}

.sub-nav-detail a i {
    font-size: 1.6rem;
    color: #0046C7;
    transition: color 0.3s ease;
}

.sub-nav-detail a:hover,
.sub-nav-detail a.active {
    background: transparent !important;
    color: #0046C7;
    border: none !important;
    border-bottom: 0.2rem solid #0046C7 !important;
}

.sub-nav-detail a:hover i,
.sub-nav-detail a.active i {
    color: #0046C7;
}

/* Case List Layout */
.case-layout {
    display: grid;
    gap: 3rem;
}

.case-sidebar {
    background: #fff;
    border-radius: 1.2rem;
    padding: 2.5rem;
    box-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.04);
    height: fit-content;
}

.case-sidebar h3 {
    font-size: 2rem;
    color: #273342;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 0.1rem solid #E2E8F0;
}

.case-sidebar ul {
    display: grid;
    gap: 1rem;
}

.case-sidebar a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 1.5rem;
    border-radius: 0.8rem;
    color: #5A6B7B;
    font-size: 1.6rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.case-sidebar a:hover,
.case-sidebar a.active {
    background: #0046C7;
    color: #fff;
}

.case-sidebar a i {
    font-size: 1.6rem;
    color: #FE7610;
    transition: color 0.3s ease;
}

.case-sidebar a:hover i,
.case-sidebar a.active i {
    color: #fff;
}

.case-main .grid-3 {
    gap: 2rem;
}

@media (min-width: 992px) {
    .case-layout {
        grid-template-columns: 26rem 1fr;
        align-items: start;
    }
}

/* Case List New Card Design */
.case-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.case-card-new {
    position: relative;
    border-radius: 1.2rem;
    overflow: hidden;
    aspect-ratio: 4/3;
    display: block;
    cursor: pointer;
}

.case-card-new img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.case-card-new-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(0,20,60,0.85) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    transition: background 0.4s ease;
}

.case-card-new-tag {
    display: inline-block;
    font-size: 1.2rem;
    font-weight: 600;
    color: #FE7610;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.6rem;
    transition: transform 0.3s ease;
}

.case-card-new-overlay h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.3;
    transition: transform 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 1280px) {
    .case-card-new-overlay h3 {
        font-size: 1.6rem;
        line-height: 1.35;
    }
}

.case-card-new:hover img {
    transform: scale(1.1);
}

.case-card-new:hover .case-card-new-overlay {
    background: linear-gradient(180deg, transparent 10%, rgba(0,70,199,0.9) 100%);
}

.case-card-new:hover .case-card-new-tag {
    transform: translateY(-0.3rem);
}

.case-card-new:hover .case-card-new-overlay h3 {
    transform: translateY(-0.3rem);
}

/* Contact Info v4 - minimal */
.contact-info-list {
    display: grid;
    gap: 2rem;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 1.8rem;
    padding: 1.8rem 0;
    border-bottom: 0.1rem solid #E2E8F0;
    transition: all 0.3s ease;
}

.contact-info-item:last-child {
    border-bottom: none;
}

.contact-info-item .icon {
    width: 4.8rem;
    height: 4.8rem;
    background: #F4F7FB;
    color: #0046C7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-info-item:hover .icon {
    background: #0046C7;
    color: #fff;
}

.contact-info-item .label {
    font-size: 1.4rem;
    color: #8B9BAB;
    margin-bottom: 0.3rem;
}

.contact-info-item .value {
    font-size: 1.6rem;
    color: #273342;
    font-weight: 500;
    line-height: 1.5;
}

.contact-info-item .value a {
    color: #273342;
    transition: color 0.3s ease;
}

.contact-info-item:hover .value a {
    color: #0046C7;
}

.contact-info-qr {
    margin-top: 2.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    padding: 2rem;
    background: #F4F7FB;
    border-radius: 1.2rem;
}

.contact-info-qr .qr-img-wrap {
    text-align: center;
}

.contact-info-qr .qr-img-wrap img {
    max-width: 12rem;
    margin: 0 auto;
}

.contact-info-qr .qr-text {
    text-align: center;
}

.contact-info-qr .qr-text p {
    font-size: 1.4rem;
    color: #273342;
    font-weight: 500;
    margin-bottom: 1rem;
}

.contact-info-qr .qr-text a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #25D366;
    font-weight: 600;
    font-size: 1.6rem;
}

.contact-info-qr .qr-text a:hover {
    color: #128C7E;
}

/* About Page Redesign */

.culture-scroll {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding-bottom: 1rem;
    scroll-snap-type: x mandatory;
}

.culture-card {
    flex: 0 0 28rem;
    scroll-snap-align: start;
    background: #F4F7FB;
    border-radius: 1.2rem;
    padding: 3rem 2rem;
    text-align: center;
    border: 0.1rem solid transparent;
    transition: all 0.3s ease;
}

.culture-card:hover {
    border-color: #FE7610;
    box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.08);
}

.culture-card .icon {
    width: 9rem;
    height: 9rem;
    background: linear-gradient(135deg, #0046C7, #0039A6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: #fff;
    font-size: 3.6rem;
}

.culture-card h3 {
    font-size: 2rem;
    color: #273342;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .culture-scroll {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        overflow-x: visible;
    }
}

@media (min-width: 992px) {
    .culture-scroll {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Culture Banner - 鍏ㄥ睆鑳屾櫙鍥?搴曢儴涓夊垪浜や簰 */
.culture-banner {
    position: relative;
    width: 100vw;
    height: 55rem;
    overflow: hidden;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.culture-banner-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 0;
}

.culture-banner-bg[data-index="0"] {
    background-image: url('../images/about-cluture1.png');
}

.culture-banner-bg[data-index="1"] {
    background-image: url('../images/about-cluture2.png');
}

.culture-banner-bg[data-index="2"] {
    background-image: url('../images/about-cluture3.png');
}

.culture-banner-bg.culture-bg-active {
    opacity: 1;
}

.culture-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 30, 80, 0.3) 0%, rgba(0, 30, 80, 0.1) 50%, rgba(0, 70, 199, 0.75) 100%);
    z-index: 1;
}

.culture-banner-title {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    font-size: 3.6rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding-top: 4rem;
}

.culture-banner-columns {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    display: flex;
    height: 28rem;
}

.culture-banner-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 3rem 2rem 4rem;
    text-align: center;
    color: #fff;
    cursor: pointer;
    position: relative;
    transition: background 0.5s ease;
    overflow: hidden;
}

.culture-banner-col::before {
    content: '';
    position: absolute;
    inset: 0;
    background: transparent;
    transition: background 0.5s ease;
    z-index: 0;
}

.culture-banner-col.active::before {
    background: rgba(0, 100, 220, 0.55);
}

.culture-banner-col > * {
    position: relative;
    z-index: 1;
}

.culture-banner-icon {
    width: 6rem;
    height: 6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}

.culture-banner-icon i {
    font-size: 4.5rem;
    color: #fff;
    filter: drop-shadow(0 0.2rem 0.6rem rgba(0, 0, 0, 0.3));
}

.culture-banner-text {
    transition: transform 0.45s ease;
}

.culture-banner-col:hover .culture-banner-text {
    transform: translateY(-1.2rem);
}

.culture-banner-col h3 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: #fff;
}

.culture-banner-col p {
    font-size: 1.45rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

@media (max-width: 991px) {
    .culture-banner {
        height: auto;
        min-height: 40rem;
    }
    .culture-banner-columns {
        position: relative;
        height: auto;
        flex-direction: column;
    }
    .culture-banner-col {
        padding: 2.5rem 2rem;
        min-height: 14rem;
    }
    .culture-banner-title {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        text-align: center;
        padding: 3rem 2rem 1rem;
    }
}

/* Video Modal */
.video-modal {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.video-modal.active {
    display: flex;
}

.video-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
}

.video-modal-content {
    position: relative;
    width: 100%;
    max-width: 100rem;
    aspect-ratio: 16/9;
    z-index: 1;
    animation: modalIn 0.3s ease;
}

.video-modal-content iframe {
    width: 100%;
    height: 100%;
    border-radius: 1.2rem;
}

.video-modal-close {
    position: absolute;
    top: -4rem;
    right: 0;
    font-size: 2.4rem;
    color: #fff;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 2;
}

.video-modal-close:hover {
    color: #FE7610;
}

/* Recommended Products Pagination 宸茶 .recommended-controls 瀹瑰櫒鏇夸唬,瑙勫垯缁熶竴鍦ㄤ笂鏂圭鐞?*/

/* Recommended News with Images */
.recommended-news {
    margin-top: 5rem;
}

.recommended-news .section-title {
    text-align: left;
    font-size: 2.4rem;
    margin-bottom: 2rem;
}

.recommended-news-grid {
    display: grid;
    gap: 2rem;
}

.recommended-news-card {
    background: #fff;
    border-radius: 1.2rem;
    overflow: hidden;
    box-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.04);
    border: 0.1rem solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
}

.recommended-news-card:hover {
    border-color: #FE7610;
    box-shadow: 0 1.2rem 3rem rgba(0, 0, 0, 0.1);
}

.recommended-news-card .card-img {
    aspect-ratio: 16/10;
}

.recommended-news-card .card-body {
    padding: 2rem;
}

.recommended-news-card .card-tag {
    display: inline-block;
    font-size: 1.2rem;
    font-weight: 600;
    color: #FE7610;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.6rem;
}

.recommended-news-card .news-date {
    color: #8B9BAB;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.recommended-news-card h3 {
    font-size: 1.8rem;
    color: #273342;
    margin-bottom: 0.8rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.recommended-news-card p {
    font-size: 1.4rem;
    color: #5A6B7B;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .recommended-news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .recommended-news-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mega Cases Featured Redesign */
.mega-cases-featured {
    background: linear-gradient(135deg, rgba(0, 70, 199, 0.92), rgba(0, 57, 166, 0.92));
    border-radius: 1.2rem;
    padding: 3rem;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mega-cases-featured h3 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
}

.mega-cases-featured p {
    font-size: 1.6rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.mega-cases-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.mega-cases-stats .stat {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
}

.mega-cases-stats .stat strong {
    display: block;
    font-size: 2.2rem;
    color: #FE7610;
    margin-bottom: 0.4rem;
}

.mega-cases-stats .stat span {
    font-size: 1.4rem;
    opacity: 0.9;
}

/* Case Detail */
.case-detail-img {
    border-radius: 1.2rem;
    overflow: hidden;
    margin-bottom: 3rem;
    aspect-ratio: 16/8;
}

.case-detail-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-list {
    margin-left: 2rem;
    color: #5A6B7B;
    line-height: 2;
}

/* Map */
.map-wrapper {
    margin-top: 4rem;
    background: #fff;
    border-radius: 1.2rem;
    overflow: hidden;
}

.map-iframe {
    width: 100%;
    height: 40rem;
    border: 0;
    display: block;
}

.map-actions {
    padding: 2rem;
    text-align: center;
}

.map-actions .btn {
    border: none;
}

/* Search summary */
.search-summary {
    margin-bottom: 3rem;
    color: #5A6B7B;
    font-size: 1.8rem;
}

.search-summary strong {
    color: #273342;
}

/* News detail title */
.news-detail-title {
    font-size: 3rem;
    color: #273342;
    margin-bottom: 2rem;
}

/* Content Typography - h1-h6 & Table */
.about-content h1,
.about-content h2,
.about-content h3,
.about-content h4,
.about-content h5,
.about-content h6,
.legal-content h1,
.legal-content h2,
.legal-content h3,
.legal-content h4,
.legal-content h5,
.legal-content h6 {
    color: #273342;
    font-weight: 700;
    line-height: 1.4;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.about-content h1:first-child,
.legal-content h1:first-child {
    margin-top: 0;
}

.about-content h1, .legal-content h1 { font-size: 3rem; }
.about-content h2, .legal-content h2 { font-size: 2.4rem; }
.about-content h3, .legal-content h3 { font-size: 2rem; }
.about-content h4, .legal-content h4 { font-size: 1.8rem; }
.about-content h5, .legal-content h5 { font-size: 1.6rem; }
.about-content h6, .legal-content h6 { font-size: 1.5rem; }

.about-content table,
.legal-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    font-size: 1.6rem;
}

.about-content table thead,
.legal-content table thead {
    background: #F4F7FB;
}

.about-content table th,
.about-content table td,
.legal-content table th,
.legal-content table td {
    padding: 1.2rem 1.5rem;
    border: 0.1rem solid #E2E8F0;
    text-align: left;
}

.about-content table th,
.legal-content table th {
    font-weight: 600;
    color: #273342;
}

.about-content table td,
.legal-content table td {
    color: #5A6B7B;
}

.about-content table tbody tr:nth-child(even),
.legal-content table tbody tr:nth-child(even) {
    background: #FAFBFC;
}

.about-content table tbody tr:hover,
.legal-content table tbody tr:hover {
    background: #F0F4FF;
}

/* Narrow content */
.narrow-content {
    max-width: 80rem;
    margin: 0 auto;
}

/* 404 */
.error-section {
    min-height: 50vh;
    padding: 6rem 2rem;
    text-align: center;
    background: #F4F7FB;
    display: flex;
    align-items: center;
    justify-content: center;
}

.error-section .container {
    width: 100%;
}

.error-section h2 {
    font-size: 3rem;
    color: #273342;
    margin-bottom: 1.5rem;
}

.error-desc {
    margin-bottom: 2.5rem;
    color: #5A6B7B;
}

.error-actions {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    flex-wrap: wrap;
}

/* Responsive */
@media (min-width: 768px) {
    .hero-content h1 {
        font-size: 5.6rem;
    }
    .strength-grid {
        grid-template-columns: repeat(5, 1fr);
    }
    .product-detail-main {
        grid-template-columns: 1.2fr 1fr;
        padding: 3rem;
    }
    .contact-grid {
        grid-template-columns: 1fr 1.2fr;
        padding: 4rem;
    }
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .hero-content h1 {
        font-size: 6.8rem;
    }
    .list-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* === Responsive fixes for 1024px and below === */

/* Footer: hide Quick Links column below 1024px */
@media (max-width: 1023px) {
    .footer-grid > div:nth-child(3) {
        display: none;
    }
    .footer-grid {
        grid-template-columns: 2fr 1fr 1.5fr;
    }
}

@media (max-width: 991px) {
    .footer-grid > div:nth-child(3) {
        display: none;
    }
}

/* Product Series: 2-col at 鈮?68px, hide last (orphan) */
@media (max-width: 768px) {
    .ps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    .ps-grid .ps-card:last-child {
        display: none;
    }
}

/* Case grid: 2 columns at lower resolution */
@media (max-width: 768px) {
    .case-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Culture banner: hide title when columns become multi-row */
@media (max-width: 991px) {
    .culture-banner-title {
        display: none;
    }
}

/* Sub-nav: hide below 992px */
@media (max-width: 991px) {
    .sub-nav {
        display: none;
    }
}

/* Product detail section: reduce top padding at low resolution */
@media (max-width: 991px) {
    .product-detail-section {
        padding-top: 6rem;
    }
}

/* === Footer Partner Links - SEO Only (visually hidden) === */
.footer-partner-links {
    position: absolute;
    left: -9999px;
    top: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* === Footer Responsive === */
@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-partner-links {
        width: 100%;
    }
}

/* ============================================
   Why Choose Us - Product Tab (澶ф皵鐗?
   ============================================ */
.why-choose-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.4rem;
    padding: 1rem 0;
}

.why-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 1.6rem;
    padding: 3.5rem 2.4rem 2.8rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 70, 199, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

/* 椤堕儴瑁呴グ绾?*/
.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0046C7, #00A8FF);
    transform: scaleX(0);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.why-card:nth-child(2)::before { background: linear-gradient(90deg, #FE7610, #FF9A4A); }
.why-card:nth-child(3)::before { background: linear-gradient(90deg, #059669, #34D399); }
.why-card:nth-child(4)::before { background: linear-gradient(90deg, #7C3AED, #A78BFA); }
.why-card:nth-child(5)::before { background: linear-gradient(90deg, #DC2626, #F87171); }
.why-card:nth-child(6)::before { background: linear-gradient(90deg, #0891B2, #22D3EE); }
.why-card:nth-child(7)::before { background: linear-gradient(90deg, #D97706, #FBBF24); }
.why-card:nth-child(8)::before { background: linear-gradient(90deg, #4F46E5, #818CF8); }

/* 鑳屾櫙瑁呴グ鍦?*/
.why-card::after {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 70, 199, 0.06) 0%, transparent 70%);
    transition: all 0.5s ease;
}

.why-card:nth-child(2)::after { background: radial-gradient(circle, rgba(254, 118, 16, 0.06) 0%, transparent 70%); }
.why-card:nth-child(3)::after { background: radial-gradient(circle, rgba(5, 150, 105, 0.06) 0%, transparent 70%); }
.why-card:nth-child(4)::after { background: radial-gradient(circle, rgba(124, 58, 237, 0.06) 0%, transparent 70%); }
.why-card:nth-child(5)::after { background: radial-gradient(circle, rgba(220, 38, 38, 0.06) 0%, transparent 70%); }
.why-card:nth-child(6)::after { background: radial-gradient(circle, rgba(8, 145, 178, 0.06) 0%, transparent 70%); }
.why-card:nth-child(7)::after { background: radial-gradient(circle, rgba(217, 119, 6, 0.06) 0%, transparent 70%); }
.why-card:nth-child(8)::after { background: radial-gradient(circle, rgba(79, 70, 229, 0.06) 0%, transparent 70%); }

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(0, 70, 199, 0.15);
}

.why-card:hover::before {
    transform: scaleX(1);
}

.why-card:hover::after {
    transform: scale(1.5);
    opacity: 0.8;
}

/* 缂栧彿 */
.why-card-number {
    font-size: 4.8rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 1.6rem;
    background: linear-gradient(135deg, #0046C7, #00A8FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.9;
    font-family: 'Georgia', serif;
    letter-spacing: -2px;
}

.why-card:nth-child(2) .why-card-number { background: linear-gradient(135deg, #FE7610, #FF9A4A); -webkit-background-clip: text; background-clip: text; }
.why-card:nth-child(3) .why-card-number { background: linear-gradient(135deg, #059669, #34D399); -webkit-background-clip: text; background-clip: text; }
.why-card:nth-child(4) .why-card-number { background: linear-gradient(135deg, #7C3AED, #A78BFA); -webkit-background-clip: text; background-clip: text; }
.why-card:nth-child(5) .why-card-number { background: linear-gradient(135deg, #DC2626, #F87171); -webkit-background-clip: text; background-clip: text; }
.why-card:nth-child(6) .why-card-number { background: linear-gradient(135deg, #0891B2, #22D3EE); -webkit-background-clip: text; background-clip: text; }
.why-card:nth-child(7) .why-card-number { background: linear-gradient(135deg, #D97706, #FBBF24); -webkit-background-clip: text; background-clip: text; }
.why-card:nth-child(8) .why-card-number { background: linear-gradient(135deg, #4F46E5, #818CF8); -webkit-background-clip: text; background-clip: text; }

/* 鏍囬 */
.why-card-title {
    font-size: 1.7rem;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 1rem;
    line-height: 1.4;
    letter-spacing: 0.3px;
}

/* 鎻忚堪 */
.why-card-desc {
    font-size: 1.4rem;
    color: #64748B;
    line-height: 1.7;
    margin: 0;
    font-weight: 400;
}

/* 鍒嗛殧绾?*/
.why-card-divider {
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #0046C7, #00A8FF);
    margin: 1.2rem auto;
    border-radius: 2px;
    opacity: 0.3;
    transition: all 0.4s ease;
}

.why-card:hover .why-card-divider {
    width: 60px;
    opacity: 0.6;
}

.why-card:nth-child(2) .why-card-divider { background: linear-gradient(90deg, #FE7610, #FF9A4A); }
.why-card:nth-child(3) .why-card-divider { background: linear-gradient(90deg, #059669, #34D399); }
.why-card:nth-child(4) .why-card-divider { background: linear-gradient(90deg, #7C3AED, #A78BFA); }
.why-card:nth-child(5) .why-card-divider { background: linear-gradient(90deg, #DC2626, #F87171); }
.why-card:nth-child(6) .why-card-divider { background: linear-gradient(90deg, #0891B2, #22D3EE); }
.why-card:nth-child(7) .why-card-divider { background: linear-gradient(90deg, #D97706, #FBBF24); }
.why-card:nth-child(8) .why-card-divider { background: linear-gradient(90deg, #4F46E5, #818CF8); }

@media (max-width: 991px) {
    .why-choose-us-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.6rem;
    }
    .why-card {
        padding: 2.8rem 2rem 2.2rem;
    }
    .why-card-number {
        font-size: 3.6rem;
    }
}

@media (max-width: 575px) {
    .why-choose-us-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    .why-card {
        padding: 2.4rem 1.6rem 2rem;
    }
    .why-card-number {
        font-size: 3rem;
        margin-bottom: 1rem;
    }
    .why-card-title {
        font-size: 1.5rem;
    }
}

/* ============================================
   Applications - Product Tab
   ============================================ */
.applications-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.application-card {
    background: #F4F7FB;
    border-radius: 1.2rem;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 0.1rem solid transparent;
    position: relative;
}

.application-card:hover {
    transform: translateY(-0.4rem);
    box-shadow: 0 0.8rem 2rem rgba(0, 0, 0, 0.08);
    border-color: #0046C7;
}

.application-card-img {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.application-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.application-card:hover .application-card-img img {
    transform: scale(1.05);
}

.application-card-body {
    padding: 1.8rem 1.6rem;
}

.application-card-title {
    font-size: 1.7rem;
    font-weight: 600;
    color: #273342;
    margin: 0 0 0.4rem;
    line-height: 1.3;
}

.application-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.application-card-title a:hover {
    color: #0046C7;
}

.application-card-cn {
    font-size: 1.2rem;
    color: #6B7C8C;
    font-style: italic;
    margin: 0 0 0.6rem;
    line-height: 1.4;
}

.application-card-desc {
    font-size: 1.3rem;
    color: #5A6B7B;
    line-height: 1.6;
    margin: 0;
}

/* 鏁村紶鍗＄墖鍙偣鍑?- stretched link 鎶€鏈?*/
.application-card-link {
    position: absolute;
    inset: 0;
    z-index: 1;
    text-indent: -9999px;
    overflow: hidden;
}

.application-card-img a,
.application-card-title a {
    position: relative;
    z-index: 2;
}

@media (max-width: 991px) {
    .applications-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 575px) {
    .applications-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Packaging - Product Tab
   ============================================ */
.packaging-content {
    /* 涓嶉檺鍒跺搴︼紝鍗犳弧鐗堝績 */
}

.packaging-section {
    margin-bottom: 3.5rem;
}

.packaging-section:last-child {
    margin-bottom: 0;
}

.packaging-section h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1A2332;
    margin-bottom: 2rem;
    padding-left: 1.2rem;
    position: relative;
    letter-spacing: 0.02em;
}

.packaging-section h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0.4rem;
    height: 70%;
    background: linear-gradient(180deg, #0046C7, #0066FF);
    border-radius: 0.2rem;
}

.packaging-section p {
    font-size: 1.5rem;
    color: #5A6B7B;
    line-height: 2.2;
}

.packaging-section ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.packaging-section ul li {
    font-size: 1.5rem;
    color: #5A6B7B;
    line-height: 1.8;
    padding: 0.6rem 0 0.6rem 2rem;
    position: relative;
}

.packaging-section ul li::before {
    content: '\eaf1';
    font-family: 'iconfont';
    color: #0046C7;
    font-weight: 700;
    position: absolute;
    left: 0;
    top: 0.6rem;
}

.packaging-section h4 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #273342;
    margin: 2rem 0 1rem;
    padding-left: 1rem;
    position: relative;
}

.packaging-section h4::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0.3rem;
    height: 60%;
    background: #0046C7;
    border-radius: 0.15rem;
}

/* Packaging Gallery Grid - 4鍒楀ぇ鍥惧叏瀹?*/
.packaging-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.packaging-gallery-item {
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 0.2rem 0.8rem rgba(0, 0, 0, 0.06);
    border: 0.1rem solid #E2E8F0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.packaging-gallery-item:hover {
    transform: translateY(-0.3rem);
    box-shadow: 0 0.6rem 2rem rgba(0, 0, 0, 0.1);
    border-color: #0046C7;
}

.packaging-gallery-img {
    aspect-ratio: 16/10;
    overflow: hidden;
    flex-shrink: 0;
    background: #E2E8F0;
}

.packaging-gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.3s ease;
    display: block;
    image-rendering: -webkit-optimize-contrast;
}

.packaging-gallery-item:hover .packaging-gallery-img img {
    filter: brightness(1.05);
}

.packaging-gallery-caption {
    padding: 0.8rem 1rem;
    font-size: 1.3rem;
    color: #5A6B7B;
    line-height: 1.5;
    margin: 0;
    text-align: center;
    background: #F8FAFC;
}

.packaging-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    font-size: 1.4rem;
}

.packaging-table thead {
    background: #0046C7;
    color: #fff;
}

.packaging-table th {
    padding: 1rem 1.2rem;
    text-align: left;
    font-weight: 600;
    font-size: 1.3rem;
}

.packaging-table td {
    padding: 1rem 1.2rem;
    border-bottom: 0.1rem solid #E2E8F0;
    color: #273342;
}

.packaging-table tbody tr:nth-child(even) {
    background: #F4F7FB;
}

.packaging-table tbody tr:hover {
    background: #E8EDF5;
}

@media (max-width: 991px) {
    .packaging-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }
}

@media (max-width: 575px) {
    .packaging-gallery-grid {
        grid-template-columns: 1fr;
    }
    .packaging-table {
        font-size: 1.3rem;
    }
    .packaging-table th,
    .packaging-table td {
        padding: 0.8rem 1rem;
    }
    .packaging-section h3 {
        font-size: 1.7rem;
    }
    
    /* News detail title - 低分辨率下降低字体大小 */
    .news-detail-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    /* News detail title - 平板分辨率下适当降低字体大小 */
    .news-detail-title {
        font-size: 2.5rem;
    }
}

/* Admin button icon alignment */
.button.button-primary .dashicons-plus-alt {
    display: inline-block !important;
    vertical-align: middle !important;
    margin-right: 4px !important;
    font-size: 20px !important;
    width: 20px !important;
    height: 20px !important;
    line-height: 20px !important;
    text-align: center !important;
    transform: translateY(-1px) !important;
}

.button.button-primary .dashicons-plus-alt::before {
    display: block !important;
    line-height: 20px !important;
    font-size: 20px !important;
}

/* Quote header with logo and subtitle */
.quote-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #E2E8F0;
}

.quote-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.quote-logo img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.quote-logo strong {
    font-size: 2rem;
    color: #273342;
    font-weight: 700;
}

.quote-subtitle {
    font-size: 1.4rem;
    color: #5A6B7B;
    font-weight: 400;
}
