/* 引入基礎樣式 */
/* bundled: base.css */
/* ================== Reset ================== */

:root {
    --primary-color: #03A38C;
    --primary-color-dark: #028a76;
    --text-dark: #0a2342;
    --text-body: #5f6b7a;
    --card-bg: #f7f7f8;
    --section-bg: #f5f5f5;
    --timeline-x: 18px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    width: 100%;
    max-width: 100%;
    overflow-y: scroll !important;
}

body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    overflow-x: clip;
}

ul,
li {
    list-style: none;
    margin: 0;
    padding: 0;
}

button,
input,
textarea,
select {
    font: inherit;
    border: none;
    outline: none;
    background: none;

    appearance: none;
    -webkit-appearance: none;
}

button:focus {
    outline: none;
}

.container {
    width: min(1200px, calc(100% - 32px));
    max-width: 100%;
    margin: 0 auto;
}

.site-wrapper {
    width: 100%;
    max-width: 100%;
    min-height: 100vh;

    display: flex;
    flex-direction: column;
}

.site-main {
    width: 100%;
    max-width: 100%;
    flex: 1;
    padding-top: 100px;
}

@media (max-width: 1024px) {
    .site-main {
        padding-top: 82px;
    }
}

@media (max-width: 768px) {
    .site-main {
        padding-top: 76px;
    }
}
/* bundled: components/modal.css */
/* ================= MODAL ROOT ================= */

.modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    visibility: hidden;
    pointer-events: none;
}

.modal.show {
    visibility: visible;
    pointer-events: auto;
}

body.modal-open {
    overflow: hidden;
}


/* ================= OVERLAY ================= */

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(2px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show .modal-overlay {
    opacity: 1;
}


/* ================= DIALOG ================= */

.modal-dialog {
    position: relative;
    z-index: 2;

    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: transparent;
    box-shadow: none;
    border-radius: 0;

    pointer-events: none;
}


/* ================= BODY ================= */

.modal-body {
    background: transparent;
    padding: 0;

    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;

    overflow: visible;
    position: relative;

    opacity: 0;
    transform: translateY(24px) scale(0.94);

    transition:
        opacity 0.32s ease,
        transform 0.36s cubic-bezier(0.22, 1, 0.36, 1);

    pointer-events: auto;
}

.modal-close-btn {
    position: absolute;
    top: -16px;
    right: -16px;

    width: 44px;
    height: 44px;

    border: none;
    border-radius: 50%;

    background: #fff;
    color: #333;

    font-size: 24px;
    line-height: 1;

    cursor: pointer;

    box-shadow: 0 8px 20px rgba(0,0,0,0.15);

    transition: all 0.2s ease;
}

.modal-close-btn:hover {
    background: #03A38C;
    color: #fff;
}

.modal.show .modal-body {
    opacity: 1;
    transform: translateY(0) scale(1);
}


/* ================= LOADING ================= */

.modal-loading {
    padding: 80px 24px;
    text-align: center;
    color: #667085;
    font-size: 16px;
}



.form-modal-shell {
    width: min(760px, calc(100vw - 40px));
    margin: 0 auto;
}


/* ================= REDUCED MOTION ================= */

@media (prefers-reduced-motion: reduce) {
    .modal-overlay,
    .modal-body {
        transition: none;
    }
}

/* 引入組件樣式 */
/* bundled: components/header.css */
/* ================== HEADER ================== */

.header {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: var(--header-height, 100px);

    background: #fff;
    border-bottom: 1px solid #eee;
    z-index: 1000;

    overflow: visible;
    transition: box-shadow 0.25s ease;
}

.header.scrolled {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.header-container {
    position: relative;

    width: min(1200px, calc(100% - 32px));
    height: 100%;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    overflow: visible;
}


/* ================== LOGO ================== */

.logo {
    flex-shrink: 0;
}

.logo a {
    display: flex;
    align-items: center;
}

.logo img {
    display: block;
    width: auto;
    height: clamp(40px, 4.4vw, 56px);
}


/* ================== DESKTOP MENU ================== */

.menu {
    height: 100%;
}

.menu ul {
    display: flex;
    align-items: stretch;
    gap: clamp(24px, 3vw, 40px);

    height: 100%;
    margin: 0;
    padding: 0;

    list-style: none;
}

.menu__item {
    position: relative;

    display: flex;
    align-items: stretch;

    height: 100%;
}

.menu__item > a {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    height: 100%;

    color: #333;
    text-decoration: none;
    font-size: clamp(15px, 1.3vw, 18px);
    font-weight: 700;
    line-height: 1;

    transition: color 0.2s ease;
}

.menu__item > a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 24px;

    width: 100%;
    height: 3px;

    background: #03A38C;

    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.menu__item > a:hover,
.menu__item > a.active,
.menu__item.has-mega:hover > a {
    color: #03A38C;
}

.menu__item > a:hover::after,
.menu__item > a.active::after,
.menu__item.has-mega:hover > a::after {
    transform: scaleX(1);
}

/* hover 缓冲区，避免鼠标移到 mega menu 时断开 */
.menu__item.has-mega::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;

    width: 140px;
    height: 18px;

    transform: translateX(-50%);
}


/* ================== HEADER SEARCH ================== */

.header-search,
.header-search__input,
.header-search__button {
    box-sizing: border-box;
}

.header-search {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: flex-end;

    width: 42px;
    height: 42px;

    flex-shrink: 0;
    overflow: hidden;

    transition: width 0.28s ease;
}

.header-search__input {
    width: 0;
    min-width: 0;
    max-width: 0;
    height: 42px;

    padding: 0;

    border: 0;
    border-radius: 999px;
    outline: none;
    background: transparent;

    color: #111827;
    font-size: 14px;

    opacity: 0;
    pointer-events: none;

    transition:
        width 0.25s ease,
        max-width 0.25s ease,
        opacity 0.2s ease,
        background 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        padding 0.25s ease;
}

.header-search.is-open {
    width: 240px;
    overflow: visible;
}

.header-search.is-open .header-search__input {
    width: 100%;
    max-width: 100%;

    padding: 0 46px 0 16px;

    opacity: 1;
    pointer-events: auto;

    background: #fff;
    border: 1px solid #e5e7eb;
}

.header-search.is-open .header-search__input:focus {
    border-color: #03A38C;
    box-shadow: 0 0 0 3px rgba(3, 163, 140, 0.12);
}

.header-search__button {
    position: absolute;
    top: 0;
    right: 0;

    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;
    border: none;
    border-radius: 50%;
    background: transparent;

    cursor: pointer;
}

.header-search__button img {
    display: block;
    width: 18px;
    height: 18px;
}


/* ================== DESKTOP MEGA MENU ================== */

.mega-menu {
    position: fixed;
    top: var(--header-height, 100px);
    left: 0;

    width: 100%;

    background: #fff;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.06);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition: opacity 0.18s ease, visibility 0.18s ease;
    z-index: 999;
}

.menu__item.has-mega:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mega-menu__container {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
    padding: 28px 0 32px;
}

.mega-menu__products {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
}

.mega-menu__product {
    display: flex;
    align-items: center;

    min-height: 48px;
    padding: 13px 18px;

    color: #334743;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.45;
    text-decoration: none;

    border-bottom: 1px solid #eef2f1;

    transition:
        color 0.25s ease,
        background 0.25s ease,
        transform 0.25s ease;
}

.mega-menu__product:hover {
    color: #03A38C;
    background: #f6fbfa;
    transform: translateX(4px);
}

/* 当前产品高亮 */
.mega-menu__product.active {
    color: #03A38C;
    background: #f6fbfa;
    font-weight: 700;
}


/* ================== MOBILE TOGGLE ================== */

.header-mobile-toggle {
    display: none;

    width: 42px;
    height: 42px;

    padding: 0;
    border: none;
    background: transparent;

    cursor: pointer;
}

.header-mobile-toggle span {
    display: block;

    width: 24px;
    height: 2px;
    margin: 5px auto;

    background: #222;
    border-radius: 99px;

    transition: background 0.25s ease;
}

.header-mobile-toggle:hover span {
    background: #03A38C;
}


/* ================== MOBILE MENU ================== */

.mobile-menu-overlay {
    position: fixed;
    inset: 0;

    background: rgba(0, 0, 0, 0.45);
    z-index: 1001;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;

    width: min(320px, 86vw);
    height: 100vh;

    background: #fff;
    z-index: 1002;

    transform: translateX(-100%);
    transition: transform 0.3s ease;

    display: flex;
    flex-direction: column;
}

.mobile-menu__head {
    height: var(--header-height, 82px);
    padding: 0 22px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-bottom: 1px solid #eee;
}

.mobile-menu__logo {
    display: flex;
    align-items: center;
}

.mobile-menu__logo img {
    display: block;
    width: auto;
    height: clamp(38px, 5vw, 42px);
}

.mobile-menu__close {
    width: 42px;
    height: 42px;

    padding: 0;
    border: none;
    background: transparent;

    color: #222;
    font-size: 34px;
    line-height: 1;

    cursor: pointer;
}

.mobile-menu__nav {
    padding: 18px 22px 40px;
}

.mobile-menu__item {
    border-bottom: 1px solid #f0f0f0;
}

.mobile-menu__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.mobile-menu__link {
    flex: 1;

    display: flex;
    align-items: center;

    min-height: 54px;

    color: #222;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;

    transition: color 0.25s ease, padding-left 0.25s ease;
}

.mobile-menu__link:hover,
.mobile-menu__link.active,
.mobile-menu__item.active > .mobile-menu__row .mobile-menu__link {
    color: #03A38C;
    padding-left: 6px;
}


/* ================== MOBILE SUB MENU ================== */

.mobile-menu__toggle {
    flex: 0 0 auto;

    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;
    border: none;
    border-radius: 50%;
    background: #f4f8f7;

    cursor: pointer;
    transition: background 0.25s ease;
}

.mobile-menu__toggle:hover {
    background: rgba(3, 163, 140, 0.1);
}

.mobile-menu__toggle-icon {
    position: relative;

    width: 12px;
    height: 12px;
}

.mobile-menu__toggle-icon::before,
.mobile-menu__toggle-icon::after {
    content: "";
    position: absolute;

    background: #263935;
    border-radius: 2px;

    transition: transform 0.25s ease, background 0.25s ease;
}

.mobile-menu__toggle-icon::before {
    left: 0;
    top: 5px;

    width: 12px;
    height: 2px;
}

.mobile-menu__toggle-icon::after {
    left: 5px;
    top: 0;

    width: 2px;
    height: 12px;
}

.mobile-menu__sub {
    display: none;
    padding: 0 0 14px 14px;
}

.mobile-menu__item.is-open .mobile-menu__sub {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-menu__item.is-open .mobile-menu__toggle-icon::after {
    transform: scaleY(0);
}

.mobile-menu__item.is-open .mobile-menu__toggle-icon::before,
.mobile-menu__item.is-open .mobile-menu__toggle-icon::after {
    background: #03A38C;
}

.mobile-menu__sub-link {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    text-decoration: none;

    transition: color 0.25s ease, padding-left 0.25s ease;
}

.mobile-menu__sub-link:hover,
.mobile-menu__sub-link.active {
    color: #03A38C;
    padding-left: 4px;
}

.mobile-menu__sub-link.active {
    font-weight: 700;
}


/* ================== MOBILE OPEN STATE ================== */

body.mobile-menu-open {
    overflow: hidden;
}

body.mobile-menu-open .mobile-menu-overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

body.mobile-menu-open .mobile-menu {
    transform: translateX(0);
}


/* ================== RESPONSIVE ================== */

@media (max-width: 1024px) {
    .header {
        --header-height: 82px;
    }

    .header-container {
        width: calc(100% - 40px);
        height: var(--header-height);

        display: grid;
        grid-template-columns: 42px minmax(0, 1fr) 42px;
        align-items: center;
    }

    .header-mobile-toggle {
        display: block;
        grid-column: 1;
        justify-self: start;
    }

    .logo {
        grid-column: 2;
        justify-self: center;
        min-width: 0;
    }

    .logo img {
        height: clamp(40px, 5vw, 46px);
    }

    .menu,
    .mega-menu {
        display: none;
    }

    .header-search {
        grid-column: 3;
        justify-self: end;

        width: 42px;
        height: 42px;
        overflow: hidden;
    }

    .header-search.is-open {
        position: absolute;
        top: 50%;
        right: 0;

        width: min(280px, calc(100vw - 80px));
        max-width: calc(100vw - 80px);
        height: 42px;

        transform: translateY(-50%);

        background: #fff;
        z-index: 20;
        overflow: visible;
    }

    .header-search.is-open .header-search__input {
        width: 100%;
        max-width: 100%;

        padding: 0 46px 0 16px;

        opacity: 1;
        pointer-events: auto;

        background: #fff;
        border: 1px solid #e5e7eb;
    }
}

@media (max-width: 768px) {
    .header {
        --header-height: 76px;
    }

    .header-container {
        width: calc(100% - 28px);
        height: var(--header-height);
    }

    .logo img {
        height: clamp(36px, 6vw, 40px);
    }

    .header-search.is-open {
        position: absolute;
        top: 50%;
        right: 0;
        left: auto;

        width: 170px;
        max-width: calc(100vw - 96px);
        height: 42px;

        transform: translateY(-50%);
    }

    .mobile-menu {
        width: min(300px, 86vw);
    }

    .mobile-menu__logo img {
        height: 38px;
    }
}
/* bundled: components/banner.css */
/* ================= BANNER ================= */

.banner {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;

    display: flex;
    align-items: center;

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #061F3B;
}

.banner::before {
    content: "";
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.4);

    z-index: 1;
    pointer-events: none;
}

.banner > * {
    position: relative;
    z-index: 2;
}

.banner .container {
    width: 1200px;
    max-width: calc(100% - 40px);
    margin: 0 auto;
}

/* ================= BANNER VARIANTS ================= */

/* 首页大 Banner */
.banner--home {
    min-height: 857px;
}

/* About 特殊长 Banner */
.banner--about {
    min-height: 1080px;
}

/* 普通内页统一 Banner
   products / contact / blog detail / product detail 全部建议使用 inner */
.banner--inner {
    min-height: 600px;
}

/* ================= CONTENT ================= */

.banner-content {
    max-width: 880px;
}

/* ================= TEXT ================= */

.banner-title {
    margin: 0 0 24px;

    font-size: clamp(42px, 4.6vw, 64px);
    line-height: 1.2;
    font-weight: 700;
    color: #fff;
}

.banner-subtitle {
    margin: 0 0 24px;

    font-size: clamp(20px, 2vw, 28px);
    line-height: 1.4;
    font-weight: 400;
    color: #fff;
}

.banner-desc {
    margin: 0 0 24px;

    font-size: clamp(16px, 1.45vw, 20px);
    line-height: 1.6;
    color: #fff;
}

.banner-items {
    margin: 0 0 24px;
    padding: 0;
}

.banner-items li {
    list-style: disc;
    list-style-position: inside;

    margin-bottom: 12px;

    font-size: clamp(16px, 1.45vw, 20px);
    line-height: 1.6;
    color: #fff;
}

.banner-items li:last-child {
    margin-bottom: 0;
}

/* ================= BUTTON ================= */

.banner-button {
    margin-top: 24px;
}

.banner-button a,
.banner-button button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 46px;
    padding: 12px 50px;

    font-size: clamp(16px, 1.4vw, 20px);
    font-weight: 700;
    line-height: 1.2;

    color: #fff;
    background-color: #03A38C;

    border: none;
    border-radius: 4px;
    text-decoration: none;

    user-select: none;
    cursor: pointer;

    transition:
        background-color 0.3s ease,
        transform 0.25s ease;
}

.banner-button a:hover,
.banner-button button:hover {
    background-color: #028a76;
    transform: translateY(-1px);
}

/* ================= INNER BANNER ================= */

.banner--inner {
    background-position: center center;
}

.banner--inner::before {
    background: rgba(0, 0, 0, 0.48);
}

.banner--inner .container {
    min-height: 600px;

    display: flex;
    align-items: center;
}

.banner--inner .banner-content {
    max-width: 640px;
}

.banner--inner .banner-title {
    max-width: 640px;
    margin-bottom: 20px;

    font-size: clamp(30px, 3vw, 42px);
    line-height: 1.22;
    font-weight: 700;
}

.banner--inner .banner-subtitle {
    max-width: 620px;
    margin-bottom: 18px;

    font-size: clamp(18px, 1.7vw, 22px);
    line-height: 1.5;
    font-weight: 400;
}

.banner--inner .banner-desc {
    max-width: 620px;
    margin-bottom: 20px;

    font-size: clamp(15px, 1.25vw, 17px);
    line-height: 1.68;
    font-weight: 400;
}

.banner--inner .banner-items {
    max-width: 620px;
    margin: 0 0 22px;
    padding: 0;
}

.banner--inner .banner-items li {
    margin-bottom: 9px;

    font-size: clamp(15px, 1.25vw, 17px);
    line-height: 1.55;
}

.banner--inner .banner-button {
    margin-top: 24px;
}

.banner--inner .banner-button a,
.banner--inner .banner-button button {
    min-height: 44px;
    padding: 11px 36px;

    font-size: 16px;
    font-weight: 700;
}

/* ================= ABOUT BANNER ================= */

.banner--about {
    background-position: center center;
}

.banner--about::before {
    background: rgba(0, 0, 0, 0.46);
}

.banner--about .banner-content {
    max-width: 680px;
}

.banner--about .banner-title {
    margin-bottom: 22px;

    font-size: clamp(36px, 4vw, 56px);
    line-height: 1.14;
}

.banner--about .banner-subtitle {
    margin-bottom: 20px;

    font-size: clamp(18px, 1.8vw, 24px);
    line-height: 1.45;
}

.banner--about .banner-desc {
    max-width: 620px;
    margin-bottom: 0;

    font-size: clamp(15px, 1.35vw, 18px);
    line-height: 1.72;
}

.banner--about .banner-items {
    max-width: 620px;
    margin-bottom: 0;
}

.banner--about .banner-items li {
    font-size: clamp(15px, 1.35vw, 18px);
    line-height: 1.65;
}

.banner--about .banner-button {
    margin-top: 30px;
}

.banner--about .banner-button a,
.banner--about .banner-button button {
    min-height: 44px;
    padding: 11px 38px;

    font-size: 16px;
}

/* ================= ANIMATION ================= */

.animate-item {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s forwards;
}

.banner-title.animate-item {
    animation-delay: 0.2s;
}

.banner-subtitle.animate-item {
    animation-delay: 0.4s;
}

.banner-desc.animate-item {
    animation-delay: 0.6s;
}

.banner-items li.animate-item:nth-child(1) {
    animation-delay: 0.6s;
}

.banner-items li.animate-item:nth-child(2) {
    animation-delay: 0.8s;
}

.banner-items li.animate-item:nth-child(3) {
    animation-delay: 1s;
}

.banner-items li.animate-item:nth-child(4) {
    animation-delay: 1.2s;
}

.banner-button--after-list.animate-item {
    animation-delay: 1.4s;
}

.banner-button--after-desc.animate-item {
    animation-delay: 0.8s;
}

.banner-button--default.animate-item {
    animation-delay: 0.6s;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================= RESPONSIVE：1200 以下 ================= */

@media (max-width: 1200px) {
    .banner--home {
        min-height: 720px;
    }

    .banner--about {
        min-height: 760px;
    }

    .banner--inner,
    .banner--inner .container {
        min-height: 560px;
    }

    .banner--inner .banner-content {
        max-width: 620px;
    }

    .banner--inner .banner-title {
        font-size: 38px;
        line-height: 1.22;
    }
}

/* ================= RESPONSIVE：1024 以下 ================= */

@media (max-width: 1024px) {
    .banner--home {
        min-height: 620px;
    }

    .banner--about {
        min-height: 620px;
        background-position: center center;
    }

    .banner--inner,
    .banner--inner .container {
        min-height: 520px;
    }

    .banner-content {
        max-width: 720px;
    }

    .banner-title {
        margin-bottom: 20px;

        font-size: 48px;
        line-height: 1.18;
    }

    .banner-subtitle {
        margin-bottom: 18px;

        font-size: 22px;
        line-height: 1.45;
    }

    .banner-desc,
    .banner-items li {
        font-size: 17px;
    }

    .banner-button {
        margin-top: 20px;
    }

    .banner-button a,
    .banner-button button {
        min-height: 42px;
        padding: 11px 38px;
        font-size: 17px;
    }

    /* Inner */
    .banner--inner .banner-content {
        max-width: 600px;
    }

    .banner--inner .banner-title {
        margin-bottom: 18px;

        font-size: 34px;
        line-height: 1.24;
    }

    .banner--inner .banner-subtitle {
        margin-bottom: 16px;

        font-size: 19px;
        line-height: 1.5;
    }

    .banner--inner .banner-desc {
        font-size: 16px;
        line-height: 1.72;
    }

    .banner--inner .banner-items li {
        font-size: 16px;
        line-height: 1.65;
    }

    .banner--inner .banner-button a,
    .banner--inner .banner-button button {
        padding: 10px 32px;
        font-size: 16px;
    }

    /* About */
    .banner--about .banner-content {
        max-width: 620px;
    }

    .banner--about .banner-title {
        margin-bottom: 20px;

        font-size: 36px;
        line-height: 1.22;
    }

    .banner--about .banner-subtitle {
        margin-bottom: 16px;

        font-size: 18px;
        line-height: 1.5;
    }

    .banner--about .banner-desc {
        margin-bottom: 0;

        font-size: 16px;
        line-height: 1.72;
    }

    .banner--about .banner-items li {
        font-size: 16px;
        line-height: 1.7;
    }

    .banner--about .banner-button {
        margin-top: 26px;
    }

    .banner--about .banner-button a,
    .banner--about .banner-button button {
        min-height: 42px;
        padding: 10px 34px;
        font-size: 16px;
    }
}

/* ================= RESPONSIVE：768 以下 ================= */

@media (max-width: 768px) {
    .banner {
        background-position: center center;
    }

    .banner .container {
        max-width: calc(100% - 32px);
    }

    .banner--home {
        min-height: 560px;
    }

    .banner--about {
        min-height: 460px;
        background-position: center center;
    }

    .banner--about::before {
        background: rgba(0, 0, 0, 0.58);
    }

    .banner--inner,
    .banner--inner .container {
        min-height: 460px;
    }

    .banner-content {
        max-width: 100%;
    }

    .banner-title {
        margin-bottom: 16px;

        font-size: 36px;
        line-height: 1.16;
    }

    .banner-subtitle {
        margin-bottom: 16px;

        font-size: 18px;
        line-height: 1.5;
    }

    .banner-desc {
        margin-bottom: 16px;

        font-size: 15px;
        line-height: 1.7;
    }

    .banner-items {
        margin-bottom: 16px;
    }

    .banner-items li {
        margin-left: 18px;
        margin-bottom: 8px;

        list-style-position: outside;

        font-size: 15px;
        line-height: 1.6;
    }

    .banner-button {
        margin-top: 18px;
    }

    .banner-button a,
    .banner-button button {
        min-height: 40px;
        padding: 10px 28px;
        font-size: 15px;
    }

    /* Inner */
    .banner--inner .banner-content {
        max-width: 100%;
        padding: 38px 0;
    }

    .banner--inner .banner-title {
        margin-bottom: 18px;

        font-size: 28px;
        line-height: 1.28;
        letter-spacing: 0.01em;
    }

    .banner--inner .banner-subtitle {
        margin-bottom: 14px;

        font-size: 16px;
        line-height: 1.55;
    }

    .banner--inner .banner-desc {
        margin-bottom: 0;

        font-size: 15px;
        line-height: 1.78;
    }

    .banner--inner .banner-items {
        margin-bottom: 0;
    }

    .banner--inner .banner-items li {
        margin-left: 18px;
        margin-bottom: 10px;

        list-style-position: outside;

        font-size: 15px;
        line-height: 1.72;
    }

    .banner--inner .banner-button {
        margin-top: 28px;
    }

    .banner--inner .banner-button a,
    .banner--inner .banner-button button {
        min-height: 44px;
        padding: 11px 28px;

        font-size: 15px;
    }

    /* About */
    .banner--about .banner-content {
        max-width: 100%;
        padding: 36px 0;
    }

    .banner--about .banner-title {
        margin-bottom: 18px;

        font-size: 28px;
        line-height: 1.3;
        letter-spacing: 0.01em;
    }

    .banner--about .banner-subtitle {
        margin-bottom: 14px;

        font-size: 16px;
        line-height: 1.55;
    }

    .banner--about .banner-desc {
        margin-bottom: 0;

        font-size: 15px;
        line-height: 1.78;
    }

    .banner--about .banner-items {
        margin-bottom: 0;
    }

    .banner--about .banner-items li {
        margin-left: 18px;
        margin-bottom: 10px;

        list-style-position: outside;

        font-size: 15px;
        line-height: 1.72;
    }

    .banner--about .banner-button {
        margin-top: 26px;
    }

    .banner--about .banner-button a,
    .banner--about .banner-button button {
        min-height: 42px;
        padding: 10px 28px;

        font-size: 15px;
    }
}

/* ================= RESPONSIVE：480 以下 ================= */

@media (max-width: 480px) {
    .banner .container {
        max-width: calc(100% - 32px);
    }

    .banner--home {
        min-height: 520px;
    }

    .banner--about {
        min-height: 420px;
        background-position: center center;
    }

    .banner--inner,
    .banner--inner .container {
        min-height: 430px;
    }

    .banner-title {
        font-size: 32px;
        line-height: 1.22;
    }

    .banner-subtitle {
        font-size: 17px;
        line-height: 1.5;
    }

    .banner-desc,
    .banner-items li {
        font-size: 15px;
        line-height: 1.65;
    }

    .banner-button a,
    .banner-button button {
        width: 100%;
        max-width: 300px;

        padding: 10px 22px;

        font-size: 15px;
    }

    /* Inner */
    .banner--inner .banner-content {
        max-width: 100%;
        padding: 34px 0;
    }

    .banner--inner .banner-title {
        margin-bottom: 18px;

        font-size: 25px;
        line-height: 1.3;
        letter-spacing: 0.01em;
    }

    .banner--inner .banner-subtitle {
        margin-bottom: 14px;

        font-size: 16px;
        line-height: 1.55;
    }

    .banner--inner .banner-desc {
        margin-bottom: 0;

        font-size: 14.5px;
        line-height: 1.76;
    }

    .banner--inner .banner-items {
        margin-bottom: 0;
    }

    .banner--inner .banner-items li {
        margin-left: 18px;
        margin-bottom: 9px;

        list-style-position: outside;

        font-size: 14px;
        line-height: 1.62;
    }

    .banner--inner .banner-button {
        margin-top: 28px;
    }

    .banner--inner .banner-button a,
    .banner--inner .banner-button button {
        width: 100%;
        max-width: 300px;
        min-height: 44px;

        padding: 11px 20px;

        font-size: 14px;
        line-height: 1.2;
    }

    /* About */
    .banner--about .banner-content {
        max-width: 100%;
        padding: 32px 0;
    }

    .banner--about .banner-title {
        margin-bottom: 18px;

        font-size: 24px;
        line-height: 1.34;
        letter-spacing: 0.01em;
    }

    .banner--about .banner-subtitle {
        margin-bottom: 14px;

        font-size: 15px;
        line-height: 1.55;
    }

    .banner--about .banner-desc {
        margin-bottom: 0;

        font-size: 14px;
        line-height: 1.78;
    }

    .banner--about .banner-items {
        margin-bottom: 0;
    }

    .banner--about .banner-items li {
        margin-left: 18px;
        margin-bottom: 9px;

        list-style-position: outside;

        font-size: 14px;
        line-height: 1.7;
    }

    .banner--about .banner-button {
        margin-top: 26px;
    }

    .banner--about .banner-button a,
    .banner--about .banner-button button {
        width: 100%;
        max-width: 280px;
        min-height: 44px;

        padding: 11px 20px;

        font-size: 14px;
        line-height: 1.2;
    }
}

/* ================= RESPONSIVE：360 以下 ================= */

@media (max-width: 360px) {
    .banner--inner,
    .banner--inner .container {
        min-height: 440px;
    }

    .banner--inner .banner-title {
        font-size: 23px;
        line-height: 1.32;
    }

    .banner--inner .banner-desc {
        font-size: 14px;
    }

    .banner--inner .banner-items li {
        font-size: 13.5px;
    }

    .banner--inner .banner-button a,
    .banner--inner .banner-button button {
        max-width: 280px;
    }
}

/* ================= REDUCED MOTION ================= */

@media (prefers-reduced-motion: reduce) {
    .animate-item {
        opacity: 1;
        transform: none;
        animation: none;
    }

    .banner-button a,
    .banner-button button {
        transition: none;
    }

    .banner-button a:hover,
    .banner-button button:hover {
        transform: none;
    }
}
/* bundled: components/cert_scroll.css */
.cert-scroll {
    padding-top: 50px;
    background: transparent;
    overflow: hidden;
}

.cert-scroll__inner {
    display: flex;
    align-items: center;
    gap: 36px;
}

.cert-scroll__left {
    flex: 0 0 280px;
    user-select: text;
    -webkit-user-select: text;
}

.cert-scroll__title {
    margin: 0;
    font-size: 40px;
    line-height: 1.2;
    font-weight: 700;
    color: #031F3B;
}

.cert-scroll__subtitle {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    color: #98A2B3;
    letter-spacing: 0.02em;
}

.cert-scroll__right {
    flex: 1;
    min-width: 0;
}

.cert-scroll__viewport {
    position: relative;
    overflow: hidden;
    user-select: none;
    -webkit-user-select: none;
    cursor: default;
}

.cert-scroll-track {
    display: flex;
    align-items: center;
    gap: 22px;
    width: max-content;
    will-change: transform;
}

.cert-scroll__item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}

.cert-scroll__item:hover {
    opacity: 0.95;
}

.cert-scroll__item * {
    pointer-events: none;
}

/* ==========================
   GEO Certification Card
========================== */

