/* === Reset === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif; font-size: 14px; line-height: 1.6; color: #1f2937; background: #fff; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
input, button, textarea, select { font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif; font: inherit; outline: none; }
table { border-collapse: collapse; border-spacing: 0; }

/* === Design Tokens === */
:root {
    --c-brand: #003fff;
    --c-brand-dark: #001a6b;
    --c-brand-light: #e6edff;
    --c-accent: #003fff;
    --c-text: #1f2937;
    --c-muted: #6b7280;
    --c-muted-light: #9ca3af;
    --c-bg: #f9fafb;
    --c-white: #fff;
    --c-border: #e5e7eb;
    --max-w: 1560px;
    --primary: #f7fbfe;
    --primary-light: #ffffff;
    --logo-yellow: #f7921b;
    --accent: var(--logo-yellow);
    --accent-dark: var(--logo-yellow);
    --text: #1a1a2e;
    --text-muted: #6b7280;
    --bg-light: #f0f4f8;
    --border: #e5e7eb;
}

/* === Layout === */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 40px; }

/* === Header === */
.hdr { position: sticky; top: 0; z-index: 1000; background: #fff; border-bottom: 1px solid var(--c-border); }
.hdr-in { display: flex; align-items: center; justify-content: space-between; height: 86px; }
.logo-area { display: flex; align-items: center; gap: 10px; }
.logo-area img { height: 68px; max-width: 320px; object-fit: contain; }
.logo-area .lname { font-size: 20px; font-weight: 700; color: var(--c-brand-dark); letter-spacing: 3px; }
.logo-area .lsub { font-size: 10px; color: var(--c-muted); letter-spacing: 1px; margin-top: 1px; }
.nav { display: flex; gap: 10px; }
.nav a { display: inline-flex; align-items: center; min-height: 44px; padding: 8px 28px; font-size: 18px; font-weight: 400; color: var(--c-muted); border-radius: 6px; transition: .2s; }
.nav a:hover { color: var(--c-brand); background: #f0f3ff; }
.nav a.on { color: var(--c-brand); font-weight: 700; }
.nav .sub { position: absolute; top: 100%; left: 0; min-width: 140px; background: #fff; border: 1px solid var(--c-border); border-radius: 6px; box-shadow: 0 4px 16px rgba(0,0,0,.08); opacity: 0; visibility: hidden; transform: translateY(8px); transition: .2s; z-index: 200; }
.nav li { position: relative; }
.nav li:hover .sub { opacity: 1; visibility: visible; transform: translateY(0); }
.nav .sub a { display: block; padding: 10px 16px; font-size: 16px; border-radius: 0; }
.nav-toggle { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; flex-direction: column; gap: 5px; border: none; border-radius: 6px; background: transparent; color: var(--c-text); cursor: pointer; touch-action: manipulation; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: currentColor; border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
.nav-mask { display: none; }

/* === Hero Banner === */
.hero { position: relative; overflow: hidden; }
.hero-mobile { display: none; }
.hero .swiper { width: 100%; }
.hero .swiper-slide img { width: 100%; height: auto; max-height: 600px; object-fit: cover; display: block; }

.hero .swiper-pagination { bottom: 24px !important; }
.hero .swiper-pagination-bullet { width: 8px; height: 8px; background: rgba(255,255,255,.35); opacity: 1; }
.hero .swiper-pagination-bullet-active { width: 24px; border-radius: 4px; background: #fff; }
.hero .swiper-button-prev,
.hero .swiper-button-next { color: rgba(255,255,255,.5); }
.hero .swiper-button-prev:after,
.hero .swiper-button-next:after { font-size: 20px; }

/* === Section === */
.sec { padding: 80px 0; }
.sec-bg { background: var(--c-bg); }
.sec-dark { background: #111827; color: #fff; }
.sec-hd { position: relative; text-align: center; margin-bottom: 56px; padding-top: 24px; }
.sec-hd h2 { position: relative; z-index: 1; font-size: 28px; font-weight: 700; color: var(--c-brand-dark); letter-spacing: 2px; }
.sec-dark .sec-hd h2 { color: #fff; }
.sec-hd .line { position: relative; z-index: 1; width: 48px; height: 3px; background: var(--c-brand); margin: 10px auto 0; }
.sec-hd p { position: absolute; left: 50%; top: 10px; transform: translateX(-50%); margin: 0; font-size: 36px; line-height: 1; font-weight: 800; color: #e5e7eb; letter-spacing: 1px; text-transform: uppercase; white-space: nowrap; }
.sec-dark .sec-hd p { color: rgba(255,255,255,.4); }

/* === Product Grid === */
.pd-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.product-swiper { position: relative; padding: 6px 64px 44px; max-width: 1200px; margin-left: auto; margin-right: auto; }
.product-swiper::before,
.product-swiper::after { content: ""; position: absolute; top: 6px; bottom: 44px; z-index: 2; width: 64px; background: var(--c-bg); pointer-events: none; }
.product-swiper::before { left: 0; }
.product-swiper::after { right: 0; }
.product-swiper .swiper-slide { height: auto; }
.product-swiper .p-card { display: block; height: 100%; }
.product-slide-grid { grid-template-columns: repeat(2, 1fr); }
.product-swiper .swiper-pagination { bottom: 0 !important; }
.product-swiper .swiper-pagination-bullet { width: 8px; height: 8px; background: #c7d2fe; opacity: 1; }
.product-swiper .swiper-pagination-bullet-active { width: 24px; border-radius: 4px; background: var(--c-brand); }
.product-swiper .swiper-button-prev,
.product-swiper .swiper-button-next { z-index: 3; width: 34px; height: 34px; margin-top: -36px; border-radius: 50%; background: #fff; color: var(--c-brand); border: 1px solid var(--c-border); box-shadow: 0 6px 18px rgba(15,23,42,.08); }
.product-swiper .swiper-button-prev:after,
.product-swiper .swiper-button-next:after { font-size: 14px; font-weight: 700; }
.p-card { background: #fff; border-radius: 8px; overflow: hidden; border: 1px solid var(--c-border); transition: .3s; cursor: pointer; }
.p-card:hover { border-color: #b3c4ff; box-shadow: 0 4px 20px rgba(0,63,255,.1); transform: translateY(-4px); }
.p-img { aspect-ratio: 4 / 3; background: #fafafa; overflow: hidden; }
.p-img img { width: 100%; height: 100%; object-fit: cover; }
.p-name { padding: 14px 16px; font-size: 13px; font-weight: 500; text-align: center; color: var(--c-text); border-top: 1px solid var(--c-border); transition: .3s; }
.p-card:hover .p-name { font-weight: 700; color: var(--c-brand); }
.pd-btn-wrap { text-align: center; }
.pd-more { display: inline-block; margin-top: 36px; padding: 10px 36px; border: 1px solid var(--c-brand); color: var(--c-brand); border-radius: 6px; font-size: 14px; font-weight: 500; transition: .2s; cursor: pointer; background: none; }
.pd-more:hover { background: var(--c-brand); color: #fff; }

/* === About === */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-txt h3 { font-size: 34px; font-weight: 700; color: var(--c-brand-dark); margin-bottom: 28px; letter-spacing: 2px; }
.about-txt p { font-size: 22px; line-height: 1.9; color: #4b5563; margin-bottom: 18px; text-align: justify; }
.about-more { display: inline-flex; align-items: center; margin-top: 24px; padding: 14px 38px; font-size: 18px; font-weight: 500; color: #fff; background: var(--c-brand); border-radius: 6px; transition: .25s; }
.about-more:hover { background: var(--c-brand-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,63,255,.3); }
.about-pic { border-radius: 8px; overflow: hidden; border: 1px solid var(--c-border); }
.about-pic img { width: 100%; }
.data-bar { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 56px; border-top: 1px solid var(--c-border); border-bottom: 1px solid var(--c-border); }
.data-item { text-align: center; padding: 32px 16px; border-right: 1px solid var(--c-border); }
.data-item:last-child { border-right: none; }
.data-item strong { display: block; font-size: 48px; font-weight: 700; color: var(--c-brand-dark); }
.data-item span { font-size: 18px; color: var(--c-muted); margin-top: 4px; display: block; }

/* === News Layout === */
.news-layout { display: grid; grid-template-columns: 200px 1fr; gap: 32px; align-items: start; }

/* Sidebar */
.news-sidebar { position: sticky; top: 88px; }
.news-sidebar-title { font-size: 24px; font-weight: 700; color: var(--c-brand-dark); margin-bottom: 24px; letter-spacing: 2px; }
.news-cat-menu { border-top: 1px solid var(--c-border); }
.news-cat-menu li { border-bottom: 1px solid var(--c-border); }
.news-cat-menu a { display: block; padding: 14px 0; font-size: 14px; color: var(--c-muted); transition: .2s; }
.news-cat-menu a:hover,
.news-cat-menu .active a { color: var(--c-brand); font-weight: 500; }
.news-cat-menu .active a { text-decoration: underline; text-underline-offset: 4px; }
.news-more-btn { display: inline-block; margin-top: 24px; font-size: 13px; color: var(--c-muted); letter-spacing: 1px; transition: .2s; }
.news-more-btn:hover { color: var(--c-brand); }

/* Cards */
.news-main { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; align-items: start; }
.n-card-h { display: block; background: #fff; border-radius: 8px; padding: 28px 24px; border: 1px solid var(--c-border); transition: .3s; }
.n-card-h:hover { border-color: #b3c4ff; box-shadow: 0 6px 24px rgba(0,63,255,.1); transform: translateY(-2px); }
.n-card-h.featured { padding: 36px 28px; box-shadow: 0 4px 20px rgba(0,63,255,.12); border-color: #b3c4ff; }
.n-card-h.featured:hover { box-shadow: 0 8px 32px rgba(0,63,255,.18); transform: translateY(-4px); }
.n-card-date { display: flex; flex-direction: column; margin-bottom: 16px; }
.n-day { font-size: 48px; font-weight: 700; color: var(--c-brand); line-height: 1; letter-spacing: -2px; }
.n-card-h.featured .n-day { font-size: 56px; }
.n-ym { font-size: 12px; color: var(--c-muted-light); margin-top: 4px; }
.n-card-title { font-size: 15px; font-weight: 500; color: var(--c-text); line-height: 1.5; margin-bottom: 16px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.n-card-h.featured .n-card-title { font-size: 16px; }
.n-card-img { height: 160px; margin-bottom: 16px; border-radius: 6px; overflow: hidden; background: #f0f3ff; }
.n-card-h.featured .n-card-img { height: 200px; }
.n-card-img img { width: 100%; height: 100%; object-fit: cover; }
.n-card-img span { display: flex; align-items: center; justify-content: center; height: 100%; color: #9bb0ff; font-size: 20px; font-weight: 700; letter-spacing: 2px; }
.n-card-desc { font-size: 13px; color: var(--c-muted); line-height: 1.7; margin-bottom: 16px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.n-card-link { font-size: 13px; color: var(--c-brand); font-weight: 500; transition: .2s; }
.n-card-h:hover .n-card-link { text-decoration: underline; }

@media (max-width: 768px) {
    .news-layout { grid-template-columns: 1fr; }
    .news-sidebar { display: none; }
    .news-main { grid-template-columns: 1fr; gap: 20px; }
    .n-card-h.featured { padding: 28px 24px; }
    .n-card-h.featured .n-day { font-size: 48px; }
    .n-card-h.featured .n-card-img { height: 160px; }
}

/* === Service === */
.svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.svc-card { border: 1px solid rgba(255,255,255,.08); border-radius: 8px; padding: 32px 20px; text-align: center; transition: .3s; }
.svc-card:hover { border-color: rgba(0,63,255,.4); background: rgba(0,63,255,.08); }
.svc-icon { width: 48px; height: 48px; margin: 0 auto 16px; border-radius: 12px; background: rgba(0,63,255,.15); display: flex; align-items: center; justify-content: center; }
.svc-icon svg { width: 24px; height: 24px; fill: #7b93ff; }
.svc-card h3 { font-size: 15px; font-weight: 500; margin-bottom: 8px; color: #fff; }
.svc-card p { font-size: 12px; color: rgba(255,255,255,.4); line-height: 1.7; }

/* === Footer === */
.ft { background: #171717; color: #9ca3af; padding: 0; }
.ft-main { display: grid; grid-template-columns: minmax(360px, 1fr) minmax(320px, .85fr); gap: 70px; padding: 50px 0 56px; border-bottom: 1px solid rgba(255,255,255,.13); }
.ft-contact { padding-top: 2px; }
.ft-contact p { margin-bottom: 10px; font-size: 15px; line-height: 1.55; color: #f3f4f6; font-weight: 600; }
.ft-contact p:last-child { margin-bottom: 0; }
.ft-contact span { color: #f3f4f6; font-weight: 600; }
.ft-nav { display: grid; grid-template-columns: repeat(2, 1fr); gap: 48px; }
.ft-col h4 { position: relative; margin-bottom: 20px; padding-bottom: 12px; color: #f3f4f6; font-size: 16px; font-weight: 700; }
.ft-col h4::after { content: ""; position: absolute; left: 0; bottom: 0; width: 24px; height: 2px; background: var(--c-brand); border-radius: 1px; }
.ft-col a { display: block; padding: 4px 0; margin-bottom: 6px; color: #9ca3af; font-size: 14px; line-height: 1.6; font-weight: 400; transition: .2s; }
.ft-col a:hover { color: #fff; transform: translateX(4px); }
.ft-bt { min-height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 18px 0; font-size: 13px; line-height: 1.6; color: #8b95a1; }

/* === Breadcrumb === */
.breadcrumb { padding: 16px 0; font-size: 13px; color: var(--c-muted); }
.breadcrumb a { color: var(--c-muted); }
.breadcrumb a:hover { color: var(--c-brand); }

/* === Page Banner === */
.page-hero { background: var(--c-brand-dark); color: #fff; padding: 56px 0; text-align: center; }
.page-hero h1 { font-size: 28px; font-weight: 700; letter-spacing: 4px; }
.page-hero p { font-size: 13px; opacity: .6; letter-spacing: 2px; margin-top: 6px; }

.pagebanner {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    padding: 190px 0 120px;
    color: #fff;
    background: linear-gradient(135deg, rgba(15,23,42,.86), rgba(30,58,95,.78));
    background-size: cover;
    background-position: center;
}
.pagebanner-content {
    position: relative;
    z-index: 1;
}
.pagebanner .breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    font-size: 14px;
    color: rgba(255,255,255,.72);
}
.pagebanner .breadcrumb a {
    color: rgba(255,255,255,.72);
}
.pagebanner .breadcrumb a:hover {
    color: #fff;
}
.pagebanner h1 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
}
@media (max-width: 768px) {
    .pagebanner {
        min-height: 220px;
        padding: 100px 0 46px;
    }
    .pagebanner h1 {
        font-size: 26px;
    }
    .pagebanner .breadcrumb {
        margin-bottom: 10px;
        font-size: 12px;
    }
}

/* === Category Layout (sidebar + content) === */
.cat-layout { display: grid; grid-template-columns: 200px 1fr; gap: 40px; align-items: start; }
.cat-sidebar { position: sticky; top: 88px; }
.cat-sidebar h4 { font-size: 16px; font-weight: 700; color: var(--c-brand-dark); margin-bottom: 16px; letter-spacing: 2px; }

.sidebar-search { display: flex; margin-bottom: 16px; }
.sidebar-search .form-control { border-radius: 6px 0 0 6px; border-right: none; font-size: 13px; height: 38px; }
.sidebar-search button { display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; border: 1px solid var(--c-border); border-radius: 0 6px 6px 0; background: #f9fafb; color: var(--c-muted); cursor: pointer; transition: .2s; }
.sidebar-search button:hover { background: var(--c-brand); color: #fff; border-color: var(--c-brand); }

/* Category Tree */
.cat-tree { border-top: 1px solid var(--c-border); }
.cat-tree li { border-bottom: 1px solid var(--c-border); }
.cat-tree-tit { display: block; padding: 12px 0; font-size: 14px; color: var(--c-text); font-weight: 500; transition: .2s; }
.cat-tree-tit:hover,
.cat-tree-tit.active { color: var(--c-brand); }
.cat-tree-sub { padding-left: 12px; border-top: 1px solid #f0f0f0; }
.cat-tree-sub a { display: block; padding: 8px 0; font-size: 13px; color: var(--c-muted); transition: .2s; }
.cat-tree-sub a:hover,
.cat-tree-sub .active a { color: var(--c-brand); }
.cat-tree-sub li { border-bottom: none; }
.cat-tree-sub li:last-child { border-bottom: 1px solid #f0f0f0; }

@media (max-width: 768px) {
    .cat-layout { grid-template-columns: 1fr; }
    .cat-sidebar { display: block; position: static; margin-bottom: 22px; padding: 14px; border: 1px solid var(--c-border); border-radius: 8px; background: #fff; }
    .cat-sidebar h4 { margin-bottom: 12px; padding-bottom: 10px; border-bottom: 1px solid var(--c-border); font-size: 17px; }
    .sidebar-search { margin-bottom: 12px; }
    .sidebar-search .form-control { height: 42px; font-size: 14px; }
    .sidebar-search button { width: 44px; height: 42px; }
    .cat-tree { max-height: 360px; overflow-y: auto; border-top: none; -webkit-overflow-scrolling: touch; }
    .cat-tree li { border-bottom: none; }
    .cat-tree > li + li { margin-top: 6px; }
    .cat-tree-tit { position: relative; min-height: 44px; padding: 11px 12px; border-radius: 6px; background: #f9fafb; color: var(--c-text); }
    .cat-tree-tit.has-child { padding-right: 38px; }
    .cat-tree-tit.has-child::after { content: ""; position: absolute; top: 50%; right: 14px; width: 7px; height: 7px; border-right: 1px solid currentColor; border-bottom: 1px solid currentColor; transform: translateY(-65%) rotate(45deg); opacity: .45; }
    .cat-tree li.open > .cat-tree-tit.has-child::after { transform: translateY(-35%) rotate(225deg); }
    .cat-tree li.open > .cat-tree-tit,
    .cat-tree-tit.active { color: var(--c-brand); background: var(--c-brand-light); font-weight: 600; }
    .cat-tree li.open > .cat-tree-tit { box-shadow: inset 3px 0 0 var(--c-brand); }
    .cat-tree-sub { display: none; margin: 6px 0 2px; padding: 4px 0 4px 14px; border-top: none; }
    .cat-tree li.open > .cat-tree-sub { display: block; }
    .cat-tree-sub a { min-height: 40px; display: flex; align-items: center; padding: 8px 12px; border-radius: 6px; font-size: 14px; }
    .cat-tree-sub .active a { color: var(--c-brand); background: #f0f3ff; font-weight: 600; }
    .cat-tree-sub li:last-child { border-bottom: none; }
}

/* === Category Section Header === */
.cat-section-hd { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 24px; padding-bottom: 12px; border-bottom: 1px solid var(--c-border); }
.cat-section-hd h2 { font-size: 20px; font-weight: 700; color: var(--c-text); letter-spacing: 1px; }
.cat-more { font-size: 13px; color: var(--c-brand); font-weight: 500; transition: .2s; }
.cat-more:hover { text-decoration: underline; }

/* === Sub-category Nav === */
.subcat-nav { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.subcat-nav a { padding: 8px 24px; font-size: 14px; color: var(--c-muted); border: 1px solid var(--c-border); border-radius: 6px; transition: .2s; }
.subcat-nav a:hover,
.subcat-nav a.active { color: var(--c-brand); border-color: var(--c-brand); background: var(--c-brand-light); }

/* === Product Detail === */
.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.product-gallery { border-radius: 8px; overflow: hidden; border: 1px solid var(--c-border); background: #fafafa; }
.product-gallery img { width: 100%; object-fit: contain; }
.product-title { font-size: 24px; font-weight: 700; color: var(--c-text); margin-bottom: 24px; }
.product-pics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 24px; }
.product-pics img { width: 100%; border-radius: 6px; border: 1px solid var(--c-border); }
.related-products { margin-top: 64px; }

@media (max-width: 768px) {
    .product-detail { grid-template-columns: 1fr; }
}

/* === Article Detail === */
.article-wrap { }
.article-title { font-size: 24px; font-weight: 700; color: var(--c-text); margin-bottom: 12px; line-height: 1.4; }
.article-meta { font-size: 13px; color: var(--c-muted-light); margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid var(--c-border); }
.article-cover { margin-bottom: 24px; }
.article-cover img { width: 100%; border-radius: 8px; }
.article-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 32px; }
.article-gallery img { width: 100%; border-radius: 6px; border: 1px solid var(--c-border); }
.article-nav { margin-top: 40px; padding-top: 16px; border-top: 1px solid var(--c-border); font-size: 13px; color: var(--c-muted); }
.article-nav a { color: var(--c-brand); }
.article-nav a:hover { text-decoration: underline; }
.article-nav p + p { margin-top: 6px; }

/* === Content === */
.content-body { line-height: 1.9; font-size: 15px; color: #4b5563; }
.content-body img { margin: 16px 0; border-radius: 8px; }
.content-body p { margin-bottom: 14px; }
.detail-content-body { margin-top: 48px; }

/* === Form === */
.form-control { width: 100%; padding: 10px 14px; border: 1px solid var(--c-border); border-radius: 6px; font-size: 14px; background: #fff; transition: border .2s; }
.form-control:focus { border-color: var(--c-brand); }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; margin-bottom: 6px; font-size: 14px; font-weight: 500; color: var(--c-text); }
.form-group label span { color: #e53e3e; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-width: 160px; padding: 12px 36px; font-size: 15px; font-weight: 500; color: #fff; background: var(--c-brand); border: none; border-radius: 6px; cursor: pointer; transition: .25s; }
.btn:hover { background: var(--c-brand-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,63,255,.3); }
.btn:active { transform: translateY(0); }
.btn:disabled { opacity: .6; cursor: not-allowed; transform: none; box-shadow: none; }

/* === News List Cards === */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.n-card { display: block; background: #fff; border-radius: 8px; overflow: hidden; border: 1px solid var(--c-border); transition: .3s; }
.n-card:hover { border-color: #b3c4ff; box-shadow: 0 4px 16px rgba(0,63,255,.08); }
.n-img { height: 200px; background: #eef2ff; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.n-img img { width: 100%; height: 100%; object-fit: cover; }
.n-body { padding: 20px; }
.n-body time { font-size: 12px; color: #9ca3af; }
.n-body h3 { font-size: 15px; font-weight: 500; margin: 8px 0; line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.n-body p { font-size: 13px; color: var(--c-muted); line-height: 1.7; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.n-body .rd { display: inline-block; margin-top: 12px; font-size: 13px; color: var(--c-brand); font-weight: 500; }

/* === Service Layout === */
.svc-layout { display: grid; grid-template-columns: 200px 1fr; gap: 40px; align-items: start; }
.svc-sidebar { position: sticky; top: 88px; }
.svc-sidebar h4 { font-size: 16px; font-weight: 700; color: var(--c-brand-dark); margin-bottom: 16px; }
.svc-menu { border-top: 1px solid var(--c-border); }
.svc-menu li { border-bottom: 1px solid var(--c-border); }
.svc-menu a { display: block; padding: 12px 0; font-size: 14px; color: var(--c-muted); transition: .2s; }
.svc-menu a:hover,
.svc-menu .active a { color: var(--c-brand); font-weight: 500; }
.svc-content { min-width: 0; }
.svc-header { margin-bottom: 24px; padding-bottom: 12px; border-bottom: 1px solid var(--c-border); }
.svc-header h3 { font-size: 16px; font-weight: 600; color: var(--c-text); }
.svc-header span { font-weight: 400; color: var(--c-muted); }

/* File Grid */
.file-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.file-card { text-align: center; padding: 28px 16px 20px; background: #fff; border: 1px solid var(--c-border); border-radius: 8px; transition: .2s; }
.file-card:hover { border-color: #b3c4ff; box-shadow: 0 4px 16px rgba(0,63,255,.08); }
.file-icon { margin-bottom: 14px; display: flex; justify-content: center; }
.file-name { font-size: 13px; font-weight: 500; color: var(--c-text); margin-bottom: 8px; line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.file-tag { display: inline-block; padding: 2px 10px; font-size: 11px; background: #fef3f2; color: #c0392b; border-radius: 3px; margin-bottom: 14px; }
.file-dl-btn { display: inline-flex; align-items: center; gap: 6px; padding: 8px 24px; font-size: 13px; font-weight: 500; color: #fff; background: linear-gradient(135deg, #e74c3c, #c0392b); border-radius: 6px; transition: .2s; }
.file-dl-btn:hover { box-shadow: 0 4px 12px rgba(231,76,60,.35); transform: translateY(-1px); }

/* Download List */
.download-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 40px 42px; }
.download-item { min-height: 148px; display: grid; grid-template-columns: 46px minmax(0, 1fr) auto; align-items: center; gap: 20px; padding: 28px 30px; background: #fff; border: 1px solid var(--c-border); border-radius: 4px; transition: .2s; }
.download-item:hover { border-color: #b3c4ff; box-shadow: 0 4px 16px rgba(0,63,255,.08); transform: translateY(-1px); }
.download-file { position: relative; width: 36px; height: 44px; display: flex; align-items: center; justify-content: center; align-self: start; margin-top: 2px; color: #fff; background: #6d8ef7; border-radius: 2px; overflow: hidden; }
.download-file::after { content: ""; position: absolute; top: 0; right: 0; border-top: 11px solid rgba(255,255,255,.88); border-left: 11px solid rgba(0,0,0,.08); }
.download-file span { position: relative; z-index: 1; font-size: 18px; font-weight: 500; line-height: 1; }
.download-file.is-ppt { background: #ff744d; }
.download-file.is-pdf { background: #e74c3c; }
.download-file.is-file span,
.download-file.is-pdf span { font-size: 11px; letter-spacing: .2px; }
.download-info { min-width: 0; }
.download-info h3 { font-size: 16px; font-weight: 500; color: var(--c-text); line-height: 1.5; margin-bottom: 6px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.download-info p { font-size: 14px; color: var(--c-muted); line-height: 1.7; margin-bottom: 18px; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; }
.download-meta { display: flex; flex-wrap: wrap; gap: 10px 24px; font-size: 13px; color: var(--c-muted-light); }
.download-action { display: flex; align-items: center; justify-content: flex-end; min-width: 112px; }
.download-btn { display: inline-flex; align-items: center; justify-content: center; gap: 6px; min-width: 96px; height: 38px; padding: 0 20px; color: #fff; background: var(--c-brand); border: 1px solid var(--c-brand); border-radius: 6px; font-size: 14px; font-weight: 500; transition: .2s; }
.download-btn:hover { background: var(--c-brand-dark); border-color: var(--c-brand-dark); box-shadow: 0 4px 12px rgba(0,63,255,.22); }
.download-btn.is-disabled { color: var(--c-muted-light); background: #f9fafb; border-color: var(--c-border); box-shadow: none; cursor: default; }

@media (max-width: 768px) {
    .svc-layout { grid-template-columns: 1fr; }
    .svc-sidebar { display: none; }
    .file-grid { grid-template-columns: repeat(2, 1fr); }
    .download-list { grid-template-columns: 1fr; gap: 16px; }
    .download-item { min-height: 0; grid-template-columns: 40px minmax(0, 1fr); gap: 14px; padding: 20px; }
    .download-file { width: 34px; height: 42px; }
    .download-action { grid-column: 1 / -1; justify-content: flex-start; min-width: 0; padding-left: 54px; }
    .download-info h3 { font-size: 15px; white-space: normal; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
    .download-info p { margin-bottom: 12px; -webkit-line-clamp: 2; }
}

/* === Contact === */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-info h2 { font-size: 22px; font-weight: 700; color: var(--c-brand-dark); margin-bottom: 8px; }
.contact-info > p { font-size: 14px; color: var(--c-muted); margin-bottom: 32px; }
.contact-list { display: flex; flex-direction: column; gap: 16px; }
.contact-list li { display: flex; gap: 12px; font-size: 14px; color: var(--c-text); }
.ci-label { flex-shrink: 0; width: 48px; color: var(--c-muted); }
.contact-form-wrap { background: var(--c-bg); padding: 32px; border-radius: 8px; }
.contact-form-wrap h3 { font-size: 18px; font-weight: 700; margin-bottom: 24px; color: var(--c-text); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

@media (max-width: 768px) {
    .contact-layout { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
}

/* === Pagination === */
.pagination { display: flex; justify-content: center; gap: 6px; margin-top: 40px; }
.pagination li { display: inline-block; }
.pagination a,
.pagination span { display: inline-block; min-width: 36px; height: 36px; line-height: 36px; text-align: center; font-size: 14px; border-radius: 6px; border: 1px solid var(--c-border); color: var(--c-text); background: #fff; transition: .2s; padding: 0 8px; }
.pagination a:hover { border-color: var(--c-brand); color: var(--c-brand); }
.pagination .active span { background: var(--c-brand); border-color: var(--c-brand); color: #fff; }
.pagination .disabled span { color: #ccc; cursor: default; }

/* === Animations === */
.fade-up { opacity: 0; transform: translateY(20px); transition: opacity .6s, transform .6s; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.observe-rise {
    opacity: 0;
    transform: translateY(var(--observe-rise-y, 42px));
    transition: opacity var(--observe-rise-duration, .8s) ease, transform var(--observe-rise-duration, .8s) ease;
}
.observe-drop {
    opacity: 0;
    transform: translateY(-42px);
    transition: opacity .8s ease, transform .8s ease;
}
.observe-left {
    opacity: 0;
    transform: translateX(-54px);
    transition: opacity .85s ease, transform .85s ease;
}
.observe-right {
    opacity: 0;
    transform: translateX(54px);
    transition: opacity .85s ease, transform .85s ease;
}
.js-observe-once.is-visible .observe-rise,
.observe-rise.is-visible,
.observe-drop.is-visible,
.observe-left.is-visible,
.observe-right.is-visible {
    opacity: 1;
    transform: translate(0, 0);
}
.observe-rise-delay {
    transition-delay: .12s;
}
.observe-zoom {
    opacity: 0;
    transform: scale(.94);
    transition: opacity var(--observe-zoom-duration, .8s) ease, transform var(--observe-zoom-duration, .8s) ease;
}
.js-observe-once.is-visible.observe-zoom,
.js-observe-once.is-visible .observe-zoom,
.observe-zoom.is-visible {
    opacity: 1;
    transform: scale(1);
}
.wire-product-list > .wire-product-item.observe-rise:nth-child(2) {
    transition-delay: .08s;
}
.wire-product-list > .wire-product-item.observe-rise:nth-child(3) {
    transition-delay: .16s;
}
.wire-product-list > .wire-product-item.observe-rise:nth-child(4) {
    transition-delay: .24s;
}
.wire-product-list > .wire-product-item.observe-rise:nth-child(5) {
    transition-delay: .32s;
}
.wire-product-list > .wire-product-item.observe-rise:nth-child(6) {
    transition-delay: .4s;
}

/* === Responsive === */
@media (max-width: 768px) {
    .container { padding: 0 16px; }
    .subcat-nav-sec { display: none; }
    .hdr { height: 70px; }
    .hdr-in { height: 70px; }
    .logo-area { min-width: 0; }
    .logo-area img { height: 54px; max-width: min(260px, calc(100vw - 96px)); }
    .nav-toggle { display: flex; position: relative; z-index: 1003; flex-shrink: 0; }
    .nav-open { overflow: hidden; }
    .nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
    .nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .nav-mask { display: block; position: fixed; inset: 70px 0 0; z-index: 1001; background: rgba(15,23,42,.42); opacity: 0; visibility: hidden; transition: opacity .2s ease, visibility .2s ease; }
    .nav-open .nav-mask { opacity: 1; visibility: visible; }
    .nav { display: flex; position: fixed; top: 70px; right: 0; bottom: 0; left: auto; z-index: 1002; width: min(82vw, 320px); padding: 24px 18px; flex-direction: column; gap: 6px; background: #fff; border-left: 1px solid var(--c-border); box-shadow: none; transform: translateX(calc(100% + 40px)); visibility: hidden; pointer-events: none; transition: transform .24s ease, visibility .24s ease, box-shadow .24s ease; overflow-y: auto; -webkit-overflow-scrolling: touch; }
    .nav.show { transform: translateX(0); visibility: visible; pointer-events: auto; box-shadow: -16px 0 36px rgba(15,23,42,.16); }
    .nav a { min-height: 46px; display: flex; align-items: center; padding: 12px 14px; border-radius: 6px; color: var(--c-text); font-size: 18px; }
    .nav a:hover,
    .nav a.on { color: var(--c-brand); background: var(--c-brand-light); }
    .nav a.on { font-weight: 600; }


    .sec { padding: 48px 0; }
    .hero .swiper-button-prev,
    .hero .swiper-button-next { display: none; }
    .hero .swiper-pagination { bottom: 12px !important; }
    .hero .swiper-slide img { height: auto; max-height: none; }
    .hero-pc { display: none; }
    .hero-mobile { display: block; }
    .pd-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .product-swiper { padding: 0 0 38px; }
    .product-swiper::before,
    .product-swiper::after { display: none; }
    .product-swiper .swiper-button-prev,
    .product-swiper .swiper-button-next { display: none; }
    .about-grid { grid-template-columns: 1fr; }
    .about-more { padding: 10px 28px; font-size: 15px; }
    .data-bar { grid-template-columns: repeat(2, 1fr); }
    .data-item { border-bottom: 1px solid var(--c-border); padding: 24px 12px; }
    .news-grid { grid-template-columns: 1fr; }
    .svc-grid { grid-template-columns: repeat(2, 1fr); }
    .ft-main { grid-template-columns: 1fr; gap: 32px; padding: 36px 0 40px; }
    .ft-contact p { font-size: 14px; }
    .ft-nav { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .ft-col h4 { margin-bottom: 14px; padding-bottom: 10px; font-size: 15px; }
    .ft-col a { margin-bottom: 4px; font-size: 13px; }
    .ft-bt { min-height: 0; flex-direction: column; align-items: flex-start; gap: 4px; }
}

@media (max-width: 480px) {
    .svc-grid,
    .file-grid { grid-template-columns: 1fr; }
    .subcat-nav { justify-content: flex-start; gap: 8px; }
    .subcat-nav a { flex: 1 1 calc(50% - 8px); min-height: 42px; display: inline-flex; align-items: center; justify-content: center; padding: 8px 12px; text-align: center; }
    .article-gallery,
    .product-pics { grid-template-columns: 1fr 1fr; }
    .ft-nav { grid-template-columns: 1fr; gap: 18px; }
}


/* ===== index.html ===== */
/* ===== Section Common ===== */
        .section {
            padding: 100px 0;
            position: relative;
        }
        .section-title {
            font-size: 14px;
            color: var(--accent);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 10px;
        }
        .section-heading {
            font-size: 48px;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 20px;
            line-height: 1.33;
        }
        .section-desc {
            font-size: 16px;
            color: var(--text-muted);
            max-width: 600px;
        }
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 32px;
            background: var(--accent);
            color: var(--primary);
            font-size: 14px;
            font-weight: 600;
            border-radius: 6px;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }
        .btn:hover {
            background: var(--accent-dark);
            transform: translateY(-2px);
        }
        .btn-outline {
            background: transparent;
            color: var(--primary);
            border: 1px solid var(--border);
        }
        .btn-outline:hover {
            background: var(--text);
            color: var(--primary);
        }

        /* ===== Hero Banner ===== */
        .hero-banner {
            height: 100vh;
            min-height: 700px;
            position: relative;
            overflow: hidden;
        }
        .hero-banner .swiper,
        .hero-banner .swiper-wrapper,
        .hero-banner .swiper-slide {
            height: 100%;
        }
        .hero-banner .swiper-slide {
            position: relative;
            display: flex;
            align-items: center;
        }
        .hero-banner .container {
            width: 100%;
        }
        .hero-bg {
            position: absolute;
            inset: 0;
            z-index: 1;
        }
        .hero-bg img {
            width: 100%; height: 100%;
            object-fit: cover;
        }
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 760px;
            margin-right: auto;
            text-align: left;
            opacity: 0;
            transform: translateY(46px);
        }
        .hero-banner .swiper-slide-active .hero-content {
            animation: heroTextRise 1.35s ease .25s both;
        }
        @keyframes heroTextRise {
            from {
                opacity: 0;
                transform: translateY(46px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .hero-content h1 {
            font-size: 48px;
            font-weight: 800;
            line-height: 1.15;
            margin-bottom: 20px;
            color: #fff;
            text-shadow: 0 2px 20px rgba(0,0,0,0.35), 0 1px 3px rgba(0,0,0,0.25);
            letter-spacing: -0.5px;
        }
        .hero-content h1 span { color: var(--accent); }
        .hero-content p {
            font-size: 22px;
            color: rgba(255,255,255,0.92);
            margin-bottom: 35px;
            line-height: 1.7;
            max-width: 640px;
            text-shadow: 0 1px 10px rgba(0,0,0,0.35);
        }
        .hero-buttons {
            display: flex;
            gap: 15px;
        }
        .swiper-pagination-bullet {
            background: var(--text-muted);
            opacity: 0.5;
            width: 10px; height: 10px;
        }
        .swiper-pagination-bullet-active {
            background: var(--accent);
            opacity: 1;
            width: 30px;
            border-radius: 5px;
        }
        .hero-banner .swiper-pagination {
            bottom: 40px;
        }

        /* ===== Products - Flux ===== */
        .products-flux {
            background: #f3f7fb;
        }
        .flux-showcase {
            overflow: hidden;
            border-radius: 8px;
            background: linear-gradient(180deg, #f8fbff 0%, #eef3f8 100%);
            border: 1px solid #dfe7ef;
        }
        .flux-heading {
            position: absolute;
            z-index: 4;
            padding: 48px 0 0 48px;
        }
        .flux-heading .section-title {
            color: #004a98;
            margin-bottom: 8px;
        }
        .flux-heading .section-heading {
            color: #10253f;
            font-size: 40px;
            margin: 0;
        }
        .flux-feature-swiper {
            position: relative;
            min-height: 560px;
            background: radial-gradient(circle at 64% 42%, rgba(255,255,255,.95) 0, rgba(255,255,255,.72) 32%, rgba(235,241,247,.5) 62%, rgba(225,233,241,.9) 100%);
        }
        .flux-feature {
            min-height: 560px;
            display: grid;
            grid-template-columns: minmax(360px, .9fr) minmax(420px, 1.45fr);
            align-items: center;
            gap: 42px;
            padding: 140px 48px 70px;
        }
        .flux-feature-copy {
            position: relative;
            z-index: 2;
            max-width: 520px;
        }
        .flux-feature-copy h3 {
            margin-bottom: 22px;
            color: #10253f;
            font-size: 36px;
            line-height: 1.25;
            font-weight: 800;
        }
        .flux-feature-copy p {
            color: #526477;
            font-size: 16px;
            line-height: 1.8;
        }
        .flux-more {
            display: inline-flex;
            align-items: center;
            min-height: 48px;
            margin-top: 28px;
            padding: 0 26px;
            border-radius: 999px;
            background: #161d26;
            color: #fff;
            font-size: 14px;
            font-weight: 700;
            transition: background .25s ease, transform .25s ease;
        }
        .flux-more:hover {
            background: var(--accent);
            transform: translateY(-2px);
        }
        .flux-feature-media {
            position: relative;
            height: 480px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: none;
        }
        .flux-feature-media::after {
            content: "";
            position: absolute;
            inset: 0;
            background: none;
            pointer-events: none;
        }
        .flux-feature-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .flux-feature-nav {
            position: absolute;
            right: 48px;
            bottom: 36px;
            z-index: 5;
            display: flex;
            gap: 12px;
        }
        .flux-feature-nav button {
            width: 56px;
            height: 56px;
            border: 0;
            border-radius: 50%;
            background: #dfe7ef;
            color: #526477;
            font-size: 24px;
            line-height: 1;
            cursor: pointer;
            transition: background .25s ease, color .25s ease, transform .25s ease;
        }
        .flux-feature-nav button:hover {
            background: #10253f;
            color: #fff;
            transform: translateY(-2px);
        }
        .flux-product-list {
            display: grid;
            grid-template-columns: repeat(5, minmax(0, 1fr));
            border-top: 1px solid #dfe7ef;
            background: #fff;
        }
        .flux-product-item {
            position: relative;
            min-height: 122px;
            padding: 20px 20px 18px;
            overflow: hidden;
            border-right: 1px solid #dfe7ef;
            border-bottom: 1px solid #dfe7ef;
            background: #f9fbfd;
            transition: background .25s ease, box-shadow .25s ease;
        }
        .flux-product-item:nth-child(5n) {
            border-right: 0;
        }
        .flux-product-item:nth-last-child(-n+5) {
            border-bottom: 0;
        }
        .flux-product-item span {
            position: relative;
            z-index: 2;
            display: block;
            max-width: 54%;
        }
        .flux-product-item strong {
            display: block;
            color: #355b84;
            font-size: 17px;
            line-height: 1.25;
            font-weight: 700;
        }
        .flux-product-item em {
            display: block;
            margin-top: 4px;
            color: #526477;
            font-size: 14px;
            line-height: 1.25;
            font-style: normal;
        }
        .flux-product-item img {
            position: absolute;
            right: 8px;
            bottom: 0;
            z-index: 1;
            width: 122px;
            height: 92px;
            object-fit: contain;
            border-radius: 0;
            filter: saturate(.88);
            transition: transform .25s ease;
        }
        .flux-product-item:hover {
            background: #fff;
            box-shadow: inset 0 0 0 2px rgba(247,146,27,.28);
        }
        .flux-product-item:hover img {
            transform: translateY(-5px) scale(1.04);
        }
        .products-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
            margin-top: 50px;
        }
        .product-card {
            background: var(--primary);
            border: 1px solid var(--border);
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.4s;
        }
        .product-card:hover {
            transform: translateY(-8px);
            border-color: var(--accent);
            box-shadow: 0 20px 40px rgba(0,0,0,0.04);
        }
        .product-img {
            height: 200px;
            background: linear-gradient(135deg, #e8ecf1 0%, #d1d5db 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            color: var(--text-muted);
        }
        .product-img img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            padding: 18px;
            display: block;
        }
        .product-info {
            padding: 20px;
        }
        .product-info h3 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--primary);
        }
        .product-info p {
            font-size: 13px;
            color: var(--text-muted);
            margin-bottom: 15px;
        }
        .product-info .link {
            font-size: 13px;
            color: var(--accent);
            font-weight: 500;
        }
        .product-info .link:hover { text-decoration: underline; }

        /* ===== Products - Wire ===== */
        .products-wire {
            background: #fff;
        }
        .wire-showcase {
            overflow: visible;
        }
        .wire-heading {
            margin-bottom: 26px;
        }
        .wire-heading .section-title {
            color: #005aa8;
        }
        .wire-heading .section-heading {
            color: #10253f;
            margin-bottom: 0;
        }
        .wire-feature-swiper {
            position: relative;
            overflow: visible;
            border-radius: 8px;
            background: #125a99;
        }
        .wire-feature {
            position: relative;
            min-height: 440px;
            display: grid;
            grid-template-columns: minmax(360px, .85fr) minmax(430px, 1.15fr);
            align-items: center;
            gap: 36px;
            padding: 58px 60px;
            overflow: hidden;
        }
        .wire-feature::before {
            content: "";
            position: absolute;
            right: 140px;
            top: 50%;
            width: 460px;
            height: 460px;
            border-radius: 50%;
            background: rgba(255,255,255,.12);
            transform: translateY(-50%);
        }
        .wire-feature-copy {
            position: relative;
            z-index: 2;
            max-width: 620px;
        }
        .wire-feature-copy h3 {
            margin-bottom: 22px;
            color: #fff;
            font-size: 38px;
            line-height: 1.2;
            font-weight: 800;
        }
        .wire-feature-copy p {
            color: rgba(255,255,255,.9);
            font-size: 16px;
            line-height: 1.85;
        }
        .wire-more {
            display: inline-flex;
            align-items: center;
            min-height: 48px;
            margin-top: 30px;
            padding: 0 26px;
            border-radius: 999px;
            background: #fff;
            color: #125a99;
            font-size: 14px;
            font-weight: 800;
            transition: color .25s ease, transform .25s ease;
        }
        .wire-more:hover {
            color: var(--accent);
            transform: translateY(-2px);
        }
        .wire-feature-media {
            position: relative;
            z-index: 2;
            height: 420px;
        }
        .wire-feature-media img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            filter: drop-shadow(0 28px 42px rgba(0,0,0,.28));
        }
        .wire-feature-nav {
            position: absolute;
            right: 44px;
            bottom: 36px;
            z-index: 5;
            display: flex;
            gap: 12px;
        }
        .wire-feature-nav button {
            width: 54px;
            height: 54px;
            border: 0;
            border-radius: 50%;
            background: rgba(255,255,255,.18);
            color: #fff;
            font-size: 24px;
            line-height: 1;
            cursor: pointer;
            transition: background .25s ease, transform .25s ease;
        }
        .wire-feature-nav button:hover {
            background: #fff;
            color: #125a99;
            transform: translateY(-2px);
        }
        .wire-product-list {
            display: grid;
            grid-template-columns: repeat(5, minmax(0, 1fr));
            gap: 20px;
            margin-top: 42px;
        }
        .wire-product-item {
            display: flex;
            min-height: 300px;
            flex-direction: column;
            align-items: center;
            justify-content: flex-end;
            padding: 24px 20px 28px;
            border: 1px solid #dfe7ef;
            border-radius: 8px;
            background: #fff;
            text-align: center;
            transition: opacity .8s ease, transform .8s ease, border-color .25s ease, box-shadow .25s ease;
        }
        .wire-product-item img {
            width: 100%;
            height: 190px;
            margin-bottom: 24px;
            object-fit: contain;
        }
        .wire-product-item strong {
            display: block;
            color: #10253f;
            font-size: 18px;
            line-height: 1.25;
            font-weight: 800;
        }
        .wire-product-item span {
            display: block;
            margin-top: 6px;
            color: #526477;
            font-size: 14px;
        }
        .wire-product-item:hover {
            border-color: rgba(18,90,153,.45);
            box-shadow: 0 18px 36px rgba(16,37,63,.08);
            transform: translateY(-4px);
        }
        .product-list-section .wire-product-list {
            grid-template-columns: repeat(4, minmax(0, 1fr));
            margin-top: 0;
        }
        .product-heading-section {
            padding-bottom: 28px;
        }
        .product-heading-section .section-heading {
            margin-bottom: 0;
        }
        .product-heading-section + .product-list-section {
            padding-top: 28px;
        }
        .related-section .wire-product-list {
            grid-template-columns: repeat(4, minmax(0, 1fr));
        }
        .product-list-section .wire-product-item {
            min-height: 280px;
        }

        /* ===== CTA Banner ===== */
        .cta-banner {
            margin: 0 0 100px;
            position: relative;
            text-align: center;
        }
        .cta-banner .container {
            padding: 100px 40px;
            background-image: linear-gradient(135deg, rgba(16, 37, 63, 0.78), rgba(16, 37, 63, 0.62)), url('/static/default/cta-bg.jpg');
            background-position: center;
            background-size: cover;
            background-repeat: no-repeat;
            background-attachment: fixed;
            border-radius: 8px;
            overflow: hidden;
        }
        .cta-banner h2 {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 15px;
            color: #fff;
        }
        .cta-banner p {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.86);
            margin-bottom: 30px;
        }
        .cta-banner.cta-banner-about {
            margin: 0;
            padding: 0;
            background-image: linear-gradient(135deg, rgba(16, 37, 63, 0.72), rgba(16, 37, 63, 0.58)), url('/uploadfile/2026/0616/cta-about-bg.jpg');
            background-position: center;
            background-size: cover;
            background-repeat: no-repeat;
            background-attachment: fixed;
            text-align: center;
        }
        .cta-banner.cta-banner-about .container {
            min-height: 0;
            padding: 100px 40px;
            display: block;
            text-align: center;
            background: none;
            border-radius: 0;
            overflow: hidden;
        }
        .cta-banner.cta-banner-about h2 {
            margin: 0 0 15px;
            font-size: 34px;
            line-height: 1.25;
            color: #fff;
        }
        .cta-banner.cta-banner-about p {
            margin: 0 0 30px;
            font-size: 18px;
            color: rgba(255,255,255,.86);
        }
        .cta-banner.cta-banner-about .btn {
            white-space: nowrap;
        }
        .cta-banner.cta-banner-about .cta-actions {
            display: flex;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
        }
        .cta-banner.cta-banner-about .btn-outline {
            color: #fff;
            border-color: rgba(255,255,255,.58);
        }
        .cta-banner.cta-banner-about .btn-outline:hover {
            background: #fff;
            color: #10253f;
        }

        /* ===== Process (GSAP Stack) ===== */
        #process.process-section {
            position: relative;
            background: url('/uploadfile/2026/0615/process-bg.jpg') center/cover no-repeat;
            overflow: hidden;
        }
        #process.process-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(7, 20, 42, 0.76);
            z-index: 0;
        }
        #process.process-section .container {
            position: relative;
            z-index: 1;
        }
        #process.process-section .section-heading {
            color: #fff;
        }
        #process.process-section .section-title {
            color: var(--accent);
        }
        #process.process-section .section-desc {
            color: rgba(255,255,255,.78);
        }
        .process-stack {
            position: relative;
            margin-top: 50px;
            min-height: 500px;
        }
        .process-card {
            background: var(--primary);
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 50px;
            display: flex;
            gap: 50px;
            align-items: center;
            box-shadow: 0 0 4px rgba(0,0,0,0.02), 0 -8px 16px rgba(0,0,0,0.04);
        }
        .process-card:not(:first-child) {
            position: absolute;
            left: 0;
            top: calc(100% + 80px);
            width: 100%;
        }
        .process-left {
            flex: 1;
        }
        .process-step {
            font-size: 60px;
            font-weight: 800;
            color: var(--accent);
            line-height: 1;
            margin-bottom: 15px;
        }
        .process-left h3 {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--text);
        }
        .process-left p {
            font-size: 15px;
            color: var(--text-muted);
            line-height: 1.8;
        }
        .process-right {
            width: 400px;
            flex-shrink: 0;
        }
        .process-img {
            width: 100%;
            padding-bottom: 75%;
            position: relative;
            background: linear-gradient(135deg, #e8ecf1, #d1d5db);
            border-radius: 12px;
            overflow: hidden;
        }
        .process-img span {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-muted);
            font-size: 14px;
        }
        .process-img img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        /* Mobile process swiper */
        .process-swiper { display: none; }

        /* ===== Advantages ===== */
        .advantages {
            background: var(--primary);
            overflow: hidden;
        }
        .advantages .section-heading {
            color: var(--text);
        }
        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-template-rows: repeat(2, 1fr);
            gap: 24px;
            margin-top: 50px;
            position: relative;
        }
        .advantage-item {
            position: relative;
            padding: 30px;
            background: var(--primary-light);
            border: 1px solid var(--border);
            border-radius: 16px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            min-height: 220px;
            transition: all 0.4s;
        }
        .advantage-item:hover {
            border-color: var(--accent);
            transform: translateY(-5px);
        }
        .advantage-item.observe-rise,
        .advantage-item.observe-drop {
            transition: opacity .8s ease, transform .8s ease, border-color .4s ease, box-shadow .4s ease;
        }
        .advantage-text h3 {
            font-size: 17px;
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--text);
        }
        .advantage-text p {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.6;
        }
        .advantage-num {
            font-size: 72px;
            font-weight: 800;
            color: transparent;
            -webkit-text-stroke: 1px var(--text-muted);
            line-height: 1;
            margin-top: 20px;
        }
        .advantages-logo {
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%) rotate(45deg);
            width: 92px;
            height: 92px;
            background: var(--primary);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0;
            box-shadow: 0 0 0 6px rgba(247,251,254,.92);
            z-index: 2;
        }
        .advantages-logo::before,
        .advantages-logo::after {
            content: "";
            position: absolute;
            inset: -10px;
            background: rgba(203,213,225,.42);
            border-radius: 20px;
            opacity: 0;
            pointer-events: none;
            animation: advantage-logo-ripple 3s ease-out infinite;
        }
        .advantages-logo::after {
            animation-delay: 1.5s;
        }
        .advantages-logo img {
            width: 110px;
            max-width: none;
            max-height: none;
            object-fit: contain;
            transform: rotate(-45deg);
            position: relative;
            z-index: 1;
        }
        .advantages-logo.observe-zoom {
            opacity: 0;
            transform: translate(-50%, -50%) rotate(45deg) scale(.82);
            transition: opacity .85s ease, transform .85s ease;
        }
        .advantages-logo.observe-zoom.is-visible {
            opacity: 1;
            transform: translate(-50%, -50%) rotate(45deg) scale(1);
        }
        @keyframes advantage-logo-ripple {
            0% {
                opacity: .72;
                transform: scale(.86);
            }
            70% {
                opacity: .2;
            }
            100% {
                opacity: 0;
                transform: scale(1.55);
            }
        }

        /* ===== About ===== */
        .about-section {
            background: var(--primary-light);
            overflow: hidden;
        }
        .about-section .section-heading {
            color: var(--text);
        }
        .about-content {
            display: flex;
            gap: 70px;
            align-items: stretch;
            margin-top: 50px;
        }
        .about-img {
            width: 55%;
            flex-shrink: 0;
            border-radius: 16px;
            overflow: hidden;
        }
        .about-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        .about-text {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .about-heading {
            position: relative;
            margin-bottom: 30px;
        }
        .about-heading .section-title {
            color: var(--accent);
            margin-bottom: 8px;
        }
        .about-heading .section-heading {
            font-size: 42px;
            margin-bottom: 16px;
            position: relative;
            z-index: 1;
        }
        .about-text p {
            font-size: 15px;
            color: var(--text-muted);
            line-height: 1.8;
            margin-bottom: 16px;
        }
        .about-features {
            display: flex;
            gap: 30px;
            margin-top: 30px;
        }
        .about-feature {
            flex: 1;
            text-align: center;
            text-decoration: none;
            color: var(--text);
        }
        .about-feature-icon {
            width: 64px;
            height: 64px;
            margin: 0 auto 12px;
            border: 1px solid var(--border);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent);
            transition: all 0.3s;
        }
        .about-feature:hover .about-feature-icon {
            border-color: var(--accent);
            background: rgba(247, 146, 27, 0.08);
        }
        .about-feature-icon .iconfont {
            font-size: 28px;
        }
        .about-feature span:last-child {
            font-size: 14px;
            font-weight: 500;
        }
        .about-stats-bar {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            margin-top: 60px;
            padding: 40px 0;
            border-top: 1px solid var(--border);
        }
        .about-stat {
            text-align: center;
            padding: 0 20px;
            border-right: 1px solid var(--border);
        }
        .about-stat:last-child {
            border-right: 0;
        }
        .about-stat h4 {
            font-size: 42px;
            font-weight: 700;
            color: var(--accent);
            line-height: 1;
            margin-bottom: 12px;
        }
        .about-stat .js-count-up {
            display: inline-block;
            transform: scale(.72);
            transform-origin: center;
            transition: transform .85s cubic-bezier(.2, .8, .2, 1);
        }
        .about-stat .js-count-up.is-counting {
            transform: scale(1);
        }
        .about-stat p {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.5;
            margin: 0;
        }

        /* ===== Strength (3D Carousel) ===== */
        /* ===== Strength Section - 3D Carousel ===== */
        .strength-section {
            background: linear-gradient(rgba(255,255,255,.85), rgba(255,255,255,.85)), url('/uploadfile/2026/0617/strength-bg.webp') center/cover no-repeat;
            overflow: hidden;
        }
        .strength-swiper {
            margin-top: 50px;
            padding: 70px 0 56px;
            perspective: 1440px;
            perspective-origin: center center;
            overflow: visible;
            width: min(1560px, 100%);
            max-width: 100%;
            margin-left: auto;
            margin-right: auto;
            transform-style: preserve-3d;
        }
        .strength-swiper .swiper-wrapper {
            transform-style: preserve-3d;
            align-items: center;
        }
        .strength-swiper .swiper-slide {
            width: 480px;
            height: 360px;
            background: var(--primary-light);
            border: 1px solid var(--border);
            border-radius: 14px;
            overflow: hidden;
            backface-visibility: hidden;
            transform-origin: center center;
            transform-style: preserve-3d;
            flex-shrink: 0;
            will-change: transform, opacity;
            box-shadow: 0 24px 70px rgba(15, 23, 42, .16);
            cursor: grab;
        }
        .strength-img {
            height: 100%;
            background: linear-gradient(135deg, #e8ecf1, #d1d5db);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-muted);
            font-size: 18px;
            font-weight: 700;
        }
        .strength-img img {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: cover;
            transition: transform .6s ease;
        }
        .strength-swiper .swiper-slide:hover .strength-img img {
            transform: scale(1.05);
        }
        .strength-info {
            position: absolute;
            inset: auto 0 0 0;
            padding: 78px 28px 24px;
            text-align: left;
            color: #fff;
            background: linear-gradient(180deg, rgba(15,23,42,0) 0%, rgba(15,23,42,.82) 58%, rgba(15,23,42,.94) 100%);
        }
        .strength-info span {
            display: inline-flex;
            margin-bottom: 9px;
            color: var(--accent);
            font-size: 12px;
            line-height: 1;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: .08em;
        }
        .strength-info h3 {
            margin: 0 0 8px;
            color: #fff;
            font-size: 22px;
            line-height: 1.2;
            font-weight: 700;
        }
        .strength-info p {
            margin: 0;
            font-size: 14px;
            font-weight: 500;
            line-height: 1.55;
            color: rgba(255, 255, 255, .82);
        }
        .strength-swiper .swiper-button-next,
        .strength-swiper .swiper-button-prev {
            color: var(--accent);
            width: 50px;
            height: 50px;
            background: rgba(30, 58, 95, 0.8);
            border-radius: 50%;
            backdrop-filter: blur(4px);
            top: 50%;
            transform: translateY(-50%);
        }
        .strength-swiper .swiper-button-next {
            right: 20px;
        }
        .strength-swiper .swiper-button-prev {
            left: 20px;
        }
        .strength-swiper .swiper-button-next:after,
        .strength-swiper .swiper-button-prev:after {
            font-size: 20px;
        }
        .strength-action {
            display: flex;
            justify-content: center;
            margin-top: 6px;
            padding-bottom: 34px;
        }

        @media (max-width: 1023px) {
            .strength-swiper .swiper-slide {
                width: 72vw;
                height: 280px;
            }
        }

        @media (max-width: 767px) {
            .strength-swiper {
                padding: 35px 0 44px;
            }
            .strength-swiper .swiper-slide {
                width: 82vw;
                height: 240px;
            }
            .strength-info {
                padding: 64px 20px 18px;
            }
            .strength-info h3 {
                font-size: 18px;
            }
            .strength-info p {
                font-size: 13px;
            }
            .strength-action {
                padding-bottom: 24px;
            }
        }

        /* ===== FAQ ===== */
        .faq-section {
            background: var(--primary);
        }
        .faq-card-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 36px;
            margin-top: 50px;
        }
        .faq-card {
            display: flex;
            flex-direction: column;
            min-height: 604px;
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 8px;
            overflow: hidden;
            transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
        }
        .faq-card:hover {
            transform: translateY(-4px);
            border-color: rgba(247, 146, 27, .35);
            box-shadow: 0 18px 42px rgba(15, 23, 42, .08);
        }
        .faq-card-img {
            height: 340px;
            background: #fff;
            overflow: hidden;
        }
        .faq-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .45s ease;
        }
        .faq-card:hover .faq-card-img img {
            transform: scale(1.04);
        }
        .faq-card-body {
            display: flex;
            flex: 1;
            flex-direction: column;
            padding: 34px 32px 32px;
        }
        .faq-card-body h3 {
            display: -webkit-box;
            min-height: 56px;
            margin: 0 0 20px;
            overflow: hidden;
            color: var(--text);
            font-size: 20px;
            line-height: 1.4;
            font-weight: 600;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
        }
        .faq-card-body p {
            display: -webkit-box;
            overflow: hidden;
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.8;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
        }
        .faq-card-foot {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: auto;
            padding-top: 44px;
        }
        .faq-card-foot span {
            color: #53667a;
            font-size: 16px;
            line-height: 1;
        }
        .faq-card-foot em {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 34px;
            height: 34px;
            border-radius: 50%;
            background: #145da0;
            color: #fff;
            font-size: 30px;
            font-style: normal;
            line-height: 1;
            transition: background .25s ease, transform .25s ease;
        }
        .faq-card:hover .faq-card-foot em {
            background: var(--accent);
            transform: translateX(3px);
        }

        /* ===== Contact ===== */
        .contact-section {
            background: linear-gradient(180deg, var(--primary) 0%, var(--primary-light) 100%);
        }
        .contact-content {
            display: flex;
            gap: 60px;
            margin-top: 50px;
        }
        .contact-info {
            flex: 1;
        }
        .contact-info h3 {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 20px;
        }
        .contact-info p {
            font-size: 15px;
            color: var(--text-muted);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .contact-info .icon {
            width: 40px; height: 40px;
            background: rgba(247,146,27,0.1);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            flex-shrink: 0;
        }
        .contact-form {
            flex: 1;
            background: var(--primary-light);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 40px;
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            font-size: 13px;
            font-weight: 500;
            margin-bottom: 8px;
            color: var(--text-muted);
        }
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 14px 16px;
            background: var(--primary);
            border: 1px solid var(--border);
            border-radius: 8px;
            color: var(--primary);
            font-size: 14px;
            transition: border-color 0.3s;
        }
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--accent);
        }
        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }

        @media (max-width: 1023px) {
            .flux-heading { position: relative; padding: 36px 28px 0; }
            .flux-heading .section-heading { font-size: 32px; }
            .flux-feature-swiper { min-height: 0; }
            .flux-feature {
                min-height: 0;
                grid-template-columns: 1fr;
                padding: 28px;
                gap: 28px;
            }
            .flux-feature-copy { max-width: none; }
            .flux-feature-media { height: 320px; }
            .flux-feature-nav { right: 28px; bottom: 28px; }
            .flux-product-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
            .flux-product-item:nth-child(5n) { border-right: 1px solid #dfe7ef; }
            .flux-product-item:nth-child(2n) { border-right: 0; }
            .flux-product-item:nth-last-child(-n+5) { border-bottom: 1px solid #dfe7ef; }
            .flux-product-item:nth-last-child(-n+2) { border-bottom: 0; }
            .wire-feature {
                min-height: 0;
                grid-template-columns: 1fr;
                padding: 42px 32px 104px;
                gap: 28px;
            }
            .wire-feature::before {
                right: -120px;
                width: 360px;
                height: 360px;
            }
            .wire-feature-media { height: 280px; }
            .wire-product-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
            .hero-content h1 { font-size: 36px; }
            .products-grid { grid-template-columns: repeat(2, 1fr); }
            .advantages-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(4, auto); }
            .advantage-item { min-height: 180px; padding: 24px; }
            .advantage-num { font-size: 52px; }
            .advantages-logo { width: 46px; height: 46px; padding: 0; box-shadow: 0 0 0 3px rgba(247,251,254,.92); border-radius: 9px; }
            .advantages-logo img { width: 64px; }
            .advantages-logo::before,
            .advantages-logo::after { inset: -5px; border-radius: 12px; }
                        .about-content { flex-direction: column; gap: 40px; }
            .about-img { width: 100%; height: 320px; }
            .about-heading .section-heading { font-size: 32px; }
            .about-features { gap: 16px; }
            .about-feature-icon { width: 54px; height: 54px; }
            .about-feature-icon .iconfont { font-size: 24px; }
            .about-stats-bar { grid-template-columns: repeat(2, 1fr); gap: 24px 0; padding: 30px 0; }
            .about-stat:nth-child(2) { border-right: 0; }
            .about-stat:nth-child(1),
            .about-stat:nth-child(2) { border-bottom: 1px solid var(--border); padding-bottom: 24px; }
            .about-stat h4 { font-size: 32px; }
            .contact-content { flex-direction: column; }
            .faq-card-grid { grid-template-columns: 1fr; gap: 24px; }
            .faq-card { min-height: auto; }
            .faq-card-img { height: 280px; }
            .process-card { flex-direction: column; padding: 30px; }
            .process-right { width: 100%; }
            .section { padding: 70px 0; }
            .section-heading { font-size: 30px; line-height: 1.33; }
            .cta-banner.cta-banner-about .container {
                padding: 56px 24px;
                text-align: center;
            }
            .cta-banner.cta-banner-about h2 { font-size: 28px; }
            .process-stack { display: block; }
            .process-swiper { display: none; }
        }
        @media (max-width: 767px) {
            #process.process-section { padding: 40px 0; }
            #process.process-section .section-desc { margin-bottom: 0; }
            .process-stack { margin-top: 22px; min-height: 400px; }
            .process-card { gap: 14px; padding: 18px; border-radius: 14px; }
            .process-card:not(:first-child) { top: calc(100% + 48px); }
            .process-step { font-size: 36px; margin-bottom: 8px; }
            .process-left h3 { font-size: 19px; line-height: 1.28; margin-bottom: 8px; }
            .process-left p { font-size: 13px; line-height: 1.55; }
            .process-img { padding-bottom: 48%; border-radius: 10px; }
            .flux-heading { padding: 30px 18px 0; }
            .flux-heading .section-heading { font-size: 30px; line-height: 1.33; }
            .flux-feature { padding: 24px 18px 88px; }
            .flux-feature-copy h3 { font-size: 28px; }
            .flux-feature-copy p { font-size: 14px; }
            .flux-feature-media { height: 240px; }
            .flux-feature-nav {
                right: 18px;
                bottom: 22px;
            }
            .flux-feature-nav button {
                width: 48px;
                height: 48px;
            }
            .flux-product-list { grid-template-columns: 1fr; }
            .flux-product-item,
            .flux-product-item:nth-child(2n),
            .flux-product-item:nth-child(5n) {
                border-right: 0;
            }
            .flux-product-item:nth-last-child(-n+2) { border-bottom: 1px solid #dfe7ef; }
            .flux-product-item:last-child { border-bottom: 0; }
            .wire-heading .section-heading { font-size: 30px; line-height: 1.33; }
            .wire-feature {
                padding: 34px 22px 92px;
            }
            .wire-feature-copy h3 {
                font-size: 28px;
            }
            .wire-feature-copy p {
                font-size: 14px;
            }
            .wire-feature-media {
                height: 220px;
            }
            .wire-feature-nav {
                right: 22px;
                bottom: 24px;
            }
            .wire-feature-nav button {
                width: 48px;
                height: 48px;
            }
            .wire-product-list {
                grid-template-columns: 1fr;
            }
            .product-list-section .wire-product-list,
            .related-section .wire-product-list {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 12px;
            }
            .wire-product-item {
                min-height: 220px;
                padding: 16px 10px 18px;
                justify-content: flex-start;
            }
            .product-list-section .wire-product-item {
                min-height: 220px;
            }
            .wire-product-item img {
                height: 112px;
                margin-bottom: 16px;
            }
            .wire-product-item strong {
                font-size: 15px;
                line-height: 1.25;
                word-break: normal;
                overflow-wrap: anywhere;
            }
            .wire-product-item span {
                font-size: 13px;
            }
            .cta-banner {
                margin: 0 0 70px;
            }
            .cta-banner .container {
                padding-top: 90px;
                padding-bottom: 90px;
            }
            .products-grid { grid-template-columns: 1fr; }
            .advantages-grid { grid-template-columns: 1fr; }
            .advantages-logo { display: none; }
            .hero-banner {
                height: 360px;
                min-height: 360px;
            }
            .hero-banner .swiper,
            .hero-banner .swiper-wrapper,
            .hero-banner .swiper-slide {
                height: 100%;
            }
            .hero-content {
                max-width: 92%;
                padding-top: 44px;
            }
            .hero-content h1 { font-size: 28px; }
            .hero-content p {
                font-size: 15px;
                line-height: 1.55;
                margin-bottom: 18px;
            }
            .hero-buttons { flex-direction: column; }
            .about-stats-bar { grid-template-columns: 1fr; }
            .about-stat { border-right: 0; border-bottom: 1px solid var(--border); padding: 0 0 20px; }
            .about-stat:last-child { border-bottom: 0; }
            .about-stat:nth-child(1),
            .about-stat:nth-child(2) { border-bottom: 1px solid var(--border); padding-bottom: 20px; }
            .about-features { flex-direction: column; gap: 20px; }
            .about-feature { display: flex; align-items: center; gap: 16px; text-align: left; }
            .about-feature-icon { margin: 0; }
            .faq-card-img { height: 220px; }
            .faq-card-body { padding: 26px 22px 24px; }
            .faq-card-foot { padding-top: 34px; }
        }
        .breadcrumb {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-bottom: 20px;
            font-size: 14px;
            color: var(--text-muted);
        }
        .breadcrumb a { color: var(--text-muted); transition: color 0.3s; }
        .breadcrumb a:hover { color: var(--accent); }
        .breadcrumb .sep { color: var(--border); }

        /* ===== CTA ===== */
        .cta-section {
            padding: 100px 0;
            background: var(--primary-light);
            text-align: center;
        }
        .cta-section h2 {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 15px;
        }
        .cta-section p {
            font-size: 16px;
            color: var(--text-muted);
            margin-bottom: 30px;
        }
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 32px;
            background: var(--accent);
            color: var(--primary);
            font-size: 14px;
            font-weight: 600;
            border-radius: 6px;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }
        .btn:hover {
            background: var(--accent-dark);
            transform: translateY(-2px);
        }


        @media (max-width: 767px) {
            .news-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr; }
        }
        .breadcrumb {
            display: flex;
            gap: 10px;
            align-items: center;
            font-size: 14px;
            color: var(--text-muted);
        }
        .breadcrumb a:hover { color: var(--accent); }
        .breadcrumb .sep { color: var(--border); }

        /* ===== Product Category Tabs ===== */
        .tab-nav {
            display: flex;
            gap: 10px;
            margin: 40px 0 30px;
            flex-wrap: wrap;
        }
        .tab-btn {
            padding: 12px 28px;
            background: transparent;
            border: 1px solid var(--border);
            border-radius: 6px;
            color: var(--text-muted);
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s;
        }
        .tab-btn:hover, .tab-btn.active {
            background: var(--accent);
            border-color: var(--accent);
            color: var(--primary);
        }

        /* ===== Products Grid ===== */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
        }
        .product-card {
            background: var(--primary);
            border: 1px solid var(--border);
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.4s;
        }
        .product-card:hover {
            transform: translateY(-8px);
            border-color: var(--accent);
            box-shadow: 0 20px 40px rgba(0,0,0,0.04);
        }
        .product-img {
            height: 200px;
            background: linear-gradient(135deg, #e8ecf1 0%, #d1d5db 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            color: var(--text-muted);
        }
        .product-info {
            padding: 20px;
        }
        .product-info h3 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--primary);
        }
        .product-info p {
            font-size: 13px;
            color: var(--text-muted);
            margin-bottom: 15px;
            line-height: 1.6;
        }
        .product-info .link {
            font-size: 13px;
            color: var(--accent);
            font-weight: 500;
        }
        .product-info .link:hover { text-decoration: underline; }
        .product-tag {
            display: inline-block;
            padding: 3px 10px;
            background: rgba(247,146,27,0.1);
            color: var(--accent);
            font-size: 11px;
            border-radius: 4px;
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* ===== Product Comparison ===== */
        .comparison-section {
            background: var(--primary-light);
        }
        .comparison-table {
            width: 100%;
            margin-top: 50px;
            border-collapse: collapse;
        }
        .comparison-table th,
        .comparison-table td {
            padding: 18px 20px;
            text-align: left;
            border-bottom: 1px solid var(--border);
            font-size: 14px;
        }
        .comparison-table th {
            color: var(--accent);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-size: 13px;
        }
        .comparison-table td {
            color: var(--text-muted);
        }
        .comparison-table tr:hover td {
            color: var(--primary);
        }

        /* ===== CTA ===== */
        .cta-section {
            padding: 100px 0;
            background: linear-gradient(135deg, rgba(30,58,95,0.85), rgba(30,58,95,0.8));
            text-align: center;
        }
        .cta-section h2 {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 15px;
        }
        .cta-section p {
            font-size: 18px;
            color: var(--text-muted);
            margin-bottom: 30px;
        }

        @media (max-width: 1023px) {
            .products-grid { grid-template-columns: repeat(2, 1fr); }
            .section { padding: 70px 0; }
            .section-heading { font-size: 28px; }
            .comparison-table { font-size: 13px; }
            .comparison-table th, .comparison-table td { padding: 12px 14px; }
        }
        @media (max-width: 767px) {
            .products-grid { grid-template-columns: 1fr; }
            .comparison-table { display: block; overflow-x: auto; white-space: nowrap; }
        }
        .breadcrumb {
            display: flex;
            gap: 10px;
            align-items: center;
            font-size: 14px;
            color: var(--text-muted);
        }
        .breadcrumb a:hover { color: var(--accent); }
        .breadcrumb .sep { color: var(--border); }

        /* ===== Product Category Tabs ===== */
        .tab-nav {
            display: flex;
            gap: 10px;
            margin: 40px 0 30px;
            flex-wrap: wrap;
        }
        .tab-btn {
            padding: 12px 28px;
            background: transparent;
            border: 1px solid var(--border);
            border-radius: 6px;
            color: var(--text-muted);
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s;
        }
        .tab-btn:hover, .tab-btn.active {
            background: var(--accent);
            border-color: var(--accent);
            color: var(--primary);
        }

        /* ===== Products Grid ===== */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
        }
        .product-card {
            background: var(--primary);
            border: 1px solid var(--border);
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.4s;
        }
        .product-card:hover {
            transform: translateY(-8px);
            border-color: var(--accent);
            box-shadow: 0 20px 40px rgba(0,0,0,0.04);
        }
        .product-img {
            height: 200px;
            background: linear-gradient(135deg, #e8ecf1 0%, #d1d5db 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            color: var(--text-muted);
        }
        .product-info {
            padding: 20px;
        }
        .product-info h3 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--primary);
        }
        .product-info p {
            font-size: 13px;
            color: var(--text-muted);
            margin-bottom: 15px;
            line-height: 1.6;
        }
        .product-info .link {
            font-size: 13px;
            color: var(--accent);
            font-weight: 500;
        }
        .product-info .link:hover { text-decoration: underline; }
        .product-tag {
            display: inline-block;
            padding: 3px 10px;
            background: rgba(247,146,27,0.1);
            color: var(--accent);
            font-size: 11px;
            border-radius: 4px;
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* ===== Product Comparison ===== */
        .comparison-section {
            background: var(--primary-light);
        }
        .comparison-table {
            width: 100%;
            margin-top: 50px;
            border-collapse: collapse;
        }
        .comparison-table th,
        .comparison-table td {
            padding: 18px 20px;
            text-align: left;
            border-bottom: 1px solid var(--border);
            font-size: 14px;
        }
        .comparison-table th {
            color: var(--accent);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-size: 13px;
        }
        .comparison-table td {
            color: var(--text-muted);
        }
        .comparison-table tr:hover td {
            color: var(--primary);
        }

        /* ===== CTA ===== */
        .cta-section {
            padding: 100px 0;
            background: linear-gradient(135deg, rgba(30,58,95,0.85), rgba(30,58,95,0.8));
            text-align: center;
        }
        .cta-section h2 {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 15px;
        }
        .cta-section p {
            font-size: 18px;
            color: var(--text-muted);
            margin-bottom: 30px;
        }

        @media (max-width: 1023px) {
            .products-grid { grid-template-columns: repeat(2, 1fr); }
            .section { padding: 70px 0; }
            .section-heading { font-size: 28px; }
            .comparison-table { font-size: 13px; }
            .comparison-table th, .comparison-table td { padding: 12px 14px; }
        }
        @media (max-width: 767px) {
            .products-grid { grid-template-columns: 1fr; }
            .comparison-table { display: block; overflow-x: auto; white-space: nowrap; }
        }
        .breadcrumb {
            display: flex;
            gap: 10px;
            align-items: center;
            font-size: 14px;
            color: var(--text-muted);
        }
        .breadcrumb a:hover { color: var(--accent); }
        .breadcrumb .sep { color: var(--border); }

        /* ===== Wire Category Cards ===== */
        .wire-categories {
            background: var(--primary-light);
        }
        .wire-cat-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 50px;
        }
        .wire-cat-card {
            background: var(--primary);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 40px 30px;
            transition: all 0.4s;
        }
        .wire-cat-card:hover {
            border-color: var(--accent);
            transform: translateY(-5px);
        }
        .wire-cat-card .icon {
            width: 60px; height: 60px;
            background: rgba(247, 146, 27, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 24px;
        }
        .wire-cat-card h3 {
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 12px;
        }
        .wire-cat-card p {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.7;
            margin-bottom: 20px;
        }
        .wire-cat-card .features {
            margin-top: 15px;
            padding-top: 15px;
            border-top: 1px solid var(--border);
        }
        .wire-cat-card .features li {
            font-size: 13px;
            color: var(--text-muted);
            padding: 6px 0;
            padding-left: 20px;
            position: relative;
        }
        .wire-cat-card .features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--accent);
            font-weight: 700;
        }

        /* ===== Product Models Grid ===== */
        .models-section {
            background: var(--primary);
        }
        .models-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
            margin-top: 50px;
        }
        .model-card {
            background: var(--primary-light);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 25px;
            transition: all 0.4s;
        }
        .model-card:hover {
            border-color: var(--accent);
            transform: translateY(-5px);
        }
        .model-card .tag {
            display: inline-block;
            padding: 3px 10px;
            background: rgba(247,146,27,0.1);
            color: var(--accent);
            font-size: 11px;
            border-radius: 4px;
            margin-bottom: 12px;
            text-transform: uppercase;
        }
        .model-card h3 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 10px;
        }
        .model-card p {
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.7;
            margin-bottom: 15px;
        }
        .model-card .specs {
            font-size: 12px;
            color: var(--text-muted);
            padding-top: 12px;
            border-top: 1px solid var(--border);
        }
        .model-card .specs span {
            display: inline-block;
            margin-right: 12px;
        }

        /* ===== CTA ===== */
        .cta-section {
            padding: 100px 0;
            background: linear-gradient(135deg, rgba(30,58,95,0.85), rgba(30,58,95,0.8));
            text-align: center;
        }
        .cta-section h2 {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 15px;
        }
        .cta-section p {
            font-size: 18px;
            color: var(--text-muted);
            margin-bottom: 30px;
        }

        @media (max-width: 1023px) {
            .wire-cat-grid { grid-template-columns: 1fr; }
            .models-grid { grid-template-columns: repeat(2, 1fr); }
            .section { padding: 70px 0; }
            .section-heading { font-size: 28px; }
        }
        @media (max-width: 767px) {
            .models-grid { grid-template-columns: 1fr; }
        }
        .breadcrumb {
            display: flex;
            gap: 10px;
            align-items: center;
            font-size: 14px;
            color: var(--text-muted);
        }
        .breadcrumb a:hover { color: var(--accent); }
        .breadcrumb .sep { color: var(--border); }

        /* ===== Service Cards ===== */
        .services-section {
            background: var(--primary-light);
        }
        .service-cards {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            margin-top: 50px;
        }
        .service-card {
            background: var(--primary);
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 50px;
            transition: all 0.4s;
        }
        .service-card:hover {
            border-color: var(--accent);
            transform: translateY(-5px);
        }
        .service-card .badge {
            display: inline-block;
            padding: 6px 16px;
            background: rgba(247,146,27,0.1);
            color: var(--accent);
            font-size: 12px;
            font-weight: 600;
            border-radius: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
        }
        .service-card h2 {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 15px;
        }
        .service-card > p {
            font-size: 15px;
            color: var(--text-muted);
            line-height: 1.7;
            margin-bottom: 25px;
        }
        .service-features {
            margin-bottom: 30px;
        }
        .service-features li {
            font-size: 14px;
            color: var(--text-muted);
            padding: 8px 0;
            padding-left: 24px;
            position: relative;
            border-bottom: 1px solid rgba(51,65,85,0.3);
        }
        .service-features li:last-child { border-bottom: none; }
        .service-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--accent);
            font-weight: 700;
        }

        /* ===== Process Steps ===== */
        .process-section {
            background: var(--primary);
        }
        .process-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 20px;
            margin-top: 50px;
        }
        .process-step-card {
            background: var(--primary-light);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 30px 20px;
            text-align: center;
            transition: all 0.4s;
            position: relative;
        }
        .process-step-card:hover {
            border-color: var(--accent);
        }
        .process-step-card .step-num {
            font-size: 36px;
            font-weight: 800;
            color: rgba(245,158,11,0.2);
            line-height: 1;
            margin-bottom: 15px;
        }
        .process-step-card h3 {
            font-size: 15px;
            font-weight: 600;
            margin-bottom: 10px;
        }
        .process-step-card p {
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.6;
        }
        .process-arrow {
            position: absolute;
            right: -20px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--accent);
            font-size: 20px;
            z-index: 2;
        }

        /* ===== Capabilities ===== */
        .capabilities-section {
            background: var(--primary-light);
        }
        .capabilities-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
            margin-top: 50px;
        }
        .capability-card {
            background: var(--primary);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 35px 25px;
            text-align: center;
            transition: all 0.4s;
        }
        .capability-card:hover {
            border-color: var(--accent);
            transform: translateY(-5px);
        }
        .capability-card .icon {
            width: 60px; height: 60px;
            background: rgba(247,146,27,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 18px;
            font-size: 24px;
        }
        .capability-card h3 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 10px;
        }
        .capability-card p {
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.6;
        }

        /* ===== CTA ===== */
        .cta-section {
            padding: 100px 0;
            background: linear-gradient(135deg, rgba(30,58,95,0.85), rgba(30,58,95,0.8));
            text-align: center;
        }
        .cta-section h2 {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 15px;
        }
        .cta-section p {
            font-size: 18px;
            color: var(--text-muted);
            margin-bottom: 30px;
        }

        @media (max-width: 1023px) {
            .service-cards { grid-template-columns: 1fr; }
            .process-grid { grid-template-columns: repeat(3, 1fr); }
            .process-arrow { display: none; }
            .capabilities-grid { grid-template-columns: repeat(2, 1fr); }
            .section { padding: 70px 0; }
            .section-heading { font-size: 28px; }
        }
        @media (max-width: 767px) {
            .process-grid { grid-template-columns: repeat(2, 1fr); }
            .capabilities-grid { grid-template-columns: 1fr; }
            .service-card { padding: 30px; }
        }
        .breadcrumb {
            display: flex;
            gap: 10px;
            align-items: center;
            font-size: 14px;
            color: var(--text-muted);
        }
        .breadcrumb a:hover { color: var(--accent); }
        .breadcrumb .sep { color: var(--border); }

        /* ===== About Intro ===== */
        .about-intro {
            background: var(--primary-light);
        }
        .about-intro-content {
            display: flex;
            gap: 72px;
            align-items: center;
            margin-top: 50px;
        }
        .about-intro-img {
            width: 620px;
            flex-shrink: 0;
        }
        .about-intro-img .img-box {
            width: 100%;
            padding-bottom: 76%;
            position: relative;
            background: linear-gradient(135deg, #e8ecf1, #d1d5db);
            border-radius: 16px;
            overflow: hidden;
        }
        .about-intro-img .img-box span {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-muted);
            font-size: 14px;
        }
        .about-intro-img .img-box img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .about-intro-text { flex: 1; }
        .about-intro-text p {
            font-size: 17px;
            color: var(--text-muted);
            line-height: 1.9;
            margin-bottom: 24px;
        }
        .about-intro-text p strong {
            color: var(--text);
            font-weight: 600;
        }
        .about-metrics-strip {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            margin: 58px 0 -18px;
            padding: 38px 34px;
            background: #f28c00;
            border-radius: 22px;
            box-shadow: 0 18px 45px rgba(242, 140, 0, .24);
        }
        .about-metric {
            min-height: 82px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #fff;
        }
        .about-metric + .about-metric {
            border-left: 1px solid rgba(255,255,255,.62);
        }
        .about-metric h4 {
            margin: 0 0 12px;
            color: #fff;
            font-size: 40px;
            line-height: 1;
            font-weight: 800;
        }
        .about-metric p {
            margin: 0;
            color: #fff;
            font-size: 14px;
            line-height: 1.35;
            font-weight: 500;
        }
        .about-metric .js-count-up {
            display: inline-block;
            transform: scale(.72);
            transform-origin: center;
            transition: transform .85s cubic-bezier(.2, .8, .2, 1);
        }
        .about-metric .js-count-up.is-counting {
            transform: scale(1);
        }
        .about-stats {
            display: flex;
            gap: 40px;
            margin: 30px 0;
        }
        .stat-item h4 {
            font-size: 32px;
            font-weight: 700;
            color: var(--accent);
        }
        .stat-item p {
            font-size: 13px;
            color: var(--text-muted);
            margin: 0;
        }

        /* ===== Certifications ===== */
        .certifications {
            background-image: linear-gradient(180deg, rgba(247,251,254,.88), rgba(247,251,254,.82)), url('/static/default/images/certifications-bg.jpg');
            background-position: center;
            background-size: cover;
            background-repeat: no-repeat;
        }
        .cert-grid {
            overflow: hidden;
            margin-top: 50px;
        }
        .cert-track {
            display: flex;
            width: max-content;
            gap: 32px;
            animation: certMarquee 34s linear infinite;
        }
        .cert-grid:hover .cert-track {
            animation-play-state: paused;
        }
        @keyframes certMarquee {
            from { transform: translateX(0); }
            to { transform: translateX(calc(-50% - 16px)); }
        }
        .cert-card {
            flex: 0 0 auto;
            padding: 0;
            text-align: center;
            overflow: hidden;
            transition: transform 0.35s ease;
        }
        .cert-card:hover {
            transform: translateY(-5px);
        }
        .cert-img {
            height: 260px;
            margin-bottom: 14px;
            background: transparent;
            border: 0;
            border-radius: 0;
            overflow: visible;
        }
        .cert-img img {
            height: 100%;
            width: auto;
            max-width: none;
            object-fit: contain;
            padding: 0;
        }
        .cert-img-placeholder {
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent);
            font-size: 22px;
            font-weight: 700;
            letter-spacing: .08em;
        }
        .cert-card h3 {
            font-size: 15px;
            font-weight: 500;
            margin-bottom: 0;
            color: var(--text-muted);
        }

        /* ===== History Timeline ===== */
        .history-section {
            background: var(--primary-light);
        }
        .timeline {
            margin-top: 50px;
            position: relative;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }
        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 2px;
            background: var(--border);
            transform: translateX(-50%);
        }
        .timeline-item {
            display: flex;
            justify-content: flex-end;
            padding-right: 50%;
            position: relative;
            margin-bottom: 40px;
        }
        .timeline-item:nth-child(even) {
            justify-content: flex-start;
            padding-right: 0;
            padding-left: 50%;
        }
        .timeline-dot {
            position: absolute;
            left: 50%;
            top: 5px;
            width: 16px;
            height: 16px;
            background: var(--accent);
            border-radius: 50%;
            transform: translateX(-50%);
            border: 3px solid var(--primary);
            z-index: 2;
        }
        .timeline-content {
            background: var(--primary);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 25px;
            max-width: 380px;
        }
        .timeline-content h4 {
            font-size: 18px;
            font-weight: 600;
            color: var(--accent);
            margin-bottom: 8px;
        }
        .timeline-content p {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.7;
        }

        /* ===== Team ===== */
        .team-section {
            background: var(--primary);
        }
        .team-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 50px;
        }
        .team-card {
            background: transparent;
            border: 0;
            border-radius: 0;
            overflow: hidden;
            transition: transform 0.35s ease;
        }
        .team-card:hover {
            transform: translateY(-5px);
        }
        .team-img {
            height: 300px;
            background: linear-gradient(135deg, #e8ecf1, #d1d5db);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-muted);
            font-size: 14px;
            overflow: hidden;
        }
        .team-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        .team-info {
            position: static;
            padding: 16px 8px 0;
            text-align: center;
            background: transparent;
        }
        .team-info h3 {
            font-size: 15px;
            font-weight: 500;
            margin-bottom: 0;
            color: var(--text-muted);
        }
        .team-info p {
            font-size: 14px;
            color: var(--accent);
            margin-bottom: 10px;
        }
        .team-info span {
            font-size: 13px;
            color: var(--text-muted);
        }

        @media (max-width: 1023px) {
            .about-intro-content { flex-direction: column; }
            .about-intro-img { width: 100%; }
            .about-metrics-strip {
                margin-top: 44px;
                padding: 30px 24px;
            }
            .about-metric h4 { font-size: 34px; }
            .cert-img { height: 230px; }
            .team-grid { grid-template-columns: repeat(2, 1fr); }
            .section { padding: 70px 0; }
            .section-heading { font-size: 28px; }
            .timeline::before { left: 20px; }
            .timeline-item,
            .timeline-item:nth-child(even) {
                justify-content: flex-start;
                padding-left: 50px;
                padding-right: 0;
            }
            .timeline-dot { left: 20px; transform: translateX(-50%); }
        }
        @media (max-width: 767px) {
            .about-metrics-strip {
                grid-template-columns: 1fr;
                gap: 0;
                padding: 26px 22px;
                border-radius: 16px;
            }
            .about-metric {
                min-height: 94px;
            }
            .about-metric + .about-metric {
                border-left: 0;
                border-top: 1px solid rgba(255,255,255,.48);
            }
            .cert-img { height: 200px; }
            .team-grid { grid-template-columns: 1fr; }
            .about-stats { flex-wrap: wrap; gap: 20px; }
        }
        .breadcrumb {
            display: flex;
            gap: 10px;
            align-items: center;
            font-size: 14px;
            color: var(--text-muted);
        }
        .breadcrumb a:hover { color: var(--accent); }
        .breadcrumb .sep { color: var(--border); }

        /* ===== Applications Grid ===== */
        .applications-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 25px;
            margin-top: 50px;
        }
        .app-card {
            background: var(--primary);
            border: 1px solid var(--border);
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.4s;
        }
        .app-card:hover {
            transform: translateY(-8px);
            border-color: var(--accent);
            box-shadow: 0 20px 40px rgba(0,0,0,0.04);
        }
        .app-img {
            height: 160px;
            background: linear-gradient(135deg, #e8ecf1 0%, #d1d5db 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            color: var(--text-muted);
        }
        .app-info {
            padding: 20px;
        }
        .app-info h3 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--primary);
        }
        .app-info p {
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.6;
        }

        /* ===== Application Detail ===== */
        .app-detail {
            background: var(--primary-light);
        }
        .app-detail-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            margin-top: 50px;
        }
        .app-detail-card {
            background: var(--primary);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 35px;
            transition: all 0.4s;
        }
        .app-detail-card:hover {
            border-color: var(--accent);
        }
        .app-detail-card .icon {
            width: 50px; height: 50px;
            background: rgba(247,146,27,0.1);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 18px;
            font-size: 20px;
        }
        .app-detail-card h3 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 12px;
        }
        .app-detail-card p {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.7;
            margin-bottom: 15px;
        }
        .app-detail-card .products-used {
            font-size: 13px;
            color: var(--accent);
            padding-top: 12px;
            border-top: 1px solid var(--border);
        }

        /* ===== CTA ===== */
        .cta-section {
            padding: 100px 0;
            background: linear-gradient(135deg, rgba(30,58,95,0.85), rgba(30,58,95,0.8));
            text-align: center;
        }
        .cta-section h2 {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 15px;
        }
        .cta-section p {
            font-size: 18px;
            color: var(--text-muted);
            margin-bottom: 30px;
        }

        @media (max-width: 1023px) {
            .applications-grid { grid-template-columns: repeat(3, 1fr); }
            .app-detail-grid { grid-template-columns: 1fr; }
            .section { padding: 70px 0; }
            .section-heading { font-size: 28px; }
        }
        @media (max-width: 767px) {
            .applications-grid { grid-template-columns: repeat(2, 1fr); }
        }

        /* ===== Application Article List ===== */
        .app-section {
            padding: 110px 0;
            background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
        }
        .app-section-hd { text-align: center; max-width: 900px; margin: 0 auto 70px; }
        .app-section-hd .section-label {
            display: inline-block;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--c-brand);
            margin-bottom: 14px;
        }
        .app-section-hd .section-heading {
            font-size: 42px;
            font-weight: 800;
            color: var(--c-brand-dark);
            margin-bottom: 18px;
            letter-spacing: 1px;
        }
        .app-section-hd .section-desc {
            font-size: 17px;
            line-height: 1.8;
            color: var(--c-muted);
            margin-left: auto;
            margin-right: auto;
            text-align: center;
        }
        .app-article-list {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 20px;
        }
        .app-article-card {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            min-height: 100%;
            padding: 30px;
            background: #fff;
            border: 1px solid #e1e7ef;
            border-radius: 12px;
            box-shadow: 0 8px 24px rgba(15,23,42,.05);
            transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
        }
        .app-article-card:hover {
            border-color: rgba(0,63,255,.36);
            box-shadow: 0 14px 30px rgba(15,23,42,.10);
            transform: translateY(-3px);
        }
        .app-article-body {
            display: flex;
            flex-direction: column;
            flex: 1;
            width: 100%;
        }
        .app-article-title {
            font-size: 30px;
            font-weight: 800;
            color: var(--c-brand-dark);
            margin-bottom: 14px;
            line-height: 1.2;
        }
        .app-article-title a { color: inherit; }
        .app-article-summary {
            font-size: 15px;
            color: var(--c-muted);
            line-height: 1.9;
            margin-bottom: 24px;
        }
        .app-article-products { margin: 4px 0 22px; }
        .app-article-product-links { display: flex; flex-wrap: wrap; gap: 8px; }
        .app-article-product-link { display: inline-flex; align-items: center; gap: 7px; min-height: 44px; padding: 10px 14px; border: 1px solid #dfe4ec; border-radius: 999px; color: var(--c-brand); font-size: 13px; font-weight: 600; line-height: 1.2; transition: .2s ease; }
        .app-article-product-link svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
        .app-article-product-link:hover { border-color: var(--c-brand); background: var(--c-brand); color: #fff; }
        .app-article-more {
            display: none;
        }
        @media (max-width: 1199px) {
            .app-article-title { font-size: 26px; }
        }
        @media (max-width: 767px) {
            .app-section-hd .section-heading { font-size: 28px; }
            .app-article-list { grid-template-columns: 1fr; gap: 14px; }
            .app-article-card { padding: 24px; }
            .app-article-title { font-size: 22px; }
        }

        .application-detail-section { padding: 80px 0; background: #f6f8fb; }
        .application-detail { max-width: 1180px; padding: 56px 72px; margin: 0 auto; background: #fff; border: 1px solid #e1e7ef; border-radius: 12px; }
        .application-back { display: inline-flex; min-height: 44px; align-items: center; color: var(--c-brand); font-size: 14px; font-weight: 700; }
        .application-detail-title { margin: 24px 0 18px; color: var(--c-brand-dark); font-size: 42px; font-weight: 800; line-height: 1.16; }
        .application-detail-lead { max-width: 760px; margin: 0; color: var(--c-muted); font-size: 17px; line-height: 1.8; }
        .application-detail-products { padding: 28px 0; margin: 30px 0; border-top: 1px solid #e5eaf0; border-bottom: 1px solid #e5eaf0; }
        .application-detail-body { color: var(--c-text); font-size: 16px; line-height: 1.9; }
        .application-detail-nav { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-top: 48px; padding-top: 26px; border-top: 1px solid #e5eaf0; }
        .application-detail-nav a { min-height: 76px; padding: 14px 16px; border: 1px solid #e1e7ef; border-radius: 8px; color: var(--c-brand-dark); transition: .2s ease; }
        .application-detail-nav a:last-child { text-align: right; }
        .application-detail-nav a:hover { border-color: var(--c-brand); color: var(--c-brand); }
        .application-detail-nav span { display: block; margin-bottom: 6px; color: var(--c-muted); font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
        .application-detail-nav strong { font-size: 14px; line-height: 1.4; }
        @media (max-width: 767px) {
            .application-detail-section { padding: 40px 0; }
            .application-detail { padding: 28px 24px; border-radius: 0; }
            .application-detail-title { font-size: 30px; }
            .application-detail-lead { font-size: 16px; }
            .application-detail-nav { grid-template-columns: 1fr; }
            .application-detail-nav a:last-child { text-align: left; }
        }

        .breadcrumb {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-bottom: 20px;
            font-size: 14px;
            color: var(--text-muted);
        }
        .breadcrumb a { color: var(--text-muted); transition: color 0.3s; }
        .breadcrumb a:hover { color: var(--accent); }
        .breadcrumb .sep { color: var(--border); }

        /* ===== Contact Section ===== */
        .contact-section {
            padding: 100px 0;
            background: #07142a;
            color: #fff;
        }
        .contact-section .section-heading {
            color: #fff;
        }
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            margin-top: 50px;
        }
        .contact-info h3 {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 30px;
            color: #fff;
        }
        .contact-list {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }
        .contact-item {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        .contact-item-whatsapp {
            align-items: flex-start;
        }
        .contact-icon {
            width: 52px;
            height: 52px;
            background: var(--accent);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            flex-shrink: 0;
        }
        .contact-icon .iconfont {
            font-size: 24px;
        }
        .contact-icon-whatsapp .iconfont {
            font-size: 26px;
        }
        .contact-item h4 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 4px;
            color: #fff;
        }
        .contact-item p {
            font-size: 14px;
            color: rgba(255,255,255,.72);
            margin: 0;
        }
        .whatsapp-qr {
            display: inline-flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            width: 126px;
            margin-top: 14px;
            color: inherit;
            text-align: center;
        }
        .whatsapp-qr img {
            display: block;
            width: 110px;
            height: 110px;
            padding: 6px;
            border-radius: 10px;
            background: #fff;
            object-fit: contain;
        }
        .whatsapp-qr span {
            font-size: 12px;
            line-height: 1.4;
        }

        /* Form */
        .contact-form {
            background: #fff;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 20px 60px rgba(0,0,0,.25);
            color: var(--text);
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 8px;
            color: var(--text);
        }
        .input-wrap {
            position: relative;
        }
        .input-icon {
            position: absolute;
            left: 16px;
            top: 50%;
            transform: translateY(-50%);
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #9ca3af;
            pointer-events: none;
        }
        .input-icon .iconfont { font-size: 18px; }
        .input-icon-top {
            top: 16px;
            transform: none;
        }
        .input-wrap input,
        .input-wrap textarea {
            width: 100%;
            padding: 14px 18px 14px 46px;
            background: #f8f9fb;
            border: 1px solid #e5e7eb;
            border-radius: 10px;
            color: #1f2937;
            font-size: 14px;
            font-family: inherit;
            transition: border-color 0.3s;
        }
        .input-wrap input:focus,
        .input-wrap textarea:focus {
            outline: none;
            border-color: var(--accent);
        }
        .input-wrap textarea {
            min-height: 120px;
            resize: vertical;
        }
        .privacy-consent {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin: 4px 0 20px;
            color: var(--text-muted);
            font-size: 12px;
            line-height: 1.6;
            cursor: pointer;
        }
        .privacy-consent input {
            width: 16px;
            height: 16px;
            margin: 2px 0 0;
            flex: 0 0 auto;
            accent-color: var(--accent);
        }
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 32px;
            background: var(--accent);
            color: #fff;
            font-size: 14px;
            font-weight: 600;
            border-radius: 6px;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }
        .btn:hover {
            background: var(--accent-dark);
            transform: translateY(-2px);
        }
        .btn-full {
            width: 100%;
            justify-content: center;
        }
        .btn svg {
            width: 18px;
            height: 18px;
        }

        /* Map */
        .map-section {
            padding: 0 0 100px;
            background: var(--primary);
        }
        .map-container {
            width: 100%;
            height: 400px;
            background: linear-gradient(135deg, #e8ecf1, #d1d5db);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-muted);
            font-size: 16px;
            border: 1px solid var(--border);
        }


        /* Contact page override */
        .page-contact .contact-section {
            background: #fff;
            color: var(--text);
        }
        .page-contact .contact-info h3 { color: var(--text); }
        .page-contact .contact-item h4 { color: var(--text); }
        .page-contact .contact-item p { color: var(--text-muted); }

        @media (max-width: 1023px) {
            .contact-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 767px) {
            .footer-grid { grid-template-columns: 1fr; }
            .contact-form { padding: 25px; }
            .whatsapp-qr { display: none; }
        }
        .breadcrumb {
            display: flex;
            gap: 10px;
            align-items: center;
            font-size: 14px;
            color: var(--text-muted);
        }
        .breadcrumb a:hover { color: var(--accent); }
        .breadcrumb .sep { color: var(--border); }

        /* ===== Service Cards ===== */
        .services-section {
            background: var(--primary-light);
        }
        .service-cards {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            margin-top: 50px;
        }
        .service-card {
            background: var(--primary);
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 50px;
            transition: all 0.4s;
        }
        .service-card:hover {
            border-color: var(--accent);
            transform: translateY(-5px);
        }
        .service-card .badge {
            display: inline-block;
            padding: 6px 16px;
            background: rgba(247,146,27,0.1);
            color: var(--accent);
            font-size: 12px;
            font-weight: 600;
            border-radius: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
        }
        .service-card h2 {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 15px;
        }
        .service-card > p {
            font-size: 15px;
            color: var(--text-muted);
            line-height: 1.7;
            margin-bottom: 25px;
        }
        .service-features {
            margin-bottom: 30px;
        }
        .service-features li {
            font-size: 14px;
            color: var(--text-muted);
            padding: 8px 0;
            padding-left: 24px;
            position: relative;
            border-bottom: 1px solid rgba(51,65,85,0.3);
        }
        .service-features li:last-child { border-bottom: none; }
        .service-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--accent);
            font-weight: 700;
        }

        /* ===== Process Steps ===== */
        .process-section {
            background: var(--primary);
        }
        .process-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 20px;
            margin-top: 50px;
        }
        .process-step-card {
            background: var(--primary-light);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 30px 20px;
            text-align: center;
            transition: all 0.4s;
            position: relative;
        }
        .process-step-card:hover {
            border-color: var(--accent);
        }
        .process-step-card .step-num {
            font-size: 36px;
            font-weight: 800;
            color: rgba(245,158,11,0.2);
            line-height: 1;
            margin-bottom: 15px;
        }
        .process-step-card h3 {
            font-size: 15px;
            font-weight: 600;
            margin-bottom: 10px;
        }
        .process-step-card p {
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.6;
        }
        .process-arrow {
            position: absolute;
            right: -20px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--accent);
            font-size: 20px;
            z-index: 2;
        }

        /* ===== Capabilities ===== */
        .capabilities-section {
            background: var(--primary-light);
        }
        .capabilities-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
            margin-top: 50px;
        }
        .capability-card {
            background: var(--primary);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 35px 25px;
            text-align: center;
            transition: all 0.4s;
        }
        .capability-card:hover {
            border-color: var(--accent);
            transform: translateY(-5px);
        }
        .capability-card .icon {
            width: 60px; height: 60px;
            background: rgba(247,146,27,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 18px;
            font-size: 24px;
        }
        .capability-card h3 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 10px;
        }
        .capability-card p {
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.6;
        }

        /* ===== CTA ===== */
        .cta-section {
            padding: 100px 0;
            background: linear-gradient(135deg, rgba(30,58,95,0.85), rgba(30,58,95,0.8));
            text-align: center;
        }
        .cta-section h2 {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 15px;
        }
        .cta-section p {
            font-size: 18px;
            color: var(--text-muted);
            margin-bottom: 30px;
        }

        @media (max-width: 1023px) {
            .service-cards { grid-template-columns: 1fr; }
            .process-grid { grid-template-columns: repeat(3, 1fr); }
            .process-arrow { display: none; }
            .capabilities-grid { grid-template-columns: repeat(2, 1fr); }
            .section { padding: 70px 0; }
            .section-heading { font-size: 28px; }
        }
        @media (max-width: 767px) {
            .process-grid { grid-template-columns: repeat(2, 1fr); }
            .capabilities-grid { grid-template-columns: 1fr; }
            .service-card { padding: 30px; }
        }
        .breadcrumb {
            display: flex;
            gap: 10px;
            align-items: center;
            font-size: 14px;
            color: rgba(255,255,255,0.7);
            margin-bottom: 20px;
        }
        .breadcrumb a { color: rgba(255,255,255,0.7); transition: color 0.3s; }
        .breadcrumb a:hover { color: var(--accent); }
        .breadcrumb .sep { color: rgba(255,255,255,0.4); }

        /* ===== Article ===== */
        .article-section {
            padding: 80px 0;
        }
        .article-layout {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 60px;
        }
        .article-content {
            font-size: 16px;
            line-height: 1.8;
            color: var(--text-muted);
        }
        .article-content h2 {
            font-size: 24px;
            font-weight: 600;
            color: var(--text);
            margin: 40px 0 20px;
        }
        .article-content h3 {
            font-size: 20px;
            font-weight: 600;
            color: var(--text);
            margin: 30px 0 15px;
        }
        .article-content p {
            margin-bottom: 20px;
        }
        .article-content img {
            width: 100%;
            border-radius: 12px;
            margin: 30px 0;
            background: linear-gradient(135deg, #e8ecf1, #d1d5db);
            min-height: 300px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-muted);
        }
        .article-content blockquote {
            border-left: 4px solid var(--accent);
            padding-left: 20px;
            margin: 30px 0;
            font-style: italic;
            color: var(--text);
        }
        .article-content ul {
            list-style: disc;
            margin: 20px 0 20px 25px;
        }
        .article-content ul li {
            margin-bottom: 10px;
        }
        .article-meta {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 20px;
            font-size: 13px;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 1px;
            white-space: nowrap;
        }
        .article-category {
            color: var(--c-brand);
            font-weight: 600;
        }
        .article-date {
            position: relative;
            padding-left: 16px;
        }
        .article-date::before {
            content: "";
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 4px;
            height: 4px;
            border-radius: 50%;
            background: var(--text-muted);
        }
        .article-title {
            font-size: 36px;
            font-weight: 700;
            color: var(--text);
            line-height: 1.3;
            margin-bottom: 20px;
        }
        .article-lead {
            font-size: 18px;
            line-height: 1.8;
            color: var(--c-muted);
            margin-bottom: 30px;
        }
        .article-body {
            font-size: 16px;
            line-height: 1.8;
            color: var(--text-muted);
        }
        .article-body > *:last-child {
            margin-bottom: 0;
        }
        .article-nav {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-top: 50px;
        }
        .article-nav a {
            display: flex;
            flex-direction: column;
            gap: 6px;
            padding: 20px;
            background: var(--primary-light);
            border-radius: 12px;
            transition: all .3s ease;
        }
        .article-nav a:hover {
            border-color: var(--accent);
            transform: translateY(-3px);
        }
        .article-nav span {
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--text-muted);
        }
        .article-nav strong {
            font-size: 15px;
            font-weight: 600;
            color: var(--text);
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .article-nav-next {
            text-align: right;
            align-items: flex-end;
        }

        /* Sidebar */
        .sidebar {
            position: sticky;
            top: 100px;
        }
        .sidebar-widget {
            background: var(--primary-light);
            border-radius: 16px;
            padding: 25px;
            margin-bottom: 25px;
        }
        .sidebar-widget h4 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 20px;
        }
        .sidebar-news-item {
            display: flex;
            gap: 15px;
            margin-bottom: 18px;
        }
        .sidebar-news-item:last-child {
            margin-bottom: 0;
        }
        .sidebar-news-thumb {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #e8ecf1, #d1d5db);
            border-radius: 8px;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;
            color: var(--text-muted);
            overflow: hidden;
        }
        .sidebar-news-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
        .sidebar-news-thumb .iconfont { font-size: 26px; color: var(--text-muted); opacity: 0.55; }
        .sidebar-news-info h5 {
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 5px;
            line-height: 1.4;
        }
        .sidebar-news-info .date {
            font-size: 12px;
            color: var(--text-muted);
        }
        .sidebar-news-info a:hover h5 {
            color: var(--accent);
        }





        /* ===== Related News ===== */
        .related-news {
            padding: 80px 0;
            background: var(--primary-light);
        }
        .section-title {
            font-size: 14px;
            color: var(--accent);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 10px;
        }
        .section-heading {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 40px;
        }
        .news-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        .news-card {
            background: var(--primary);
            border: 1px solid var(--border);
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.4s;
        }
        .news-card:hover {
            transform: translateY(-8px);
            border-color: var(--accent);
            box-shadow: 0 20px 40px rgba(0,0,0,0.08);
        }
        .news-img {
            height: 200px;
            background: linear-gradient(135deg, #e8ecf1, #d1d5db);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-muted);
            font-size: 14px;
        }
        .news-img span {
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .news-img span svg {
            width: 36px;
            height: 36px;
            opacity: 0.5;
        }
        .news-body {
            padding: 25px;
        }
        .news-date {
            font-size: 12px;
            color: var(--accent);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 10px;
        }
        .news-card h3 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 12px;
            line-height: 1.4;
        }
        .news-card p {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.7;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .news-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

        /* ===== News List Page ===== */
        .news-list-page .news-section {
            padding: 100px 0;
            background: var(--primary);
        }
        .news-list-page .section-heading {
            font-size: 40px;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 16px;
        }
        .news-list-page .section-desc {
            max-width: 760px;
            margin-bottom: 50px;
            color: var(--text-muted);
            font-size: 16px;
            line-height: 1.8;
        }
        .news-list-page .news-article-list {
            display: flex;
            flex-direction: column;
            gap: 36px;
            margin-top: 10px;
        }
        .news-list-page .news-article-card {
            display: grid;
            grid-template-columns: minmax(420px, 2fr) 3fr;
            gap: 0;
            background: var(--primary-light);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 14px 40px rgba(15,23,42,.08);
            transition: all .4s cubic-bezier(.25,.46,.45,.94);
        }
        .news-list-page .news-article-card:hover {
            box-shadow: 0 28px 70px rgba(0,63,255,.14);
            transform: translateY(-6px);
        }
        .news-list-page .news-article-media {
            position: relative;
            min-height: 320px;
            background: #e8ecf1;
            overflow: hidden;
        }
        .news-list-page .news-article-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .6s ease;
        }
        .news-list-page .news-article-media span {
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            color: #9ca3af;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .news-list-page .news-article-media span .iconfont {
            font-size: 52px;
            opacity: 0.55;
        }
        .news-list-page .news-article-card:hover .news-article-media img { transform: scale(1.06); }
        .news-list-page .news-article-body {
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 48px 56px;
        }
        .news-list-page .news-article-label {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            width: fit-content;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.5px;
            color: var(--text-muted);
            margin-bottom: 14px;
        }
        .news-list-page .news-article-label::before {
            content: "";
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--accent);
        }
        .news-list-page .news-article-title {
            font-size: 30px;
            font-weight: 800;
            color: var(--c-brand-dark);
            margin-bottom: 18px;
            line-height: 1.2;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .news-list-page .news-article-summary {
            font-size: 15px;
            color: var(--c-muted);
            line-height: 1.9;
            margin-bottom: 28px;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .news-list-page .news-article-foot {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: auto;
            padding-top: 20px;
            border-top: 1px solid var(--border);
        }
        .news-list-page .news-article-date {
            font-size: 14px;
            color: var(--c-muted);
        }
        .news-list-page .news-article-more {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 14px;
            font-weight: 600;
            color: var(--c-brand);
            transition: gap .3s ease;
        }
        .news-list-page .news-article-card:hover .news-article-more { gap: 10px; }

        .news-list-page .pagination {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 60px;
        }
        .news-list-page .pagination li { display: inline-block; }
        .news-list-page .pagination a,
        .news-list-page .pagination span {
            min-width: 44px;
            height: 44px;
            padding: 0 12px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: var(--primary-light);
            border: 1px solid var(--border);
            border-radius: 8px;
            font-size: 14px;
            font-weight: 500;
            color: var(--text);
            transition: all 0.3s;
        }
        .news-list-page .pagination a:hover { border-color: var(--accent); color: var(--accent); }
        .news-list-page .pagination .active span {
            background: var(--accent);
            border-color: var(--accent);
            color: var(--primary);
        }
        .news-list-page .pagination .disabled span { color: var(--text-muted); cursor: default; }

        @media (max-width: 1023px) {
            .article-layout { grid-template-columns: 1fr; }
            .news-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-grid { grid-template-columns: repeat(2, 1fr); }
            .sidebar { position: static; }
            .news-list-page .news-article-card { grid-template-columns: minmax(340px, 2fr) 3fr; }
            .news-list-page .news-article-body { padding: 36px 40px; }
            .news-list-page .news-article-title { font-size: 26px; }
        }
        @media (max-width: 767px) {
            .news-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr; }
            .news-list-page .news-section { padding: 70px 0; }
            .news-list-page .section-heading { font-size: 30px; }
            .news-list-page .section-desc { margin-bottom: 36px; }
            .news-list-page .pagination { margin-top: 40px; }
            .news-list-page .pagination a,
            .news-list-page .pagination span { min-width: 40px; height: 40px; }
            .news-list-page .news-article-card { grid-template-columns: 1fr; }
            .news-list-page .news-article-media { min-height: 220px; }
            .news-list-page .news-article-body { padding: 28px; }
            .news-list-page .news-article-title { font-size: 22px; }
            .news-list-page .news-article-summary { -webkit-line-clamp: 2; margin-bottom: 20px; }
            .article-title { font-size: 26px; }
            .article-nav { grid-template-columns: 1fr; }
            .article-nav-next { text-align: left; align-items: flex-start; }
        }
        .breadcrumb {
            display: flex;
            gap: 10px;
            align-items: center;
            font-size: 14px;
            color: rgba(255,255,255,0.7);
            margin-bottom: 20px;
        }
        .breadcrumb a { color: rgba(255,255,255,0.7); transition: color 0.3s; }
        .breadcrumb a:hover { color: var(--accent); }
        .breadcrumb .sep { color: rgba(255,255,255,0.4); }

        /* ===== Product Detail ===== */
        .detail-section {
            padding: 80px 0;
        }
        .detail-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
        }
        .detail-gallery {
            background: var(--primary-light);
            border: 1px solid var(--border);
            border-radius: 20px;
            overflow: hidden;
        }
        .detail-main-img {
            width: 100%;
            height: 400px;
            background: linear-gradient(135deg, #e8ecf1, #d1d5db);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-muted);
            font-size: 16px;
        }
        .detail-main-img img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
        .detail-thumbs {
            display: flex;
            gap: 10px;
            padding: 15px;
        }
        .detail-thumb {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #e8ecf1, #d1d5db);
            border-radius: 8px;
            border: 2px solid transparent;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            color: var(--text-muted);
        }
        .detail-thumb.active {
            border-color: var(--accent);
        }

        .detail-info h2 {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 10px;
        }
        .detail-tag {
            display: inline-block;
            padding: 5px 14px;
            background: rgba(247,146,27,0.1);
            color: var(--accent);
            font-size: 12px;
            border-radius: 4px;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .detail-desc {
            font-size: 15px;
            color: var(--text-muted);
            line-height: 1.8;
            margin-bottom: 30px;
            white-space: pre-line;
        }
        .detail-associated { margin-bottom: 24px; }
        .detail-associated-title { font-size: 14px; font-weight: 600; color: var(--text-muted, #6b7280); margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.5px; }
        .detail-associated-item { display: flex; align-items: center; gap: 12px; padding: 10px 12px; margin-bottom: 10px; border: 1px solid var(--border, #e5e7eb); border-radius: 8px; background: #fff; transition: .2s; }
        .detail-associated-item:last-child { margin-bottom: 0; }
        .detail-associated-item:hover { border-color: var(--accent, #f7921b); }
        .detail-associated-item img { flex-shrink: 0; width: 48px; height: 48px; object-fit: cover; border-radius: 6px; background: var(--primary-light); }
        .detail-associated-item span { font-size: 14px; font-weight: 500; color: var(--text, #1a1a2e); line-height: 1.4; }
        .detail-actions {
            display: flex;
            gap: 15px;
            margin-bottom: 40px;
        }
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 32px;
            background: var(--accent);
            color: #fff;
            font-size: 14px;
            font-weight: 600;
            border-radius: 6px;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }
        .btn:hover {
            background: var(--accent-dark);
            transform: translateY(-2px);
        }
        .btn-outline {
            background: transparent;
            color: var(--text);
            border: 1px solid var(--border);
        }
        .btn-outline:hover {
            background: var(--text);
            color: var(--primary);
        }
        .btn-secondary {
            background: var(--text);
            color: #fff;
        }
        .btn-secondary:hover {
            background: #2d2d44;
        }

        /* Specs Table */
        .specs-table {
            width: 100%;
            border-collapse: collapse;
        }
        .specs-table tr {
            border-bottom: 1px solid var(--border);
        }
        .specs-table td {
            padding: 14px 0;
            font-size: 14px;
        }
        .specs-table td:first-child {
            color: var(--text-muted);
            width: 40%;
        }
        .specs-table td:last-child {
            color: var(--text);
            font-weight: 500;
        }

        /* ===== Related Products ===== */
        .related-section {
            padding: 80px 0;
            background: var(--primary-light);
        }
        .section-title {
            font-size: 14px;
            color: var(--accent);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 10px;
        }
        .section-heading {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 40px;
        }
        .products-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
        }
        .product-card {
            background: var(--primary);
            border: 1px solid var(--border);
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.4s;
        }
        .product-card:hover {
            transform: translateY(-8px);
            border-color: var(--accent);
            box-shadow: 0 20px 40px rgba(0,0,0,0.08);
        }
        .product-img {
            height: 180px;
            background: linear-gradient(135deg, #e8ecf1, #d1d5db);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            color: var(--text-muted);
        }
        .product-info {
            padding: 20px;
        }
        .product-info h3 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 8px;
        }
        .product-info p {
            font-size: 13px;
            color: var(--text-muted);
            margin-bottom: 12px;
        }
        .product-info .link {
            font-size: 13px;
            color: var(--accent);
            font-weight: 500;
        }


        @media (max-width: 1023px) {
            .detail-grid { grid-template-columns: 1fr; }
            .products-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 767px) {
            .products-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr; }
            .detail-actions { flex-direction: column; }
        }

/* ===== CMS common overrides ===== */
body { color: var(--text, #1a1a2e); background: var(--primary, #f7fbfe); }
.hdr { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; height: 80px; background: transparent; border-bottom: 1px solid transparent; transition: background .25s ease, border-color .25s ease, box-shadow .25s ease; }
.hdr.is-scrolled { background: #fff; border-bottom-color: rgba(0,0,0,.05); box-shadow: 0 8px 24px rgba(15,23,42,.06); }
.hdr .container, .hdr-in { height: 100%; }
.hdr-in { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; }
.logo-area { display: block; justify-self: start; color: #fff; }
.logo-area .lname { font-size: 20px; font-weight: 800; letter-spacing: .5px; color: #fff; line-height: 1.15; }
.hdr.is-scrolled .logo-area,
.hdr.is-scrolled .logo-area .lname { color: var(--text, #1a1a2e); }
.logo-area .lname span, .ft-logo span { color: var(--accent, #f7921b); }
.logo-area .lsub { margin-top: 4px; font-size: 11px; color: rgba(255,255,255,.78); letter-spacing: 0; }
.hdr.is-scrolled .logo-area .lsub { color: var(--text-muted, #6b7280); }
.nav { display: flex; align-items: center; justify-content: center; gap: 30px; justify-self: center; }
.hdr-contact { justify-self: end; display: flex; align-items: center; gap: 10px; color: #fff; white-space: nowrap; }
.hdr.is-scrolled .hdr-contact { color: var(--text, #1a1a2e); }
.hdr-contact-item { display: inline-flex; align-items: center; gap: 6px; color: inherit; font-size: 12px; font-weight: 600; line-height: 1.35; }
.hdr-contact-item:hover { color: var(--accent, #f7921b); }
.hdr-contact-icon { width: 26px; height: 26px; border: 1px solid currentColor; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hdr-contact-icon .iconfont { font-size: 13px; }
.hdr-contact-divider { width: 1px; height: 20px; background: currentColor; opacity: .28; }
.nav a { padding: 0; border-radius: 0; font-size: 14px; font-weight: 600; color: #fff; text-transform: uppercase; letter-spacing: .5px; }
.hdr.is-scrolled .nav a { color: var(--text-muted, #6b7280); }
.nav a:hover, .nav a.on { color: var(--accent, #f7921b); background: transparent; }
.nav-dropdown { position: relative; }
.dropdown-menu { position: absolute; top: 100%; left: 0; min-width: 190px; padding: 10px 0; background: #fff; border: 1px solid var(--border, #e5e7eb); border-radius: 8px; box-shadow: 0 16px 32px rgba(15,23,42,.08); opacity: 0; visibility: hidden; transform: translateY(10px); transition: all .25s ease; }
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a { display: block; padding: 9px 18px; font-size: 13px; color: var(--text, #1a1a2e); white-space: nowrap; }

/* ===== Products mega menu ===== */
.dropdown-menu-mega { position: fixed; top: 80px; left: 0; right: 0; min-width: auto; padding: 40px 0; background: #fff; border: 0; border-radius: 0; box-shadow: 0 16px 32px rgba(15,23,42,.08); opacity: 0; visibility: hidden; transform: translateY(10px); transition: all .25s ease; }
.dropdown-menu-mega::before { content: ''; position: absolute; top: -40px; left: 0; right: 0; height: 40px; background: transparent; }
.nav-dropdown:hover .dropdown-menu-mega { opacity: 1; visibility: visible; transform: translateY(0); }
.mega-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(420px, 1fr)); gap: 30px; }
.mega-block { display: flex; flex-direction: column; padding-right: 30px; border-right: 1px solid var(--border, #e5e7eb); }
.mega-block:last-child { padding-right: 0; border-right: 0; }
.nav .mega-title { display: block; margin-bottom: 18px; font-size: 18px; font-weight: 700; color: var(--text, #1a1a2e); text-transform: none; letter-spacing: 0; }
.nav .mega-title:hover { color: var(--accent, #f7921b); }
.mega-body { display: flex; gap: 24px; align-items: flex-start; }
.mega-image { flex: 0 0 300px; width: 300px; height: 190px; border-radius: 8px; overflow: hidden; background: var(--border, #e5e7eb); }
.mega-image img { width: 100%; height: 100%; object-fit: contain; display: block; }
.mega-image-placeholder { display: block; width: 100%; height: 100%; background: linear-gradient(135deg, #eef2f6 0%, #e2e8f0 100%); }
.mega-links { flex: 1 1 auto; }
.mega-links ul { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px 24px; }
.mega-links li a { display: block; padding: 6px 10px; margin: -6px -10px; font-size: 13px; font-weight: 500; color: var(--text-muted, #6b7280); white-space: nowrap; text-transform: none; letter-spacing: 0; border-radius: 6px; transition: all .2s ease; }
.mega-links li a:hover,
.mega-links li a.on { color: var(--accent, #f7921b); background: rgba(247,146,27,.06); transform: translateX(4px); }
.mega-empty { font-size: 13px; color: var(--text-muted, #6b7280); }
.nav-toggle { display: none; color: #fff; }
.hdr.is-scrolled .nav-toggle { color: var(--text, #1a1a2e); }
.nav-mask { display: none; }
.ft { background: #111827; color: #9ca3af; }
.ft-logo { font-size: 22px; font-weight: 800; color: #fff; }
.ft-logo {
  display: inline-flex;
  align-items: center;
  max-width: 220px;
}
.ft-logo img {
  display: block;
  height: 58px;
  max-width: 100%;
  object-fit: contain;
}
.ft-slogan { margin: 10px 0 18px; color: #d1d5db; }
.ft-contact-info p { margin: 6px 0; }
.ft-whatsapp-qr {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  margin-top: 14px;
  color: #d1d5db;
  font-size: 12px;
  line-height: 1.4;
  text-align: center;
}
.ft-whatsapp-qr img {
  display: block;
  width: 90px;
  height: 90px;
  padding: 5px;
  border-radius: 8px;
  background: #fff;
  object-fit: contain;
}
@media (max-width: 1023px) { .nav-toggle { display: inline-flex; grid-column: 3; justify-self: end; } .nav { position: fixed; top: 80px; right: 0; bottom: 0; width: min(320px, 82vw); max-height: calc(100vh - 80px); padding: 24px 24px 56px; flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 0; background: #fff; transform: translateX(100%); transition: transform .25s ease; box-shadow: -20px 0 50px rgba(15,23,42,.12); overflow-y: auto; overscroll-behavior: contain; -webkit-overflow-scrolling: touch; } .nav.show { transform: translateX(0); } .nav a { padding: 13px 0; color: var(--text, #1a1a2e); border-bottom: 1px solid var(--border, #e5e7eb); } .dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; padding: 0 0 0 16px; } body.nav-open .nav-mask { display: block; position: fixed; inset: 80px 0 0; background: rgba(15,23,42,.35); z-index: 900; } .hdr .nav { z-index: 1001; } .hdr-contact { display: none; } .dropdown-menu-mega { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; padding: 0 0 0 16px; background: transparent; } .mega-container { grid-template-columns: 1fr; gap: 20px; } .mega-block { padding-right: 0; border-right: 0; } .mega-body { flex-direction: column; gap: 12px; } .mega-image { display: none; } .mega-links ul { grid-template-columns: 1fr; gap: 8px; } .nav .mega-title { font-size: 16px; margin-bottom: 10px; } .mega-links li a { padding: 8px 0; margin: 0; white-space: normal; } }

.home-page .section-heading,
.home-page .flux-heading .section-heading,
.home-page .wire-heading .section-heading,
.home-page .about-heading .section-heading {
    font-size: 48px;
}

/* ===== OEM page heavier layout ===== */
.oem-page .section {
    padding: 92px 0;
}

.oem-page .section-title {
    letter-spacing: 1.4px;
    font-weight: 800;
    text-align: center;
}

.oem-page .section-heading {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    color: #111827;
    text-align: center;
}

.oem-page .section-desc {
    max-width: 760px;
    margin: -20px auto 42px;
    font-size: 17px;
    line-height: 1.8;
    color: #4b5563;
    text-align: center;
}

.oem-page .services-section {
    background: linear-gradient(180deg, #f6f8fb 0%, #fff 100%);
}

.oem-page .service-cards {
    gap: 28px;
}

.oem-page .service-card {
    position: relative;
    padding: 42px 40px 38px;
    background: #fff;
    border: 1px solid #d9e0e8;
    border-top: 5px solid var(--accent, #f7921b);
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(15,23,42,.06);
    transition: border-color .25s ease, box-shadow .25s ease;
}

.oem-page .service-card:hover {
    transform: none;
    border-color: #c9d2df;
    border-top-color: var(--accent, #f7921b);
    box-shadow: 0 18px 42px rgba(15,23,42,.1);
}

.oem-page .service-card .badge {
    padding: 7px 14px;
    border-radius: 3px;
    background: #111827;
    color: #fff;
    font-size: 12px;
    letter-spacing: 1.8px;
}

.oem-page .service-card h2 {
    margin-top: 22px;
    font-size: 30px;
    line-height: 1.25;
    color: #111827;
}

.oem-page .service-card > p {
    font-size: 16px;
    line-height: 1.85;
    color: #374151;
}

.oem-page .service-features {
    display: grid;
    gap: 0;
    margin: 28px 0 32px;
    border-top: 1px solid #e5e7eb;
}

.oem-page .service-features li {
    padding: 12px 0 12px 22px;
    color: #374151;
    border-bottom: 1px solid #e5e7eb;
}

.oem-page .service-features li::before {
    content: "";
    top: 19px;
    width: 7px;
    height: 7px;
    background: var(--accent, #f7921b);
    border-radius: 50%;
}

.oem-page .process-section {
    background: url('/static/default/images/process-bg-oem.jpg') center/cover no-repeat;
    color: #fff;
}

.oem-page .process-section .section-heading,
.oem-page .process-section .section-title {
    color: #fff;
}

.oem-page .process-grid {
    position: relative;
    gap: 0;
    grid-template-columns: repeat(6, 1fr);
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255,255,255,.04);
}

.oem-page .process-step-card {
    min-height: 230px;
    padding: 30px 22px 26px;
    background: transparent;
    border: 0;
    border-right: 1px solid rgba(255,255,255,.14);
    border-radius: 0;
}

.oem-page .process-step-card:last-child {
    border-right: 0;
}

.oem-page .process-step-card:hover {
    border-color: rgba(255,255,255,.14);
    background: rgba(247,146,27,.08);
}

.oem-page .process-step-card .step-num {
    margin-bottom: 32px;
    font-size: 34px;
    line-height: 1;
    color: var(--accent, #f7921b);
}

.oem-page .process-step-card h3 {
    font-size: 17px;
    color: #fff;
}

.oem-page .process-step-card p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,.68);
}

.oem-page .process-arrow {
    top: 31px;
    right: 18px;
    color: rgba(255,255,255,.35);
}

.oem-page .capabilities-section {
    background: #f6f8fb;
}

.oem-page .capabilities-grid {
    gap: 0;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid #d9e0e8;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.oem-page .capability-card {
    min-height: 260px;
    padding: 34px 28px 30px;
    background: #fff;
    border: 0;
    border-right: 1px solid #e5e7eb;
    border-radius: 0;
    box-shadow: none;
}

.oem-page .capability-card:last-child {
    border-right: 0;
}

.oem-page .capability-card:hover {
    transform: none;
    border-color: #e5e7eb;
    background: #fbfcfe;
}

.oem-page .capability-card .icon {
    width: auto;
    height: auto;
    margin-bottom: 46px;
    background: transparent;
    color: var(--accent, #f7921b);
    font-size: 38px;
    line-height: 1;
    font-weight: 800;
}

.oem-page .capability-card h3 {
    font-size: 18px;
    line-height: 1.35;
    color: #111827;
}

.oem-page .capability-card p {
    font-size: 14px;
    line-height: 1.75;
    color: #4b5563;
}

.oem-page .capability-card .icon .iconfont { font-size: 38px; }

.oem-page .cta-section {
    padding: 96px 0;
    background:
        linear-gradient(90deg, rgba(17,24,39,.94), rgba(17,24,39,.78)),
        url('/uploadfile/2026/0615/process-bg.jpg') center/cover no-repeat;
}

.oem-page .cta-section .container {
    max-width: 980px;
    text-align: left;
}

.oem-page .cta-section h2 {
    max-width: 620px;
    font-size: 42px;
    line-height: 1.2;
    color: #fff;
}

.oem-page .cta-section p {
    max-width: 620px;
    color: rgba(255,255,255,.76);
}

@media (max-width: 1023px) {
    .oem-page .section {
        padding: 72px 0;
    }

    .oem-page .process-grid,
    .oem-page .capabilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .oem-page .process-step-card:nth-child(2n),
    .oem-page .capability-card:nth-child(2n) {
        border-right: 0;
    }

    .oem-page .process-step-card:nth-child(n+3),
    .oem-page .capability-card:nth-child(n+3) {
        border-top: 1px solid rgba(255,255,255,.14);
    }

    .oem-page .capability-card:nth-child(n+3) {
        border-top-color: #e5e7eb;
    }
}

@media (max-width: 767px) {
    .oem-page .section {
        padding: 58px 0;
    }

    .oem-page .service-card {
        padding: 30px 24px;
    }

    .oem-page .service-card h2,
    .oem-page .cta-section h2 {
        font-size: 28px;
    }

    .oem-page .process-grid,
    .oem-page .capabilities-grid {
        grid-template-columns: 1fr;
    }

    .oem-page .process-step-card,
    .oem-page .process-step-card:nth-child(2n),
    .oem-page .capability-card,
    .oem-page .capability-card:nth-child(2n) {
        border-right: 0;
    }

    .oem-page .process-step-card + .process-step-card {
        border-top: 1px solid rgba(255,255,255,.14);
    }

    .oem-page .capability-card + .capability-card {
        border-top: 1px solid #e5e7eb;
    }
}

.pic-list-section .pic-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.pic-list-section .pic-card {
    display: block;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,.08);
    transition: transform .25s, box-shadow .25s;
}
.pic-list-section .pic-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
}
.pic-list-section .pic-card-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e8ecf1, #d1d5db);
    color: var(--text-muted);
    overflow: hidden;
    padding: 12px;
    box-sizing: border-box;
}
.pic-list-section .pic-card-img img {
    max-width: 100%;
    max-height: 100%;
    display: block;
    object-fit: contain;
}
.pic-list-section .pic-card-info {
    padding: 14px 16px;
    text-align: center;
}
.pic-list-section .pic-card-info h3 {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: #1f2937;
}

@media (max-width: 1023px) {
    .pic-list-section .pic-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 767px) {
    .pic-list-section .pic-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== CTA section with background image (news list page) ===== */
.cta-section-image {
    background: url('/uploadfile/2026/0617/cta-news-bg.jpg') center/cover no-repeat;
}
.cta-section-image h2,
.cta-section-image p { color: #fff; }
/* ===== iconfont compatibility ===== */
.pic-card-img .iconfont { font-size: 64px; opacity: 0.55; }
.process-arrow .iconfont { font-size: 20px; }
.capability-card .icon .iconfont { font-size: 28px; }
.faq-card-foot em .iconfont { font-size: 16px; }
.flux-feature-prev .iconfont,
.flux-feature-next .iconfont,
.wire-feature-prev .iconfont,
.wire-feature-next .iconfont { font-size: 20px; }

@media (max-width: 767px) {
    .home-page .section-heading,
    .home-page .flux-heading .section-heading,
    .home-page .wire-heading .section-heading,
    .home-page .about-heading .section-heading {
        font-size: 26px;
        line-height: 1.28;
        margin-bottom: 14px;
    }
}