.cert-scroll__card {
    width: 150px;
    min-height: 145px;

    padding: 14px 16px;

    border-radius: 14px;
    border: 1px solid #E5E7EB;
    background: #fff;

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.cert-scroll__card:hover {
    transform: translateY(-3px);

    box-shadow:
        0 10px 24px rgba(0,0,0,.06);
}

/* 固定 Logo 区域 */
.cert-scroll__icon-box {
    height: 60px;
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 10px;

    flex-shrink: 0;
}

/* 所有 logo 统一视觉尺寸 */
.cert-scroll__thumb {
    display: block;

    max-height: 52px;
    width: auto;
    max-width: 100px;

    object-fit: contain;

    user-select: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
}

.cert-scroll__name {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;

    color: #031F3B;

    min-height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.cert-scroll__meta {
    margin-top: 4px;

    font-size: 12px;
    line-height: 1.4;

    color: #667085;
}

/* ==========================
   Modal Preview
========================== */

.cert-preview {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: transparent;

    max-width: 95vw;
    max-height: 95vh;
}

.cert-preview__image {
    display: block;

    max-width: 95vw;
    max-height: 95vh;

    object-fit: contain;
}

/* ==========================
   Tablet
========================== */

@media (max-width: 992px) {

    .cert-scroll__inner {
        gap: 24px;
    }

    .cert-scroll__left {
        flex: 0 0 220px;
    }

    .cert-scroll__title {
        font-size: 34px;
    }

    .cert-scroll-track {
        gap: 18px;
    }

    .cert-scroll__card {
        width: 145px;
        min-height: 140px;
    }

    .cert-scroll__thumb {
        max-height: 48px;
        max-width: 95px;
    }
}

/* ==========================
   Mobile
========================== */

@media (max-width: 768px) {

    .cert-scroll {
        padding: 44px 0;
    }

    .cert-scroll__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .cert-scroll__left,
    .cert-scroll__right {
        width: 100%;
        flex: none;
    }

    .cert-scroll__title {
        font-size: 30px;
        line-height: 1.2;
    }

    .cert-scroll-track {
        gap: 16px;
    }

    .cert-scroll__card {
        width: 135px;
        min-height: 130px;
        padding: 12px;
    }

    .cert-scroll__icon-box {
        height: 54px;
    }

    .cert-scroll__thumb {
        max-height: 44px;
        max-width: 90px;
    }

    .cert-scroll__name {
        font-size: 12px;
        min-height: 32px;
    }

    .cert-scroll__meta {
        font-size: 11px;
    }
}
/* bundled: components/video_text.css */
/* ================= VIDEO TEXT ================= */

.video-text {
    padding: 0;
    margin-top: clamp(36px, 4vw, 50px);
}

.video-text .container {
    display: flex;
    gap: clamp(36px, 5vw, 60px);
    align-items: stretch;
}

/* ================= MEDIA ================= */

.video-text__media {
    flex: 1;
    min-width: 0;
}

.video-text__media video,
.video-text__media img,
.video-text__media iframe {
    width: 100%;
    max-width: 100%;
    display: block;
}

.video-text__media video {
    border-radius: clamp(16px, 2vw, 24px);
}

.video-text__media .media-video--youtube {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    border-radius: clamp(16px, 2vw, 24px);
    overflow: hidden;
}

.video-text__media .media-video__iframe {
    width: 100%;
    max-height: 100%;
    aspect-ratio: 16 / 9;
}

/* ================= CONTENT ================= */

.video-text__content {
    flex: 1;
    min-width: 0;
    min-height: 570px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.video-text__tag {
    margin-bottom: 10px;

    color: #03A38C;
    font-size: clamp(13px, 1.1vw, 15px);
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.04em;
}

.video-text__title {
    margin: 0 0 clamp(16px, 2vw, 20px);

    color: #031F3B;
    font-size: clamp(28px, 3vw, 36px);
    line-height: 1.22;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.video-text__desc {
    margin: 0 0 12px;

    color: #555;
    font-size: clamp(15px, 1.35vw, 17px);
    line-height: 1.75;
}

.video-text__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;

    margin-top: clamp(18px, 2vw, 24px);
    padding: 12px 30px;

    background: #03A38C;
    color: #fff;
    border-radius: 15px;
    text-decoration: none;
    font-size: clamp(15px, 1.2vw, 16px);
    font-weight: 700;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.video-text__btn:hover {
    background: #028a77;
    transform: translateY(-2px);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {
    .video-text .container {
        flex-direction: column;
        gap: 34px;
    }

    .video-text__content {
        order: 1;
        min-height: auto;
        justify-content: flex-start;
    }

    .video-text__media {
        order: 2;
        width: 100%;
    }

    .video-text__media .media-video--youtube {
        height: auto;
    }
}

@media (max-width: 767px) {
    .video-text {
        margin-top: 34px;
    }

    .video-text .container {
        gap: 28px;
    }

    .video-text__content {
        padding: 0 2px;
    }

    .video-text__tag {
        margin-bottom: 10px;
    }

    .video-text__title {
        font-size: clamp(26px, 7vw, 32px);
        line-height: 1.24;
    }

    .video-text__desc {
        font-size: clamp(15px, 3.8vw, 16px);
        line-height: 1.75;
    }

    .video-text__btn {
        min-height: 44px;
        padding: 10px 24px;
        border-radius: 12px;
    }

    .video-text__media video {
        border-radius: 18px;
    }
}

@media (max-width: 480px) {
    .video-text {
        margin-top: 30px;
    }

    .video-text .container {
        gap: 26px;
    }

    .video-text__title {
        font-size: clamp(25px, 7.4vw, 30px);
    }

    .video-text__btn {
        width: 100%;
        max-width: 260px;
        text-align: center;
    }
}
/* bundled: components/product_grid.css */
/* ================= PRODUCT GRID ================= */

.product-grid {
    margin-top: 50px;
}

.product-grid .section-title-bar {
    margin-bottom: clamp(32px, 4vw, 50px);
}

/* ================= LIST ================= */

.product-grid__list {
    display: grid;
    gap: clamp(24px, 3vw, 34px) clamp(20px, 2.5vw, 30px);

    /*
      自动适应：
      - 每张卡片最小 280px
      - 空间够就自动多列
      - 空间不够就自动换行
    */
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* ================= VARIANTS ================= */

.product-grid--home .product-grid__list {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.product-grid--products .product-grid__list,
.product-grid--showcase .product-grid__list {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
    .product-grid {
        margin-top: clamp(32px, 6vw, 40px);
    }

    .product-grid .section-title-bar {
        margin-bottom: clamp(26px, 5vw, 36px);
    }

    .product-grid__list {
        gap: 24px;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }
}

@media (max-width: 480px) {
    .product-grid__list {
        gap: 20px;
        grid-template-columns: 1fr;
    }
}
/* bundled: components/why_choose_us.css */
/* ================= WHY CHOOSE US ================= */

.why-choose-us {
    margin-top: 50px;
}

/* ===================================================== */
/* ================= COMMON ============================= */
/* ===================================================== */

.why-choose-us__title,
.why-choose-us__text,
.why-choose-us__highlight {
    margin: 0;
}

.why-choose-us__icon img {
    display: block;
}

/* ===================================================== */
/* ================= HOME VARIANT ======================= */
/* ===================================================== */

.why-choose-us--why-home .why-choose-us__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: clamp(20px, 2.5vw, 30px);
}

.why-choose-us--why-home .why-choose-us__card {
    min-width: 0;
    padding: clamp(28px, 3vw, 40px) clamp(22px, 2.5vw, 30px);

    border-radius: 16px;
    background: #03A38C;
    color: #fff;

    display: flex;
    flex-direction: column;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.why-choose-us--why-home .why-choose-us__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(3, 163, 140, 0.25);
}

.why-choose-us--why-home .why-choose-us__icon img {
    width: clamp(42px, 4vw, 48px);
    transition: transform 0.3s ease;
}

.why-choose-us--why-home .why-choose-us__card:hover .why-choose-us__icon img {
    transform: scale(1.1);
}

.why-choose-us--why-home .why-choose-us__highlight {
    display: inline-block;
    margin: 12px 0 10px;

    font-size: clamp(12px, 1.1vw, 13px);
    line-height: 1.45;
    font-weight: 600;
    opacity: 0.9;
}

.why-choose-us--why-home .why-choose-us__title {
    margin-bottom: 10px;

    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.28;
    font-weight: 800;
}

.why-choose-us--why-home .why-choose-us__text {
    font-size: clamp(14px, 1.2vw, 15px);
    line-height: 1.65;
    opacity: 0.9;
}

/* ===================================================== */
/* ================= ABOUT VARIANT ====================== */
/* ===================================================== */

.why-choose-us--why-about .why-choose-us__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    column-gap: 48px;
    row-gap: 56px;
}

.why-choose-us--why-about .why-choose-us__card {
    position: relative;

    min-height: 140px;
    padding: 28px 24px 28px 92px;

    border-radius: 18px;
    background: transparent;

    transition:
        background 0.35s ease,
        box-shadow 0.35s ease,
        transform 0.35s ease;
}

.why-choose-us--why-about .why-choose-us__icon-box {
    position: absolute;
    left: -22px;
    top: 50%;
    transform: translateY(-50%);

    width: 78px;
    height: 78px;

    border-radius: 12px;
    background: transparent;

    display: flex;
    align-items: center;
    justify-content: center;

    transition:
        background 0.35s ease,
        box-shadow 0.35s ease;
}

.why-choose-us--why-about .why-choose-us__icon {
    position: relative;

    width: 56px;
    height: 56px;
}

.why-choose-us--why-about .why-choose-us__icon img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: contain;
    transition: opacity 0.3s ease;
}

/* 默认隐藏 hover icon */
.why-choose-us--why-about .icon-hover {
    opacity: 0;
}

.why-choose-us--why-about .why-choose-us__content {
    min-width: 0;
}

.why-choose-us--why-about .why-choose-us__title {
    margin: 0 0 10px;

    color: #031F3B;
    font-size: clamp(17px, 1.5vw, 18px);
    line-height: 1.35;
    font-weight: 700;

    transition: color 0.35s ease;
}

.why-choose-us--why-about .why-choose-us__text {
    margin: 0;

    color: #6B7280;
    font-size: clamp(14px, 1.2vw, 15px);
    line-height: 1.7;

    transition: color 0.35s ease;
}

.why-choose-us--why-about .why-choose-us__card:hover {
    background: #028a76;
    box-shadow: 0 18px 40px rgba(3, 163, 140, 0.18);
    transform: translateY(-4px);
}

.why-choose-us--why-about .why-choose-us__card:hover .icon-default {
    opacity: 0;
}

.why-choose-us--why-about .why-choose-us__card:hover .icon-hover {
    opacity: 1;
}

.why-choose-us--why-about .why-choose-us__card:hover .why-choose-us__icon-box {
    background: #03A38C;
    box-shadow: 0 10px 24px rgba(3, 163, 140, 0.22);
}

.why-choose-us--why-about .why-choose-us__card:hover .why-choose-us__title,
.why-choose-us--why-about .why-choose-us__card:hover .why-choose-us__text {
    color: #ffffff;
}

/* ===================================================== */
/* ================= RESPONSIVE ======================== */
/* ===================================================== */

@media (max-width: 768px) {
    .why-choose-us {
        margin-top: 42px;
    }

    .why-choose-us--why-home .why-choose-us__grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 22px;
    }

    .why-choose-us--why-home .why-choose-us__card {
        padding: 30px 24px;
        border-radius: 16px;
    }

    .why-choose-us--why-about .why-choose-us__grid {
        grid-template-columns: 1fr;
        row-gap: 28px;
    }

    .why-choose-us--why-about .why-choose-us__card {
        min-height: auto;
        padding: 24px 22px 24px 82px;
    }

    .why-choose-us--why-about .why-choose-us__icon-box {
        left: -12px;

        width: 68px;
        height: 68px;
    }

    .why-choose-us--why-about .why-choose-us__icon {
        width: 50px;
        height: 50px;
    }

    .why-choose-us--why-about .why-choose-us__title {
        font-size: 18px;
        line-height: 1.35;
    }

    .why-choose-us--why-about .why-choose-us__text {
        font-size: 15px;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .why-choose-us {
        margin-top: 36px;
    }

    .why-choose-us--why-home .why-choose-us__grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .why-choose-us--why-home .why-choose-us__card {
        padding: 28px 22px;
    }

    .why-choose-us--why-home .why-choose-us__title {
        font-size: clamp(19px, 6vw, 22px);
    }

    .why-choose-us--why-about .why-choose-us__grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .why-choose-us--why-about .why-choose-us__card {
        min-height: auto;
        padding: 24px 20px;
    }

    .why-choose-us--why-about .why-choose-us__icon-box {
        position: static;
        transform: none;

        width: 58px;
        height: 58px;
        margin-bottom: 16px;
    }

    .why-choose-us--why-about .why-choose-us__icon {
        width: 46px;
        height: 46px;
    }

    .why-choose-us--why-about .why-choose-us__title {
        font-size: 17px;
        line-height: 1.35;
    }

    .why-choose-us--why-about .why-choose-us__text {
        font-size: 14px;
        line-height: 1.7;
    }
}
/* bundled: components/manufacturing_process.css */
/* ==============================
   MANUFACTURING PROCESS
============================== */

.manufacturing-process {
    margin-top: 50px;
}

/* ==============================
   WRAPPER
============================== */

.process-wrapper {
    display: flex;
    gap: 16px;
    height: 440px;
}

/* ==============================
   CARD
============================== */

.process-card {
    flex: 0.5;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: #d9d9d9;
    transition: flex 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-card.active {
    flex: 5;
}

/* ==============================
   IMAGE
   关键：图片固定高度，不跟着卡片变形
   窄的时候只露出一部分，展开时露出更多
============================== */

.process-card img {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 100%;
    width: auto;
    transform: translate(-50%, -50%);
    display: block;
    z-index: 0;

    transition: all 0.5s ease;
}

/* 展开 */
.process-card.active img {
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;


    transform: none;
}

/* ==============================
   OVERLAY
============================== */

.process-image__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.50);
    z-index: 1;
    transition: background 0.35s ease;
}

.process-card.active .process-image__overlay {
    background: rgba(0, 0, 0, 0.38);
}

/* ==============================
   COLLAPSED VERTICAL TITLE
============================== */

.vertical-title {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);

    width: 28px;          /* 统一宽度 */
    height: auto;         /* 不要强行拉高 */
    z-index: 2;

    display: flex;
    justify-content: center;
    align-items: flex-start;   /* 顶部起排 */
    pointer-events: none;
}

.vertical-title__text {
    writing-mode: vertical-rl;
    text-orientation: mixed;

    white-space: nowrap;
    word-break: keep-all;
    overflow-wrap: normal;

    color: #fff;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.1;
    text-align: center;
}

.process-card.active .vertical-title {
    opacity: 0;
    pointer-events: none;
}

/* ==============================
   CONTENT AREA
============================== */

.card-content {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 2;
    padding: 24px 28px;
    box-sizing: border-box;
    max-width: 520px;
}

/* 默认隐藏，只做内容滑入 */
.card-content h3,
.card-content p,
.card-content .btn {
    opacity: 0;
    transform: translateY(24px);
    color: #fff;
}

/* 激活后依次滑入 */
.process-card.active .card-content h3 {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease 0.18s, transform 0.5s ease 0.18s;
}

.process-card.active .card-content p {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.58s ease 0.30s, transform 0.58s ease 0.30s;
}

.process-card.active .card-content .btn {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.65s ease 0.42s, transform 0.65s ease 0.42s;
}

/* 收起时更自然 */
.process-card:not(.active) .card-content h3,
.process-card:not(.active) .card-content p,
.process-card:not(.active) .card-content .btn {
    transition: opacity 0.2s ease, transform 0.2s ease;
}

/* ==============================
   TEXT
============================== */

.card-content h3 {
    margin: 0 0 14px;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 700;
}

.card-content p {
    margin: 0 0 22px;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.92);
}

/* ==============================
   BUTTON
============================== */

.process-card .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 25px;
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    background-color: #03A38C;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    user-select: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.process-card .btn:hover {
    background-color: #028a76;
}

/* ==============================
   RESPONSIVE
============================== */

@media (max-width: 1199px) {
    .process-wrapper {
        height: 400px;
    }

    .card-content {
        max-width: 460px;
        padding: 22px 24px;
    }

    .card-content h3 {
        font-size: 24px;
    }

    .card-content p {
        font-size: 15px;
    }
}

@media (max-width: 991px) {
    .process-wrapper {
        gap: 12px;
        height: 360px;
    }

    .process-card {
        border-radius: 18px;
    }

    .card-content {
        max-width: 400px;
        padding: 20px;
    }

    .card-content h3 {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .card-content p {
        margin-bottom: 18px;
        font-size: 14px;
        line-height: 1.6;
    }

    .process-card .btn {
        padding: 9px 20px;
        font-size: 14px;
    }
}

/* 手机端：不再使用展开/收起效果，直接展示所有卡片内容 */
@media (max-width: 767px) {
    .manufacturing-process {
        margin-top: 36px;
    }

    .process-wrapper {
        display: grid;
        grid-template-columns: 1fr;
        gap: 18px;
        height: auto;
    }

    .process-card,
    .process-card.active {
        flex: unset;
        height: auto;
        min-height: 300px;
        border-radius: 18px;
        cursor: pointer;
    }

    .process-card img,
    .process-card.active img {
        position: absolute;
        inset: 0;

        width: 100%;
        height: 100%;

        transform: none;
        object-fit: cover;
    }

    .process-image__overlay,
    .process-card.active .process-image__overlay {
        background: rgba(0, 0, 0, 0.42);
    }

    .vertical-title,
    .process-card.active .vertical-title {
        display: none;
    }

    .card-content {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        transform: none;

        max-width: none;
        min-height: 300px;
        padding: 28px 22px;

        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .card-content h3,
    .card-content p,
    .card-content .btn,
    .process-card.active .card-content h3,
    .process-card.active .card-content p,
    .process-card.active .card-content .btn {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .card-content h3 {
        margin-bottom: 12px;
        font-size: clamp(22px, 6vw, 28px);
        line-height: 1.22;
    }

    .card-content p {
        margin-bottom: 20px;
        font-size: clamp(14px, 3.8vw, 15px);
        line-height: 1.65;
    }

    .process-card .btn {
        align-self: flex-start;
        padding: 10px 22px;
        font-size: 14px;
    }
}

/* 小手机微调 */
@media (max-width: 480px) {
    .process-card,
    .process-card.active {
        min-height: 280px;
    }

    .card-content {
        min-height: 280px;
        padding: 24px 20px;
    }

    .card-content h3 {
        font-size: clamp(20px, 6.4vw, 25px);
    }

    .card-content p {
        font-size: 14px;
        line-height: 1.6;
    }

    .process-card .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ================= MANUFACTURING PROCESS HEADER RESPONSIVE ================= */

.manufacturing-process .section-header__title {
    font-size: clamp(30px, 4vw, 42px);
    line-height: 1.18;
    letter-spacing: -0.02em;
}

.manufacturing-process .section-header__desc {
    font-size: clamp(15px, 1.4vw, 18px);
    line-height: 1.75;
}

@media (max-width: 767px) {
    .manufacturing-process .section-header__title {
        font-size: clamp(26px, 7vw, 32px);
        line-height: 1.22;
    }

    .manufacturing-process .section-header__desc {
        font-size: clamp(15px, 3.8vw, 16px);
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .manufacturing-process .section-header__title {
        font-size: clamp(24px, 7vw, 28px);
        line-height: 1.22;
    }
}
/* bundled: components/workshop.css */
/* ===== Workshop ===== */

.workshop {
    margin-top: clamp(36px, 5vw, 50px);
}

/* ================= HEADER ================= */

.workshop-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;

    margin-bottom: clamp(26px, 3vw, 30px);
}

.workshop-header h2 {
    max-width: 700px;
    margin: 0;

    color: #031F3B;
    font-size: clamp(30px, 4vw, 40px);
    line-height: 1.18;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.tag {
    display: block;
    margin-bottom: 10px;

    color: #03A38C;
    font-size: clamp(12px, 1vw, 14px);
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.14em;
}

/* ================= ARROWS ================= */

.workshop-arrows {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.arrow {
    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: none;
    border-radius: 50%;
    outline: none;
    background: #03A38C;

    cursor: pointer;
}

.arrow:focus {
    outline: none;
}

.arrow svg {
    width: 18px;
    height: 18px;

    stroke: #fff;
    stroke-width: 3;
    fill: none;

    transform: translateY(1px);
}

/* ================= IMAGE SLIDER ================= */

.workshop-slider {
    overflow: hidden;
    border-radius: clamp(16px, 2vw, 20px);
    margin-bottom: clamp(24px, 3vw, 30px);

    user-select: none;
    -webkit-user-select: none;
    cursor: default;
}

.workshop-track,
.text-box-inner {
    display: flex;
}

.workshop-item {
    flex: 0 0 100%;
    min-width: 0;
}

.workshop-item img {
    display: block;

    width: 100%;
    height: clamp(260px, 35vw, 420px);

    object-fit: cover;
    -webkit-user-drag: none;
}

/* ================= TEXT FOOTER ================= */

.workshop-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
}

.text-box {
    width: min(600px, 100%);
    overflow: hidden;
}

.text-item {
    flex: 0 0 100%;
    min-width: 0;
}

.text-item h3 {
    margin: 0 0 10px;

    color: #031F3B;
    font-size: clamp(20px, 2vw, 22px);
    line-height: 1.3;
    font-weight: 800;
}

.text-item p {
    margin: 0;

    color: #666;
    font-size: clamp(14px, 1.2vw, 16px);
    line-height: 1.7;
}

/* ================= BUTTON ================= */

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;

    padding: 14px 24px;

    border-radius: 30px;
    background: #03A38C;

    color: #fff;
    font-size: clamp(14px, 1.1vw, 16px);
    font-weight: 700;
    text-decoration: none;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

.btn-primary:hover {
    background: #028a76;
    transform: translateY(-2px);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
    .workshop {
        margin-top: 40px;
    }

    .workshop-header {
        display: grid;
        grid-template-columns: 1fr;
        gap: 18px;
        margin-bottom: 24px;
    }

    .workshop-header h2 {
        font-size: clamp(26px, 7vw, 32px);
        line-height: 1.2;
    }

    .workshop-arrows {
        justify-content: flex-start;
    }

    .arrow {
        width: 42px;
        height: 42px;
    }

    .workshop-item img {
        height: clamp(240px, 58vw, 320px);
        border-radius: 0;
    }

    .workshop-footer {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 24px;
        align-items: center;
    }

    .text-box {
        width: 100%;
        min-width: 0;
    }

    .text-item h3 {
        font-size: clamp(20px, 5.4vw, 24px);
        line-height: 1.28;
    }

    .text-item p {
        margin-bottom: 0;
    }

    .btn-primary {
        width: auto;
        max-width: none;
        min-height: 46px;
        margin-top: 0;
        padding: 12px 24px;
        white-space: nowrap;
        justify-self: end;
    }
}

@media (max-width: 480px) {
    .workshop {
        margin-top: 36px;
    }

    .workshop-header {
        gap: 16px;
    }

    .workshop-header h2 {
        font-size: clamp(24px, 7vw, 28px);
        line-height: 1.22;
    }

    .tag {
        margin-bottom: 8px;
        font-size: 12px;
        line-height: 1.4;
    }

    .workshop-slider {
        margin-bottom: 22px;
        border-radius: 16px;
    }

    .workshop-item img {
        height: 250px;
    }

    .arrow {
        width: 40px;
        height: 40px;
    }

    .arrow svg {
        width: 16px;
        height: 16px;
    }

    .workshop-footer {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .text-item h3 {
        font-size: clamp(19px, 6vw, 23px);
    }

    .text-item p {
        font-size: 14px;
        line-height: 1.65;
    }

    .btn-primary {
        width: 100%;
        max-width: none;
        margin-top: 2px;
        justify-self: stretch;
        white-space: normal;
    }
}
/* bundled: components/image_text.css */
.image-text {
    margin-top: 50px;
}

.image-text .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

/* 反转布局 */
.image-text.reverse .container {
    flex-direction: row-reverse;
}

/* 图片 */
.img-box {
    flex: 1;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.img-box img {
    width: 100%;
    display: block;
    border-radius: 20px;
}

/* 文本 */
.text-box {
    flex: 1;
}

.text-box .tag {
    color: #03A38C;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
}

.text-box h2 {
    font-size: 25px;
    margin: 20px 0;
    line-height: 1.3;
}

.text-box p {
    color: #666;
    margin-bottom: 12px;
    line-height: 1.6;
}

/* 按钮 */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #03A38C;
    color: #fff;
    padding: 14px 26px;
    border-radius: 30px;
    margin-top: 20px;
    text-decoration: none;
    transition: all 0.3s;
}

.btn:hover {
    background: #03A38C;
}

.arrow {
    transition: transform 0.3s;
}

.btn:hover .arrow {
    transform: translateX(5px);
}
/* bundled: components/process_timeline_pro.css */
/* ================= PROCESS TIMELINE PRO ================= */

.process-timeline-pro {
    margin-top: clamp(36px, 5vw, 50px);
}

/* ================= WRAPPER ================= */

.ptp-wrapper {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(48px, 6vw, 80px);
    align-items: start;
}

/* ================= LEFT ================= */

.ptp-left {
    min-width: 0;
}

.ptp-tag {
    display: block;
    margin-bottom: 16px;

    color: #03A38C;
    font-size: clamp(12px, 1vw, 14px);
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.14em;
}

.ptp-title {
    margin: 0 0 20px;

    color: #031F3B;
    font-size: clamp(30px, 4vw, 40px);
    font-weight: 800;
    line-height: 1.22;
    letter-spacing: -0.02em;
}

.ptp-desc {
    margin: 0;

    color: #666;
    font-size: clamp(15px, 1.3vw, 17px);
    line-height: 1.7;
}

/* ================= RIGHT TIMELINE ================= */

.ptp-right {
    --timeline-x: 18px;

    position: relative;
    min-width: 0;
}

/* 竖线 */
.ptp-line {
    position: absolute;
    left: var(--timeline-x);
    top: 0;
    bottom: 0;

    width: 2px;
    background: #03A38C;
    transform: translateX(-50%);
}

/* 每一项 */
.ptp-item {
    position: relative;
    margin-bottom: clamp(28px, 4vw, 40px);
}

.ptp-item:last-child {
    margin-bottom: 0;
}

/* 圆点编号 */
.ptp-dot {
    position: absolute;
    left: var(--timeline-x);
    top: 0;

    width: 36px;
    height: 36px;

    transform: translate(-50%, 0);

    border: 2px solid #03A38C;
    border-radius: 50%;
    background: #03A38C;

    color: #fff;
    font-size: 15px;
    font-weight: 700;
    line-height: 32px;
    text-align: center;

    z-index: 2;
    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease;
}

/* 内容区域 */
.ptp-content {
    margin-left: 70px;
    min-width: 0;
}

/* 标题行 */
.ptp-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;

    cursor: pointer;

    color: #031F3B;
    font-size: clamp(17px, 1.5vw, 18px);
    font-weight: 700;
    line-height: 1.4;
}

.ptp-header span:first-child {
    min-width: 0;
}

/* 箭头 */
.ptp-arrow {
    flex: 0 0 auto;

    width: 8px;
    height: 8px;

    border-right: 2px solid #03A38C;
    border-bottom: 2px solid #03A38C;

    transform: rotate(45deg);
    transition: transform 0.3s ease;

    margin-left: 10px;
}

/* 内容 */
.ptp-body {
    display: grid;
    grid-template-rows: 0fr;

    margin-top: 10px;

    color: #666;
    font-size: clamp(14px, 1.2vw, 15px);
    line-height: 1.7;

    transition: grid-template-rows 0.35s ease;
}

.ptp-body > * {
    overflow: hidden;
}

/* 激活状态 */
.ptp-item.active .ptp-body {
    grid-template-rows: 1fr;
}

.ptp-item.active .ptp-arrow {
    transform: rotate(-135deg);
}

.ptp-item.active .ptp-dot {
    background: #03A38C;
    color: #fff;
}

/* hover */
.ptp-item:hover .ptp-dot {
    transform: translate(-50%, 0) scale(1.1);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {
    .ptp-wrapper {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .ptp-left {
        max-width: 760px;
    }

    .ptp-title {
        font-size: clamp(30px, 5vw, 36px);
        line-height: 1.2;
    }

    .ptp-desc {
        font-size: 16px;
        line-height: 1.7;
    }

    .ptp-right {
        --timeline-x: 18px;
    }
}

@media (max-width: 768px) {
    .process-timeline-pro {
        margin-top: 40px;
    }

    .ptp-wrapper {
        gap: 32px;
    }

    .ptp-tag {
        margin-bottom: 12px;
        font-size: 12px;
        line-height: 1.4;
    }

    .ptp-title {
        margin-bottom: 16px;
        font-size: clamp(26px, 7vw, 32px);
        line-height: 1.22;
    }

    .ptp-desc {
        font-size: clamp(15px, 3.8vw, 16px);
        line-height: 1.7;
    }

    .ptp-right {
        --timeline-x: 16px;
    }

    .ptp-item {
        margin-bottom: 28px;
    }

    .ptp-dot {
        width: 32px;
        height: 32px;

        font-size: 14px;
        line-height: 28px;
    }

    .ptp-content {
        margin-left: 54px;
    }

    .ptp-header {
        gap: 12px;
        font-size: clamp(16px, 4vw, 18px);
        line-height: 1.38;
    }

    .ptp-body {
        margin-top: 8px;
        font-size: 14.5px;
        line-height: 1.65;
    }

    .ptp-arrow {
        width: 7px;
        height: 7px;
        margin-left: 8px;
    }
}

@media (max-width: 480px) {
    .process-timeline-pro {
        margin-top: 36px;
    }

    .ptp-wrapper {
        gap: 28px;
    }

    .ptp-title {
        font-size: clamp(24px, 7vw, 28px);
        line-height: 1.22;
    }

    .ptp-desc {
        font-size: 14.5px;
        line-height: 1.65;
    }

    .ptp-right {
        --timeline-x: 15px;
    }

    .ptp-line {
        width: 2px;
    }

    .ptp-item {
        margin-bottom: 24px;
    }

    .ptp-dot {
        width: 30px;
        height: 30px;

        font-size: 13px;
        line-height: 26px;
    }

    .ptp-content {
        margin-left: 46px;
    }

    .ptp-header {
        font-size: 16px;
        line-height: 1.35;
    }

    .ptp-body {
        font-size: 14px;
        line-height: 1.62;
    }
}
/* bundled: components/footer.css */
/* ================= FOOTER ================= */

.site-footer {
    width: 100%;
    max-width: 100vw;
    overflow: hidden;

    background: #031F3B;
    color: #fff;

    padding-top: clamp(44px, 6vw, 80px);
    font-size: 14px;
}

.site-footer *,
.footer-main,
.footer-left,
.footer-right,
.footer-col,
.footer-contact,
.footer-contact-list,
.footer-title {
    box-sizing: border-box;
    min-width: 0;
    max-width: 100%;
}

/* ================= MAIN ================= */

.footer-main {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: clamp(36px, 5vw, 60px);
    max-width: 100%;
}

.footer-left {
    min-width: 0;
}

.footer-right {
    min-width: 0;
    max-width: 100%;

    padding-left: clamp(28px, 3vw, 40px);
    border-left: 1px solid rgba(255, 255, 255, 0.08);

    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(28px, 5vw, 80px);
}

.footer-right .footer-col,
.footer-col {
    min-width: 0;
}

/* ================= LOGO ================= */

.footer-logo {
    display: block;
    width: clamp(128px, 12vw, 140px);
    max-width: 100%;
    margin-bottom: 20px;
}

/* ================= DESC ================= */

.footer-desc {
    max-width: 260px;
    margin: 0;

    color: rgba(255, 255, 255, 0.7);
    font-size: clamp(13px, 1.1vw, 14px);
    line-height: 1.8;
}

.footer-readmore {
    color: #00AEEF;
    margin-left: 5px;
    text-decoration: none;
}

/* ================= TITLE ================= */

.footer-title {
    margin: 0 0 clamp(14px, 1.8vw, 18px);

    color: #fff;
    font-size: clamp(16px, 1.4vw, 18px);
    font-weight: 600;
    line-height: 1.35;

    overflow-wrap: anywhere;
    word-break: break-word;
}

/* ================= LINKS ================= */

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: clamp(10px, 1.4vw, 12px);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: clamp(13px, 1.1vw, 14px);
    line-height: 1.55;
    text-decoration: none;
    transition: color 0.3s ease;
}

/* ================= CONTACT ================= */

.footer-contact {
    min-width: 0;
    max-width: 100%;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;

    min-width: 0;
    max-width: 100%;
}

.footer-contact-list li {
    margin-bottom: 14px;
    min-width: 0;
    max-width: 100%;
}

.footer-contact-list a,
.footer-contact-list .no-link {
    display: flex;
    align-items: flex-start;
    gap: 12px;

    min-width: 0;
    max-width: 100%;

    color: rgba(255, 255, 255, 0.7);
    font-size: clamp(13px, 1.1vw, 14px);
    line-height: 1.6;
    text-decoration: none;
}

.contact-icon {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    margin-top: 4px;
}

.footer-contact-list span {
    min-width: 0;
    max-width: 100%;

    line-height: 1.6;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.footer-contact-list .no-link {
    cursor: default;
}

/* ================= DIVIDER ================= */

.footer-divider {
    margin: clamp(34px, 4vw, 50px) 0 20px;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

/* ================= BOTTOM ================= */

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;

    padding-bottom: clamp(24px, 3vw, 30px);
}

/* ================= SOCIAL ================= */

.footer-social {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.footer-social a {
    width: clamp(34px, 3.2vw, 36px);
    height: clamp(34px, 3.2vw, 36px);

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);

    color: #fff;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.footer-social svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* ================= COPY ================= */

.footer-copy {
    min-width: 0;

    color: #fff;
    font-size: clamp(12px, 1vw, 13px);
    line-height: 1.6;
}

/* ================= DESKTOP HOVER ONLY ================= */

@media (hover: hover) and (pointer: fine) {
    .footer-links a:hover {
        color: #fff;
    }

    .footer-contact-list a:hover {
        color: #fff;
    }

    .footer-social a:hover {
        background: #03A38C;
        transform: translateY(-3px);
    }
}

/* ================= TABLET ================= */

@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-desc {
        max-width: 100%;
    }

    .footer-right {
        padding-left: 0;
        border-left: none;

        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 32px;
    }
}

/* ================= SMALL TABLET ================= */

@media (max-width: 768px) {
    .footer-right {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 30px 24px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .footer-social {
        gap: 12px;
    }
}

/* ================= MOBILE FOOTER OPTIMIZED ================= */

@media (max-width: 640px) {
    .site-footer {
        padding-top: 38px;
        background:
            radial-gradient(circle at top left, rgba(3, 163, 140, 0.16), transparent 34%),
            #031F3B;
    }

    .footer-main {
        display: grid;
        grid-template-columns: 1fr;
        gap: 26px;
    }

    /* 顶部品牌区 */
    .footer-left {
        padding: 22px 20px;
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .footer-logo {
        width: 132px;
        margin-bottom: 16px;
    }

    .footer-desc {
        max-width: 100%;
        margin: 0;
        font-size: 13.5px;
        line-height: 1.75;
        color: rgba(255, 255, 255, 0.76);
    }

    .footer-readmore {
        display: inline-block;
        margin-left: 0;
        margin-top: 6px;
        color: #03A38C;
        font-weight: 700;
    }

    /* Product / Support 两列，Contact 单独整行 */
    .footer-right {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;

        padding-left: 0;
        border-left: none;
    }

    .footer-col {
        padding: 18px 16px;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.035);
        border: 1px solid rgba(255, 255, 255, 0.07);
    }

    .footer-contact {
        grid-column: 1 / -1;
    }

    .footer-title {
        margin: 0 0 14px;
        font-size: 15px;
        line-height: 1.3;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        color: #fff;
    }

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-links li:last-child,
    .footer-contact-list li:last-child {
        margin-bottom: 0;
    }

    .footer-links a,
    .footer-contact-list a,
    .footer-contact-list .no-link,
    .footer-contact-list span {
        font-size: 13px;
        line-height: 1.55;
        color: rgba(255, 255, 255, 0.72);
    }

    .footer-contact-list li {
        margin-bottom: 12px;
    }

    .footer-contact-list a,
    .footer-contact-list .no-link {
        gap: 10px;
    }

    .contact-icon {
        width: 16px;
        height: 16px;
        flex-basis: 16px;
        margin-top: 3px;
    }

    .footer-divider {
        margin: 28px 0 18px;
    }

    .footer-bottom {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 14px;
        padding-bottom: 24px;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
        gap: 12px;
    }

    .footer-social a {
        width: 36px;
        height: 36px;
        background: rgba(255, 255, 255, 0.09);
    }

    .footer-copy {
        font-size: 12px;
        line-height: 1.6;
        color: rgba(255, 255, 255, 0.72);
    }
}

@media (max-width: 360px) {
    .footer-left {
        padding: 20px 16px;
    }

    .footer-right {
        grid-template-columns: 1fr;
    }

    .footer-contact {
        grid-column: auto;
    }

    .footer-col {
        padding: 16px 14px;
    }
}
/* bundled: components/form.css */
/* ================= FORM COMPONENT ================= */

.form-component {
    width: 100%;
    background: #fff;
    border-radius: 24px;
    padding: 32px;
    box-sizing: border-box;
}

/* ================= FIELDS GRID ================= */

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

.form-component__group {
    min-width: 0;
}

.form-component__group--third {
    grid-column: span 4;
}

.form-component__group--half {
    grid-column: span 6;
}

.form-component__group--full {
    grid-column: 1 / -1;
}

/* ================= LABEL ================= */

.form-component__label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 600;
    color: #031F3B;
}

.form-component__required {
    margin-left: 2px;
    color: #03A38C;
}

/* ================= CONTROL ================= */

.form-component__control {
    width: 100%;
    box-sizing: border-box;
    padding: 14px 16px;
    border: 1px solid #D0D5DD;
    border-radius: 12px;
    background: #fff;
    font-size: 14px;
    line-height: 1.5;
    color: #101828;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-component__control::placeholder {
    color: #98A2B3;
}

.form-component__control:focus {
    border-color: #03A38C;
    box-shadow: 0 0 0 3px rgba(3, 163, 140, 0.12);
}

textarea.form-component__control {
    min-height: 140px;
    resize: vertical;
}

/* ================= HINT ================= */

.form-component__hint {
    margin-top: 6px;
    font-size: 12px;
    line-height: 1.5;
    color: #667085;
}

/* ================= ACTIONS ================= */

.form-component__actions {
    margin-top: 24px;
    display: flex;
}

.form-component__actions--left {
    justify-content: flex-start;
}

.form-component__actions--center {
    justify-content: center;
}

.form-component__actions--right {
    justify-content: flex-end;
}

.form-component__actions--full .form-component__submit {
    width: 100%;
}

/* ================= SUBMIT ================= */

.form-component__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 28px;
    border: none;
    border-radius: 999px;
    background: #03A38C;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.form-component__submit:hover {
    background: #028a77;
}

.form-component__submit:active {
    transform: translateY(1px);
}

/* ================= ERROR ================= */
.form-component__error {
    margin-top: 6px;
    font-size: 12px;
    color: #e5484d;
    line-height: 1.4;
    display: none;
}

.form-component__group.is-error .form-component__error {
    display: block;
}

.form-component__group.is-error .form-component__control {
    border-color: #e5484d;
    box-shadow: 0 0 0 2px rgba(229, 72, 77, 0.1);
}

/* ================= FORM MESSAGE ================= */

.form-component__message {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.6;
    display: none;
}

.form-component__message.is-success {
    display: block;
    color: #027A48;
}

.form-component__message.is-error {
    display: block;
    color: #B42318;
}

/* ================= SUBMIT STATE ================= */

.form-component__submit:disabled {
    opacity: 0.72;
    cursor: not-allowed;
}

.form-component__submit.is-loading {
    pointer-events: none;
}

/* ================= SUCCESS CARD ================= */

.form-component__success {
    display: none;
    text-align: center;
    padding: 48px 24px;
}

.form-component__success[hidden] {
    display: none !important;
}

.form-component__success-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ECFDF3;
    color: #027A48;
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
}

.form-component__success-title {
    margin: 0 0 12px;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 700;
    color: #031F3B;
}

.form-component__success-text {
    max-width: 520px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.7;
    color: #667085;
}

/* 提交成功后：隐藏原表单内容，显示成功卡片 */
.form-component.is-success .form-component__body {
    display: none;
}

.form-component.is-success .form-component__success {
    display: block;
}

.form-component__success-actions {
    margin-top: 24px;
    display: flex;
    justify-content: center;
}

.form-component__success-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    border: 1px solid #D0D5DD;
    border-radius: 999px;
    background: #fff;
    color: #031F3B;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.form-component__success-button:hover {
    background: #F9FAFB;
    border-color: #98A2B3;
}

.form-component__success-button:active {
    transform: translateY(1px);
}

.form-component__honeypot {
    position: absolute;
    left: -9999px;
    top: -9999px;
    opacity: 0;
    pointer-events: none;
}


/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
    .form-component__group--third {
        grid-column: span 6;
    }
}

@media (max-width: 768px) {
    .form-component__fields {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .form-component__success {
        padding: 32px 16px;
    }

    .form-component__success-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 16px;
        font-size: 28px;
    }

    .form-component__success-title {
        font-size: 24px;
    }

    .form-component__success-text {
        font-size: 15px;
    }

    .form-component__group--half,
    .form-component__group--third,
    .form-component__group--full {
        grid-column: span 1;
    }

    .form-component__control {
        font-size: 15px;
    }

    textarea.form-component__control {
        min-height: 120px;
    }

    .form-component__actions--full .form-component__submit {
        width: 100%;
    }
}
/* bundled: components/faq.css */
/* ========================================
   FAQ Section
======================================== */
.faq-section {
    width: 100%;
    box-sizing: border-box;
}

.faq-section--standard {
    padding-top: 50px;
}

.faq-section--home {
    padding: 0;
}

/* ========================================
   FAQ Base
======================================== */
.faq-component {
    width: 100%;
    box-sizing: border-box;
}

.faq-component__title {
    margin: 0 0 14px;
    font-size: 36px;
    line-height: 1.2;
    font-weight: 700;
}

.faq-component__desc {
    margin: 0 0 30px;
    font-size: 14px;
    line-height: 1.75;
}

.faq-component__list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-component__item {
    overflow: hidden;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;
}

.faq-component__header {
    display: flex;
    align-items: center;
    cursor: pointer;
    box-sizing: border-box;
}

.faq-component__number {
    flex-shrink: 0;
    font-weight: 700;
}

.faq-component__question {
    flex: 1;
    min-width: 0;
}

.faq-component__icon {
    flex-shrink: 0;
    position: relative;
}

.faq-component__answer-wrap {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-component__answer {
    box-sizing: border-box;
    font-size: 14px;
    line-height: 1.8;
}

/* ========================================
   standard
======================================== */
.faq-section--standard .faq-component__title {
    font-size: 42px;
    text-align: center;
    color: #081939;
}

.faq-section--standard .faq-component__desc {
    max-width: 760px;
    margin: 0 auto 40px;
    font-size: 16px;
    line-height: 1.75;
    text-align: center;
    color: #667085;
}

.faq-section--standard .faq-component__item {
    background: #ffffff;
    border: 1px solid #e7edf3;
    border-radius: 24px;
}

.faq-section--standard .faq-component__item:hover {
    transform: translateY(-3px);
    border-color: rgba(3, 163, 140, 0.35);
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

.faq-section--standard .faq-component__item.active {
    border-color: rgba(3, 163, 140, 0.55);
    box-shadow: 0 16px 40px rgba(3, 163, 140, 0.14);
}

.faq-section--standard .faq-component__header {
    min-height: 92px;
    gap: 18px;
    padding: 0 24px;
}

.faq-section--standard .faq-component__number {
    width: 64px;
    height: 40px;
    border-radius: 999px;
    background: rgba(3, 163, 140, 0.10);
    color: #03A38C;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.28s ease, color 0.28s ease;
}

.faq-section--standard .faq-component__item:hover .faq-component__number,
.faq-section--standard .faq-component__item.active .faq-component__number {
    background: #03A38C;
    color: #ffffff;
}

.faq-section--standard .faq-component__question {
    font-size: 20px;
    line-height: 1.45;
    font-weight: 700;
    color: #0f172a;
    transition: color 0.28s ease;
}

.faq-section--standard .faq-component__item:hover .faq-component__question,
.faq-section--standard .faq-component__item.active .faq-component__question {
    color: #0a3b35;
}

.faq-section--standard .faq-component__icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #f1f5f9;
    transition: background 0.28s ease;
}

.faq-section--standard .faq-component__icon::before,
.faq-section--standard .faq-component__icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background: #64748b;
    border-radius: 2px;
    transform: translate(-50%, -50%);
    transition: background 0.28s ease, opacity 0.28s ease;
}

.faq-section--standard .faq-component__icon::before {
    width: 16px;
    height: 2px;
}

.faq-section--standard .faq-component__icon::after {
    width: 2px;
    height: 16px;
}

.faq-section--standard .faq-component__item:hover .faq-component__icon {
    background: rgba(3, 163, 140, 0.10);
}

.faq-section--standard .faq-component__item:hover .faq-component__icon::before,
.faq-section--standard .faq-component__item:hover .faq-component__icon::after {
    background: #03A38C;
}

.faq-section--standard .faq-component__item.active .faq-component__icon {
    background: #03A38C;
}

.faq-section--standard .faq-component__item.active .faq-component__icon::before,
.faq-section--standard .faq-component__item.active .faq-component__icon::after {
    background: #ffffff;
}

.faq-section--standard .faq-component__item.active .faq-component__icon::after {
    opacity: 0;
}

.faq-section--standard .faq-component__answer {
    padding: 0 92px 28px 106px;
    font-size: 16px;
    line-height: 1.85;
    color: #667085;
}

/* ========================================
   HOME
======================================== */
.faq-section--home .faq-component__title {
    font-size: 32px;
    color: #ffffff;
}

.faq-section--home .faq-component__desc {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.faq-section--home .faq-component__item {
    background: #ffffff;
    border: 1px solid transparent;
    border-radius: 22px;
}

.faq-section--home .faq-component__item:hover {
    transform: translateY(-2px);
    border-color: #03A38C;
    box-shadow: 0 10px 24px rgba(3, 163, 140, 0.12);
}

.faq-section--home .faq-component__item.active {
    border-color: #03A38C;
    box-shadow: 0 12px 30px rgba(3, 163, 140, 0.16);
}

.faq-section--home .faq-component__header {
    min-height: 82px;
    gap: 0;
    padding: 0 18px 0 24px;
}

.faq-section--home .faq-component__number {
    min-width: 52px;
    font-size: 16px;
    font-weight: 500;
    color: #111111;
}

.faq-section--home .faq-component__question {
    padding: 0 20px 0 16px;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 700;
    color: #111111;
}

.faq-section--home .faq-component__icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #e3e6ec;
    transition: background 0.28s ease;
}

.faq-section--home .faq-component__icon::before,
.faq-section--home .faq-component__icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background: #8d95a3;
    border-radius: 2px;
    transform: translate(-50%, -50%);
    transition: background 0.28s ease, opacity 0.28s ease;
}

.faq-section--home .faq-component__icon::before {
    width: 14px;
    height: 2px;
}

.faq-section--home .faq-component__icon::after {
    width: 2px;
    height: 14px;
}

.faq-section--home .faq-component__item.active .faq-component__icon {
    background: #03A38C;
}

.faq-section--home .faq-component__item.active .faq-component__icon::before,
.faq-section--home .faq-component__item.active .faq-component__icon::after {
    background: #ffffff;
}

.faq-section--home .faq-component__item.active .faq-component__icon::after {
    opacity: 0;
}

.faq-section--home .faq-component__answer {
    padding: 0 82px 22px 92px;
    color: #666666;
}

/* ========================================
   Embedded in section / right column
======================================== */
.contact-faq .faq-section {
    width: 100%;
}

.contact-faq .faq-section--home {
    padding: 0;
}

.contact-faq .faq-component__title {
    margin-bottom: 14px;
}

.contact-faq .faq-component__desc {
    margin-bottom: 30px;
}

.contact-faq .faq-component__list {
    gap: 12px;
}

/* ========================================
   Responsive
======================================== */
@media (max-width: 1280px) {
    .faq-section--standard .container {
        width: calc(100% - 48px);
    }
}

@media (max-width: 1024px) {
    .faq-section--standard .faq-component__title {
        font-size: 38px;
    }

    .faq-section--standard .faq-component__desc {
        margin-bottom: 34px;
    }

    .faq-section--standard .faq-component__answer {
        padding: 0 28px 24px 28px;
    }

    .faq-section--home .faq-component__title {
        font-size: 30px;
    }

    .faq-section--home .faq-component__answer {
        padding: 0 24px 20px 24px;
    }
}

@media (max-width: 768px) {

    .faq-component__title {
        font-size: 28px !important;
    }

    .faq-component__desc {
        margin-bottom: 24px !important;
        font-size: 14px !important;
    }

    .faq-section--standard .faq-component__item,
    .faq-section--home .faq-component__item {
        border-radius: 18px;
    }

    .faq-section--standard .faq-component__header {
        min-height: 76px;
        gap: 12px;
        padding: 0 16px;
    }

    .faq-section--standard .faq-component__number {
        width: 52px;
        height: 34px;
        font-size: 14px;
    }

    .faq-section--standard .faq-component__question {
        font-size: 15px;
    }

    .faq-section--standard .faq-component__icon {
        width: 38px;
        height: 38px;
    }

    .faq-section--standard .faq-component__icon::before {
        width: 14px;
    }

    .faq-section--standard .faq-component__icon::after {
        height: 14px;
    }

    .faq-section--standard .faq-component__answer {
        padding: 0 16px 20px 16px;
        font-size: 14px;
    }

    .faq-section--home .faq-component__header {
        min-height: 74px;
        padding: 0 14px 0 18px;
    }

    .faq-section--home .faq-component__number {
        min-width: 42px;
        font-size: 15px;
    }

    .faq-section--home .faq-component__question {
        padding: 0 14px 0 12px;
        font-size: 14px;
    }

    .faq-section--home .faq-component__icon {
        width: 40px;
        height: 40px;
    }

    .faq-section--home .faq-component__answer {
        padding: 0 16px 18px 16px;
        font-size: 13px;
    }
}
/* bundled: components/contact_faq_section.css */
.contact-faq {
    margin-top: 50px;
    padding: 40px 0;
    background: #03A38C;
}

.contact-faq__container {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 72px;
    align-items: start;
}

.contact-faq__left,
.contact-faq__right {
    min-width: 0;
}

@media (max-width: 1024px) {
    .contact-faq__container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    /* FAQ 在上 */
    .contact-faq__right {
        order: 1;
    }

    /* Form 在下 */
    .contact-faq__left {
        order: 2;
    }
}

@media (max-width: 480px) {
    .contact-faq {
        margin: 32px 0;
        padding: 36px 0;
    }

    .contact-faq__container {
        gap: 36px;
    }
}
/* bundled: components/contact_float.css */
.contact-float {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;

    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* 单个卡片 */
.contact-item {
    width: 130px;
    background: #fff;
    border-radius: 6px 0 0 6px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.12);
    overflow: hidden;
}

/* 顶部 label */
.contact-label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 10px;
    cursor: default;
    user-select: none;
}

/* 小 icon */
.contact-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
    flex-shrink: 0;
}

/* 文字 */
.contact-text {
    font-size: 15px;
    line-height: 1;
    color: #2b2b2b;
}

/* 默认收起 */
.contact-popup {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0 14px;
    transition: max-height 0.28s ease, opacity 0.2s ease, padding 0.28s ease;
}

/* hover 整个 item 展开 */
.contact-item:hover .contact-popup {
    max-height: 220px;
    opacity: 1;
    padding: 0 14px 14px;
}

/* popup 里的二维码 */
.contact-qr {
    display: block;
    width: 120px;
    height: 120px;
    margin: 4px auto 0;
    object-fit: contain;
}

/* popup 文本 */
.contact-popup p {
    margin: 4px 0 0;
    font-size: 14px;
    line-height: 1.5;
    color: #333;
    text-align: left;
    word-break: break-word;
}

/* hover 微反馈 */
.contact-item:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.16);
}

/* ================= RESPONSIVE ================= */
/* 移动设备隐藏 */
@media (max-width: 1024px) {
    .contact-float {
        display: none !important;
    }
}
/* bundled: components/page-banner.css */
/* ================= PAGE BANNER ================= */

.page-banner {
    padding-top: 50px;
}

/* ================= LAYOUT ================= */

/* 全宽模式：背景全宽 */
.page-banner--full {
    padding: 0;
    margin-top: 50px;
}

.page-banner--full .page-banner__card {
    width: 100%;
    height: clamp(360px, 36vw, 480px);
    border-radius: 0;
}

/* boxed 模式：整体有页面留白 */
.page-banner--boxed .page-banner__card {
    width: min(1200px, calc(100% - 32px));
    height: clamp(360px, 36vw, 440px);
    margin: 0 auto;
    border-radius: clamp(20px, 2.6vw, 32px);
}

/* boxed 时，内容宽度模拟 container */
.page-banner--boxed .page-banner__wrap {
    width: min(1200px, calc(100% - 40px));
    height: 100%;
    margin: 0 auto;

    display: flex;
    align-items: center;
}

/* full 时，背景全宽，但文字区域仍然受控 */
.page-banner--full .page-banner__wrap {
    width: min(1200px, calc(100% - 40px));
    height: 100%;
    margin: 0 auto;

    display: flex;
    align-items: center;
}

/* ================= CARD ================= */

.page-banner__card {
    position: relative;
    width: 100%;
    height: clamp(360px, 36vw, 440px);
    overflow: hidden;
}

/* 背景图 */
.page-banner__bg {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

/* 遮罩 */
.page-banner__overlay {
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.38);
}

/* ================= CONTENT ================= */

.page-banner__content {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.page-banner__inner {
    width: 100%;
}

/* ================= VARIANT - CENTER ================= */

.page-banner--center .page-banner__wrap {
    justify-content: center;
    text-align: center;
}

.page-banner--center .page-banner__inner {
    max-width: 860px;
    margin: 0 auto;
}

.page-banner--center .page-banner__title {
    margin: 0 0 clamp(16px, 2vw, 22px);

    color: #fff;
    font-size: clamp(30px, 3.8vw, 42px);
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.page-banner--center .page-banner__desc {
    margin: 0 auto;

    color: rgba(255, 255, 255, 0.95);
    font-size: clamp(15px, 1.25vw, 16px);
    line-height: 1.8;
}

/* ================= VARIANT - LEFT ================= */

.page-banner--left .page-banner__wrap {
    justify-content: flex-start;
    text-align: left;
}

.page-banner--left .page-banner__inner {
    max-width: 620px;
}

.page-banner--left .page-banner__title {
    margin: 0 0 clamp(16px, 2vw, 20px);

    color: #fff;
    font-size: clamp(30px, 3.8vw, 42px);
    line-height: 1.18;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.page-banner--left .page-banner__desc {
    margin: 0;

    color: rgba(255, 255, 255, 0.95);
    font-size: clamp(15px, 1.25vw, 16px);
    line-height: 1.8;
}

/* ================= BUTTON ================= */

.page-banner__action {
    margin-top: clamp(22px, 2.6vw, 28px);
}

.page-banner__action a,
.page-banner__action button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 150px;
    min-height: 48px;
    padding: 0 24px;

    border: none;
    border-radius: 999px;
    background: var(--primary-color, #03A38C);

    color: #fff;
    cursor: pointer;
    font-size: clamp(14px, 1.15vw, 15px);
    font-weight: 600;
    text-decoration: none;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

.page-banner__action a:hover,
.page-banner__action button:hover {
    background: var(--primary-color-dark, #028a76);
    transform: translateY(-2px);
}

/* ================= TABLET ================= */

@media (max-width: 1024px) {
    .page-banner--boxed .page-banner__card {
        width: calc(100% - 40px);
    }

    .page-banner--boxed .page-banner__wrap,
    .page-banner--full .page-banner__wrap {
        width: calc(100% - 56px);
    }

    .page-banner--center .page-banner__inner {
        max-width: 760px;
    }

    .page-banner--left .page-banner__inner {
        max-width: 580px;
    }
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {
    .page-banner {
        padding: 32px 0 44px;
        overflow: hidden;
    }

    .page-banner--full {
        padding: 0;
    }

    .page-banner__card,
    .page-banner--boxed .page-banner__card,
    .page-banner--full .page-banner__card {
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: 320px;
    }

    .page-banner--boxed .page-banner__card {
        width: calc(100% - 24px);
        border-radius: 18px;
    }

    .page-banner--full .page-banner__card {
        border-radius: 0;
    }

    .page-banner--boxed .page-banner__wrap,
    .page-banner--full .page-banner__wrap {
        width: calc(100% - 32px);
        min-height: 320px;
        padding: 36px 0;

        align-items: center;
    }

    .page-banner--center .page-banner__inner,
    .page-banner--left .page-banner__inner {
        max-width: 100%;
    }

    .page-banner--center .page-banner__title {
        font-size: clamp(24px, 6.4vw, 30px);
        line-height: 1.22;
        margin-bottom: 14px;
    }

    .page-banner--left .page-banner__title {
        font-size: clamp(22px, 6vw, 28px);
        line-height: 1.2;
        margin-bottom: 14px;
    }

    .page-banner--center .page-banner__desc,
    .page-banner--left .page-banner__desc {
        font-size: 14px;
        line-height: 1.6;
    }

    .page-banner__action {
        margin-top: 18px;
    }

    .page-banner__action a,
    .page-banner__action button {
        min-height: 44px;
        padding: 0 20px;
        font-size: 14px;
    }
}

/* ================= SMALL MOBILE ================= */

@media (max-width: 480px) {
    .page-banner {
        padding: 28px 0 38px;
    }

    .page-banner--full {
        padding: 0;
    }

    .page-banner__card,
    .page-banner--boxed .page-banner__card,
    .page-banner--full .page-banner__card {
        min-height: 290px;
    }

    .page-banner--boxed .page-banner__card {
        width: calc(100% - 20px);
        border-radius: 16px;
    }

    .page-banner--boxed .page-banner__wrap,
    .page-banner--full .page-banner__wrap {
        width: calc(100% - 28px);
        min-height: 290px;
        padding: 28px 0;
    }

    .page-banner--center .page-banner__title {
        font-size: clamp(22px, 6.6vw, 26px);
        line-height: 1.22;
        margin-bottom: 12px;
    }

    .page-banner--left .page-banner__title {
        font-size: clamp(19px, 6vw, 23px);
        line-height: 1.22;
        margin-bottom: 12px;
    }

    .page-banner--center .page-banner__desc,
    .page-banner--left .page-banner__desc {
        font-size: 13.5px;
        line-height: 1.55;
    }

    .page-banner__action {
        margin-top: 16px;
    }

    .page-banner__action a,
    .page-banner__action button {
        width: 100%;
        min-height: 42px;
        padding: 0 18px;
        font-size: 13.5px;
    }
}

/* ================= EXTRA SMALL MOBILE ================= */

@media (max-width: 360px) {
    .page-banner--left .page-banner__title {
        font-size: 20px;
    }

    .page-banner--center .page-banner__title {
        font-size: 22px;
    }

    .page-banner--left .page-banner__desc,
    .page-banner--center .page-banner__desc {
        font-size: 13px;
    }
}
/* bundled: components/contact_process_section.css */
/* ===============================
   Contact + Process Section
=============================== */

.contact-process-section {
    background: #03A38C;
    margin-top: 50px;
    padding: 50px 0;
    overflow: hidden;
}

/* 布局 */
.contact-process-wrap {
    display: flex;
    gap: 80px;
    align-items: center;
}

/* 左侧：表单 */
.contact-process-left {
    flex: 0 0 600px;
    min-width: 0;
}

/* 右侧：流程 */
.contact-process-right {
    flex: 1;
    min-width: 0;
    color: #fff;
}

/* 标题 */
.contact-process-right h2 {
    margin: 0 0 50px;
    font-size: 35px;
    line-height: 1.25;
    font-weight: 700;
}

/* 步骤容器 */
.steps {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* 中间虚线 */
.steps::before {
    content: "";
    position: absolute;
    left: 15px;
    top: 5px;
    bottom: 5px;

    width: 2px;
    border-left: 2px dashed rgba(255, 255, 255, 0.5);
}

/* 单个步骤 */
.step-item {
    position: relative;

    display: flex;
    align-items: center;
    gap: 20px;
}

/* 数字 */
.step-num {
    position: relative;
    z-index: 1;

    width: 30px;
    height: 30px;
    flex: 0 0 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff;
    color: #03A38C;

    font-weight: 700;
    font-size: 14px;
    line-height: 1;

    border-radius: 6px;
}

/* 文本 */
.step-text {
    min-width: 0;

    font-size: 18px;
    font-weight: 600;
    line-height: 1.6;

    transition: transform 0.3s ease, opacity 0.3s ease;
}

.step-item:hover .step-text {
    transform: translateX(4px);
    opacity: 0.9;
}


/* ===============================
   Narrow Desktop：较窄桌面
=============================== */

@media (max-width: 1440px) {
    .contact-process-section {
        padding: 50px 0;
        margin-top: 50px;
    }

    .contact-process-wrap {
        gap: 52px;
    }

    .contact-process-left {
        flex: 0 0 540px;
    }

    .contact-process-right h2 {
        margin-bottom: 40px;
        font-size: 32px;
    }

    .steps {
        gap: 34px;
    }

    .step-text {
        font-size: 16px;
        line-height: 1.55;
    }
}


/* ===============================
   Tablet：平板，继续两列
=============================== */

@media (max-width: 1024px) {
    .contact-process-section {
        padding: 50px 0;
        margin-top 50px;
    }

    .contact-process-wrap {
        display: grid;
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
        gap: 36px;
        align-items: center;
    }

    .contact-process-left,
    .contact-process-right {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .contact-process-left {
        flex: none;
    }

    .contact-process-right h2 {
        margin-bottom: 34px;
        font-size: 30px;
        line-height: 1.28;
    }

    .steps {
        gap: 30px;
    }

    .step-item {
        gap: 16px;
    }

    .step-text {
        font-size: 15px;
        line-height: 1.55;
    }
}


/* ===============================
   Small Tablet：768 左右仍然两列
=============================== */

@media (max-width: 768px) {
    .contact-process-section {
        padding: 54px 0;
        margin-top: 50px;
    }

    .contact-process-wrap {
        grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
        gap: 24px;
    }

    .contact-process-right h2 {
        margin-bottom: 26px;
        font-size: 24px;
        line-height: 1.28;
    }

    .steps {
        gap: 22px;
    }

    .steps::before {
        left: 13px;
    }

    .step-item {
        align-items: flex-start;
        gap: 12px;
    }

    .step-num {
        width: 26px;
        height: 26px;
        flex-basis: 26px;

        margin-top: 2px;

        font-size: 12px;
        border-radius: 5px;
    }

    .step-text {
        font-size: 14px;
        line-height: 1.5;
    }

    /* 表单区域压缩 */
    .contact-process-left .form-component,
    .contact-process-left form {
        width: 100%;
        max-width: 100%;
    }

    .contact-process-left .form-component {
        padding: 24px 20px;
        border-radius: 22px;
    }

    .contact-process-left input,
    .contact-process-left textarea,
    .contact-process-left select {
        width: 100%;
        max-width: 100%;
        min-height: 46px;
        font-size: 14px;
    }

    .contact-process-left textarea {
        min-height: 120px;
    }
}


/* ===============================
   Mobile：手机端切一列
=============================== */

@media (max-width: 560px) {
    .contact-process-section {
        padding: 46px 0;
        margin-top 46px;
    }

    .contact-process-wrap {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 34px;
    }

    /* 手机端：先看说明，再填表 */
    .contact-process-right {
        order: 1;
    }

    .contact-process-left {
        order: 2;
        width: 100%;
    }

    .contact-process-right h2 {
        margin-bottom: 24px;
        font-size: 26px;
    }

    .steps {
        gap: 24px;
    }

    .step-text {
        font-size: 15px;
        line-height: 1.55;
    }

    .contact-process-left .form-component {
        padding: 24px 18px;
        border-radius: 20px;
    }
}


/* ===============================
   Small Mobile
=============================== */

@media (max-width: 480px) {
    .contact-process-section {
        padding: 40px 0;
        margin-top: 40px;
    }

    .contact-process-right h2 {
        font-size: 24px;
    }

    .contact-process-left .form-component {
        padding: 22px 16px;
    }
}
/* bundled: components/packaging_highlight_cards.css */
/* ===============================
   Packaging Highlight Cards
=============================== */
.packaging-highlight-cards {
    padding-top: 50px;
}

/* 布局 */
.packaging-highlight-cards__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
}

/* ===============================
   卡片
=============================== */
.packaging-card {
    border-radius: 28px;
    padding: 18px;
    background: #ffffff;
    border: 2px solid #e5e5e5;
    color: #031F3B;

    display: flex;
    flex-direction: column;
    min-height: 720px;

    transition: all 0.35s ease;
}

/* hover 主色激活 */
.packaging-card:hover {
    background: #03A38C;
    border-color: #03A38C;
    color: #ffffff;
    transform: translateY(-4px);
}

/* ===============================
   图片
=============================== */
.packaging-card__image {
    border-radius: 22px;
    overflow: hidden;
}

.packaging-card__image img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.packaging-card:hover .packaging-card__image img {
    transform: scale(1.05);
}

/* ===============================
   内容
=============================== */
.packaging-card__content {
    flex: 1;
    text-align: center;
    padding: 60px 30px 30px;

    display: flex;
    flex-direction: column;
    align-items: center;
}

/* 标题 */
.packaging-card__content h3 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
    transition: color 0.3s ease;
}

/* 描述 */
.packaging-card__content p {
    font-size: 17px;
    line-height: 1.7;
    max-width: 520px;
    transition: color 0.3s ease;
}

/* hover 文字变白 */
.packaging-card:hover h3,
.packaging-card:hover p {
    color: #ffffff;
}

/* ===============================
   按钮
=============================== */
.packaging-card__btn {
    margin-top: auto;
    height: 56px;
    padding: 0 28px;
    border-radius: 999px;

    display: inline-flex;
    align-items: center;
    gap: 8px;

    text-decoration: none;
    font-weight: 600;

    background: #03A38C;
    color: #ffffff;

    transition: all 0.3s ease;
}

/* hover 反色 */
.packaging-card:hover .packaging-card__btn {
    background: #ffffff;
    color: #03A38C;
}

/* 按钮微动 */
.packaging-card__btn:hover {
    transform: translateY(-2px);
}

/* ===============================
   响应式
=============================== */
@media (max-width: 991px) {
    .packaging-highlight-cards__grid {
        grid-template-columns: 1fr;
    }

    .packaging-card {
        min-height: auto;
    }

    .packaging-card__content {
        padding: 40px 20px;
    }

    .packaging-card__content h3 {
        font-size: 28px;
    }
}
/* bundled: components/media_gallery_tabs_section.css */
/* =========================
   Media Gallery Tabs Section
========================= */
.media-gallery-tabs {
    padding-top: 50px;
}

.media-gallery-tabs .container {
    width: 1200px;
    margin: 0 auto;
}

/* tabs */
.media-gallery-tabs__nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 68px;
    margin-bottom: 58px;
    flex-wrap: wrap;
}

.media-gallery-tabs__btn {
    min-width: 210px;
    height: 68px;
    padding: 0 34px;
    border-radius: 999px;
    border: 2px solid #03A38C;
    background: transparent;
    color: #03A38C;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.28s ease;
}

.media-gallery-tabs__btn:hover {
    background: #03A38C;
    color: #fff;
    transform: translateY(-2px);
}

.media-gallery-tabs__btn.is-active {
    background: #03A38C;
    color: #fff;
    box-shadow: 0 10px 24px rgba(3, 163, 140, 0.18);
}

/* panel */
.media-gallery-tabs__panel {
    display: none;
}

.media-gallery-tabs__panel.is-active {
    display: block;
}

/* grid */
.media-gallery-tabs__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px 22px;
}

/* card */
.media-gallery-tabs__card {
    border-radius: 30px;
    overflow: hidden;
}

.media-gallery-tabs__image-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 30px;
    overflow: hidden;
    background: #dcdcdc;
}

.media-gallery-tabs__image-wrap img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.media-gallery-tabs__card:hover img {
    transform: scale(1.08);
}

/* 图片没加载时尽量不让 alt 文本破坏布局 */
.media-gallery-tabs__image-wrap img[alt] {
    color: transparent;
    font-size: 0;
    line-height: 0;
}

.media-gallery-tabs__empty {
    min-height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    background: #dddddd;
    color: #888;
    font-size: 16px;
    font-weight: 500;
}

/* responsive */
@media (max-width: 1260px) {
    .media-gallery-tabs .container {
        width: calc(100% - 40px);
    }
}

@media (max-width: 992px) {
    .media-gallery-tabs {
        padding: 64px 0 80px;
    }

    .media-gallery-tabs__nav {
        gap: 18px;
        margin-bottom: 40px;
    }

    .media-gallery-tabs__btn {
        min-width: 180px;
        height: 58px;
        font-size: 16px;
    }

    .media-gallery-tabs__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 640px) {
    .media-gallery-tabs .container {
        width: calc(100% - 24px);
    }

    .media-gallery-tabs__nav {
        gap: 12px;
    }

    .media-gallery-tabs__btn {
        min-width: calc(50% - 6px);
        height: 52px;
        padding: 0 16px;
        font-size: 15px;
    }

    .media-gallery-tabs__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .media-gallery-tabs__image-wrap {
        border-radius: 22px;
    }
}
/* bundled: components/company-profile-section.css */
/* ================= COMPANY PROFILE SECTION ================= */

.company-profile-section {
    padding-top: 50px;
}

.company-profile-section .section-title-bar {
    margin-bottom: 34px;
}

/* ================= Intro ================= */

.company-profile-section__intro-text-wrap {
    position: relative;
    max-width: 980px;
    margin-bottom: 38px;
}

.company-profile-section__intro {
    max-width: 980px;
    margin-bottom: 42px;
}

.company-profile-section__intro-text {
    margin: 0;

    font-size: 16px;
    line-height: 1.9;
    color: #5F6B7A;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;

    overflow: hidden;
}

/* 展开状态 */
.company-profile-section__intro-text.is-expanded {
    display: block;
    -webkit-line-clamp: unset;
    overflow: visible;
}

/* Read More 按钮 */
.company-profile-section__read-more-btn {
    display: inline-flex;
    align-items: center;

    margin-top: 12px;
    padding: 0;

    background: none;
    border: none;

    font-size: 15px;
    line-height: 1.4;
    font-weight: 700;

    color: #03A38C;
    cursor: pointer;

    transition: color 0.25s ease;
}

.company-profile-section__read-more-btn:hover {
    color: #028A77;
}

/* 如果后续你改成 a 标签，也保留这个 */
.company-profile-section__read-more {
    display: inline-flex;
    align-items: center;

    margin-top: 12px;

    font-size: 15px;
    line-height: 1.4;
    font-weight: 700;

    color: #03A38C;
    text-decoration: none;

    transition: color 0.25s ease;
}

.company-profile-section__read-more:hover {
    color: #028A77;
}

/* ================= Vision / Mission ================= */

.company-profile-section__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;

    margin-bottom: 46px;
}

.company-profile-section__item {
    min-width: 0;

    padding: 30px 32px;

    background: #f5faf8;
    border: 1px solid rgba(3, 163, 140, 0.12);
    border-radius: 22px;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.company-profile-section__item:hover {
    transform: translateY(-3px);
    border-color: rgba(3, 163, 140, 0.28);
    box-shadow: 0 16px 36px rgba(3, 163, 140, 0.10);
}

.company-profile-section__item-title {
    margin: 0 0 12px;

    font-size: 26px;
    line-height: 1.25;
    font-weight: 700;

    color: #031F3B;
}

.company-profile-section__item-title::after {
    content: "";
    display: block;

    width: 42px;
    height: 3px;

    margin-top: 12px;

    border-radius: 999px;
    background: #03A38C;
}

.company-profile-section__item-desc {
    margin: 0;

    font-size: 16px;
    line-height: 1.85;

    color: #5F6B7A;
}

/* ================= Video ================= */

.company-profile-section__video {
    width: 100%;
}

.company-profile-section__video .media-video {
    width: 100%;
    aspect-ratio: 16 / 6.4;

    border-radius: 24px;
    overflow: hidden;
}

.company-profile-section__video .media-video--youtube {
    aspect-ratio: auto;
}

/* ================= Responsive：1024 以下 ================= */

@media (max-width: 1024px) {
    .company-profile-section {
        padding: 64px 0 52px;
    }

    .company-profile-section .section-title-bar {
        margin-bottom: 30px;
    }

    .company-profile-section__intro-text-wrap {
        margin-bottom: 34px;
    }

    .company-profile-section__grid {
        gap: 24px;
        margin-bottom: 40px;
    }

    .company-profile-section__item {
        padding: 26px 26px;
        border-radius: 20px;
    }

    .company-profile-section__item-title {
        font-size: 24px;
    }

    .company-profile-section__video .media-video {
        aspect-ratio: 16 / 7.2;
        border-radius: 22px;
    }
}

/* ================= Responsive：768 以下 ================= */

@media (max-width: 768px) {
    .company-profile-section {
        padding: 0 0 42px;
    }

    .company-profile-section .section-title-bar {
        margin-bottom: 24px;
    }

    .company-profile-section__intro-text-wrap {
        margin-bottom: 30px;
    }

    .company-profile-section__intro {
        margin-bottom: 30px;
    }

    .company-profile-section__intro-text {
        font-size: 15px;
        line-height: 1.78;

        -webkit-line-clamp: 3;
    }

    .company-profile-section__read-more-btn,
    .company-profile-section__read-more {
        margin-top: 10px;
        font-size: 14px;
    }

    .company-profile-section__grid {
        grid-template-columns: 1fr;
        gap: 20px;

        margin-bottom: 34px;
    }

    .company-profile-section__item {
        padding: 24px 22px;
        border-radius: 18px;
    }

    .company-profile-section__item-title {
        margin-bottom: 10px;

        font-size: 22px;
        line-height: 1.3;
    }

    .company-profile-section__item-title::after {
        width: 36px;
        height: 3px;
        margin-top: 10px;
    }

    .company-profile-section__item-desc {
        font-size: 15px;
        line-height: 1.78;
    }

    .company-profile-section__video .media-video {
        aspect-ratio: 16 / 9;
        border-radius: 20px;
    }
}

/* ================= Responsive：480 以下 ================= */

@media (max-width: 480px) {
    .company-profile-section {
        padding: 0px 0 36px;
    }

    .company-profile-section .section-title-bar {
        margin-bottom: 22px;
    }

    .company-profile-section__intro-text-wrap {
        margin-bottom: 26px;
    }

    .company-profile-section__intro-text {
        font-size: 14px;
        line-height: 1.76;
    }

    .company-profile-section__grid {
        gap: 18px;
        margin-bottom: 30px;
    }

    .company-profile-section__item {
        padding: 22px 18px;
        border-radius: 16px;
    }

    .company-profile-section__item-title {
        font-size: 20px;
    }

    .company-profile-section__item-desc {
        font-size: 14px;
        line-height: 1.75;
    }

    .company-profile-section__video .media-video {
        border-radius: 16px;
    }
}
/* bundled: components/about-stats-section.css */
.about-stats-section {
    padding-top: 50px;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    align-items: center;
}

.about-stats-card {
    text-align: center;
    padding: 10px 20px;
}

.about-stats-card__number {
    font-size: 54px;
    line-height: 1;
    font-weight: 700;
    color: #031F3B;
    margin-bottom: 14px;
    letter-spacing: 0.5px;
    font-variant-numeric: tabular-nums;
}

.about-stats-card__label {
    font-size: 16px;
    line-height: 1.5;
    color: #5E6E89;
    max-width: 220px;
    margin: 0 auto;
    word-break: break-word;
}

/* 平板 */
@media (max-width: 991px) {
    .about-stats-section {
        padding: 50px 0;
    }

    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px 24px;
    }

    .about-stats-card__number {
        font-size: 44px;
    }

    .about-stats-card__label {
        font-size: 15px;
    }
}

/* 手机 */
@media (max-width: 767px) {
    .about-stats-section {
        padding: 0;
    }

    .about-stats-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .about-stats-card {
        padding: 0 10px;
    }

    .about-stats-card__number {
        font-size: 38px;
        margin-bottom: 10px;
    }

    .about-stats-card__label {
        font-size: 14px;
        max-width: 260px;
    }
}
/* bundled: components/company-history.css */
/* =========================
   Company History
========================= */
.company-history {
    padding-top: 50px;
    overflow: hidden;
}

/* =========================
   Timeline（核心内容）
========================= */

/* 只有历史滚动区域不可复制 */
.company-history__viewport,
.company-history__viewport * {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
    cursor: grab;
}

.company-history__viewport {
    position: relative;
    overflow: hidden;
    cursor: default;
}

.company-history__inner {
    position: relative;
    width: max-content;
    padding-bottom: 10px;
}

/* 整条时间线 */
.company-history__line {
    position: absolute;
    left: 0;
    right: 0;
    top: 215px;
    height: 1px;
    background: rgba(3, 163, 140, 0.22);
    z-index: 1;
}

.company-history__track {
    display: flex;
    align-items: flex-start;
    flex-wrap: nowrap;
    gap: 48px;
    width: max-content;
    transform: translateX(0);
    will-change: transform;
}

/* =========================
   单个节点
========================= */
.company-history__item {
    width: 152px;
    flex: 0 0 152px;
}

.company-history__top {
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.company-history__year {
    margin: 0 0 12px;
    font-size: 27px;
    line-height: 1.1;
    font-weight: 700;
    color: #000000;
}

.company-history__text {
    margin: 0;
    font-size: 15px;
    line-height: 1.55;
    color: #6C7A8B;
}

/* =========================
   时间轴点
========================= */
.company-history__dot-wrap {
    position: relative;
    height: 40px;
}

.company-history__dot {
    position: absolute;
    top: 7px;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #03A38C;
    box-shadow: 0 0 0 4px rgba(3, 163, 140, 0.12);
}

/* =========================
   图片卡片
========================= */
.company-history__card {
    width: 152px;
    height: 82px;
    overflow: hidden;
    border-radius: 18px;
    background: #E9EEF2;
    flex-shrink: 0;
}

.company-history__card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    pointer-events: none;
}

/* =========================
   拖动状态
========================= */
.company-history__viewport.is-dragging,
.company-history__viewport.is-dragging * {
    cursor: grabbing;
}

/* =========================
   响应式
========================= */

@media (max-width: 1200px) {
    .company-history {
        padding: 90px 0;
    }

    .company-history__track {
        gap: 42px;
    }
}

@media (max-width: 992px) {
    .company-history {
        padding: 76px 0;
    }

    .company-history__track {
        gap: 38px;
    }

    .company-history__item {
        width: 190px;
        flex: 0 0 190px;
    }

    .company-history__top {
        height: 205px;
    }

    .company-history__line {
        top: 216px;
    }

    .company-history__year {
        font-size: 25px;
    }

    .company-history__text {
        font-size: 14px;
        line-height: 1.6;
    }

    .company-history__card {
        width: 190px;
        height: 102px;
        border-radius: 18px;
    }
}

@media (max-width: 768px) {
    .company-history {
        padding: 60px 0;
    }

    .company-history__viewport {
        overflow: hidden;
    }

    .company-history__inner {
        padding-bottom: 6px;
    }

    .company-history__track {
        gap: 30px;
    }

    .company-history__item {
        width: 210px;
        flex: 0 0 210px;
    }

    .company-history__top {
        height: 190px;
    }

    .company-history__line {
        top: 201px;
    }

    .company-history__dot-wrap {
        height: 36px;
    }

    .company-history__dot {
        top: 7px;
        width: 8px;
        height: 8px;
    }

    .company-history__year {
        margin-bottom: 10px;

        font-size: 24px;
        line-height: 1.15;
    }

    .company-history__text {
        font-size: 14px;
        line-height: 1.58;
    }

    .company-history__card {
        width: 210px;
        height: 112px;
        border-radius: 18px;
    }
}

@media (max-width: 480px) {
    .company-history {
        padding: 48px 0;
    }

    .company-history__track {
        gap: 24px;
    }

    .company-history__item {
        width: 200px;
        flex: 0 0 200px;
    }

    .company-history__top {
        height: 188px;
    }

    .company-history__line {
        top: 199px;
    }

    .company-history__dot-wrap {
        height: 34px;
    }

    .company-history__year {
        margin-bottom: 9px;

        font-size: 22px;
        line-height: 1.15;
    }

    .company-history__text {
        font-size: 13.5px;
        line-height: 1.58;
    }

    .company-history__card {
        width: 200px;
        height: 108px;
        border-radius: 16px;
    }
}

@media (max-width: 360px) {
    .company-history {
        padding: 44px 0;
    }

    .company-history__track {
        gap: 20px;
    }

    .company-history__item {
        width: 184px;
        flex: 0 0 184px;
    }

    .company-history__top {
        height: 200px;
    }

    .company-history__line {
        top: 211px;
    }

    .company-history__year {
        font-size: 21px;
    }

    .company-history__text {
        font-size: 13px;
        line-height: 1.6;
    }

    .company-history__card {
        width: 184px;
        height: 100px;
        border-radius: 15px;
    }
}
/* bundled: components/about-contact-section.css */
/* ================= ABOUT CONTACT SECTION ================= */

.about-contact-section {
    padding-top: 50px;
}

.about-contact-section__inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 48px;
    align-items: stretch;
}

.about-contact-section__left,
.about-contact-section__right {
    min-width: 0;
}

/* ================= LEFT ================= */

.about-contact-section__left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.about-contact-section__left-inner {
    width: 100%;
    max-width: 640px;
}

.about-contact-section .section-header {
    max-width: 100%;
    margin-bottom: 0;
}

.about-contact-section .section-header__tag {
    margin-bottom: 10px;
}

.about-contact-section .section-header__title {
    margin-bottom: 18px;

    font-size: 48px;
    line-height: 1.15;
}

.about-contact-section .section-header__desc {
    max-width: 100%;

    font-size: 16px;
    line-height: 1.8;
}

.about-contact-section__form {
    margin-top: 28px;
}

.about-contact-section__form .form-component,
.about-contact-section__form form {
    width: 100%;
    box-sizing: border-box;

    padding: 30px;

    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 16px 36px rgba(3, 31, 59, 0.06);
}

.about-contact-section__form .form-component {
    margin: 0;
}

.about-contact-section__form input,
.about-contact-section__form textarea,
.about-contact-section__form select {
    width: 100%;
    box-sizing: border-box;
}

.about-contact-section__form textarea {
    min-height: 120px;
    resize: vertical;
}

/* 提交按钮右对齐 */
.about-contact-section__form .form-component__actions,
.about-contact-section__form .form-actions,
.about-contact-section__form .form-submit-wrap {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* 如果按钮没有单独包裹容器，兜底处理 */
.about-contact-section__form button,
.about-contact-section__form .btn,
.about-contact-section__form .form-component__submit {
    margin-left: auto;
}

/* ================= RIGHT ================= */

.about-contact-section__right {
    width: 100%;
    min-height: 100%;

    padding: 34px 32px 30px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    box-sizing: border-box;
    overflow: hidden;

    color: #ffffff;
    background: #03A38C;
    border-radius: 28px;
    box-shadow: 0 18px 40px rgba(3, 163, 140, 0.18);
}

.about-contact-section__quote-wrap {
    position: relative;
}

.about-contact-section__quote-mark {
    margin-bottom: 12px;

    font-size: 64px;
    line-height: 1;
    font-weight: 700;

    color: rgba(255, 255, 255, 0.18);
}

.about-contact-section__quote {
    max-width: 88%;

    font-size: 17px;
    line-height: 1.7;
    font-weight: 600;

    color: rgba(255, 255, 255, 0.96);
}

/* ================= PERSON ================= */

.about-contact-section__person {
    display: flex;
    align-items: center;
    gap: 18px;

    margin-top: 40px;
}

.about-contact-section__avatar-wrap {
    width: 72px;
    height: 72px;
    flex-shrink: 0;

    overflow: hidden;

    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
}

.about-contact-section__avatar {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.about-contact-section__person-info {
    min-width: 0;
}

.about-contact-section__name {
    color: #ffffff;

    font-size: 16px;
    line-height: 1.2;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;

    word-break: break-word;
}

.about-contact-section__role {
    margin-top: 8px;

    font-size: 14px;
    line-height: 1.5;

    color: rgba(255, 255, 255, 0.82);
    word-break: break-word;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1200px) {
    .about-contact-section__inner {
        gap: 40px;
    }

    .about-contact-section .section-header__title {
        font-size: 42px;
    }

    .about-contact-section__quote {
        max-width: 100%;
    }
}

@media (max-width: 1024px) {
    .about-contact-section {
        padding: 70px 0;
    }

    .about-contact-section__inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about-contact-section__left-inner {
        max-width: 100%;
    }

    .about-contact-section .section-header__title {
        font-size: 36px;
        line-height: 1.18;
    }

    .about-contact-section__right {
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .about-contact-section {
        padding: 56px 0;
    }

    .about-contact-section .section-header__title {
        font-size: 28px;
        line-height: 1.24;
    }

    .about-contact-section .section-header__desc {
        font-size: 15px;
        line-height: 1.72;
    }

    .about-contact-section__form {
        margin-top: 24px;
    }

    .about-contact-section__form .form-component,
    .about-contact-section__form form {
        padding: 22px;
        border-radius: 20px;
    }

    .about-contact-section__right {
        padding: 28px 24px 24px;
        border-radius: 22px;
    }

    .about-contact-section__quote-mark {
        margin-bottom: 8px;
        font-size: 54px;
    }

    .about-contact-section__quote {
        max-width: 100%;

        font-size: 15px;
        line-height: 1.72;
        font-weight: 500;
    }

    .about-contact-section__person {
        gap: 14px;
        margin-top: 30px;
    }

    .about-contact-section__avatar-wrap {
        width: 60px;
        height: 60px;
    }

    .about-contact-section__name {
        font-size: 15px;
    }

    .about-contact-section__role {
        margin-top: 6px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .about-contact-section {
        padding: 44px 0;
    }

    .about-contact-section__inner {
        gap: 28px;
    }

    .about-contact-section .section-header__title {
        font-size: 24px;
        line-height: 1.3;
    }

    .about-contact-section .section-header__desc {
        font-size: 14px;
        line-height: 1.72;
    }

    .about-contact-section__form {
        margin-top: 22px;
    }

    .about-contact-section__form .form-component,
    .about-contact-section__form form {
        padding: 18px;
        border-radius: 18px;
    }

    /* 手机端表单字段强制单列 */
    .about-contact-section__form .form-component__fields {
        grid-template-columns: 1fr;
    }

    .about-contact-section__form .form-component__group,
    .about-contact-section__form .form-component__group--half,
    .about-contact-section__form .form-component__group--third,
    .about-contact-section__form .form-component__group--full {
        grid-column: 1 / -1;
    }

    .about-contact-section__form .form-component__actions,
    .about-contact-section__form .form-actions,
    .about-contact-section__form .form-submit-wrap {
        justify-content: stretch;
        align-items: stretch;
    }

    .about-contact-section__form button,
    .about-contact-section__form .btn,
    .about-contact-section__form .form-component__submit {
        width: 100%;
        margin-left: 0;
    }

    .about-contact-section__right {
        padding: 24px 20px 22px;
        border-radius: 20px;
    }

    .about-contact-section__quote-mark {
        font-size: 46px;
    }

    .about-contact-section__quote {
        font-size: 14px;
        line-height: 1.7;
    }

    .about-contact-section__person {
        margin-top: 24px;
    }

    .about-contact-section__avatar-wrap {
        width: 54px;
        height: 54px;
    }

    .about-contact-section__name {
        font-size: 14px;
    }

    .about-contact-section__role {
        font-size: 12.5px;
    }
}

@media (max-width: 360px) {
    .about-contact-section .section-header__title {
        font-size: 22px;
    }

    .about-contact-section__form .form-component,
    .about-contact-section__form form {
        padding: 16px;
    }

    .about-contact-section__right {
        padding: 22px 18px;
    }
}
/* bundled: components/contact-support-section.css */
/* ================= CONTACT SUPPORT SECTION ================= */

.contact-support-section {
    padding-top: 50px;
}

.contact-support-section__inner {
    display: flex;
    align-items: stretch;
    gap: 40px;
}

.contact-support-section__left,
.contact-support-section__right {
    width: 50%;
}

.contact-support-section__left {
    display: flex;
    flex-direction: column;
}

.contact-support-section__right {
    display: flex;
}

.contact-support-section__header {
    margin-bottom: 28px;
}

.contact-support-section__form {
    flex: 1;
    width: 100%;
}

/* 表单宽度保持正常 */
.contact-support-section__form .form-component {
    width: 100%;
}

/* 上传 + 提交按钮布局 */
.contact-support-section__form .form-component__actions,
.contact-support-section__form .form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.contact-support-section__form .form-component__submit,
.contact-support-section__form .submit-btn,
.contact-support-section__form button[type="submit"] {
    margin-left: auto;
}

.contact-support-section__form form.form-component {
    padding: 0;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
    .contact-support-section {
        padding: 70px 0;
    }

    .contact-support-section__inner {
        gap: 32px;
    }
}

@media (max-width: 991px) {
    .contact-support-section {
        padding: 60px 0;
    }

    .contact-support-section__inner {
        flex-direction: column;
        align-items: stretch;
        gap: 32px;
    }

    .contact-support-section__left,
    .contact-support-section__right {
        width: 100%;
    }

    .contact-support-section__form {
        flex: none;
    }
}

@media (max-width: 767px) {
    .contact-support-section {
        padding: 48px 0;
    }

    .contact-support-section__inner {
        gap: 28px;
    }

    .contact-support-section__header {
        margin-bottom: 24px;
    }

    .contact-support-section__form .form-component__actions,
    .contact-support-section__form .form-actions {
        flex-wrap: wrap;
        gap: 14px;
    }

    .contact-support-section__form .form-component__submit,
    .contact-support-section__form .submit-btn,
    .contact-support-section__form button[type="submit"] {
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .contact-support-section {
        padding: 40px 0;
    }

    .contact-support-section__inner {
        gap: 24px;
    }

    .contact-support-section__header {
        margin-bottom: 20px;
    }

    .contact-support-section__form .form-component__actions,
    .contact-support-section__form .form-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .contact-support-section__form .form-component__submit,
    .contact-support-section__form .submit-btn,
    .contact-support-section__form button[type="submit"] {
        width: 100%;
        margin-left: 0;
    }
}
/* bundled: components/contact-info-grid.css */
/* ================= CONTACT INFO GRID ================= */

.contact-info-grid {
    padding-top: 50px;
}

/* grid 布局 */
.contact-info-grid__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 40px;
    row-gap: 32px;
}

/* 单个卡片 */
.contact-info-grid__item {
    text-align: center;
}

/* ================= ICON ================= */

.contact-info-grid__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 22px;
    border-radius: 50%;
    background: #03A38C;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

/* icon 图片 */
.contact-info-grid__icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    display: block;
}

/* ✅ hover：icon 放大 + 渐变 */
.contact-info-grid__item:hover .contact-info-grid__icon {
    transform: scale(1.1);
}

/* ================= TITLE ================= */

.contact-info-grid__title {
    margin: 0 0 12px;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 700;
    color: #0b2c66;
}

/* ================= CONTENT ================= */

.contact-info-grid__content {
    max-width: 260px;
    margin: 0 auto;
}

.contact-info-grid__line {
    display: block;
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    color: #16366f;
    text-decoration: none;
    word-break: break-word;
}

.contact-info-grid__line + .contact-info-grid__line {
    margin-top: 2px;
}

/* hover 文字 */
a.contact-info-grid__line:hover {
    color: #1669ee;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {
    .contact-info-grid {
        padding: 56px 0;
    }

    .contact-info-grid__list {
        grid-template-columns: repeat(2, 1fr);
        gap: 36px 28px;
    }
}

@media (max-width: 767px) {
    .contact-info-grid {
        padding: 44px 0;
    }

    .contact-info-grid__list {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .contact-info-grid__icon {
        width: 70px;
        height: 70px;
        margin-bottom: 18px;
    }

    .contact-info-grid__icon img {
        width: 26px;
        height: 26px;
    }

    .contact-info-grid__title {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .contact-info-grid__line {
        font-size: 15px;
    }
}
/* bundled: components/why-trust-grid.css */
/* ================= WHY TRUST GRID ================= */

.why-trust-grid {
    padding-top: 50px;
}

.why-trust-grid__inner {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 72px;
    align-items: start;
}

/* ================= LEFT : SECTION HEADER ================= */

.why-trust-grid__left {
    max-width: 360px;
}

/* 这里是复用 section-header 后，在当前组件里做局部覆盖 */
.why-trust-grid__left .section-header {
    max-width: 100%;
}

.why-trust-grid__left .section-header__tag {
    display: inline-block;
    margin-bottom: 16px;
}

.why-trust-grid__left .section-header__title {
    margin-bottom: 28px;
    font-size: 35px;
    line-height: 1.12;
    font-weight: 700;
    color: #000000;
    letter-spacing: -0.02em;
}

.why-trust-grid__left .section-header__desc {
    max-width: 320px;
    font-size: 18px;
    line-height: 1.6;
    color: color: #000000;
    margin: 0;
}

/* ================= RIGHT ================= */

.why-trust-grid__right {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 72px;
    row-gap: 46px;
    align-items: start;
}

.why-trust-grid__item {
    display: flex;
    align-items: flex-start;
    gap: 22px;
}

.why-trust-grid__icon {
    width: 68px;
    height: 68px;
    flex: 0 0 68px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-trust-grid__icon img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    display: block;
    transition: transform 0.25s ease;
}

.why-trust-grid__item:hover .why-trust-grid__icon img {
    transform: scale(1.06);
}

.why-trust-grid__content {
    flex: 1;
    min-width: 0;
}

.why-trust-grid__item-title {
    margin: 0 0 10px;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 700;
    color: #000000
}

.why-trust-grid__item-desc {
    margin: 0;
    max-width: 280px;
    font-size: 16px;
    line-height: 1.55;
    color: #000000
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1199px) {
    .why-trust-grid__inner {
        grid-template-columns: 320px 1fr;
        gap: 56px;
    }

    .why-trust-grid__left {
        max-width: 320px;
    }

    .why-trust-grid__left .section-header__title {
        font-size: 48px;
    }

    .why-trust-grid__right {
        column-gap: 48px;
        row-gap: 38px;
    }
}

@media (max-width: 991px) {
    .why-trust-grid {
        padding: 60px 0;
    }

    .why-trust-grid__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-trust-grid__left {
        max-width: 100%;
    }

    .why-trust-grid__left .section-header__desc {
        max-width: 100%;
    }

    .why-trust-grid__right {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 32px;
        row-gap: 32px;
    }
}

@media (max-width: 767px) {
    .why-trust-grid {
        padding: 48px 0;
    }

    .why-trust-grid__left .section-header__title {
        font-size: 38px;
        margin-bottom: 20px;
    }

    .why-trust-grid__left .section-header__desc {
        font-size: 16px;
    }

    .why-trust-grid__right {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .why-trust-grid__item {
        gap: 18px;
    }

    .why-trust-grid__icon {
        width: 58px;
        height: 58px;
        flex: 0 0 58px;
    }

    .why-trust-grid__icon img {
        width: 48px;
        height: 48px;
    }

    .why-trust-grid__item-title {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .why-trust-grid__item-desc {
        max-width: 100%;
        font-size: 15px;
    }
}
/* bundled: components/sales-contact-section.css */
/* ================= SALES CONTACT SECTION ================= */

.sales-contact-section {
    padding-top: 50px;
}

/* header 间距 */
.sales-contact-section__header {
    margin-bottom: 48px;
}

/* 控制 section-header 在这里的宽度 */
.sales-contact-section__header .section-header {
    max-width: 860px;
}

/* 局部微调（不污染全局） */
.sales-contact-section__header .section-header__title {
    margin-bottom: 20px;
}

.sales-contact-section__header .section-header__desc {
    max-width: 820px;
    margin-bottom: 5px;
}

/* body */
.sales-contact-section__body {
    width: 100%;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {
    .sales-contact-section {
        padding: 60px 0;
    }

    .sales-contact-section__header {
        margin-bottom: 36px;
    }
}

@media (max-width: 767px) {
    .sales-contact-section {
        padding: 48px 0;
    }

    .sales-contact-section__header {
        margin-bottom: 28px;
    }
}
/* bundled: components/service-highlights.css */
/* ================= SERVICE HIGHLIGHTS ================= */

.service-highlights {
    margin-top: 50px;
}

/* ================= LIST ================= */

.service-highlights__list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(24px, 3vw, 40px);
}

/* ================= ITEM ================= */

.service-highlights__item {
    display: grid;
    grid-template-columns: clamp(48px, 5vw, 60px) minmax(0, 1fr);
    gap: clamp(12px, 1.5vw, 16px);
    align-items: center;

    min-width: 0;
}

.service-highlights__icon {
    width: clamp(48px, 5vw, 60px);
    height: clamp(48px, 5vw, 60px);
    flex-shrink: 0;
}

.service-highlights__icon img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;
}

.service-highlights__content {
    min-width: 0;
}

.service-highlights__title {
    margin: 0 0 6px;

    color: #031F3B;
    font-size: clamp(15px, 1.4vw, 17px);
    font-weight: 700;
    line-height: 1.35;
}

.service-highlights__desc {
    margin: 0;

    color: #5F6B7A;
    font-size: clamp(13px, 1.1vw, 14px);
    line-height: 1.55;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
    .service-highlights {
        margin-top: 42px;
    }

    .service-highlights__list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 26px;
    }

    .service-highlights__item {
        grid-template-columns: 52px minmax(0, 1fr);
        gap: 14px;
    }

    .service-highlights__icon {
        width: 52px;
        height: 52px;
    }
}

@media (max-width: 768px) {
    .service-highlights {
        margin-top: 36px;
    }

    .service-highlights__list {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .service-highlights__item {
        grid-template-columns: 52px minmax(0, 1fr);
        gap: 14px;
        align-items: flex-start;
    }

    .service-highlights__title {
        font-size: 16px;
        line-height: 1.35;
    }

    .service-highlights__desc {
        font-size: 14px;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .service-highlights {
        margin-top: 32px;
    }

    .service-highlights__list {
        gap: 20px;
    }

    .service-highlights__item {
        grid-template-columns: 46px minmax(0, 1fr);
        gap: 12px;
    }

    .service-highlights__icon {
        width: 46px;
        height: 46px;
    }

    .service-highlights__title {
        margin-bottom: 5px;
        font-size: 15px;
    }

    .service-highlights__desc {
        font-size: 13.5px;
        line-height: 1.58;
    }
}

@media (max-width: 360px) {
    .service-highlights__item {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .service-highlights__icon {
        width: 48px;
        height: 48px;
    }
}
/* bundled: components/blog-grid.css */
/* ================= BLOG GRID ================= */

.blog-grid {
    padding: 70px 0 90px;
}

.blog-grid__header {
    max-width: 720px;
    margin: 0 auto 48px;
    text-align: center;
}

.blog-grid__tag {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--primary-color, #03A38C);
}

.blog-grid__title {
    margin: 0 0 16px;
    font-size: 40px;
    line-height: 1.2;
    color: #111;
}

.blog-grid__desc {
    margin: 0;
    font-size: 16px;
    line-height: 1.75;
    color: #666;
}

.blog-grid__list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

/* ================= BLOG PAGINATION ================= */

.blog-pagination {
    margin-top: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.blog-pagination__pages {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.blog-pagination__page,
.blog-pagination__nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 14px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    background: #fff;
    color: #222;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.25s ease;
}

.blog-pagination__page:hover,
.blog-pagination__nav:hover {
    border-color: #03A38C;
    color: #03A38C;
}

.blog-pagination__page.is-active {
    background: #03A38C;
    border-color: #03A38C;
    color: #fff;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {
    .blog-grid {
        padding: 70px 0 80px;
    }

    .blog-grid__title {
        font-size: 32px;
    }

    .blog-grid__list {
        grid-template-columns: 1fr;
    }

    .blog-card__image {
        height: 180px;
    }
}

@media (max-width: 767px) {
    .blog-grid__header {
        margin-bottom: 36px;
    }

    .blog-grid__title {
        font-size: 28px;
    }

    .blog-grid__desc {
        font-size: 15px;
    }

    .blog-card__content {
        padding: 22px 18px 24px;
    }

    .blog-card__title {
        font-size: 20px;
    }

    .blog-card__meta {
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .blog-card__image {
        height: 220px;
    }
}

@media (max-width: 1199px) {
    .blog-grid__list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .blog-grid__list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .blog-grid__list {
        grid-template-columns: 1fr;
    }

    .blog-pagination {
        gap: 10px;
    }

    .blog-pagination__page,
    .blog-pagination__nav {
        min-width: 40px;
        height: 40px;
        font-size: 14px;
    }
}
/* bundled: components/blog-detail.css */
/* ================= BLOG DETAIL ================= */

.blog-detail {
    padding: 80px 0 100px;
    background: #fff;
}

.blog-detail__wrap {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 56px;
    align-items: start;
}

.blog-detail__sidebar {
    position: sticky;
    top: 120px;
}

.blog-detail__meta-card {
    padding: 28px 24px;
    border: 1px solid #ebebeb;
    border-radius: 20px;
    background: #fafafa;
}

.blog-detail__meta-item + .blog-detail__meta-item {
    margin-top: 22px;
}

.blog-detail__meta-label {
    display: block;
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #999;
}

.blog-detail__meta-value {
    display: block;
    font-size: 16px;
    line-height: 1.6;
    color: #111;
}

.blog-detail__content {
    min-width: 0;
}

.blog-detail__intro {
    max-width: 840px;
    margin-bottom: 32px;
}

.blog-detail__category {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    margin-bottom: 20px;
    border-radius: 999px;
    background: rgba(11, 107, 87, 0.08);
    color: var(--primary-color, #0b6b57);
    font-size: 13px;
    font-weight: 600;
}

.blog-detail__title {
    margin: 0 0 18px;
    font-size: 46px;
    line-height: 1.16;
    color: #111;
}

.blog-detail__summary {
    margin: 0;
    font-size: 18px;
    line-height: 1.9;
    color: #666;
}

.blog-detail__cover {
    margin-bottom: 42px;
    border-radius: 24px;
    overflow: hidden;
}

.blog-detail__cover img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.blog-detail__body {
    max-width: 840px;
}

.blog-detail__body h2 {
    margin: 42px 0 18px;
    font-size: 30px;
    line-height: 1.3;
    color: #111;
}

.blog-detail__body p {
    margin: 0 0 20px;
    font-size: 17px;
    line-height: 1.95;
    color: #444;
}

.blog-detail__body blockquote {
    margin: 32px 0;
    padding: 24px 28px;
    border-left: 4px solid var(--primary-color, #0b6b57);
    background: #f8faf9;
    border-radius: 0 16px 16px 0;
    font-size: 18px;
    line-height: 1.8;
    color: #222;
}

.blog-detail__body ul {
    margin: 0 0 24px 22px;
    padding: 0;
}

.blog-detail__body li {
    margin-bottom: 10px;
    font-size: 17px;
    line-height: 1.85;
    color: #444;
}


/* ================= RESPONSIVE ================= */

@media (max-width: 1199px) {
    .blog-detail__wrap {
        grid-template-columns: 240px minmax(0, 1fr);
        gap: 40px;
    }

    .blog-detail__title {
        font-size: 40px;
    }
}

@media (max-width: 991px) {
    .blog-detail {
        padding: 70px 0 80px;
    }

    .blog-detail__wrap {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .blog-detail__sidebar {
        position: static;
    }

    .blog-detail__meta-card {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 18px;
    }

    .blog-detail__meta-item + .blog-detail__meta-item {
        margin-top: 0;
    }

    .blog-detail__title {
        font-size: 34px;
    }

    .blog-detail__summary {
        font-size: 17px;
    }

    .blog-detail__body h2 {
        font-size: 26px;
    }

    .blog-related {
        padding-bottom: 80px;
    }

    .blog-related__title {
        font-size: 30px;
    }
}

@media (max-width: 767px) {
    .blog-detail {
        padding: 56px 0 70px;
    }

    .blog-detail__meta-card {
        grid-template-columns: 1fr;
    }

    .blog-detail__title {
        font-size: 28px;
    }

    .blog-detail__summary {
        font-size: 16px;
        line-height: 1.8;
    }

    .blog-detail__cover {
        margin-bottom: 30px;
        border-radius: 18px;
    }

    .blog-detail__body h2 {
        margin-top: 32px;
        font-size: 22px;
    }

    .blog-detail__body p,
    .blog-detail__body li {
        font-size: 16px;
        line-height: 1.85;
    }

    .blog-detail__body blockquote {
        padding: 18px 20px;
        font-size: 16px;
    }

    .blog-related {
        padding-bottom: 70px;
    }

    .blog-related__header {
        margin-bottom: 28px;
    }

    .blog-related__title {
        font-size: 26px;
    }
}
/* bundled: components/blog-related.css */
/* ================= BLOG RELATED ================= */

.blog-related {
    padding: 0 0 100px;
    background: #fff;
}

.blog-related__header {
    margin-bottom: 36px;
    text-align: center;
}

.blog-related__tag {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--primary-color, #0b6b57);
}

.blog-related__title {
    margin: 0;
    font-size: 36px;
    line-height: 1.2;
    color: #111;
}
/* bundled: components/feature-section.css */
/* ================= FEATURE SECTION / COMMON ================= */

.verification-section {
    position: relative;
    padding: 50px 0;
    margin-top: 50px;
}

/* 背景图 */
.verification-bg {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

/* 背景遮罩 */
.verification-overlay {
    position: absolute;
    inset: 0;

    background: rgba(0, 30, 40, 0.45);
}

/* 内容盒子 */
.verification-box {
    position: relative;
    z-index: 2;

    padding: 60px;
    border-radius: 24px;

    background: rgba(255, 255, 255, 0.15);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    border: 1px solid rgba(255, 255, 255, 0.4);

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.06),
        0 30px 80px rgba(0, 0, 0, 0.08);
}

/* ================= HEADER / COMMON ================= */

.verification-header {
    text-align: left;
    margin-bottom: 50px;
}

.verification-tag {
    display: inline-block;

    margin-bottom: 12px;

    color: #03A38C;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
}

.verification-title {
    margin: 0 0 16px;

    color: #000;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
}

.verification-desc {
    max-width: 700px;
    margin: 0;

    color: #000;
    font-size: 18px;
    line-height: 1.6;
}

/* ================= CARDS GRID ONLY ================= */

.verification-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;

    margin-top: 40px;
}

/* ================= BOTTOM DESC ================= */

.verification-bottom-desc {
    margin-top: 40px;
    text-align: center;
}

.verification-bottom-desc p {
    max-width: 760px;
    margin: 0 auto;

    color: #555;
    font-size: 18px;
    line-height: 1.6;
}

/* ================= BUTTON ================= */

.verification-action {
    margin-top: 40px;
    text-align: center;
}

.verification-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 14px 36px;

    border-radius: 30px;
    background: #03A38C;

    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;

    transition: transform 0.3s ease;
}

.verification-btn:hover {
    transform: translateY(-2px);
}

/* ================================================= */
/* =============== VARIANT: verification-ready ====== */
/* ================================================= */

.verification-section--verification-ready .verification-box {
    border-radius: 16px;
}

.verification-section--verification-ready .verification-tag {
    margin-bottom: 22px;
    padding: 10px 28px;

    border-radius: 14px;
    background: rgba(203, 217, 215, 0.72);

    color: #03A38C;
    font-size: 14px;
    letter-spacing: 2px;
}

.verification-section--verification-ready .verification-title {
    font-size: 42px;
}

.verification-section--verification-ready .verification-desc {
    max-width: 700px;
}

/* ================================================= */
/* =============== VARIANT: market-feedback ========= */
/* ================================================= */

.verification-section--market-feedback {
    padding: 0;
}

.verification-section--market-feedback .verification-box {
    padding: 56px 60px 44px;

    border-radius: 28px;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border: 1px solid rgba(255, 255, 255, 0.45);
    box-shadow: 0 20px 60px rgba(22, 39, 56, 0.08);
}

.verification-section--market-feedback .verification-header {
    margin-bottom: 42px;
}

.verification-section--market-feedback .verification-tag {
    margin-bottom: 22px;
    padding: 10px 28px;

    border-radius: 14px;
    background: rgba(203, 217, 215, 0.72);

    color: #03A38C;
    font-size: 14px;
    letter-spacing: 2px;
}

.verification-section--market-feedback .verification-title {
    max-width: 980px;
    margin: 0 0 20px;

    color: #1f2838;
    font-size: 44px;
    line-height: 1.18;
}

.verification-section--market-feedback .verification-desc {
    max-width: 900px;

    color: #4b5563;
    font-size: 17px;
    line-height: 1.75;
}

.verification-section--market-feedback .verification-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.verification-section--market-feedback .verification-bottom-desc {
    margin-top: 44px;
}

.verification-section--market-feedback .verification-bottom-desc p {
    max-width: 860px;

    color: #434c58;
    font-size: 17px;
    line-height: 1.75;
}

.verification-section--market-feedback .verification-action {
    margin-top: 34px;
}

.verification-section--market-feedback .verification-btn {
    padding: 16px 42px;

    border-radius: 14px;
    background: linear-gradient(135deg, #3b9f99, #4ea79f);
    box-shadow: 0 10px 24px rgba(62, 152, 145, 0.18);

    font-size: 16px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {
    .verification-section {
        padding: clamp(42px, 6vw, 60px) 0;
        margin: clamp(36px, 5vw, 50px) 0;
    }

    .verification-box {
        padding: clamp(32px, 5vw, 44px);
    }

    .verification-header {
        margin-bottom: clamp(30px, 4vw, 42px);
    }

    .verification-title {
        font-size: clamp(30px, 5vw, 38px);
        line-height: 1.18;
    }

    .verification-desc {
        font-size: clamp(15px, 2vw, 17px);
        line-height: 1.65;
    }

    .verification-cards {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: clamp(20px, 3vw, 28px);
        margin-top: clamp(30px, 4vw, 40px);
    }

    .verification-section--market-feedback .verification-box {
        padding: clamp(32px, 5vw, 44px);
    }

    .verification-section--market-feedback .verification-title {
        font-size: clamp(30px, 5vw, 38px);
    }

    .verification-section--market-feedback .verification-cards {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: clamp(18px, 3vw, 24px);
    }
}

@media (max-width: 768px) {
    .verification-section {
        padding: 42px 0;
        margin: 36px 0;
    }

    .verification-box {
        padding: 30px 22px;
        border-radius: 18px;
    }

    .verification-header {
        margin-bottom: 30px;
    }

    .verification-tag {
        margin-bottom: 14px;
        font-size: 12px;
        letter-spacing: 0.14em;
    }

    .verification-title {
        margin-bottom: 14px;
        font-size: clamp(28px, 7vw, 34px);
        line-height: 1.18;
    }

    .verification-desc {
        font-size: clamp(15px, 3.8vw, 16px);
        line-height: 1.7;
    }

    .verification-cards {
        grid-template-columns: 1fr;
        gap: 22px;
        margin-top: 30px;
    }

    .verification-bottom-desc {
        margin-top: 30px;
    }

    .verification-bottom-desc p {
        font-size: 15px;
        line-height: 1.7;
    }

    .verification-action {
        margin-top: 28px;
    }

    .verification-btn {
        width: 100%;
        padding: 14px 20px;
    }

    .verification-section--verification-ready .verification-tag,
    .verification-section--market-feedback .verification-tag {
        padding: 9px 18px;
        border-radius: 12px;
        font-size: 12px;
        letter-spacing: 0.14em;
    }

    .verification-section--market-feedback .verification-box {
        padding: 30px 22px;
        border-radius: 20px;
    }

    .verification-section--market-feedback .verification-header {
        margin-bottom: 30px;
    }

    .verification-section--market-feedback .verification-title {
        font-size: clamp(28px, 7vw, 34px);
        line-height: 1.18;
    }

    .verification-section--market-feedback .verification-desc {
        font-size: clamp(15px, 3.8vw, 16px);
        line-height: 1.7;
    }

    .verification-section--market-feedback .verification-cards {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .verification-section--market-feedback {
        margin-top: 24px;
    }
}

/* ================= FEATURE SECTION MOBILE TUNING ================= */

@media (max-width: 480px) {
    .verification-section--verification-ready .verification-title {
        font-size: clamp(24px, 7vw, 28px);
        line-height: 1.18;
        letter-spacing: -0.02em;
    }

    .verification-section--verification-ready .verification-desc {
        font-size: 14.5px;
        line-height: 1.65;
    }

    .verification-section--verification-ready .verification-tag {
        padding: 8px 16px;
        font-size: 11px;
        line-height: 1.45;
        letter-spacing: 0.14em;
    }

    .verification-section--verification-ready .verification-box {
        padding: 24px 16px;
    }

    .verification-section--verification-ready .verification-header {
        margin-bottom: 26px;
    }

    .verification-section.verification-section--market-feedback {
        margin: 18px 0 0px;
        padding: 0;
    }
}
/* bundled: components/quality-foundation-section.css */
/* ================= QUALITY FOUNDATION SECTION ================= */

.quality-foundation-section {
    margin-top: 50px;
    position: relative;
    overflow: hidden;
}

.quality-foundation-section__overlay {
    position: absolute;
    inset: 0;
}

.quality-foundation-section__panel {
    position: relative;
    z-index: 2;

    padding: 28px 32px 30px;
    border-radius: 22px;

    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.45);
    box-shadow: 0 18px 60px rgba(20, 45, 70, 0.08);

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.quality-foundation-section__layout {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 34px;
    align-items: stretch;
}

/* ================= LEFT VISUAL ================= */

.quality-foundation-section__visual {
    display: grid;
    grid-template-rows: 140px 1fr;

    min-height: 100%;

    border-radius: 18px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.16);
}

.quality-foundation-section__visual-top {
    display: flex;
    align-items: center;
    justify-content: center;

    padding: 18px 18px 10px;
}

.quality-foundation-section__visual-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: center;

    overflow: hidden;
}

.quality-foundation-section__logo {
    width: clamp(84px, 8vw, 120px);
}

.quality-foundation-section__logo img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.quality-foundation-section__certificate {
    display: flex;
    align-items: flex-end;
    justify-content: center;

    width: 100%;
    height: 100%;
    opacity: 1;
}

.quality-foundation-section__certificate img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ================= RIGHT CONTENT ================= */

.quality-foundation-section__content {
    min-width: 0;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.quality-foundation-section__tag {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;

    min-height: 42px;
    padding: 0 22px;
    margin-bottom: 18px;

    border-radius: 14px;
    background: rgba(215, 224, 232, 0.86);

    color: #03A38C;
    font-size: clamp(12px, 1vw, 13px);
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.quality-foundation-section__title {
    margin: 0 0 14px;

    color: #19233a;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.quality-foundation-section__desc {
    max-width: 860px;
    margin: 0 0 22px;

    color: #4f586b;
    font-size: clamp(15px, 1.4vw, 18px);
    line-height: 1.7;
}

/* ================= ITEMS ================= */

.quality-foundation-section__items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px 18px;

    margin-bottom: 16px;
}

.quality-foundation-item {
    display: flex;
    align-items: center;
    gap: 16px;

    min-height: 104px;
    padding: 18px 20px;

    border-radius: 16px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 10px 30px rgba(20, 45, 70, 0.06);
}

.quality-foundation-item__icon {
    flex: 0 0 clamp(48px, 5vw, 56px);

    display: flex;
    align-items: center;
    justify-content: center;

    width: clamp(48px, 5vw, 56px);
    height: clamp(48px, 5vw, 56px);
}

.quality-foundation-item__icon img {
    display: block;

    width: clamp(42px, 4.5vw, 50px);
    height: clamp(42px, 4.5vw, 50px);

    object-fit: contain;
}

.quality-foundation-item__body {
    min-width: 0;
}

.quality-foundation-item__title {
    margin: 0;

    color: #26314c;
    font-size: clamp(16px, 1.45vw, 19px);
    line-height: 1.35;
    font-weight: 500;
}

/* ================= NOTE + BUTTON ================= */

.quality-foundation-section__note {
    margin: 0 0 18px;

    color: #465066;
    font-size: clamp(14px, 1.25vw, 16px);
    line-height: 1.6;
}

.quality-foundation-section__action {
    display: flex;
    justify-content: flex-start;
}

.quality-foundation-section__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 56px;
    padding: 0 32px;

    border-radius: 16px;
    background: #03A38C;
    box-shadow: 0 12px 28px rgba(39, 125, 137, 0.24);

    color: #fff;
    font-size: clamp(15px, 1.2vw, 17px);
    font-weight: 700;
    text-decoration: none;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.quality-foundation-section__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(39, 125, 137, 0.28);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1199px) {
    .quality-foundation-section {
        margin: 42px 32px;
    }

    .quality-foundation-section__layout {
        grid-template-columns: 250px minmax(0, 1fr);
        gap: 26px;
    }

    .quality-foundation-section__panel {
        padding: 24px 24px 26px;
    }

    .quality-foundation-item {
        min-height: 94px;
        padding: 16px 18px;
    }
}

@media (max-width: 991px) {
    .quality-foundation-section {
        margin: 40px 24px;
    }

    .quality-foundation-section__layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .quality-foundation-section__visual {
        width: 100%;
        max-width: 360px;
        margin: 0 auto;

        grid-template-rows: 110px 240px;
    }

    .quality-foundation-section__items {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
}

@media (max-width: 767px) {
    .quality-foundation-section {
        margin: 32px 12px 20px;
    }

    .quality-foundation-section__panel {
        padding: 26px 20px 28px;
        border-radius: 18px;
    }

    .quality-foundation-section__layout {
        gap: 26px;
    }

    .quality-foundation-section__visual {
        max-width: 280px;

        grid-template-rows: 88px 220px;
        border-radius: 16px;
    }

    .quality-foundation-section__visual-top {
        padding: 14px 14px 8px;
    }

    .quality-foundation-section__tag {
        min-height: auto;
        padding: 9px 18px;
        margin-bottom: 16px;

        border-radius: 12px;

        font-size: 12px;
        letter-spacing: 0.14em;
    }

    .quality-foundation-section__title {
        margin-bottom: 14px;

        font-size: clamp(26px, 7vw, 32px);
        line-height: 1.2;
    }

    .quality-foundation-section__desc {
        margin-bottom: 18px;

        font-size: 15px;
        line-height: 1.7;
    }

    .quality-foundation-section__items {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .quality-foundation-item {
        gap: 12px;
        min-height: auto;
        padding: 14px;

        border-radius: 14px;
    }

    .quality-foundation-item__icon {
        flex-basis: 48px;
        width: 48px;
        height: 48px;
    }

    .quality-foundation-item__icon img {
        width: 42px;
        height: 42px;
    }

    .quality-foundation-item__title {
        font-size: 16px;
        line-height: 1.35;
    }

    .quality-foundation-section__note {
        font-size: 14px;
        line-height: 1.65;
    }

    .quality-foundation-section__btn {
        width: 100%;
        min-height: 52px;
        padding: 0 18px;

        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .quality-foundation-section {
        margin: 28px 0 18px;
    }


    .quality-foundation-section__panel {
        padding: 0px 0 26px;
        border-radius: 14px;
    }

    .quality-foundation-section__layout {
        gap: 24px;
    }

    .quality-foundation-section__visual {
        max-width: 250px;
        grid-template-rows: 82px 200px;
        border-radius: 14px;
    }

    .quality-foundation-section__content {
        padding: 0 16px;
    }

    .quality-foundation-section__logo {
        width: 78px;
    }

    .quality-foundation-section__tag {
        padding: 8px 16px;
        margin-bottom: 14px;

        font-size: 12px;
        line-height: 1.45;
        letter-spacing: 0.14em;
    }

    .quality-foundation-section__title {
        font-size: clamp(24px, 7.4vw, 29px);
        line-height: 1.22;
    }

    .quality-foundation-section__desc {
        font-size: 14.5px;
    }

    .quality-foundation-section__items {
        padding: 0 16px;
        gap: 12px;
    }

    .quality-foundation-item {
        padding: 14px 12px;
    }

    .quality-foundation-section__note,
    .quality-foundation-section__action {
        padding: 0 16px;
    }
}
/* bundled: components/industry-applications-section.css */
/* ================= INDUSTRY APPLICATIONS SECTION ================= */

.industry-applications-section {
    margin-top: clamp(36px, 5vw, 50px);
}

.industry-applications-section .section-split-header {
    margin-bottom: clamp(28px, 4vw, 44px);
}

/* ================= HEADER TEXT ================= */
/* 兼容 section-split-header 里的标题类名 */

.industry-applications-section .section-split-header__tag,
.industry-applications-section .section-split-header .tag {
    font-size: clamp(12px, 1vw, 14px);
    line-height: 1.4;
    letter-spacing: 0.14em;
}

.industry-applications-section .section-split-header__title,
.industry-applications-section .section-split-header h2 {
    font-size: clamp(26px, 3.2vw, 38px);
    line-height: 1.18;
    letter-spacing: -0.02em;
}

.industry-applications-section .section-split-header__desc,
.industry-applications-section .section-split-header p {
    font-size: clamp(15px, 1.3vw, 17px);
    line-height: 1.7;
}

/* ================= CARDS ================= */

.industry-applications-section__cards {
    display: grid;
    gap: clamp(20px, 2.5vw, 30px);
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

/* 只控制当前组件里的 card，不影响其它页面 card */
.industry-applications-section .card {
    height: 100%;
}

/* 没有 URL 时，不要表现得像链接 */
.industry-applications-section .card__img-box {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    cursor: default;
}

.industry-applications-section .card__img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.industry-applications-section .card__title {
    font-size: clamp(18px, 1.6vw, 22px);
    line-height: 1.3;
}

.industry-applications-section .card__desc {
    font-size: clamp(14px, 1.2vw, 15px);
    line-height: 1.65;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
    .industry-applications-section__cards {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .industry-applications-section {
        margin-top: 40px;
    }

    .industry-applications-section .section-split-header {
        margin-bottom: 32px;
    }

    .industry-applications-section .section-split-header__title,
    .industry-applications-section .section-split-header h2 {
        font-size: clamp(24px, 6.4vw, 30px);
        line-height: 1.22;
    }

    .industry-applications-section .section-split-header__desc,
    .industry-applications-section .section-split-header p {
        font-size: clamp(15px, 3.8vw, 16px);
        line-height: 1.7;
    }

    .industry-applications-section__cards {
        grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
        gap: 22px;
    }

    .industry-applications-section .card__img-box {
        aspect-ratio: 16 / 10;
    }

    .industry-applications-section .card__title {
        font-size: clamp(18px, 4.6vw, 21px);
    }

    .industry-applications-section .card__desc {
        font-size: clamp(14px, 3.6vw, 15px);
    }
}

@media (max-width: 480px) {
    .industry-applications-section {
        margin-top: 36px;
    }

    .industry-applications-section .section-split-header {
        margin-bottom: 28px;
    }

    .industry-applications-section .section-split-header__title,
    .industry-applications-section .section-split-header h2 {
        font-size: clamp(23px, 6.8vw, 27px);
        line-height: 1.22;
    }

    .industry-applications-section__cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .industry-applications-section .card__img-box {
        aspect-ratio: 16 / 9;
    }
}
/* bundled: components/testimonial-slider.css */
/* =========================
   TESTIMONIAL SLIDER
========================= */

.testimonial-slider {
    margin-top: 50px;
    overflow: hidden;
    background: transparent;
}

.testimonial-slider .container {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
}

.testimonial-slider__layout {
    display: grid;
    grid-template-columns: 360px minmax(0, 1fr);
    gap: clamp(36px, 4vw, 48px);
    align-items: flex-start;
}

/* =========================
   LEFT INTRO
========================= */

.testimonial-slider__intro {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 8px;
}

.testimonial-slider__quote {
    width: clamp(34px, 3vw, 42px);
    height: clamp(34px, 3vw, 42px);
    margin-bottom: clamp(14px, 2vw, 18px);
    flex-shrink: 0;
}

.testimonial-slider__quote img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.testimonial-slider__title {
    margin: 0;

    color: var(--text-dark);
    font-size: clamp(28px, 3.2vw, 35px);
    line-height: 1.12;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.testimonial-slider__desc {
    margin: clamp(16px, 2vw, 24px) 0 0;
    max-width: 100%;

    color: var(--text-body);
    font-size: clamp(15px, 1.25vw, 16px);
    line-height: 1.75;
}

.testimonial-slider__nav {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: clamp(20px, 3vw, 28px);
}

.testimonial-slider__btn {
    width: clamp(40px, 4vw, 46px);
    height: clamp(40px, 4vw, 46px);

    border: none;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    font-size: 18px;
    line-height: 1;
    cursor: pointer;

    transition:
        background 0.25s ease,
        transform 0.25s ease,
        opacity 0.25s ease;
}

.testimonial-slider__btn:hover {
    background: var(--primary-color-dark);
    transform: translateY(-2px);
}

.testimonial-slider__btn:active {
    transform: translateY(0);
}

.testimonial-slider__btn span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* 禁用状态：第一张左箭头 / 最后一张右箭头 */
.testimonial-slider__btn.is-disabled,
.testimonial-slider__btn:disabled {
    background: #d1d5db;
    color: #ffffff;
    opacity: 1;
    cursor: not-allowed;
    pointer-events: none;
    transform: none;
}

.testimonial-slider__btn.is-disabled:hover,
.testimonial-slider__btn:disabled:hover {
    background: #d1d5db;
    transform: none;
}

/* =========================
   RIGHT CONTENT
========================= */

.testimonial-slider__content {
    min-width: 0;
}

.testimonial-slider__viewport {
    width: 100%;
    overflow: hidden;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
}

.testimonial-slider__viewport.is-dragging {
    cursor: grabbing;
}

.testimonial-slider__track {
    display: flex;
    gap: clamp(16px, 2.4vw, 28px);
    will-change: transform;
    transition: transform 0.45s ease;
}

/* =========================
   CARD
========================= */

.testimonial-card {
    flex: 0 0 calc((100% - clamp(16px, 2.4vw, 28px)) / 2);

    min-height: clamp(320px, 30vw, 364px);
    padding: clamp(24px, 2.8vw, 34px);

    box-sizing: border-box;
    border-radius: clamp(18px, 2vw, 22px);
    background: var(--card-bg);

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
}

.testimonial-card__stars {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: clamp(16px, 2vw, 22px);

    color: var(--primary-color);
    font-size: clamp(16px, 1.5vw, 18px);
    line-height: 1;
}

.testimonial-card__text {
    margin: 0;

    color: #6b7280;
    font-size: clamp(15px, 1.35vw, 17px);
    line-height: 1.75;
    word-break: break-word;

    flex: 1;
}

.testimonial-card__footer {
    display: flex;
    align-items: center;
    gap: clamp(12px, 1.5vw, 16px);
    margin-top: clamp(22px, 2.4vw, 28px);
}

.testimonial-card__avatar {
    width: clamp(52px, 5vw, 64px);
    height: clamp(52px, 5vw, 64px);

    border-radius: 50%;
    overflow: hidden;
    background: #d9d9d9;
    flex-shrink: 0;
}

.testimonial-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.testimonial-card__meta {
    display: flex;
    flex-direction: column;
    justify-content: center;

    min-width: 0;
    flex: 1;
}

.testimonial-card__name {
    margin: 0;

    color: var(--text-dark);
    font-size: clamp(18px, 1.8vw, 22px);
    line-height: 1.2;
    font-weight: 700;
    word-break: break-word;
}

.testimonial-card__role {
    margin: 6px 0 0;

    color: #667085;
    font-size: clamp(13px, 1.1vw, 14px);
    line-height: 1.5;
    word-break: break-word;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
    .testimonial-slider__layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .testimonial-slider__intro {
        padding-top: 0;
    }

    .testimonial-slider__desc {
        max-width: 100%;
    }

    .testimonial-card {
        flex: 0 0 100%;
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .testimonial-slider {
        margin-top: 40px;
    }

    .testimonial-slider .container {
        width: calc(100% - 24px);
    }

    .testimonial-slider__layout {
        gap: 24px;
    }

    .testimonial-slider__title {
        font-size: clamp(26px, 7vw, 32px);
        line-height: 1.16;
    }

    .testimonial-slider__desc {
        font-size: 15px;
        line-height: 1.75;
    }

    .testimonial-slider__nav {
        gap: 12px;
        margin-top: 22px;
    }

    .testimonial-card {
        min-height: 280px;
        padding: 22px 20px;
    }

    .testimonial-card__text {
        font-size: 15px;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .testimonial-slider {
        margin-top: 36px;
        margin-bottom: 24px;
    }

    .testimonial-slider .container {
        width: calc(100% - 24px);
    }

    .testimonial-slider__title {
        font-size: clamp(24px, 7vw, 28px);
        line-height: 1.18;
    }

    .testimonial-slider__quote {
        width: 32px;
        height: 32px;
        margin-bottom: 12px;
    }

    .testimonial-slider__nav {
        margin-top: 18px;
    }

    .testimonial-card {
        min-height: auto;
        padding: 22px 18px;
        border-radius: 16px;
    }

    .testimonial-card__footer {
        margin-top: 20px;
    }

    .testimonial-card__avatar {
        width: 50px;
        height: 50px;
    }

    .testimonial-card__name {
        font-size: 18px;
    }
}
/* bundled: components/news-blog-section.css */
.news-blog-section {
    padding: 50px 0;
}

.news-blog-section .section-header {
    margin-bottom: 48px;
}

.news-blog-section__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
}

@media (max-width: 991px) {
    .news-blog-section__list {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}
/* bundled: components/home-inquiry-form.css */
/* ================= HOME INQUIRY FORM ================= */

.home-inquiry-form {
    padding-top: 50px;
}

/* ================= HEADER ================= */

.home-inquiry-form__header {
    max-width: 980px;
    margin: 0 auto clamp(0px, 4vw, 42px);
    text-align: center;
}

.home-inquiry-form__title {
    margin: 0 0 clamp(14px, 2vw, 18px);

    color: #041b3a;
    font-size: clamp(34px, 5.4vw, 68px);
    line-height: 1.06;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.home-inquiry-form__desc {
    max-width: 920px;
    margin: 0 auto;

    color: #23364d;
    font-size: clamp(15px, 1.4vw, 18px);
    line-height: 1.65;
}

/* ================= CARD ================= */

.home-inquiry-form__card {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;

    background: #ffffff;
    border-radius: clamp(20px, 2.5vw, 32px);
    padding:
        clamp(26px, 4.8vw, 58px)
        clamp(20px, 4.8vw, 58px)
        clamp(32px, 5.4vw, 70px);

    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

/* ================= FORM WIDTH FIX ================= */

.home-inquiry-form form.form-component,
.home-inquiry-form .form-component {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;

    /* 关键：去掉 form 本身的 32px padding，避免表单缩成一小块 */
    padding: 0;
    margin: 0;
}

.home-inquiry-form .form-component__fields,
.home-inquiry-form .form-component__group,
.home-inquiry-form .form-component__control {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* ================= FORM GRID ================= */

.home-inquiry-form .form-component__fields {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: clamp(16px, 2vw, 22px);
}

/* third / half / full */
.home-inquiry-form .form-component__group--third,
.home-inquiry-form .form-component__group[data-col="third"] {
    grid-column: span 4;
}

.home-inquiry-form .form-component__group--half,
.home-inquiry-form .form-component__group[data-col="half"] {
    grid-column: span 6;
}

.home-inquiry-form .form-component__group--full,
.home-inquiry-form .form-component__group[data-col="full"] {
    grid-column: span 12;
}

/* ================= INPUTS ================= */

.home-inquiry-form .form-component__control {
    width: 100%;
    height: clamp(52px, 5vw, 60px);

    padding: 0 14px;

    border: 1px solid #b9c3d0;
    border-radius: clamp(14px, 1.7vw, 20px);
    outline: none;
    background: #fff;

    color: #041b3a;
    font-size: clamp(14px, 1.2vw, 16px);

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.home-inquiry-form .form-component__control:focus {
    border-color: #03A38C;
    box-shadow: 0 0 0 3px rgba(3, 163, 140, 0.12);
}

.home-inquiry-form .form-component__control::placeholder {
    color: #6f7f92;
}

/* textarea */
.home-inquiry-form textarea.form-component__control {
    height: auto;
    min-height: clamp(150px, 16vw, 184px);
    padding: 14px;

    resize: vertical;
    line-height: 1.6;
}

/* ================= ACTIONS ================= */

.home-inquiry-form .form-component__actions {
    margin-top: clamp(14px, 2vw, 16px);
    justify-content: flex-end;
}

.home-inquiry-form .form-component__submit {
    min-width: 168px;
    height: clamp(54px, 5vw, 60px);
    padding: 0 30px;

    border-radius: 999px;
    background: #03A38C;

    font-size: clamp(15px, 1.2vw, 16px);
    font-weight: 700;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
    .home-inquiry-form {
        padding: 56px 0;
    }

    .home-inquiry-form__title {
        font-size: clamp(34px, 6vw, 46px);
    }

    .home-inquiry-form__card {
        padding: 40px 32px 48px;
        border-radius: 24px;
    }

    .home-inquiry-form .form-component__group--third,
    .home-inquiry-form .form-component__group[data-col="third"] {
        grid-column: span 6;
    }
}

@media (max-width: 768px) {
    .home-inquiry-form {
        padding: 44px 0;
    }

    .home-inquiry-form__header {
        margin-bottom: 0;
    }

    .home-inquiry-form__title {
        font-size: clamp(28px, 7vw, 36px);
        line-height: 1.16;
    }

    .home-inquiry-form__desc {
        font-size: 15px;
        line-height: 1.65;
    }

    .home-inquiry-form__card {
        padding: 28px 20px 32px;
        border-radius: 20px;
    }

    .home-inquiry-form .form-component__fields {
        gap: 16px;
    }

    .home-inquiry-form .form-component__group--third,
    .home-inquiry-form .form-component__group--half,
    .home-inquiry-form .form-component__group--full,
    .home-inquiry-form .form-component__group[data-col="third"],
    .home-inquiry-form .form-component__group[data-col="half"],
    .home-inquiry-form .form-component__group[data-col="full"] {
        grid-column: span 12;
    }

    .home-inquiry-form .form-component__control {
        height: 54px;
        padding: 0 13px;
        border-radius: 15px;
        font-size: 15px;
    }

    .home-inquiry-form textarea.form-component__control {
        min-height: 150px;
        padding: 14px 13px;
    }

    .home-inquiry-form .form-component__actions {
        justify-content: stretch;
    }

    .home-inquiry-form .form-component__submit {
        width: 100%;
        min-width: 0;
        height: 54px;
    }
}

@media (max-width: 480px) {
    .home-inquiry-form {
        padding: 38px 0;
    }

    .home-inquiry-form__title {
        font-size: clamp(25px, 7.2vw, 30px);
        line-height: 1.18;
    }

    .home-inquiry-form__desc {
        font-size: 14.5px;
    }

    .home-inquiry-form__card {
        padding: 22px 14px 26px;
        border-radius: 16px;
    }

    .home-inquiry-form .form-component__fields {
        gap: 14px;
    }

    .home-inquiry-form .form-component__control {
        height: 52px;
        padding: 0 12px;
        border-radius: 14px;
    }

    .home-inquiry-form textarea.form-component__control {
        min-height: 140px;
        padding: 14px 12px;
    }

    .home-inquiry-form .form-component__submit {
        height: 52px;
    }
}

@media (max-width: 360px) {
    .home-inquiry-form__card {
        padding: 20px 12px 24px;
    }

    .home-inquiry-form .form-component__control {
        padding: 0 11px;
    }

    .home-inquiry-form textarea.form-component__control {
        padding: 13px 11px;
    }
}
/* bundled: components/product-nav.css */
/* ================= PRODUCT NAV / FLOAT LEFT ================= */

.product-nav {
    position: fixed;
    left: max(24px, calc((100vw - 1200px) / 2 - 220px));
    top: 150px;
    z-index: 90;

    width: 150px;
    max-width: 150px;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: translateX(-14px);
    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease;
}

.product-nav.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
}

.product-nav.is-hidden-near-footer {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* ================= BOX ================= */

.product-nav__box {
    width: 100%;
    max-width: 100%;

    padding: 18px 14px;

    border: 1px solid rgba(3, 163, 140, 0.12);
    border-radius: 20px;

    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    box-shadow: 0 18px 40px rgba(12, 36, 31, 0.08);
}

/* ================= TITLE ================= */

.product-nav__title {
    margin: 0 0 14px;

    color: #10231f;
    font-size: 16px;
    line-height: 1.25;
    font-weight: 800;
    text-transform: lowercase;
    letter-spacing: 0.02em;
}

/* ================= LIST ================= */

.product-nav__list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-nav__item {
    display: flex;
    align-items: center;

    min-height: 34px;
    padding: 8px 12px;

    border-radius: 999px;
    background: #f4f8f7;

    color: #334743;
    font-size: 13px;
    font-weight: 650;
    line-height: 1.35;
    text-decoration: none;

    word-break: break-word;

    transition:
        color 0.25s ease,
        background 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

/* ================= ACTIVE ================= */

.product-nav__item.is-active,
.product-nav__item.active {
    color: #fff;
    background: #03A38C;
    box-shadow: 0 8px 20px rgba(3, 163, 140, 0.22);
}

/* ================= DESKTOP HOVER ONLY ================= */

@media (hover: hover) and (pointer: fine) {
    .product-nav__item:hover {
        color: #fff;
        background: #03A38C;
        transform: translateX(4px);
        box-shadow: 0 8px 20px rgba(3, 163, 140, 0.18);
    }
}

/* ================= NARROW DESKTOP ================= */

@media (max-width: 1440px) {
    .product-nav {
        left: 20px;
        width: 140px;
        max-width: 140px;
    }

    .product-nav__box {
        padding: 16px 12px;
    }

    .product-nav__item {
        font-size: 12px;
        padding: 8px 10px;
    }
}

/* ================= HIDE ON TABLET / MOBILE ================= */

@media (max-width: 1024px) {
    .product-nav {
        display: none !important;
    }
}
/* bundled: components/section-band.css */
/* ================= SECTION BAND ================= */

.section-band {
    width: 100%;
    min-height: 76px;
    margin: 50px 0;

    background: #03A38C;
    overflow: hidden;
}

.section-band .container {
    height: 100%;
}

.section-band__inner {
    min-height: 76px;

    display: flex;
    align-items: center;
}

.section-band__title {
    margin: 0;

    max-width: 100%;

    font-size: 24px;
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: -0.01em;

    color: #fff;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
    .section-band {
        min-height: 70px;
        margin: 0 0 50px;
    }

    .section-band__inner {
        min-height: 70px;
    }

    .section-band__title {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .section-band {
        min-height: auto;
        margin: 0 0 50px;
    }

    .section-band__inner {
        min-height: auto;
    }

    .section-band__title {
        font-size: 18px;
        line-height: 1.4;

        white-space: normal;
        overflow: visible;
        text-overflow: unset;
    }
}

@media (max-width: 480px) {
    .section-band {
        margin: 0 0 50px;
    }

    .section-band__title {
        font-size: 16px;
        line-height: 1.45;
    }
}

@media (max-width: 360px) {
    .section-band {
        margin: 0 0 50px;
    }

    .section-band__title {
        font-size: 15px;
    }
}
/* bundled: components/product-detail-showcase.css */
/* ================= PRODUCT DETAIL SHOWCASE ================= */

.product-detail-showcase {
    padding-top: 50px;
    overflow: visible;
    background: #fff;
}

.product-detail-showcase__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 56px;
    align-items: flex-start;

    width: 100%;
    max-width: 100%;
}

/* ================= LEFT GALLERY ================= */

.product-detail-showcase__gallery {
    position: sticky;
    top: 130px;

    align-self: flex-start;
    min-width: 0;
}

.product-detail-showcase__main {
    width: 100%;
    height: 520px;

    overflow: hidden;

    border-radius: 28px;
    background: #f5f8f7;
}

.product-detail-showcase__main-img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    user-select: none;
    pointer-events: none;

    transition: opacity 0.22s ease;
}

.product-detail-showcase__main-img.is-changing {
    opacity: 0;
}

.product-detail-showcase__thumbs {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;

    margin-top: 16px;
}

.product-detail-showcase__thumb {
    height: 92px;
    padding: 0;

    overflow: hidden;
    cursor: pointer;

    border: 1px solid #e3ebe8;
    border-radius: 16px;
    background: #f7faf9;

    transition:
        border-color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.product-detail-showcase__thumb img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    user-select: none;
    pointer-events: none;
}

.product-detail-showcase__thumb:hover {
    transform: translateY(-2px);
    border-color: #03A38C;
    box-shadow: 0 10px 24px rgba(11, 37, 32, 0.08);
}

.product-detail-showcase__thumb.is-active {
    border-color: #03A38C;
    box-shadow: 0 0 0 2px rgba(3, 163, 140, 0.12);
}

/* ================= RIGHT CONTENT ================= */

.product-detail-showcase__gallery,
.product-detail-showcase__content {
    min-width: 0;
    max-width: 100%;
}

.product-detail-showcase__content {
    padding-top: 4px;
}

.product-detail-showcase__title {
    margin: 0;

    color: #061F3B;
    font-size: 36px;
    line-height: 1.2;
    font-weight: 750;
    letter-spacing: -0.02em;
}

.product-detail-showcase__desc {
    margin: 18px 0 0;

    color: #5F6F6B;
    font-size: 17px;
    line-height: 1.75;
}

.product-detail-showcase__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;

    margin-top: 22px;
}

.product-detail-showcase__tag {
    display: inline-flex;
    align-items: center;

    min-height: 32px;
    padding: 0 12px;

    border-radius: 999px;
    background: #f3f7f6;
    color: #344642;

    font-size: 13px;
    line-height: 1;
    font-weight: 650;
}

/* ================= INFO BLOCKS ================= */

.product-detail-showcase__block {
    margin-top: 30px;
    padding-top: 26px;

    border-top: 1px solid #edf1f0;
}

.product-detail-showcase__block-title {
    margin: 0 0 16px;

    color: #10231f;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 720;
}

/* ================= SNAPSHOT ================= */

.product-detail-showcase__snapshot {
    overflow: hidden;

    border: 1px solid #edf1f0;
    border-radius: 18px;
    background: #fff;
}

.product-detail-showcase__snapshot-row {
    display: grid;
    grid-template-columns: 42% 58%;

    min-height: 48px;

    border-bottom: 1px solid #edf1f0;
}

.product-detail-showcase__snapshot-row:last-child {
    border-bottom: none;
}

.product-detail-showcase__snapshot-label,
.product-detail-showcase__snapshot-value {
    display: flex;
    align-items: center;

    padding: 12px 16px;

    font-size: 14px;
    line-height: 1.5;
}

.product-detail-showcase__snapshot-label {
    background: #f7faf9;
    color: #6b7a77;
    font-weight: 650;
}

.product-detail-showcase__snapshot-value {
    color: #263935;
    font-weight: 650;
}

/* ================= CUSTOM OPTIONS ================= */

.product-detail-showcase__custom-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 18px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.product-detail-showcase__custom-list li {
    position: relative;

    padding-left: 24px;

    color: #455854;
    font-size: 14px;
    line-height: 1.6;
}

.product-detail-showcase__custom-list li::before {
    content: "";

    position: absolute;
    left: 0;
    top: 0.45em;

    width: 14px;
    height: 14px;

    border-radius: 50%;
    background: #03A38C;
}

.product-detail-showcase__custom-list li::after {
    content: "";

    position: absolute;
    left: 5px;
    top: calc(0.45em + 3px);

    width: 4px;
    height: 7px;

    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;

    transform: rotate(45deg);
}

/* ================= ACTIONS ================= */

.product-detail-showcase__actions {
    margin-top: 34px;
}

.product-detail-showcase__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 52px;
    padding: 0 28px;

    border: none;
    border-radius: 999px;
    background: #03A38C;
    color: #fff;

    font-size: 15px;
    line-height: 1;
    font-weight: 700;
    text-decoration: none;

    cursor: pointer;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.product-detail-showcase__button:hover {
    transform: translateY(-2px);
    background: #02947f;
    box-shadow: 0 14px 30px rgba(3, 163, 140, 0.24);
}

.product-detail-showcase__note {
    margin: 14px 0 0;

    color: #6C7B78;
    font-size: 13px;
    line-height: 1.6;
}

/* ================= RESPONSIVE：1200 以下 ================= */

@media (max-width: 1200px) {
    .product-detail-showcase {
        padding: 0 0 50px;
    }

    .product-detail-showcase__grid {
        grid-template-columns: minmax(0, 52%) minmax(0, 48%);
        gap: 40px;
    }

    .product-detail-showcase__gallery {
        top: 120px;
    }

    .product-detail-showcase__main {
        height: 460px;
    }

    .product-detail-showcase__thumb {
        height: 82px;
    }

    .product-detail-showcase__title {
        font-size: 32px;
    }

    .product-detail-showcase__desc {
        font-size: 16px;
        line-height: 1.7;
    }

    .product-detail-showcase__snapshot-label,
    .product-detail-showcase__snapshot-value {
        padding: 11px 14px;
        font-size: 13px;
    }

    .product-detail-showcase__custom-list {
        gap: 10px 14px;
    }
}

/* ================= RESPONSIVE：1024 以下 ================= */

@media (max-width: 1024px) {
    .product-detail-showcase {
        padding: 0 0 50px;
    }

    .product-detail-showcase__grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .product-detail-showcase__gallery {
        position: static;
        top: auto;
        width: 100%;
    }

    .product-detail-showcase__main {
        height: 440px;
    }

    .product-detail-showcase__thumbs {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }

    .product-detail-showcase__content {
        width: 100%;
        padding-top: 0;
    }

    .product-detail-showcase__title {
        font-size: 32px;
        line-height: 1.22;
    }
}

/* ================= RESPONSIVE：768 以下 ================= */

@media (max-width: 768px) {
    .product-detail-showcase {
        padding: 0 0 50px;
    }

    .product-detail-showcase__grid {
        gap: 30px;
    }

    .product-detail-showcase__main {
        height: auto;
        aspect-ratio: 4 / 3;

        border-radius: 22px;
    }

    .product-detail-showcase__thumbs {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 10px;

        margin-top: 12px;
    }

    .product-detail-showcase__thumb {
        height: auto;
        aspect-ratio: 1 / 1;

        border-radius: 14px;
    }

    .product-detail-showcase__title {
        font-size: 28px;
        line-height: 1.24;
    }

    .product-detail-showcase__desc {
        margin-top: 14px;

        font-size: 15px;
        line-height: 1.72;
    }

    .product-detail-showcase__tags {
        gap: 8px;
        margin-top: 18px;
    }

    .product-detail-showcase__tag {
        min-height: 30px;
        padding: 0 10px;

        font-size: 12px;
    }

    .product-detail-showcase__block {
        margin-top: 26px;
        padding-top: 22px;
    }

    .product-detail-showcase__block-title {
        margin-bottom: 14px;

        font-size: 17px;
    }

    .product-detail-showcase__snapshot-label,
    .product-detail-showcase__snapshot-value {
        padding: 10px 14px;

        font-size: 13px;
    }

    .product-detail-showcase__custom-list {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .product-detail-showcase__actions {
        margin-top: 28px;
    }

    .product-detail-showcase__button {
        min-height: 46px;
        padding: 0 24px;

        font-size: 14px;
    }
}

/* ================= RESPONSIVE：480 以下 ================= */

@media (max-width: 480px) {
    .product-detail-showcase {
        padding: 0 0 50px;
    }

    .product-detail-showcase__grid {
        gap: 26px;
    }

    .product-detail-showcase__main {
        aspect-ratio: 1 / 1;
        border-radius: 18px;
    }

    .product-detail-showcase__thumbs {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
    }

    .product-detail-showcase__thumb {
        border-radius: 12px;
    }

    .product-detail-showcase__title {
        font-size: 24px;
        line-height: 1.28;
    }

    .product-detail-showcase__desc {
        font-size: 14px;
        line-height: 1.7;
    }

    .product-detail-showcase__tag {
        min-height: 28px;
        font-size: 11.5px;
    }

    .product-detail-showcase__block {
        margin-top: 24px;
        padding-top: 20px;
    }

    .product-detail-showcase__snapshot-row {
        grid-template-columns: 1fr;
    }

    .product-detail-showcase__snapshot-label {
        border-bottom: 1px solid #edf1f0;
    }

    .product-detail-showcase__custom-list li {
        font-size: 13.5px;
        line-height: 1.65;
    }

    .product-detail-showcase__button {
        width: 100%;
    }

    .product-detail-showcase__note {
        font-size: 12.5px;
    }
}

/* ================= RESPONSIVE：360 以下 ================= */

@media (max-width: 360px) {
    .product-detail-showcase {
        padding: 0 0 50px;
    }

    .product-detail-showcase__title {
        font-size: 22px;
    }

    .product-detail-showcase__desc {
        font-size: 13.5px;
    }

    .product-detail-showcase__snapshot-label,
    .product-detail-showcase__snapshot-value {
        padding: 9px 12px;
    }
}
/* bundled: components/product-info-card-grid.css */
/* ================= PRODUCT INFO CARD GRID ================= */

.product-info-card-grid {
    background: #fff;
}

.product-info-card-grid__list {
    display: grid;
    gap: 24px;

    /* 自动适应：能放几个放几个，每个卡片最小 280px */
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* ================= SECTION VARIANTS ================= */
.product-info-card-grid--compact {
    padding-top: 24px;
    padding-bottom: 40px;
}

.product-info-card-grid--compact .product-info-card-grid__list {
    gap: 18px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
    .product-info-card-grid {
        padding: 0 0 50px;
    }

    .product-info-card-grid--product-detail {
        padding-top: 28px;
        padding-bottom: 48px;
    }

    .product-info-card-grid__list {
        gap: 18px;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }
}

@media (max-width: 480px) {
    .product-info-card-grid {
        padding: 0 0 50px;
    }

    .product-info-card-grid--product-detail {
        padding-top: 24px;
        padding-bottom: 42px;
    }

    .product-info-card-grid__list {
        gap: 16px;
        grid-template-columns: 1fr;
    }
}
/* bundled: components/related-products.css */
/* ================= RELATED PRODUCTS ================= */

.related-products {
    padding: 50px 0;
}

.related-products__grid {
    display: grid;
    gap: 24px;
    margin-top: 36px;
}

/* 默认 3 个：一行三列 */
.related-products--count-3 .related-products__grid,
.related-products__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* 如果产品不足 3 个，也不会空占位 */
.related-products--count-2 .related-products__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.related-products--count-1 .related-products__grid {
    grid-template-columns: minmax(0, 1fr);
    max-width: 380px;
}

@media (max-width: 1024px) {
    .related-products__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .related-products--count-1 .related-products__grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 640px) {
    .related-products {
        padding: 56px 0;
    }

    .related-products__grid,
    .related-products--count-2 .related-products__grid,
    .related-products--count-3 .related-products__grid {
        grid-template-columns: 1fr;
        margin-top: 28px;
    }

    .related-products--count-1 .related-products__grid {
        max-width: none;
    }
}
/* bundled: components/search-results-section.css */
/* ================= SEARCH RESULTS SECTION ================= */

.search-results-section {
    padding: 80px 0 100px;
    background: #f7faf9;
}

.search-results-section__header {
    max-width: 760px;
    margin-bottom: 36px;
}

.search-results-section__tag {
    margin: 0 0 12px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #03A38C;
}

.search-results-section__title {
    margin: 0;
    font-size: 44px;
    line-height: 1.15;
    font-weight: 700;
    color: #111827;
}

.search-results-section__desc {
    margin: 16px 0 0;
    font-size: 17px;
    line-height: 1.7;
    color: #5b6470;
}

.search-results-section__desc strong {
    color: #111827;
}

.search-results-section__count {
    margin-bottom: 24px;
    font-size: 15px;
    color: #6b7280;
}

/* ================= LIST ================= */

.search-results-section__list {
    display: grid;
    gap: 18px;
}

.search-result-card {
    display: flex;
    gap: 24px;
    padding: 22px;
    border-radius: 22px;
    background: #fff;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 12px 36px rgba(15, 23, 42, 0.06);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.search-result-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 46px rgba(15, 23, 42, 0.1);
}

.search-result-card__image {
    width: 180px;
    height: 130px;
    flex-shrink: 0;
    border-radius: 16px;
    overflow: hidden;
    background: #eef5f3;
}

.search-result-card__image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.search-result-card:hover .search-result-card__image img {
    transform: scale(1.04);
}

.search-result-card__content {
    flex: 1;
    min-width: 0;
}

.search-result-card__type {
    display: inline-flex;
    margin-bottom: 10px;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(3, 163, 140, 0.1);
    color: #03A38C;
    font-size: 12px;
    font-weight: 700;
}

.search-result-card__title {
    margin: 0;
    font-size: 24px;
    line-height: 1.35;
    color: #111827;
    transition: color 0.25s ease;
}

.search-result-card:hover .search-result-card__title {
    color: #03A38C;
}

.search-result-card__desc {
    margin: 10px 0 0;
    max-width: 760px;
    font-size: 15px;
    line-height: 1.7;
    color: #5b6470;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.search-result-card__link {
    display: inline-flex;
    margin-top: 16px;
    font-size: 14px;
    font-weight: 700;
    color: #03A38C;
}

/* ================= EMPTY ================= */

.search-results-section__empty {
    padding: 56px;
    border-radius: 28px;
    background: #fff;
    text-align: center;
    box-shadow: 0 12px 36px rgba(15, 23, 42, 0.06);
}

.search-results-section__empty h2 {
    margin: 0;
    font-size: 30px;
    color: #111827;
}

.search-results-section__empty p {
    margin: 14px auto 0;
    max-width: 560px;
    font-size: 16px;
    line-height: 1.7;
    color: #5b6470;
}

.search-results-section__empty-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-top: 28px;
    min-height: 46px;
    padding: 0 24px;
    border-radius: 999px;

    background: #03A38C;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

.search-results-section__empty-link:hover {
    background: #028b78;
    transform: translateY(-2px);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
    .search-results-section {
        padding: 60px 0 80px;
    }

    .search-results-section__title {
        font-size: 34px;
    }

    .search-result-card {
        flex-direction: column;
    }

    .search-result-card__image {
        width: 100%;
        height: 220px;
    }

    .search-results-section__empty {
        padding: 36px 24px;
    }
}
/* bundled: components/product-introduction.css */
/* ================= PRODUCT INTRODUCTION ================= */

.product-introduction {
    padding-top: 50px;
}

.product-introduction__header {
    margin-bottom: 18px;
}

.product-introduction__title {
    margin: 0;

    color: #031F3B;
    font-size: 30px;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.product-introduction__box {
    position: relative;

    padding: 34px 38px;

    border: 1px solid rgba(3, 163, 140, 0.16);
    border-radius: 22px;

    background:
        linear-gradient(
            135deg,
            rgba(3, 163, 140, 0.06),
            rgba(255, 255, 255, 0.98)
        );

    box-shadow: 0 18px 44px rgba(3, 31, 59, 0.05);
    overflow: hidden;
}

.product-introduction__box::before {
    content: "";

    position: absolute;
    left: 0;
    top: 30px;

    width: 4px;
    height: calc(100% - 60px);

    border-radius: 0 999px 999px 0;
    background: #03A38C;
}

.product-introduction__desc {
    max-width: 100%;
    margin: 0;

    color: #536170;
    font-size: 16px;
    line-height: 1.86;

    white-space: pre-line;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {
    .product-introduction {
        padding: 48px 0 56px;
    }

    .product-introduction__header {
        margin-bottom: 16px;
    }

    .product-introduction__title {
        font-size: 26px;
        line-height: 1.28;
    }

    .product-introduction__box {
        padding: 28px 26px;

        border-radius: 20px;
    }

    .product-introduction__box::before {
        top: 26px;
        height: calc(100% - 52px);
    }

    .product-introduction__desc {
        font-size: 15.5px;
        line-height: 1.78;
    }
}

@media (max-width: 767px) {
    .product-introduction {
        padding: 42px 0 48px;
    }

    .product-introduction__header {
        margin-bottom: 14px;
    }

    .product-introduction__title {
        font-size: 23px;
        line-height: 1.32;
    }

    .product-introduction__box {
        padding: 24px 20px 24px 24px;

        border-radius: 18px;
    }

    .product-introduction__box::before {
        top: 24px;
        height: calc(100% - 48px);
    }

    .product-introduction__desc {
        font-size: 15px;
        line-height: 1.76;
    }
}

@media (max-width: 480px) {
    .product-introduction {
        padding: 36px 0 42px;
    }

    .product-introduction__header {
        margin-bottom: 12px;
    }

    .product-introduction__title {
        font-size: 21px;
        line-height: 1.34;
    }

    .product-introduction__box {
        padding: 22px 18px 22px 22px;

        border-radius: 16px;
    }

    .product-introduction__box::before {
        top: 22px;

        width: 3px;
        height: calc(100% - 44px);
    }

    .product-introduction__desc {
        font-size: 14px;
        line-height: 1.72;
    }
}

@media (max-width: 360px) {
    .product-introduction__title {
        font-size: 20px;
    }

    .product-introduction__box {
        padding: 20px 16px 20px 20px;
    }

    .product-introduction__desc {
        font-size: 13.5px;
        line-height: 1.7;
    }
}
/* bundled: components/production-equipment.css */
/* ================= PRODUCTION EQUIPMENT ================= */

.production-equipment {
    padding-top: 50px;
}

.production-equipment .section-title-bar {
    margin-bottom: 36px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
    .production-equipment {
        padding: 64px 0;
    }

    .production-equipment .section-title-bar {
        margin-bottom: 32px;
    }
}

@media (max-width: 768px) {
    .production-equipment {
        padding: 52px 0;
    }

    .production-equipment .section-title-bar {
        margin-bottom: 28px;
    }
}

@media (max-width: 480px) {
    .production-equipment {
        padding: 44px 0;
    }

    .production-equipment .section-title-bar {
        margin-bottom: 24px;
    }
}
/* bundled: components/live-chat.css */
/* ================= LIVE CHAT ================= */

.live-chat {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9998;
}

/* 右下角按钮 */
.live-chat__trigger {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    height: 50px;
    padding: 0 20px;

    border: none;
    border-radius: 999px;
    background: #03A38C;
    color: #fff;

    font-size: 15px;
    font-weight: 700;
    cursor: pointer;

    box-shadow: 0 14px 34px rgba(3, 163, 140, 0.32);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.live-chat__trigger:hover {
    transform: translateY(-2px);
    background: #028c78;
    box-shadow: 0 18px 42px rgba(3, 163, 140, 0.38);
}

.live-chat__trigger-icon {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #fff;
    position: relative;
}

.live-chat__trigger-icon::after {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.8);
    animation: liveChatPulse 1.6s infinite;
}

@keyframes liveChatPulse {
    0% {
        transform: scale(0.65);
        opacity: 0.9;
    }

    100% {
        transform: scale(1.35);
        opacity: 0;
    }
}

/* 面板 */
.live-chat__panel {
    position: absolute;
    right: 0;
    bottom: 66px;

    width: 370px;
    height: 500px;
    max-width: calc(100vw - 32px);

    display: flex;
    flex-direction: column;

    background: #fff;
    border-radius: 20px;
    overflow: hidden;

    box-shadow: 0 26px 72px rgba(0, 0, 0, 0.2);

    opacity: 0;
    visibility: hidden;
    transform: translateY(16px) scale(0.96);
    transform-origin: right bottom;

    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.live-chat.is-open .live-chat__panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* header */
.live-chat__header {
    min-height: 72px;
    padding: 16px 18px;

    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;

    background: #03A38C;
    color: #fff;
}

.live-chat__header h3 {
    margin: 0 0 4px;
    font-size: 18px;
    line-height: 1.3;
}

.live-chat__header p {
    margin: 0;
    font-size: 13px;
    line-height: 1.4;
    opacity: 0.92;
}

.live-chat__close {
    border: none;
    background: transparent;
    color: #fff;

    font-size: 30px;
    line-height: 1;
    cursor: pointer;
}

/* messages */
.live-chat__messages {
    flex: 1;
    padding: 16px;
    overflow-y: auto;
    background: #f7f9f8;
}

.live-chat__welcome {
    max-width: 82%;
    margin-bottom: 12px;
    padding: 11px 13px;

    border-radius: 14px;
    border-bottom-left-radius: 4px;

    background: #fff;
    color: #333;

    font-size: 14px;
    line-height: 1.5;

    box-shadow: 0 5px 16px rgba(0, 0, 0, 0.06);
}

.live-chat__msg {
    max-width: 80%;
    margin-bottom: 10px;
    padding: 10px 12px;

    border-radius: 14px;

    font-size: 14px;
    line-height: 1.5;
    word-break: break-word;
}

.live-chat__msg--user {
    margin-left: auto;
    background: #03A38C;
    color: #fff;
    border-bottom-right-radius: 4px;
}

.live-chat__msg--admin {
    margin-right: auto;
    background: #fff;
    color: #222;
    border-bottom-left-radius: 4px;
    box-shadow: 0 5px 16px rgba(0, 0, 0, 0.06);
}

.live-chat__msg-time {
    display: block;
    margin-top: 5px;
    font-size: 10px;
    opacity: 0.65;
}

/* form */
.live-chat__form {
    display: flex;
    gap: 8px;
    padding: 12px;
    border-top: 1px solid #eee;
    background: #fff;
}

.live-chat__input {
    flex: 1;
    min-width: 0;
    height: 42px;

    padding: 0 14px;

    border: 1px solid #ddd;
    border-radius: 999px;
    outline: none;

    font-size: 14px;
    font-family: inherit;
}

.live-chat__input:focus {
    border-color: #03A38C;
    box-shadow: 0 0 0 3px rgba(3, 163, 140, 0.12);
}

.live-chat__send {
    height: 42px;
    padding: 0 16px;

    border: none;
    border-radius: 999px;
    background: #03A38C;
    color: #fff;

    font-size: 14px;
    font-weight: 700;
    cursor: pointer;

    transition: background 0.25s ease;
}

.live-chat__send:hover {
    background: #028c78;
}

.live-chat__send:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* mobile */
@media (max-width: 768px) {
    .live-chat {
        right: 16px;
        bottom: 16px;
    }

    .live-chat__panel {
        width: calc(100vw - 32px);
        height: 460px;
        bottom: 64px;
    }

    .live-chat__trigger {
        height: 48px;
        padding: 0 18px;
    }
}

/* name step */
.live-chat__identity {
    flex: 1;
    padding: 16px;
    background: #f7f9f8;
}

.live-chat__chat {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
}

.live-chat__chat[hidden] {
    display: none;
}

.live-chat__name-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 14px;
}

.live-chat__name-input {
    width: 100%;
    height: 44px;
    padding: 0 14px;

    border: 1px solid #ddd;
    border-radius: 999px;
    outline: none;

    font-size: 14px;
    font-family: inherit;
}

.live-chat__name-input:focus {
    border-color: #03A38C;
    box-shadow: 0 0 0 3px rgba(3, 163, 140, 0.12);
}

.live-chat__name-submit {
    height: 44px;
    border: none;
    border-radius: 999px;
    background: #03A38C;
    color: #fff;

    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
}

.live-chat__name-submit:hover {
    background: #028c78;
}
/* bundled: components/case-study-section.css */
/* =========================
   Case Study Section
========================= */

.case-study-section {
    padding: 50px 0;
}

.case-study-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 48px;
}


/* =========================
   Card
========================= */

.case-study-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    min-height: 260px;

    padding: 28px;
    border-radius: 24px;

    background: #fff;
    border: 1px solid #e8e8e8;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

.case-study-card:hover {
    transform: translateY(-4px);

    border-color: #d8d8d8;

    box-shadow:
        0 12px 28px rgba(0,0,0,.08);
}


/* =========================
   Tag
========================= */

.case-study-card__tag {
    display: inline-flex;
    align-items: center;

    width: fit-content;

    padding: 6px 12px;
    margin-bottom: 18px;

    border-radius: 999px;

    background: #f3f5f7;

    font-size: 13px;
    font-weight: 600;
    color: #5b6672;
}


/* =========================
   Project Title
========================= */

.case-study-card__project {
    margin: 0 0 24px;

    font-size: 24px;
    line-height: 1.3;
    font-weight: 700;
    color: #111827;
}


/* =========================
   Content
========================= */

.case-study-card__content {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.case-study-card__block {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.case-study-card__label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;

    color: #6b7280;
}

.case-study-card__block p {
    margin: 0;

    font-size: 15px;
    line-height: 1.65;

    color: #374151;
}


/* =========================
   Footer
========================= */

.case-study-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-top: 28px;
    padding-top: 18px;

    border-top: 1px solid #eeeeee;

    font-size: 14px;
    color: #6b7280;
}

.case-study-card__footer strong {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
}


/* =========================
   Tablet
========================= */

@media (max-width: 991px) {

    .case-study-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .case-study-card {
        min-height: 240px;
    }

    .case-study-card__project {
        font-size: 22px;
    }
}

/* =========================
   Mobile
========================= */

@media (max-width: 767px) {

    .case-study-section {
        padding: 40px 0;
    }

    .case-study-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-top: 32px;
    }

    .case-study-card {
        min-height: auto;
        padding: 24px;
        border-radius: 20px;
    }

    .case-study-card__project {
        font-size: 20px;
        margin-bottom: 18px;
    }

    .case-study-card__footer {
        margin-top: 20px;
        padding-top: 14px;
    }
}
/* bundled: components/market-feedback-showcase.css */
/* ===== Market Feedback Showcase ===== */

.market-feedback-showcase {
    padding: 60px 0;
}

.market-feedback-showcase__header {
    max-width: 800px;
    margin-bottom: 20px;
}

.market-feedback-showcase .section-header__desc {
    font-size: 1.1rem;
}

/* === Slider === */

.market-feedback-showcase__slider {
    border-radius: 20px;
    overflow: hidden;
    user-select: none;
}

.market-feedback-showcase__track {
    display: flex;
    transition: transform 0.4s ease;
    cursor: grab;
}

.market-feedback-showcase__track.is-dragging {
    transition: none;
    cursor: grabbing;
}

.market-feedback-showcase__slide {
    flex: 0 0 100%;
    min-width: 0;
}

.market-feedback-showcase__img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 20px;
    pointer-events: none;
}

/* === Controls === */

.market-feedback-showcase__controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
    margin-bottom: 20px;
}

.market-feedback-showcase__dots {
    display: flex;
    gap: 10px;
}

.market-feedback-showcase__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: #d0d0d0;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s;
}

.market-feedback-showcase__dot.is-active {
    background: #03A38C;
}

.market-feedback-showcase__dot:focus-visible {
    outline: 2px solid #03A38C;
    outline-offset: 2px;
}

.market-feedback-showcase__arrows {
    display: flex;
    gap: 0;
}

.market-feedback-showcase__arrow {
    width: 40px;
    height: 40px;
    border: none;
    background: #03A38C;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, opacity 0.2s;
}

.market-feedback-showcase__arrow:first-child {
    border-radius: 6px 0 0 6px;
}

.market-feedback-showcase__arrow:last-child {
    border-radius: 0 6px 6px 0;
}

.market-feedback-showcase__arrow:hover {
    background: #028a76;
}

.market-feedback-showcase__arrow.is-disabled {
    opacity: 0.35;
    pointer-events: none;
}

.market-feedback-showcase__arrow:focus-visible {
    outline: 2px solid #0b1c2c;
    outline-offset: 2px;
}

/* === Feature Grid === */

.market-feedback-showcase__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 20px;
}

.market-feedback-showcase__feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
}

.market-feedback-showcase__feature-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
}

.market-feedback-showcase__feature-icon img {
    display: block;
    width: 100%;
    height: 100%;
}

.market-feedback-showcase__feature-text {
    flex: 1;
    min-width: 0;
}

.market-feedback-showcase__feature-text strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: #0b1c2c;
    margin-bottom: 6px;
}

.market-feedback-showcase__feature-text p {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}

/* === Disclaimer Bar === */

.disclaimer-bar {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 20px;
    background: #f0f7ff;
    border-radius: 8px;
    margin-bottom: 20px;
}

.disclaimer-bar__icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    color: #5a8ec9;
    margin-top: 1px;
}

.disclaimer-bar p {
    font-size: 0.85rem;
    color: #777;
    line-height: 1.5;
    margin: 0;
}

/* === CTA Bar === */

.cta-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 32px 36px;
    background: #f8fafb;
    border-radius: 16px;
}

.cta-bar__text {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cta-bar__icon {
    flex-shrink: 0;
}

.cta-bar__icon img {
    display: block;
    width: 60px;
    height: 60px;
}

.cta-bar__text strong {
    display: block;
    font-size: 1.15rem;
    font-weight: 800;
    color: #0b1c2c;
    margin-bottom: 4px;
}

.cta-bar__text p {
    font-size: 0.9rem;
    color: #9ca3af;
    margin: 0;
}

.cta-bar__action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.cta-bar__btn {
    padding: 14px 32px;
    font-size: 0.95rem;
    border-radius: 6px;
    white-space: nowrap;
    display: inline-block;
    background: #03A38C;
    color: #fff;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    text-decoration: none;
}

.cta-bar__btn:hover {
    background: #028a76;
    text-decoration: none;
    color: #fff;
}

.cta-bar__link {
    font-size: 0.85rem;
    color: #03A38C;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

.cta-bar__link:hover {
    text-decoration: underline;
}

/* === Responsive === */

@media (max-width: 768px) {
    .market-feedback-showcase {
        padding: 40px 0;
    }

    .market-feedback-showcase__slider {
        border-radius: 12px;
        margin-bottom: 0;
    }

    .market-feedback-showcase__img {
        border-radius: 12px;
    }

    .market-feedback-showcase__controls {
        margin-top: 12px;
        margin-bottom: 32px;
    }

    .market-feedback-showcase__arrow {
        width: 36px;
        height: 36px;
    }

    .market-feedback-showcase__grid {
        grid-template-columns: 1fr;
    }

    .market-feedback-showcase__feature {
        padding: 18px;
    }

    .cta-bar {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }

    .cta-bar__text {
        flex-direction: column;
        text-align: center;
    }

    .cta-bar__btn {
        width: 100%;
        padding: 14px 24px;
    }
}

/* bundled: components/testing-records-showcase.css */
/* ===== Testing Records Showcase ===== */

.testing-records-showcase {
    padding: 60px 0;
}

.testing-records-showcase__header {
    max-width: 900px;
    margin-bottom: 20px;
}

.testing-records-showcase .section-header__desc {
    font-size: 1.1rem;
    margin-bottom: 0;
}

/* === Layout (3 cards + sidebar) === */

.testing-records-showcase__layout {
    display: grid;
    grid-template-columns: 3fr 1.3fr;
    gap: 24px;
    margin-bottom: 20px;
}

.testing-records-showcase__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

/* === Card === */

.testing-records-showcase__card {
    min-width: 0;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.testing-records-showcase__card-thumb {
    width: 100%;
    height: 361px;
    object-fit: contain;
    display: block;
}

.testing-records-showcase__card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

.testing-records-showcase__card-metric-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 6px;
}

.testing-records-showcase__card-metric-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: #03A38C;
    line-height: 1.1;
    min-height: 3.3rem;
    display: flex;
    align-items: center;
}

.testing-records-showcase__card-meta {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid #f0f0f0;
    padding-top: 16px;
    margin-top: auto;
    flex: 1;
}

.testing-records-showcase__card-meta-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.78rem;
    color: #888;
    line-height: 1.4;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.testing-records-showcase__card-meta-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.testing-records-showcase__card-meta-item:first-child {
    padding-top: 0;
}

.testing-records-showcase__card-meta-icon {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    margin-top: 2px;
}

.testing-records-showcase__card-meta-icon img {
    display: block;
    width: 100%;
    height: 100%;
}

.testing-records-showcase__card-meta-text {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.testing-records-showcase__card-meta-label {
    font-size: 1rem;
    font-weight: 700;
    color: #0b1c2c;
}

.testing-records-showcase__card-meta-value {
    font-size: 1rem;
    color: #444;
    overflow-wrap: break-word;
}

/* === Sidebar === */

.testing-records-showcase__sidebar {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 16px;
    padding: 28px 24px;
}

.testing-records-showcase__sidebar-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0b1c2c;
    line-height: 1.3;
    margin-bottom: 24px;
}

.testing-records-showcase__sidebar-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 0;
    padding-bottom: 20px;
    border-bottom: 1px solid #ececec;
    padding-top: 20px;
}

.testing-records-showcase__sidebar-item:first-child {
    padding-top: 0;
}

.testing-records-showcase__sidebar-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.testing-records-showcase__sidebar-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
}

.testing-records-showcase__sidebar-icon img {
    display: block;
    width: 100%;
    height: 100%;
}

.testing-records-showcase__sidebar-text strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: #0b1c2c;
    margin-bottom: 6px;
}

.testing-records-showcase__sidebar-text p {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}

/* === Responsive === */

@media (max-width: 1024px) {
    .testing-records-showcase__layout {
        grid-template-columns: 1fr;
    }

    .testing-records-showcase__sidebar {
        order: -1;
    }
}

@media (max-width: 768px) {
    .testing-records-showcase {
        padding: 40px 0;
    }

    .testing-records-showcase__cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .testing-records-showcase__card-body {
        padding: 18px;
    }

    .testing-records-showcase__sidebar {
        padding: 20px 18px;
    }

    .testing-records-showcase__sidebar-title {
        font-size: 1.3rem;
    }
}

/* bundled: components/testing-records-lightbox.css */
/* ===== Testing Records Lightbox ===== */

.testing-records-lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .3s ease;
}

.testing-records-lightbox.active {
    opacity: 1;
}

.testing-records-lightbox__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .85);
}

.testing-records-lightbox__img {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    z-index: 1;
    border-radius: 4px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, .5);
}

.testing-records-lightbox__close {
    position: absolute;
    top: 16px;
    right: 20px;
    z-index: 2;
    background: rgba(0, 0, 0, .4);
    border: none;
    color: #fff;
    font-size: 2.2rem;
    cursor: pointer;
    line-height: 1;
    padding: 4px 14px 6px;
    border-radius: 6px;
    transition: background .2s;
}

.testing-records-lightbox__close:hover {
    background: rgba(0, 0, 0, .7);
}

/* bundled: components/testing-verification.css */
/* ===== Testing & Verification ===== */

.tag {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #03A38C;
  margin-bottom: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 36px;
  background: #03A38C;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
  font-family: inherit;
  line-height: 1.3;
}

.btn:hover {
  background: #028a76;
}

.testing-verification {
  padding: 40px 0;
}

.testing-verification__title {
  max-width: 940px;
  font-size: 2.5rem;
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: -0.045em;
  color: #001f3f;
  margin: 0;
}

.testing-verification__subtitle {
  max-width: 960px;
  margin: 12px 0 12px;
  color: #5f6f86;
  font-size: 1rem;
  line-height: 1.6;
}

.testing-verification__layout {
  display: grid;
  grid-template-columns: 292px 1fr;
  gap: 16px;
  align-items: start;
}

.testing-verification__tabs {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.testing-verification__tab {
  width: 100%;
  height: 74px;
  padding: 0 18px;
  border: 1px solid #e3edf2;
  border-radius: 10px;
  background: #fff;
  color: #001f3f;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.9375rem;
  font-weight: 800;
  text-align: left;
  box-shadow: 0 8px 22px rgba(6, 31, 70, 0.06);
  cursor: pointer;
  transition: 0.2s ease;
  font-family: inherit;
}

.testing-verification__tab.is-active {
  background: linear-gradient(135deg, #03A38C, #008f7c);
  color: #fff;
}

.testing-verification__tab-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(8, 165, 143, 0.1);
  color: #03A38C;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.testing-verification__tab-icon img {
  display: block;
  width: 20px;
  height: 20px;
}

.testing-verification__tab.is-active .testing-verification__tab-icon {
  background: #fff;
}

.testing-verification__tab-label {
  flex: 1;
}

.testing-verification__tab-arrow {
  margin-left: auto;
  font-size: 1.75rem;
  font-weight: 400;
  opacity: 0.85;
}

.testing-verification__card {
  min-height: 508px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  padding: 32px;
  border: 1px solid #e3edf2;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(6, 31, 70, 0.08);
}

.testing-verification__panel[hidden] {
  display: none;
}

.testing-verification__records-title {
  font-size: 1.375rem;
  line-height: 1.25;
  font-weight: 900;
  letter-spacing: -0.025em;
  margin: 0;
}

.testing-verification__records-desc {
  max-width: 650px;
  margin: 10px 0 22px;
  color: #5f6f86;
  font-size: 0.875rem;
  line-height: 1.55;
}

.testing-verification__record-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 18px;
}

.testing-verification__record-card {
  border: 1px solid #dfe9ef;
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
}

.testing-verification__doc-img {
  display: block;
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.testing-verification__record-body {
  padding: 16px;
}

.testing-verification__record-label {
  display: block;
  color: #7b8494;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.testing-verification__record-result {
  display: block;
  margin-top: 6px;
  color: #03A38C;
  font-size: 1rem;
  line-height: 1.35;
  font-weight: 900;
}

.testing-verification__note {
  margin-top: 20px;
  padding: 14px 18px;
  border: 1px solid #bdece5;
  border-radius: 8px;
  background: #effbf9;
  color: #486176;
  font-size: 0.8125rem;
  line-height: 1.45;
}

.testing-verification__note strong {
  display: block;
  margin-bottom: 5px;
  color: #03A38C;
}

.testing-verification__note p {
  margin: 0;
}

.testing-verification__info {
  padding-left: 24px;
  border-left: 1px solid #e4edf2;
}

.testing-verification__info-heading {
  margin: 0 0 18px;
  font-size: 1.0625rem;
  line-height: 1.25;
  font-weight: 900;
}

.testing-verification__info-card {
  display: flex;
  gap: 16px;
  padding: 18px;
  margin-bottom: 16px;
  border: 1px solid #d6ece8;
  border-radius: 8px;
  background: #fbfffe;
}

.testing-verification__info-icon {
  width: 38px;
  height: 38px;
  border: 3px solid #03A38C;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.testing-verification__info-icon-img {
  display: block;
  width: 20px;
  height: 20px;
}

.testing-verification__info-title {
  margin: 0 0 6px;
  color: #03A38C;
  font-size: 0.9375rem;
  line-height: 1.25;
  font-weight: 900;
}

.testing-verification__info-text {
  margin: 0;
  color: #5f6f86;
  font-size: 0.8125rem;
  line-height: 1.45;
}

.testing-verification__info-btn {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

.testing-verification__cta {
  margin-top: 20px;
  padding: 28px 32px;
  border: 1px solid #94ded5;
  border-radius: 10px;
  background: #f7fcfb;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.testing-verification__cta-icon {
  width: 52px;
  height: 52px;
  border: 4px solid #03A38C;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 1.75rem;
  font-weight: 900;
  color: #03A38C;
}

.testing-verification__cta-title {
  font-size: 1.375rem;
  line-height: 1.25;
  font-weight: 900;
  letter-spacing: -0.025em;
  margin: 0;
}

.testing-verification__cta-desc {
  margin: 8px 0 0;
  color: #5f6f86;
  font-size: 0.9375rem;
  line-height: 1.5;
}

/* === Responsive === */

@media (max-width: 1199px) {
  .testing-verification__layout {
    grid-template-columns: 1fr;
  }

  .testing-verification__card {
    grid-template-columns: 1fr;
  }

  .testing-verification__tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testing-verification__info {
    padding-left: 0;
    padding-top: 24px;
    border-left: 0;
    border-top: 1px solid #e4edf2;
  }

  .testing-verification__cta {
    grid-template-columns: 56px 1fr;
  }
}

@media (max-width: 767px) {
  .testing-verification__title {
    font-size: 2rem;
  }

  .testing-verification__subtitle {
    font-size: 0.9375rem;
  }

  .testing-verification__tabs,
  .testing-verification__record-grid {
    grid-template-columns: 1fr;
  }

  .testing-verification__card {
  }
}

/* === Record Image Lightbox === */

.tv-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.tv-lightbox.active {
  opacity: 1;
  visibility: visible;
}

.tv-lightbox__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
}

.tv-lightbox__img {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  z-index: 1;
  border-radius: 4px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}

.tv-lightbox__close {
  position: absolute;
  top: 16px;
  right: 20px;
  z-index: 2;
  background: rgba(0, 0, 0, 0.4);
  border: none;
  color: #fff;
  font-size: 2.2rem;
  cursor: pointer;
  line-height: 1;
  padding: 4px 14px 6px;
  border-radius: 6px;
  transition: background 0.2s;
  font-family: inherit;
}

.tv-lightbox__close:hover {
  background: rgba(0, 0, 0, 0.7);
}

/* bundled: components/retail_clients.css */
.retail-clients {
    padding-top: 50px;
    padding-bottom: 60px;
    background: transparent;
    overflow: hidden;
}

.retail-clients__header {
    margin-bottom: 36px;
}

.retail-clients__viewport {
    position: relative;
    overflow: hidden;
    user-select: none;
    -webkit-user-select: none;
    cursor: default;
}

.retail-clients__track {
    display: flex;
    align-items: center;
    gap: 36px;
    width: max-content;
    will-change: transform;
}

.retail-clients__item {
    flex: 0 0 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
    user-select: none;
    -webkit-user-select: none;
    pointer-events: none;
}

.retail-clients__logo {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    user-select: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
}

@media (max-width: 992px) {
    .retail-clients {
        padding-top: 44px;
        padding-bottom: 50px;
    }

    .retail-clients__header {
        margin-bottom: 28px;
    }

    .retail-clients__track {
        gap: 28px;
    }

    .retail-clients__item {
        flex: 0 0 140px;
        height: 60px;
    }

    .retail-clients__logo {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
}

@media (max-width: 768px) {
    .retail-clients {
        padding-top: 36px;
        padding-bottom: 44px;
    }

    .retail-clients__header {
        margin-bottom: 22px;
    }

    .retail-clients__track {
        gap: 22px;
    }

    .retail-clients__item {
        flex: 0 0 120px;
        height: 50px;
    }

    .retail-clients__logo {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
}




/* 子组件 */
/* bundled: components/partials/media_video.css */
/* ================= MEDIA VIDEO ================= */
.media-video {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    background: #000;
}

.media-video__player {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: container;
}

.media-video__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.media-video__play-btn {
    position: relative;
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.media-video__play-btn:hover {
    transform: scale(1.1);
}

.media-video__play-btn:active {
    transform: scale(0.95);
}

.media-video__play-icon {
    width: 28px;
    height: 28px;
    fill: #2f6bff;
    margin-left: 3px;
}

.media-video__play-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    animation: mediaVideoPulse 2s infinite;
}

@keyframes mediaVideoPulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

.media-video--youtube {
    background: #000;
    border-radius: 20px;
    overflow: hidden;
}

.media-video__iframe {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    border: none;
}

@media (max-width: 767px) {
    .media-video__play-btn {
        width: 64px;
        height: 64px;
    }

    .media-video__play-icon {
        width: 22px;
        height: 22px;
    }
}
/* bundled: components/partials/section-title-bar.css */
/* ================= SECTION TITLE BAR ================= */

.section-title-bar {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.section-title-bar__left {
    flex: 1;
    min-width: 0;
    max-width: 760px;
}

.section-title-bar__tag {
    display: inline-block;

    margin-bottom: 14px;

    color: #03A38C;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section-title-bar__title {
    margin: 0 0 18px;

    font-size: 52px;
    line-height: 1.12;
    font-weight: 700;

    color: #031F3B;
}

.section-title-bar__desc {
    margin: 0;

    max-width: 680px;

    font-size: 16px;
    line-height: 1.8;

    color: #5F6B7A;
}

.section-title-bar__right {
    flex-shrink: 0;
    padding-top: 8px;
}

.section-title-bar__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 14px 26px;

    border-radius: 999px;
    background: #03A38C;
    color: #fff;

    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.2px;
    line-height: 1;
    text-decoration: none;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

.section-title-bar__btn:hover {
    background: #028A77;
    color: #fff;
    transform: translateY(-1px);
}

.section-title-bar__arrow {
    position: relative;

    display: inline-block;
    flex-shrink: 0;

    width: 16px;
    height: 16px;
}

.section-title-bar__arrow::before {
    content: "";

    position: absolute;
    top: 50%;
    left: 0;

    width: 10px;
    height: 1.5px;

    background: currentColor;
    transform: translateY(-50%);
}

.section-title-bar__arrow::after {
    content: "";

    position: absolute;
    top: 50%;
    right: 1px;

    width: 5px;
    height: 5px;

    border-top: 1.5px solid currentColor;
    border-right: 1.5px solid currentColor;

    transform: translateY(-50%) rotate(45deg);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1200px) {
    .section-title-bar__title {
        font-size: 46px;
    }
}

@media (max-width: 992px) {
    .section-title-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 22px;
    }

    .section-title-bar__left {
        max-width: 100%;
    }

    .section-title-bar__right {
        padding-top: 0;
    }

    .section-title-bar__title {
        font-size: 38px;
        line-height: 1.16;
    }

    .section-title-bar__desc {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .section-title-bar {
        gap: 20px;
    }

    .section-title-bar__tag {
        margin-bottom: 10px;

        font-size: 12px;
        letter-spacing: 0.1em;
    }

    .section-title-bar__title {
        margin-bottom: 14px;

        font-size: 30px;
        line-height: 1.22;
        letter-spacing: -0.01em;
    }

    .section-title-bar__desc {
        font-size: 15px;
        line-height: 1.72;
    }

    .section-title-bar__btn {
        padding: 12px 22px;

        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .section-title-bar {
        gap: 18px;
    }

    .section-title-bar__title {
        margin-bottom: 12px;

        font-size: 24px;
        line-height: 1.3;
    }

    .section-title-bar__desc {
        font-size: 14px;
        line-height: 1.72;
    }

    .section-title-bar__btn {
        width: 100%;
        justify-content: center;

        padding: 13px 20px;

        font-size: 14px;
    }
}
/* bundled: components/partials/info-image-grid.css */
/* ================= INFO IMAGE GRID ================= */

.info-image-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px;

    margin-top: 30px;
}

/* ================= CARD ================= */

.info-card {
    min-width: 0;

    display: flex;
    flex-direction: column;
}

.info-card__img {
    margin-bottom: 16px;

    border-radius: 16px;
    overflow: hidden;

    background: #eef3f2;
}

.info-card__img img {
    display: block;

    width: 100%;
    height: 200px;

    object-fit: cover;

    transition: transform 0.4s ease;
}

.info-card:hover .info-card__img img {
    transform: scale(1.05);
}

.info-card__title {
    margin: 0 0 8px;

    font-size: 18px;
    line-height: 1.35;
    font-weight: 600;

    color: #031F3B;
}

.info-card__desc {
    margin: 0;

    font-size: 14px;
    line-height: 1.65;

    color: #5F6B7A;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1200px) {
    .info-image-grid {
        gap: 24px;
    }

    .info-card__img img {
        height: 180px;
    }
}

@media (max-width: 992px) {
    .info-image-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px 24px;

        margin-top: 28px;
    }

    .info-card__img img {
        height: 220px;
    }
}

@media (max-width: 768px) {
    .info-image-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px 18px;

        margin-top: 24px;
    }

    .info-card__img {
        margin-bottom: 12px;
        border-radius: 14px;
    }

    .info-card__img img {
        height: 170px;
    }

    .info-card__title {
        font-size: 16px;
        line-height: 1.35;
    }

    .info-card__desc {
        font-size: 13.5px;
        line-height: 1.62;
    }
}

@media (max-width: 560px) {
    .info-image-grid {
        grid-template-columns: 1fr;
        gap: 24px;

        margin-top: 22px;
    }

    .info-card__img img {
        height: 220px;
    }
}

@media (max-width: 480px) {
    .info-image-grid {
        gap: 22px;
    }

    .info-card__img {
        border-radius: 14px;
    }

    .info-card__img img {
        height: 200px;
    }

    .info-card__title {
        margin-bottom: 6px;

        font-size: 16px;
        line-height: 1.35;
    }

    .info-card__desc {
        font-size: 14px;
        line-height: 1.65;
    }
}

@media (max-width: 360px) {
    .info-card__img img {
        height: 180px;
    }
}
/* bundled: components/partials/section-split-header.css */
/* =========================
   Section Split Header
========================= */

.section-split-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 70px;
    margin-bottom: 50px;
}

.section-split-header__left {
    flex: 0 0 48%;
}

.section-split-header__right {
    flex: 0 0 40%;
    padding-top: 10px;
}

.section-split-header__tag {
    margin-bottom: 14px;
    font-size: 14px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #03A38C;
}

.section-split-header__title {
    margin: 0;
    font-size: 34px;
    line-height: 1.08;
    font-weight: 700;
    color: #000000;
}

.section-split-header__desc {
    margin: 0;
    font-size: 18px;
    line-height: 1.8;
    color: #000000;
}

/* =========================
   Responsive
========================= */

@media (max-width: 992px) {
    .section-split-header {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 42px;
    }

    .section-split-header__left,
    .section-split-header__right {
        flex: none;
        width: 100%;
    }

    .section-split-header__right {
        padding-top: 0;
    }

    .section-split-header__tag {
        margin-bottom: 12px;
        font-size: 13px;
    }

    .section-split-header__title {
        font-size: 30px;
        line-height: 1.18;
    }

    .section-split-header__desc {
        max-width: 720px;
        font-size: 16px;
        line-height: 1.75;
    }
}

@media (max-width: 768px) {
    .section-split-header {
        gap: 18px;
        margin-bottom: 36px;
    }

    .section-split-header__title {
        font-size: 27px;
        line-height: 1.22;
        letter-spacing: -0.01em;
    }

    .section-split-header__desc {
        font-size: 15px;
        line-height: 1.72;
    }
}

@media (max-width: 480px) {
    .section-split-header {
        gap: 16px;
        margin-bottom: 30px;
    }

    .section-split-header__tag {
        margin-bottom: 10px;
        font-size: 12px;
        letter-spacing: 0.1em;
    }

    .section-split-header__title {
        font-size: 22px;
        line-height: 1.32;
        letter-spacing: -0.01em;
    }

    .section-split-header__desc {
        font-size: 14px;
        line-height: 1.72;
    }
}
/* bundled: components/partials/team-grid.css */
/* =========================
   Our Team
========================= */

.our-team {
    padding-top: 50px;
}

/* =========================
   Team Grid
========================= */

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

/* =========================
   Team Card
========================= */

.team-card {
    position: relative;
    min-width: 0;
}

.team-card__image-wrap {
    position: relative;
    overflow: hidden;

    border-radius: 28px;
    background: #eef2f4;
}

.team-card__image {
    display: block;

    width: 100%;
    height: 460px;

    object-fit: cover;

    transition: transform 0.45s ease;
}

.team-card:hover .team-card__image {
    transform: scale(1.04);
}

/* =========================
   Card Info
========================= */

.team-card__info {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;

    padding: 20px 22px;

    border-radius: 20px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(6px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.team-card__text {
    min-width: 0;
}

.team-card__name {
    margin: 0 0 6px;

    font-size: 22px;
    line-height: 1.2;
    font-weight: 700;

    color: #031F3B;
}

.team-card__position {
    margin: 0;

    font-size: 15px;
    line-height: 1.5;

    color: #6C7A8B;
}

.team-card__action {
    flex: 0 0 52px;

    width: 52px;
    height: 52px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #d9dee5;
    border-radius: 50%;
    background: #03A38C;

    text-decoration: none;

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.team-card__action:hover {
    transform: translateY(-2px);
    border-color: #03A38C;
    background: #028A77;
    box-shadow: 0 6px 18px rgba(3, 163, 140, 0.18);
}

.team-card__icon {
    display: block;

    width: 18px;
    height: 18px;
}

/* =========================
   Responsive
========================= */

@media (max-width: 1200px) {
    .team-grid {
        gap: 26px;
    }

    .team-card__image {
        height: 420px;
    }

    .team-card__info {
        left: 20px;
        right: 20px;
        bottom: 20px;
        padding: 18px 20px;
    }

    .team-card__name {
        font-size: 20px;
    }
}

@media (max-width: 992px) {
    .our-team {
        padding: 0;
    }

    .team-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px;
    }

    .team-card__image {
        height: 430px;
    }
}

@media (max-width: 768px) {
    .our-team {
        padding: 0;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .team-card__image-wrap {
        border-radius: 24px;
    }

    .team-card__image {
        height: 420px;
    }

    .team-card__info {
        left: 18px;
        right: 18px;
        bottom: 18px;

        padding: 16px 18px;
        border-radius: 18px;
    }

    .team-card__name {
        font-size: 20px;
    }

    .team-card__position {
        font-size: 14px;
        line-height: 1.45;
    }

    .team-card__action {
        flex-basis: 46px;

        width: 46px;
        height: 46px;
    }

    .team-card__icon {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 560px) {
    .team-card__image {
        height: 380px;
    }
}

@media (max-width: 480px) {
    .our-team {
        padding: 0;
    }

    .team-grid {
        gap: 22px;
    }

    .team-card__image-wrap {
        border-radius: 20px;
    }

    .team-card__image {
        height: 340px;
    }

    .team-card__info {
        left: 14px;
        right: 14px;
        bottom: 14px;

        gap: 12px;
        padding: 14px 14px;

        border-radius: 16px;
    }

    .team-card__name {
        margin-bottom: 4px;

        font-size: 18px;
        line-height: 1.22;
    }

    .team-card__position {
        font-size: 13px;
        line-height: 1.45;
    }

    .team-card__action {
        flex-basis: 42px;

        width: 42px;
        height: 42px;
    }

    .team-card__icon {
        width: 15px;
        height: 15px;
    }
}

@media (max-width: 360px) {
    .team-card__image {
        height: 310px;
    }

    .team-card__info {
        left: 12px;
        right: 12px;
        bottom: 12px;

        padding: 12px;
    }

    .team-card__name {
        font-size: 17px;
    }

    .team-card__position {
        font-size: 12.5px;
    }

    .team-card__action {
        flex-basis: 38px;

        width: 38px;
        height: 38px;
    }
}
/* bundled: components/partials/section-header.css */
/* ===============================
   SECTION HEADER - BASE
================================ */

.section-header {
    margin-bottom: 30px;
}

.section-header__tag {
    display: inline-block;
    margin-bottom: 12px;

    font-size: 14px;
    line-height: 1.4;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;

    color: #03A38C;
}

.section-header__title {
    margin: 0 0 16px;

    font-size: 36px;
    line-height: 1.2;
    font-weight: 700;

    color: #0b1c2c;
}

.section-header__desc {
    margin: 0;

    font-size: 16px;
    line-height: 1.7;

    color: #6b7280;
}


/* ===============================
   WHY CHOOSE US - HOME
================================ */

.section-header--why-home {
    max-width: 800px;
    margin-bottom: 40px;
}

.section-header--why-home .section-header__tag {
    margin-bottom: 0;

    font-size: 12px;
    letter-spacing: 0.14em;
}

.section-header--why-home .section-header__title {
    margin: 16px 0;

    font-size: 40px;
    line-height: 1.18;
    letter-spacing: -0.02em;
}

.section-header--why-home .section-header__desc {
    line-height: 1.8;
}


/* ===============================
   WHY CHOOSE US - ABOUT
================================ */

.section-header--why-about {
    max-width: 800px;
    margin-bottom: 60px;
}

.section-header--why-about .section-header__tag {
    margin-bottom: 0;

    font-size: 12px;
    letter-spacing: 0.14em;
}

.section-header--why-about .section-header__title {
    margin: 16px 0;

    font-size: 40px;
    line-height: 1.18;
    letter-spacing: -0.02em;
}

.section-header--why-about .section-header__desc {
    line-height: 1.8;
}


/* ===============================
   CONTACT - ABOUT
================================ */

.section-header--contact {
    max-width: 520px;
    margin-bottom: 40px;
}

.section-header--contact .section-header__title {
    font-size: 40px;
    line-height: 1.2;
}

.section-header--contact .section-header__desc {
    line-height: 1.8;
}


/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 768px) {
    .section-header {
        margin-bottom: 28px;
    }

    .section-header__tag {
        margin-bottom: 10px;
        font-size: 12px;
    }

    .section-header__title {
        margin-bottom: 14px;

        font-size: 28px;
        line-height: 1.25;
        letter-spacing: -0.01em;
    }

    .section-header__desc {
        font-size: 15px;
        line-height: 1.72;
    }

    .section-header--why-home,
    .section-header--why-about,
    .section-header--contact {
        margin-bottom: 34px;
    }

    .section-header--why-home .section-header__title {
        font-size: 30px;
        line-height: 1.24;
    }

    .section-header--why-about .section-header__title {
        font-size: 26px;
        line-height: 1.28;
    }

    .section-header--contact .section-header__title {
        font-size: 28px;
        line-height: 1.26;
    }
}

@media (max-width: 480px) {
    .section-header {
        margin-bottom: 24px;
    }

    .section-header__tag {
        margin-bottom: 8px;

        font-size: 12px;
        line-height: 1.4;
    }

    .section-header__title {
        margin-bottom: 12px;

        font-size: 24px;
        line-height: 1.3;
        letter-spacing: -0.01em;
    }

    .section-header__desc {
        font-size: 14px;
        line-height: 1.72;
    }

    .section-header--why-home,
    .section-header--why-about,
    .section-header--contact {
        margin-bottom: 28px;
    }

    .section-header--why-home .section-header__title {
        font-size: 24px;
        line-height: 1.3;
    }

    .section-header--why-about .section-header__title {
        font-size: 21px;
        line-height: 1.34;
    }

    .section-header--why-about .section-header__desc {
        font-size: 14px;
        line-height: 1.72;
    }

    .section-header--contact .section-header__title {
        font-size: 25px;
        line-height: 1.3;
    }
}
/* bundled: components/partials/contact-info-card.css */
/* ================= CONTACT INFO CARD ================= */

.contact-info-card {
    width: 100%;
    height: 100%;

    padding: 54px 38px 52px;

    display: flex;
    flex-direction: column;

    color: #fff;
    background: #03A38C;
    border-radius: 32px;
    box-shadow: 0 18px 40px rgba(3, 163, 140, 0.18);
}

.contact-info-card__top {
    margin-bottom: 34px;
}

.contact-info-card__title {
    margin: 0 0 8px;

    font-size: 30px;
    line-height: 1.2;
    font-weight: 700;
    text-transform: uppercase;

    color: #fff;
}

.contact-info-card__desc {
    max-width: 470px;
    margin: 0;

    font-size: 16px;
    line-height: 1.7;

    color: rgba(255, 255, 255, 0.95);
}

.contact-info-card__divider {
    width: 100%;
    height: 1px;
    margin-bottom: 34px;

    background: rgba(255, 255, 255, 0.35);
}

.contact-info-card__block {
    margin-bottom: 30px;
}

.contact-info-card__block:last-child {
    margin-bottom: 0;
}

.contact-info-card__heading {
    margin: 0 0 12px;

    font-size: 22px;
    line-height: 1.3;
    font-weight: 700;

    color: #fff;
}

.contact-info-card__text,
.contact-info-card__list p {
    margin: 0;

    font-size: 16px;
    line-height: 1.8;

    color: rgba(255, 255, 255, 0.96);
}

.contact-info-card__list p + p {
    margin-top: 2px;
}

.contact-info-card__list span {
    font-weight: 600;
}

/* ================= SOCIAL ================= */

.contact-info-card__social {
    margin-top: auto;
    padding-top: 8px;
}

.contact-info-card__social-list {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;

    margin-top: 12px;
}

.contact-info-card__social-link {
    width: 50px;
    height: 50px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease;
}

.contact-info-card__social-link img {
    display: block;

    width: 18px;
    height: 18px;

    object-fit: contain;
}

.contact-info-card__social-link span {
    color: #fff;
    font-size: 14px;
    line-height: 1;
}

.contact-info-card__social-link:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.18);
    border-color: #fff;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
    .contact-info-card {
        padding: 44px 30px 42px;
        border-radius: 28px;
    }

    .contact-info-card__title {
        font-size: 28px;
    }

    .contact-info-card__heading {
        font-size: 21px;
    }

    .contact-info-card__desc,
    .contact-info-card__text,
    .contact-info-card__list p {
        font-size: 15px;
    }

    .contact-info-card__social-list {
        gap: 14px;
    }

    .contact-info-card__social-link {
        width: 46px;
        height: 46px;
    }
}

@media (max-width: 991px) {
    .contact-info-card {
        height: auto;
        min-height: auto;
        padding: 40px 28px;
        border-radius: 26px;
    }

    .contact-info-card__desc {
        max-width: 100%;
    }

    .contact-info-card__social {
        margin-top: 0;
        padding-top: 0;
    }
}

@media (max-width: 767px) {
    .contact-info-card {
        padding: 34px 24px;
        border-radius: 24px;
    }

    .contact-info-card__top {
        margin-bottom: 24px;
    }

    .contact-info-card__title {
        margin-bottom: 10px;

        font-size: 24px;
        line-height: 1.22;
    }

    .contact-info-card__desc {
        font-size: 15px;
        line-height: 1.72;
    }

    .contact-info-card__divider {
        margin-bottom: 26px;
    }

    .contact-info-card__block {
        margin-bottom: 24px;
    }

    .contact-info-card__heading {
        margin-bottom: 8px;

        font-size: 20px;
        line-height: 1.3;
    }

    .contact-info-card__text,
    .contact-info-card__list p {
        font-size: 15px;
        line-height: 1.72;
    }

    .contact-info-card__social-list {
        gap: 12px;
    }

    .contact-info-card__social-link {
        width: 44px;
        height: 44px;
    }

    .contact-info-card__social-link img {
        width: 17px;
        height: 17px;
    }
}

@media (max-width: 480px) {
    .contact-info-card {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .contact-info-card__top {
        margin-bottom: 22px;
    }

    .contact-info-card__title {
        font-size: 22px;
        line-height: 1.24;
    }

    .contact-info-card__desc {
        font-size: 14px;
        line-height: 1.72;
    }

    .contact-info-card__divider {
        margin-bottom: 24px;
    }

    .contact-info-card__block {
        margin-bottom: 22px;
    }

    .contact-info-card__heading {
        font-size: 18px;
    }

    .contact-info-card__text,
    .contact-info-card__list p {
        font-size: 14px;
        line-height: 1.72;
    }

    .contact-info-card__social-list {
        gap: 10px;
    }

    .contact-info-card__social-link {
        width: 42px;
        height: 42px;
    }

    .contact-info-card__social-link img {
        width: 16px;
        height: 16px;
    }
}
/* bundled: components/partials/sales-contact-list.css */
/* ================= SALES CONTACT LIST ================= */

.sales-contact-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 56px;
    row-gap: 44px;
}

/* 单个卡片 */
.sales-contact-list__item {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* 头像 */
.sales-contact-list__avatar {
    width: 84px;
    height: 84px;
    flex: 0 0 84px;
    border-radius: 50%;
    overflow: hidden;
    background: #e9e9e9;
}

.sales-contact-list__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 内容 */
.sales-contact-list__content {
    flex: 1;
    min-width: 0;
}

/* 名字 */
.sales-contact-list__name {
    margin: 0 0 10px;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 700;
    color: #06285c;
}

/* 信息 */
.sales-contact-list__info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sales-contact-list__line {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
    color: #5b6f8f;
    word-break: break-word;
}

/* ================= HOVER（轻微交互，可选） ================= */

.sales-contact-list__avatar img {
    transition: transform 0.25s ease;
}

.sales-contact-list__item:hover .sales-contact-list__avatar img {
    transform: scale(1.05);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1199px) {
    .sales-contact-list {
        column-gap: 36px;
        row-gap: 36px;
    }
}

@media (max-width: 991px) {
    .sales-contact-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 28px;
        row-gap: 28px;
    }
}

@media (max-width: 767px) {
    .sales-contact-list {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .sales-contact-list__item {
        gap: 16px;
        align-items: flex-start;
    }

    .sales-contact-list__avatar {
        width: 72px;
        height: 72px;
        flex: 0 0 72px;
    }

    .sales-contact-list__name {
        font-size: 17px;
        margin-bottom: 8px;
    }

    .sales-contact-list__line {
        font-size: 14px;
    }
}
/* bundled: components/partials/blog-card.css */
/* ================= BLOG CARD ================= */

.blog-card {
    display: flex;
    flex-direction: column;
    background: #fff;

    border-radius: 16px;
    overflow: hidden;

    border: 1px solid #eee;

    transition: all 0.3s ease;
}


.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.blog-card__image-link {
    display: block;
    overflow: hidden;
}

.blog-card__image {
    width: 100%;
    height: 180px;
    object-fit: cover;

    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card__image {
    transform: scale(1.06);
}

.blog-card__content {
    display: flex;
    flex-direction: column;
    gap: 12px;

    padding: 18px 18px 20px;
}

.blog-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;

    font-size: 12px;
    color: #888;
}

.blog-card__category {
    padding: 4px 10px;
    border-radius: 999px;

    font-size: 11px;
    font-weight: 600;

    background: rgba(11, 107, 87, 0.08);
    color: var(--primary-color, #0b6b57);
}

.blog-card__date {
    white-space: nowrap;
}

.blog-card__title {
    font-size: 18px;
    line-height: 1.4;
    margin: 0;
}


.blog-card__title a {
    color: #111;
    text-decoration: none;
    transition: color 0.25s ease;
}
.blog-card__title a:hover {
    color: var(--primary-color, #0b6b57);
}

.blog-card__summary {
    font-size: 14px;
    line-height: 1.7;
    color: #666;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;

    overflow: hidden;
}

.blog-card__link {
    margin-top: auto;

    font-size: 14px;
    font-weight: 600;

    color: var(--primary-color, #0b6b57);
    text-decoration: none;

    transition: transform 0.25s ease;
}

.blog-card__link:hover {
    transform: translateX(4px);
}
/* bundled: components/partials/card.css */
/* ================= CARD / COMMON ================= */

.card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 22px;
}

.card__img-box {
    display: block;
    background: #f5f5f7;
    border-radius: 22px;
    overflow: hidden;
    text-decoration: none;
}

.card__img-box img {
    width: 100%;
    display: block;
    transition: transform 0.45s ease;
}

.card:hover .card__img-box img,
.card__img-box:hover img {
    transform: scale(1.04);
}

.card__content {
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card__title {
    margin: 0 0 10px;
    font-size: 20px;
    line-height: 1.4;
    font-weight: 700;
    color: #111827;
    transition: color 0.25s ease;
}

.card__desc {
    margin: 0 0 10px;
    font-size: 15px;
    line-height: 1.75;
    color: #667085;
}

.card__action {
    margin-top: auto;
    padding-top: 14px;
}

.card:hover .card__title,
.card__img-box:hover + .card__content .card__title {
    color: #03A38C;
}

/* ================= CARD / READ MORE ================= */

.card__desc-wrap {
    position: relative;
}

/* desc 原始 margin 交给 wrap 和 action 控制，避免展开后间距乱 */
.card__desc-wrap .card__desc {
    margin-bottom: 0;
}

/* JS 判断超过 3 行后，才会加 is-clamped */
.card__desc.is-clamped {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;

    overflow: hidden;
}

/* 展开全文 */
.card__desc.is-expanded {
    display: block;
    overflow: visible;
}

/* Read More 默认隐藏 */
.card__read-more {
    display: none;

    margin-top: 8px;
    padding: 0;

    border: none;
    background: transparent;

    color: #03A38C;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    text-align: left;

    cursor: pointer;

    transition: color 0.25s ease;
}

.card__read-more:hover {
    color: #028A77;
}

/* 只有 desc 真的超过 3 行，JS 才会给 wrap 加 has-overflow */
.card__desc-wrap.has-overflow .card__read-more {
    display: inline-flex;
    align-items: center;
}

/* Read More 和原来的按钮拉开距离，原按钮继续保留 */
.card__desc-wrap + .card__action {
    margin-top: 14px;
}

/* ================= CARD / HOME ================= */

.card--home .card__link {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    width: 100%;
    font-size: 14px;
    font-weight: 600;
    color: #03A38C;
    text-decoration: none;
    transition: color 0.25s ease;
}

.card--home .card__link::after {
    content: "";
    width: 6px;
    height: 6px;
    border-top: 1.5px solid currentColor;
    border-right: 1.5px solid currentColor;
    transform: rotate(45deg);
    flex-shrink: 0;
    position: relative;
    top: 1px;
    transition: transform 0.25s ease;
}

.card--home .card__link:hover {
    color: #028A77;
}

.card--home .card__link:hover::after {
    transform: rotate(45deg) translate(2px, -2px);
}

/* ================= CARD / PRODUCTS ================= */

.card--products .card__action {
    display: none;
}

/* products 也支持 Read More */
.card--products .card__read-more {
    font-size: 14px;
}

/* ================= CARD / DEFAULT ================= */

.card--default .card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    font-size: 14px;
    font-weight: 600;
    color: #03A38C;
    text-decoration: none;

    transition: color 0.25s ease;
}

.card--default .card__link::after {
    content: "";
    width: 6px;
    height: 6px;
    border-top: 1.5px solid currentColor;
    border-right: 1.5px solid currentColor;
    transform: rotate(45deg);
    flex-shrink: 0;
    position: relative;
    top: 1px;
    transition: transform 0.25s ease;
}

.card--default .card__link:hover {
    color: #028A77;
}

.card--default .card__link:hover::after {
    transform: rotate(45deg) translate(2px, -2px);
}

/* ================= CARD / SHOWCASE ================= */

.card__corner-icon {
    position: absolute;
    right: 0;
    bottom: 0;

    display: none;
    align-items: center;
    justify-content: center;

    width: 44px;
    height: 44px;

    border: none;
    border-top-left-radius: 16px;
    background: rgba(3, 163, 140, 0.12);
    color: #03A38C;

    text-decoration: none;
    cursor: pointer;

    transition:
        background 0.25s ease,
        color 0.25s ease;
}

.card__corner-icon svg {
    display: block;
    width: 16px;
    height: 16px;

    transition: transform 0.25s ease;
}

/* ================= CARD / SHOWCASE ================= */

.card__corner-icon {
    position: absolute;
    right: 0;
    bottom: 0;

    display: none;
    align-items: center;
    justify-content: center;

    width: 44px;
    height: 44px;

    border: none;
    border-top-left-radius: 16px;

    background: rgba(3, 163, 140, 0.12);
    color: #03A38C;

    text-decoration: none;
    cursor: pointer;

    transition:
        background 0.25s ease,
        color 0.25s ease;
}

.card__corner-icon svg {
    display: block;
    width: 16px;
    height: 16px;

    transition: transform 0.25s ease;
}

/* ================= SHOWCASE CARD ================= */

.card.card--showcase {
    position: relative;

    padding: 0;
    overflow: hidden;

    background: #fff;
}

/* 图片区域：不留内边距 */
.card.card--showcase .card__img-box {
    display: block;

    width: 100%;
    margin: 0;
    padding: 0;

    overflow: hidden;
    background: #f4faf8;
}

/* 图片本身：不留缝 */
.card.card--showcase .card__img-box img {
    display: block;

    width: 100%;
    height: auto;
    margin: 0;
}

/* 内容区域：文字保留一点内边距，图片不保留 */
.card.card--showcase .card__content {
    display: block;

    padding: 20px 18px 54px;
}

/* 标题 */
.card.card--showcase .card__title {
    margin: 0 0 12px;

    color: #03A38C;
}

/* 描述 */
.card.card--showcase .card__desc {
    margin: 0;

    color: #334b4f;
}

/* Read More */
.card.card--showcase .card__read-more {
    display: inline-flex;
    align-items: center;

    margin-top: 18px;

    color: #03A38C;
    font-weight: 700;
    text-decoration: none;

    transition: color 0.25s ease;
}

.card.card--showcase .card__read-more:hover {
    color: #028a76;
}

/* 右下角按钮 */
.card.card--showcase .card__corner-icon {
    display: flex;

    background: rgba(3, 163, 140, 0.12);
    color: #03A38C;
}

.card.card--showcase .card__corner-icon:hover,
.card.card--showcase:hover .card__corner-icon,
.card.card--showcase .card__img-box:hover ~ .card__corner-icon {
    background: #03A38C;
    color: #fff;
}

.card.card--showcase .card__corner-icon:hover svg,
.card.card--showcase:hover .card__corner-icon svg,
.card.card--showcase .card__img-box:hover ~ .card__corner-icon svg {
    transform: translate(1px, -1px);
}

/* ================= CARD / APPLICATIONS ================= */

.card--applications .card__img-box {
    border-radius: 20px;
}

.card--applications .card__content {
    padding-top: 18px;
}

.card--applications .card__title {
    font-size: 18px;
    color: #0d1f3c;
}

.card--applications .card__desc {
    font-size: 14px;
    line-height: 1.7;
    color: #344054;
}

.card--applications .card__read-more {
    font-size: 13px;
}

/* ================= CARD / NEWS ================= */

.card--news .card__img-box {
    border-radius: 22px;
}

.card--news .card__content {
    padding-top: 22px;
}

.card--news .card__title {
    margin: 0 0 14px;
    font-size: 22px;
    line-height: 1.35;
    color: #032044;
}

.card--news .card__desc {
    font-size: 15px;
    line-height: 1.7;
    color: #032044;
}

.card--news .card__action {
    padding-top: 18px;
}

.card--news .card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #0A66FF;
    text-decoration: none;
    transition: color 0.25s ease;
}

.card--news .card__link::after {
    content: "";
    width: 6px;
    height: 6px;
    border-top: 1.5px solid currentColor;
    border-right: 1.5px solid currentColor;
    transform: rotate(45deg);
    flex-shrink: 0;
    position: relative;
    top: 1px;
    transition: transform 0.25s ease;
}

.card--news .card__link:hover {
    color: #0856D1;
}

.card--news .card__link:hover::after {
    transform: rotate(45deg) translate(2px, -2px);
}

.card--news .card__read-more {
    color: #0A66FF;
}

.card--news .card__read-more:hover {
    color: #0856D1;
}

/* 覆盖默认 hover 绿色 */
.card--news:hover .card__title,
.card--news .card__img-box:hover + .card__content .card__title {
    color: #032044;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
    .card--home .card__link {
        display: flex;
        justify-content: flex-end;
        width: 100%;
    }

    .card__content {
        padding-top: 16px;
    }

    .card__title {
        font-size: 18px;
    }

    .card__desc {
        font-size: 14px;
        line-height: 1.7;
    }

    .card__read-more {
        margin-top: 7px;
        font-size: 13px;
    }

    .card__action {
        padding-top: 12px;
    }

    .card__desc-wrap + .card__action {
        margin-top: 12px;
    }

    .card--news .card__title {
        font-size: 20px;
    }

    .card__corner-icon {
        width: 40px;
        height: 40px;
        border-top-left-radius: 14px;
    }

    .card__corner-icon svg {
        width: 15px;
        height: 15px;
    }

    /* ================= SHOWCASE MOBILE OVERRIDE ================= */

    .card.card--showcase {
        padding: 0;
    }

    .card.card--showcase .card__img-box {
        margin: 0;
        padding: 0;
    }

    .card.card--showcase .card__img-box img {
        display: block;
        width: 100%;
        height: auto;
    }

    .card.card--showcase .card__content {
        padding: 18px 16px 52px;
    }

    .card.card--showcase .card__title {
        margin-bottom: 10px;
        font-size: 18px;
        line-height: 1.35;
        color: #03A38C;
    }

    .card.card--showcase .card__desc {
        font-size: 14px;
        line-height: 1.7;
        color: #334b4f;
    }

    .card.card--showcase .card__read-more {
        margin-top: 14px;
        font-size: 13px;
        color: #03A38C;
    }

    .card.card--showcase .card__read-more:hover {
        color: #028a76;
    }

    .card.card--showcase .card__corner-icon {
        width: 40px;
        height: 40px;
        border-top-left-radius: 14px;
        background: rgba(3, 163, 140, 0.12);
        color: #03A38C;
    }

    .card.card--showcase .card__corner-icon:hover,
    .card.card--showcase:hover .card__corner-icon {
        background: #03A38C;
        color: #fff;
    }

    .card.card--showcase .card__corner-icon svg {
        width: 15px;
        height: 15px;
    }
}
/* bundled: components/partials/more_applications.css */
/* ================= MORE APPLICATIONS ================= */
.more-applications {
    margin-top: 56px;
    padding-top: 42px;
    border-top: 1px solid #d9dde3;
}

.more-applications__inner {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 28px 40px;
    align-items: start;
}

.more-applications__title {
    margin: 0;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 700;
    color: #0d1f3c;
}

.more-applications__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 26px 38px;
}

.more-applications__item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #0d1f3c;
    transition: color 0.25s ease;
}

.more-applications__item:hover {
    color: #03A38C;
}

.more-applications__icon {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #111827;
    transition: color 0.25s ease;
}

.more-applications__item:hover .more-applications__icon {
    color: #03A38C;
}

.more-applications__icon svg {
    width: 20px;
    height: 20px;
    display: block;
}

.more-applications__text {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 600;
    color: inherit;
}

@media (max-width: 992px) {
    .more-applications__inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .more-applications__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px 28px;
    }
}

@media (max-width: 768px) {
    .more-applications {
        margin-top: 40px;
        padding-top: 32px;
    }

    .more-applications__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .more-applications__text {
        font-size: 15px;
    }
}
/* bundled: components/partials/icon-info-card.css */
/* ================= ICON INFO CARD ================= */

.icon-info-card {
    position: relative;

    height: 100%;
    min-height: 220px;
    padding: 30px 28px;

    border: 1px solid rgba(3, 163, 140, 0.14);
    border-radius: 22px;
    background: #fff;

    box-shadow: 0 16px 40px rgba(3, 31, 59, 0.06);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.icon-info-card:hover {
    transform: translateY(-4px);
    border-color: rgba(3, 163, 140, 0.32);
    box-shadow: 0 22px 54px rgba(3, 31, 59, 0.1);
}

/* ================= ICON ================= */

.icon-info-card__icon {
    display: block;

    width: 64px;
    height: 64px;

    background: none;
    border-radius: 0;
    flex-shrink: 0;
}

.icon-info-card__icon img {
    display: block;

    width: 64px;
    height: 64px;

    object-fit: contain;
}

/* ================= TEXT ================= */

.icon-info-card__title {
    margin: 0;

    color: #031F3B;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.35;
}

.icon-info-card__desc-wrap {
    margin-top: 12px;
}

.icon-info-card__desc {
    margin: 0;

    color: #5f6b7a;
    font-size: 15px;
    line-height: 1.7;
}

/* ================= READ MORE ================= */

.icon-info-card__desc.is-clamped {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;

    overflow: hidden;
}

.icon-info-card__desc.is-expanded {
    display: block;
    overflow: visible;
}

.icon-info-card__read-more {
    margin-top: 10px;
    padding: 0;

    border: none;
    background: transparent;

    color: #03A38C;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;

    cursor: pointer;
}

.icon-info-card__read-more[hidden] {
    display: none;
}

/* ================= CARD LAYOUT VARIANT ================= */
/* card_variant: default */
/* icon 在 title 上面 */

.icon-info-card--layout-default .icon-info-card__icon {
    margin-bottom: 22px;
}

/* card_variant: inline */
/* icon 在 title 前面 */

.icon-info-card--layout-inline .icon-info-card__head {
    display: flex;
    align-items: center;
    gap: 14px;
}

.icon-info-card--layout-inline .icon-info-card__icon {
    margin-bottom: 0;
}

/* ================= CONTENT VARIANT ================= */
/* variant: default */

.icon-info-card--default .icon-info-card__title {
    font-size: 20px;
}

.icon-info-card--default .icon-info-card__desc {
    font-size: 15px;
}

/* variant: verification-ready */

.icon-info-card--verification-ready .icon-info-card__title {
    font-size: 20px;
    line-height: 1.35;
}

.icon-info-card--verification-ready .icon-info-card__desc {
    font-size: 15px;
    line-height: 1.7;
}

/* variant: market-feedback */

.icon-info-card--market-feedback .icon-info-card__icon,
.icon-info-card--market-feedback .icon-info-card__icon img {
    width: 28px;
    height: 28px;
}

.icon-info-card--market-feedback .icon-info-card__title {
    font-size: 18px;
    line-height: 1.35;
}

.icon-info-card--market-feedback .icon-info-card__desc {
    font-size: 14px;
    line-height: 1.65;
}

/* variant: product-detail */

.icon-info-card--product-detail .icon-info-card__title {
    font-size: 20px;
    line-height: 1.35;
}

.icon-info-card--product-detail .icon-info-card__desc {
    font-size: 15px;
    line-height: 1.7;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 767px) {
    .icon-info-card {
        min-height: auto;
        padding: 26px 22px;
        border-radius: 18px;
    }

    .icon-info-card__title {
        font-size: 18px;
    }

    .icon-info-card__desc {
        font-size: 14px;
    }

    .icon-info-card__icon,
    .icon-info-card__icon img {
        width: 56px;
        height: 56px;
    }

    .icon-info-card--layout-default .icon-info-card__icon {
        margin-bottom: 18px;
    }

    .icon-info-card--market-feedback .icon-info-card__icon,
    .icon-info-card--market-feedback .icon-info-card__icon img {
        width: 26px;
        height: 26px;
    }
}