:root {
  --primary: #009b9f;
  --primary-dark: #007a7d;
  --primary-light: #e6f5f5;
  --accent: #b3cd4d;
  --accent-dark: #97b13f;
  --tint: #e8f5f5;
  --dark: #0d2c2c;
  --text: #333333;
  --muted: #6b7280;
  --bg: #ffffff;
  --section-bg: #f5f9f9;
  --stripe: #e2ebeb;
  --border: #e5e7eb;
  --footer: #081e1f;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--bg);
}
h1,h2,h3,h4,h5,h6 {
  font-family: 'Urbanist', sans-serif;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 .8rem;
  line-height: 1.2;
}
p { margin: 0 0 1rem; }
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; height: auto; display: block; }
.section img { width: 100%; height: auto; }
.sr-only { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0, 0, 0, 0) !important; white-space: nowrap !important; border: 0 !important; }
:where(a, button, input, select, textarea, [tabindex]):focus-visible { outline: 3px solid var(--primary-dark); outline-offset: 3px; }
body.nav-open { overflow: hidden; }
.container { width: 100%; margin: 0 auto; padding-inline: clamp(20px, 4vw, 64px); }
@media (min-width: 1440px) { .container { padding-inline: 56px; } }
.section { padding: 80px 0; }
.section-alt { background: var(--section-bg); }
.section-title { font-size: 2rem; text-align: center; margin-bottom: 40px; }
.section-subtitle { text-align: center; color: var(--muted); max-width: 760px; margin: -20px auto 40px; }
.btn {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: 12px 28px; border-radius: 4px; font-weight: 600; font-size: .95rem;
  background: var(--primary); color: #fff; border: none; cursor: pointer; transition: .25s;
}
.btn:hover { background: var(--primary-dark); color: #fff; }

/* Header —— 数值与首页导航对齐：header 77px、logo 46px、菜单 18px /
   Urbanist-SemiBold / uppercase / #666，hover 用首页的强调色 #b3cd4d。 */
.header {
  position: sticky; top: 0; z-index: 1000;
  background: #fff;
  border-bottom: 1px solid var(--border);
}
/* 与首页导航统一：桌面 header 92px、logo 92px。 */
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 92px; gap: 16px; }
.logo { height: 92px; flex-shrink: 0; }
.nav { display: flex; align-items: center; justify-content: center; flex: 1; gap: 4px; }
.header-search { color: var(--primary); display: flex; align-items: center; justify-content: center; text-decoration: none; flex-shrink: 0; background: transparent; border: 0; padding: 0; cursor: pointer; }
.header-search:hover { color: var(--accent); }
/* 与首页 content.css 的 `.menu_wrap #smartMenusBt4 #main-menu>li>a` 逐项对齐：
   color #666 / font-size clamp(15px,.9375vw,18px) / padding .78125vw 1.042vw /
   transition all .3s / uppercase / letter-spacing normal。
   首页的 hover 只有颜色渐变（.3s），没有下划线动画，
   内页原来的 ::after 下划线展开动效因此整体移除。 */
.nav a {
  font-family: 'Urbanist', Arial, sans-serif;
  font-weight: 600; font-size: clamp(15px, .9375vw, 18px); color: #666;
  text-transform: uppercase; letter-spacing: normal;
  position: relative; padding: .78125vw 1.042vw; transition: all .3s;
  /* 首页 frontend.css 的 .sm-clean 把行高钉在 17px，内页继承 body 的 1.6 会高 7~12px，
     菜单条整体比首页厚一圈。照搬 17px 才能两端同高。 */
  line-height: 17px;
}
.nav a:hover, .nav a.active { color: var(--primary); }
.mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 10px; }
.mobile-toggle span { display: block; width: 24px; height: 2px; background: var(--dark); margin: 5px 0; transition: .25s; }

/* 移动端导航遮罩，与首页抽屉菜单的观感一致 */
.nav-backdrop { display: none; }

@media (max-width: 860px) {
  .header { box-shadow: 0 2px 10px rgba(0,0,0,.08); }
  .header-inner { height: 100px; }
  .logo { height: 80px; }
  .header-search { display: none; }
  .mobile-toggle { display: block; z-index: 1002; }
  .mobile-toggle span { background: var(--primary); }
  .mobile-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .mobile-toggle.is-open span:nth-child(2) { opacity: 0; }
  .mobile-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  /* 右侧滑出抽屉：覆盖首页 .navbar-collapse 的呈现方式（白底、整屏高度、右上角关闭） */
  .nav {
    position: fixed; top: 0; right: 0; bottom: 0; left: auto;
    display: flex; flex-direction: column; align-items: stretch;
    /* 375 视口下铺满整屏，与首页 .collapseBox 的 100% 一致；更宽的平板收到 380px */
    width: min(100%, 380px); height: 100%;
    background: #fff; padding: 90px 24px 24px; gap: 0;
    border-bottom: none; box-shadow: -2px 0 16px rgba(0,0,0,.12);
    transform: translateX(100%); transition: transform .3s ease-in-out;
    overflow-y: auto; z-index: 1001;
  }
  .nav.open { transform: translateX(0); }
  /* 抽屉内菜单项沿用首页移动端的度量：18px / 700 / #333 / padding 15px / line-height 17px。
     分隔线是首页没有的，但抽屉里没有它五项会连成一片，保留。 */
  .nav a {
    width: 100%; padding: 15px; font-size: 18px; font-weight: 700; line-height: 17px;
    color: #333; border-bottom: 1px solid var(--border); transition: all .3s;
  }
  .nav a.active { color: var(--primary); }
  /* 遮罩必须压在 header（z-index 1000）之下：.header 是 position:sticky + z-index 1000，
     会创建层叠上下文，抽屉 .nav(1001) 和汉堡 .mobile-toggle(1002) 都被关在里面，
     对外只表现为 1000。遮罩若也用 1000，同级比较就按 DOM 顺序——它排在 header 之后，
     于是盖住抽屉和汉堡：抽屉变暗、汉堡的 X 看不见、点链接全点到遮罩上。降到 999 才对。 */
  .nav-backdrop {
    display: block; position: fixed; inset: 0; z-index: 999;
    background: rgba(0,0,0,.4); opacity: 0; pointer-events: none; transition: opacity .3s;
  }
  .nav-backdrop.show { opacity: 1; pointer-events: auto; }
}

/* ===== 旧版首页组件 =====
   下面这组（.feature-grid / .feature-card / .card* / .naisi-hero 等）只被
   naisi-site/index.html 使用。该页已被 home_naisi 的 epotw 版首页取代，
   若确认不再需要旧版首页，这一整段都可以删。 */

/* Hero / banner — full-bleed image, big rounded top-right corner, centered text box */

/* Feature / numbered cards */
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 40px; }
.feature-card { background: #fff; border: 1px solid var(--border); border-radius: 10px; padding: 30px 26px; transition: transform .25s, box-shadow .25s; border-top: 4px solid var(--accent); }
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(0,0,0,.08); }
.feature-card .fc-num { font-family: 'Urbanist', sans-serif; font-weight: 800; font-size: 2.4rem; color: var(--primary); opacity: .35; line-height: 1; margin-bottom: 10px; }
.feature-card .fc-title { font-family: 'Urbanist', sans-serif; font-weight: 700; font-size: 1.2rem; color: var(--dark); margin-bottom: 8px; }
.feature-card .fc-text { color: var(--muted); font-size: .95rem; font-family: 'Lato', sans-serif; }
@media (max-width: 960px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .feature-grid { grid-template-columns: 1fr; } }

/* Lime pill button (epotw .btn_more) */
.btn-lime { display: inline-flex; align-items: center; gap: .5rem; background: var(--accent); color: #fff; border: 1px solid var(--accent); border-radius: 30px; padding: 12px 30px; font-weight: 700; font-family: 'Urbanist', sans-serif; font-size: 1rem; transition: .25s; }
.btn-lime:hover { background: var(--accent-dark); border-color: var(--accent-dark); color: #fff; }

/* Section head
   .sec-num（区块大号数字）已删除：只被 build_site.py 版 about.html 使用，
   现在 about.html 由 build_about.py 生成，编号走 .pg-band__num，全站无引用。
   .sec-head / .sec-label / .sec-title 仍在用，保留。 */
.sec-head { display: flex; align-items: baseline; gap: 16px; margin-bottom: 16px; }
.sec-label { font-family: 'Archivo', sans-serif; font-size: .85rem; letter-spacing: .12em; text-transform: uppercase; color: var(--primary); }
.sec-title { font-size: 2rem; margin-bottom: 1rem; }

/* Cards */
.grid { display: grid; gap: 24px; }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
/* 4 列时列宽 = (容器 - 3*24) / 4。容器 padding 是 clamp(20px,4vw,64px)，
   所以 1024 下列宽只有 217px，而 .card-bg 的 min-height:280px + aspect-ratio:1/1
   会反推出 280px 的最小宽度，把网格撑破（实测 1024 下整页横向溢出 22px）。
   插入 3 列档把列宽拉回 280px 以上；min-width:0 是兜底，万一列宽仍不足
   就让卡片收缩变形，而不是让整页出现横向滚动条。 */
.grid-4 > * { min-width: 0; }
@media (max-width: 1319px) { .grid-4 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 979px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
/* .grid-3 / .grid-2 全站没有用到，已删除；这里只留 .grid-4 的单列降级 */
@media (max-width: 640px) { .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: #fff; border: 1px solid var(--border); border-radius: 8px;
  overflow: hidden; transition: transform .25s, box-shadow .25s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(0,0,0,.08); }
.card-media { aspect-ratio: 4/3; overflow: hidden; background: #f2f2f2; }
.card-media img { width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 20px; }
.card-title { font-size: 1.15rem; margin-bottom: .4rem; }
.card-text { color: var(--muted); font-size: .95rem; }
.card-arrow { display: inline-flex; align-items: center; gap: 4px; margin-top: 12px; font-weight: 600; font-size: .9rem; }

/* Category card: full-bleed image background with white 30% title overlay */
.card-bg {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  aspect-ratio: 1 / 1; min-height: 280px;
  border-radius: 8px; overflow: hidden;
  background: var(--dark) center/cover no-repeat;
  text-decoration: none;
  transition: transform .25s, box-shadow .25s;
}
.card-bg::before {
  content: "";
  position: absolute; inset: 0;
  background: rgba(10,31,31,.18);
  transition: background .25s;
}
.card-bg:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(0,0,0,.12); }
.card-bg:hover::before { background: rgba(10,31,31,.28); }
.card-overlay {
  position: relative; z-index: 1;
  background: rgba(255,255,255,.70);
  padding: 18px 24px;
  width: 36%;
  aspect-ratio: 1 / 1;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.card-overlay .card-title {
  font-family: 'Urbanist', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: .04em;
  text-transform: uppercase;
  margin: 0;
}
.card-bg .card-arrow {
  position: absolute; bottom: 14px; right: 18px;
  color: #fff; font-size: .85rem; font-weight: 600;
  opacity: 0; transform: translateY(6px); transition: .25s;
}
.card-bg:hover .card-arrow { opacity: 1; transform: translateY(0); }

/* Features / icons */
.feature-item { display: flex; gap: 16px; align-items: flex-start; }
.feature-icon {
  width: 44px; height: 44px; flex-shrink: 0; border-radius: 50%;
  background: var(--primary-light); color: var(--primary);
  display: grid; place-items: center; font-weight: 700; font-family: 'Archivo', sans-serif;
}

/* Stats
   归属：只被 build_site.py 生成的那一版 about.html 使用（class="stats mt-4"）。
   现在线上 about.html 由 build_about.py 生成，用的是 pg-stats / pg-stats__num /
   pg-stats__label，这一组实际已不生效。
   保留原因：build_site.py 仍会写出用它的一版 about.html，两个脚本写同一个
   文件，谁后跑谁生效。在确认 about.html 的唯一生成源之前先留着，确认之后
   可以连这一整段一起删。
   教训：这一组曾被当成死代码删掉，依据是过期的审计快照（采集时 about.html
   还没被重新生成）。跑死代码审计前必须先按
   build_site.py -> build_about.py -> build_contact.py -> sync_*.py 的顺序
   重跑整条流水线，再重新采集渲染后 DOM，否则必然误删。 */
/* Two columns */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.sustainability-intro { grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr); align-items: center; }
.sustainability-intro > div:last-child { display: flex; justify-content: center; align-items: center; }
.sustainability-label { font-size: 1.5rem !important; letter-spacing: .14em; }
.sustainability-intro > div:last-child img { width: min(100%, 300px); height: auto; max-height: 390px; object-fit: contain; display: block; border-radius: 12px; }
@media (max-width: 860px) {
  .split, .sustainability-intro { grid-template-columns: 1fr; }
  .sustainability-intro > div:last-child { justify-content: flex-start; }
  .sustainability-intro > div:last-child img { width: min(100%, 440px); height: auto; }
}

/* Product category intro */

/* Category intro hero (full-width background banner) */
.cat-hero { position: relative; min-height: 52vh; display: flex; align-items: center; padding: 100px 0; color: #fff; margin-bottom: 0; background-size: cover; background-position: center; background-repeat: no-repeat; }
.cat-hero::before { content: ""; position: absolute; inset: 0; /* background: linear-gradient(90deg, rgba(10,31,31,.85) 0%, rgba(10,31,31,.5) 60%, rgba(10,31,31,.25) 100%); */ }
.cat-hero .container { position: relative; z-index: 1; }
/* products 列表页底图现在使用用户提供的蓝色渐变纹理图（ridderhof-background）。
   左半侧偏亮，默认遮罩不够，需加一条专门的暗海军蓝遮罩保证白字 4.5:1 以上。 */
.cat-hero--poster-list::before { background: linear-gradient(90deg, rgba(11,45,74,.90) 0%, rgba(11,45,74,.88) 55%, rgba(11,45,74,.55) 100%); }
.cat-hero h1 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
.cat-hero p { color: rgba(255,255,255,.92); font-size: 1.15rem; max-width: 640px; margin: 0; }
/* Products 列表页 hero：桌面端左文右图，避免 1920px 下导语受 980px 限制后右侧留空。 */
.products-hero-layout { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(320px, .55fr); gap: clamp(40px, 5vw, 96px); align-items: center; }
.cat-hero .products-hero-text p { max-width: none; }
.products-hero-media { display: flex; justify-content: flex-end; }
.products-hero-media img { width: min(100%, 480px); aspect-ratio: 4 / 3; object-fit: cover; display: block; border-radius: 12px; box-shadow: 0 20px 50px rgba(0,0,0,.22); }
@media (max-width: 991px) {
  .products-hero-layout { grid-template-columns: 1fr; gap: 32px; }
  .products-hero-media { justify-content: flex-start; }
  .products-hero-media img { width: min(100%, 520px); }
}

/* Product list table */
.table-wrap { overflow-x: auto; margin-top: 32px; }
.product-table { width: 100%; border-collapse: collapse; min-width: 760px; }
.product-table thead th { background: var(--primary); color: #fff; font-family: "Archivo", sans-serif; font-weight: 600; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; padding: 16px; text-align: left; }
.product-table tbody td { padding: 18px 16px; border-bottom: 1px solid var(--border); vertical-align: top; }
.product-table tbody tr { transition: background .2s; }
.product-table tbody tr:nth-child(even) { background: var(--stripe); }
.product-table tbody tr:hover { background: var(--primary-light); }
.product-table .pt-range { color: var(--primary); font-weight: 700; font-family: "Archivo", sans-serif; font-size: .82rem; letter-spacing: .04em; text-transform: uppercase; }
.product-table .pt-product { font-weight: 700; color: var(--dark); font-family: "Archivo", sans-serif; font-size: 1.05rem; }
.product-table .pt-product-link { color: inherit; text-decoration: underline; text-decoration-color: transparent; text-underline-offset: .18em; transition: color .2s, text-decoration-color .2s; }
.product-table .pt-product-link:hover { color: var(--primary-dark); text-decoration-color: currentColor; }
.product-table .pt-product-link:focus-visible { outline: 3px solid var(--primary-dark); outline-offset: 4px; border-radius: 2px; }
.product-table .pt-feature { color: var(--text); }
.product-table .pt-tech { color: var(--muted); font-size: .9rem; }

/* Model detail band (full-width, image right / text left) */
.model-band { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; margin-bottom: 20px; }
@media (max-width: 860px) { .model-band { grid-template-columns: 1fr; } }
.model-media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 12px; }
.subcat-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 16px; }
.subcat-gallery img { width: 100%; height: auto; border-radius: 4px; aspect-ratio: auto; object-fit: contain; display: block; }
/* spec 表列数不固定（4~6 列），min-content 宽在 375 下会撑破 .detail-main，
   套一层 .spec-wrap 做横向滚动容器，且不设 min-width：列少时不多余滚动条，
   列多时滚动而不影响整页布局。 */
.spec-wrap { overflow-x: auto; margin-top: 20px; }
.spec-wrap .spec-table { margin-top: 0; }
.spec-table { width: 100%; border-collapse: collapse; margin-top: 20px; font-size: .9rem; }
.spec-table th, .spec-table td { border: 1px solid var(--border); padding: 10px 12px; text-align: left; }
.spec-table th { background: var(--primary-light); color: var(--dark); }
.spec-table tbody tr:nth-child(even) { background: var(--stripe); }

/* Model page bottom: two-column (content + inquiry) */
.detail-split { display: grid; grid-template-columns: 1fr 340px; gap: 48px; align-items: start; }
.detail-main { min-width: 0; }
.inquiry-card { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 28px; position: sticky; top: 96px; box-shadow: 0 6px 24px rgba(15,46,46,.06); }
.inquiry-card h3 { font-size: 1.2rem; margin-bottom: 8px; color: var(--dark); }
.inquiry-card p.lead { color: var(--muted); font-size: .9rem; margin-bottom: 18px; }
.inquiry-form label { display: block; font-size: .82rem; font-weight: 600; color: var(--dark); margin-bottom: 14px; }
.inquiry-form input, .inquiry-form textarea { width: 100%; margin-top: 6px; padding: 10px 12px; border: 1px solid var(--border); border-radius: 8px; font: inherit; font-size: .92rem; box-sizing: border-box; }
.inquiry-form input:focus, .inquiry-form textarea:focus { border-color: var(--primary-dark); box-shadow: 0 0 0 3px rgba(0,122,125,.18); }
.inquiry-form textarea { resize: vertical; }
.inquiry-form .btn { width: 100%; margin-top: 4px; }
@media (max-width: 860px) { .detail-split { grid-template-columns: 1fr; gap: 32px; } .inquiry-card { position: static; } }

/* Breadcrumb
   内容页（about / contact / sustainability / 11 个产品详情页）的面包屑原来挂在 .section 上，
   .section 的 80px 上下内边距把它和顶部导航之间拉出一大段空白，看上去和导航是同一块，
   层级完全分不出来。改由 sync_breadcrumb.py 换成 .breadcrumb-bar：紧贴导航条下方做一条
   通栏浅底 + 下边框，用色块把导航区和内容区切开。
   products.html 与 4 个分类页的面包屑在 .cat-hero 深色大图上，是白字，走下面那组规则。 */
.breadcrumb-bar { background: var(--tint); border-bottom: 1px solid #d5e8e8; }
.breadcrumb-bar .breadcrumb { padding-top: 14px; padding-bottom: 14px; font-size: .85rem; }
.breadcrumb { padding-top: 20px; padding-bottom: 20px; font-size: .9rem; color: var(--muted); }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--primary); }
/* 面包屑当前项（不是链接）压深一档，和前面可点的层级区分开 */
.breadcrumb-bar .breadcrumb { color: #4b5563; }
.breadcrumb-bar .breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb-bar .breadcrumb a:hover { color: var(--primary); }

/* Certifications / logos */

/* Quality & Certifications split (02) */
.cert-split { display: grid; grid-template-columns: 1fr 1.5fr; gap: 56px; align-items: center; }
.cert-split .sec-title { text-align: left; margin-bottom: 1rem; }
.cert-split .section-subtitle { text-align: left; margin: 0; max-width: 460px; }
.cert-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; align-items: center; }
.cert-grid img { width: 100%; height: 264px; object-fit: contain; }
@media (max-width: 860px) {
  .cert-split { grid-template-columns: 1fr; gap: 32px; }
  .cert-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 520px) { .cert-grid { grid-template-columns: repeat(2, 1fr); } }

/* Partners marquee (homepage module 04) */
.marquee { overflow: hidden; padding: 14px 0; -webkit-mask: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.marquee-track { display: flex; align-items: center; gap: 160px; width: max-content; animation: marquee 40s linear infinite; }
.marquee-track img { height: 224px; width: auto; object-fit: contain; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-25%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* Industry Awards (homepage module 05) */
.award-row { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; }
.award-card { background: #fff; border: 1px solid var(--border); border-top: 4px solid var(--primary); border-radius: 10px; padding: 18px; box-shadow: 0 8px 24px rgba(0,0,0,.06); transition: transform .25s, box-shadow .25s; }
.award-card:hover { transform: translateY(-4px); box-shadow: 0 14px 32px rgba(0,0,0,.10); }
.award-card img { height: 300px; width: auto; object-fit: contain; display: block; }

/* Footer (与首页一致：浅灰上区 + 主色通栏版权条)
   这里不再给 .footer .container 额外限宽：原先的 max-width:1320px 会让 1920 下
   footer 内容列比 header / 正文窄 488px、左偏 244px，整站左右边界对不齐。
   footer 与正文共用同一条 .container，宽度自然一致。 */
.footer { background: #f8f9fa; color: var(--text); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; }
.footer h4 { color: var(--dark); font-family: 'Urbanist', sans-serif; font-size: clamp(16px, 1.146vw, 22px); font-weight: 700; margin: 0 0 16px; }
.footer-logo { display: block; width: auto; height: auto; max-width: 320px; margin-bottom: 0; }
.footer-company { margin: 14px 0 12px; line-height: 1.7; }
.blog-hero { padding: clamp(40px, 6.25vw, 120px) 0; background: var(--tint); }
.blog-hero__box { max-width: 860px; }
.blog-hero h1 { margin: 18px 0 16px; font-size: clamp(36px, 4.2vw, 72px); line-height: 1.05; color: var(--dark); }
.blog-hero p, .blog-article__intro { max-width: 720px; color: var(--muted); font-size: clamp(16px, .9375vw, 18px); line-height: 1.8; }
.blog-section { padding: clamp(56px, 6.25vw, 120px) 0; }
.blog-section__title { margin: 14px 0 clamp(32px, 3.125vw, 60px); font-size: clamp(28px, 2.5vw, 48px); color: var(--dark); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.08vw, 40px); }
.blog-card { background: #fff; border: 1px solid var(--border); }
.blog-card > a { display: block; overflow: hidden; }
.blog-card img { display: block; width: 100%; aspect-ratio: 1.45; object-fit: cover; transition: transform .35s ease; }
.blog-card:hover img { transform: scale(1.03); }
.blog-card__body { padding: clamp(22px, 2.08vw, 40px); }
.blog-card__meta { color: var(--primary-dark); font-size: 13px; letter-spacing: .08em; text-transform: uppercase; }
.blog-card h3 { margin: 14px 0; font-size: clamp(21px, 1.45vw, 28px); line-height: 1.2; }
.blog-card h3 a { color: var(--dark); text-decoration: none; }
.blog-card p { color: var(--muted); line-height: 1.7; }
.blog-article { padding: clamp(48px, 6.25vw, 120px) 0 clamp(64px, 8.33vw, 160px); }
.blog-article__head { max-width: 940px; }
.blog-article h1 { margin: 18px 0; font-size: clamp(36px, 4.2vw, 72px); line-height: 1.06; color: var(--dark); }
.blog-article__image { width: 100%; max-height: 620px; margin: clamp(36px, 4vw, 72px) 0; object-fit: cover; border-radius: 12px; }
.blog-article__body { max-width: 820px; margin: 0 auto; color: var(--text); font-size: clamp(16px, .9375vw, 18px); line-height: 2; }
.blog-article__body h2 { margin: 44px 0 12px; color: var(--dark); font-size: clamp(25px, 1.8vw, 36px); line-height: 1.2; }
.blog-article__body .pg-more { margin-top: 42px; }
@media (max-width: 991px) { .blog-grid { grid-template-columns: 1fr; } .blog-card img { aspect-ratio: 1.6; } .blog-article__image { max-height: none; } }
.footer a { color: var(--muted); display: block; margin-bottom: 8px; text-decoration: none; transition: color .3s; }
.footer a:hover { color: var(--primary); }
.footer p { color: var(--muted); line-height: 1.6; }
/* 版权条通栏：.container 的左右内边距对居中的版权文字没意义，显式清零 */
.footer .container.footer-bottom { margin: 40px 0 0; padding: 16px 0; }
/* footer 社交图标。.footer a 是 display:block（链接竖排），这里要横排，
   所以 display / margin-bottom 都得显式覆盖回来。
   图标色用 --primary-dark #007a7d：主色 #009b9f 在浅灰底上只有 3.39:1，
   图标的 WCAG 阈值是 3:1 勉强过线，--primary-dark 有 5.15:1 更稳。 */
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; margin-bottom: 0;
  border: 1px solid var(--border); border-radius: 50%;
  background: #fff; color: var(--primary-dark);
  transition: background .3s, color .3s, border-color .3s;
}
.footer-social a:hover { background: var(--primary-dark); color: #fff; border-color: var(--primary-dark); }
.footer-social svg { width: 18px; height: 18px; }
/* 版权条底色用主色 #009b9f（原来是强调色 lime #b3cd4d）。白字在青色上的对比度
   （3.4:1）比在 lime 上（1.9:1）高，小字号也能读清。 */
.footer-bottom { background: var(--primary-dark); color: #fff; margin-top: 40px; padding: 16px 0; text-align: center; font-size: .85rem; }
.footer-bottom a { color: #fff; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 767px) { .footer a { padding: 6px 0; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* Contact */

/* Contact 页 2:1 分栏：左表单、右联系方式 */
.contact-split { display: grid; grid-template-columns: 2fr 1fr; gap: clamp(24px, 3vw, 48px); align-items: stretch; }
.contact-panel { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: clamp(24px, 2.4vw, 36px); box-shadow: 0 6px 24px rgba(15,46,46,.06); }
.contact-form { display: flex; flex-direction: column; min-height: 100%; }
.ns-section-contact .inquiry-form .form-row { flex: 0 0 auto; }
.ns-section-contact .inquiry-form > label:nth-of-type(2) { flex: 0 0 auto; }
.ns-section-contact .inquiry-form > label:nth-of-type(2) textarea { height: 128px; min-height: 128px; }
.ns-section-contact .inquiry-form .btn { width: auto; min-width: 0; padding: 12px 28px; align-self: flex-start; }
.contact-panel > h2 { font-size: clamp(1.25rem, 1.4vw, 1.6rem); color: var(--dark); margin: 0 0 8px; }
.contact-panel > .lead { color: var(--muted); font-size: .92rem; line-height: 1.7; margin: 0 0 22px; }
.ns-section-contact .inquiry-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 16px; }
/* .inquiry-form 只给 input / textarea 定了样式，select 要单独补 */
.inquiry-form select { width: 100%; margin-top: 6px; padding: 10px 12px; border: 1px solid var(--border); border-radius: 8px; font: inherit; font-size: .92rem; box-sizing: border-box; background: #fff; color: var(--dark); }
.inquiry-form select:focus { border-color: var(--primary-dark); box-shadow: 0 0 0 3px rgba(0,122,125,.18); }
.ns-section-contact .inquiry-form .btn { width: auto; min-width: 200px; padding: 12px 32px; }

/* 联系方式列表 */
.ct-sub { font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); font-weight: 700; margin: 26px 0 4px; }
.ct-item { display: flex; align-items: center; gap: 14px; padding: 13px 0; border-bottom: 1px solid var(--border); text-decoration: none; }
.ct-item:last-child { border-bottom: none; }
.ct-item:hover .ct-val { color: var(--primary); }
.ct-ico { width: 40px; height: 40px; border-radius: 50%; background: var(--primary-light); color: var(--primary); display: grid; place-items: center; flex-shrink: 0; }
.ct-ico svg { width: 19px; height: 19px; }
.ct-label { display: block; font-size: .7rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); font-weight: 700; margin-bottom: 2px; }
.ct-val { display: block; color: var(--dark); font-weight: 600; font-size: .95rem; word-break: break-all; transition: color .3s; }
@media (max-width: 860px) {
  .contact-split { grid-template-columns: 1fr; }
  .ns-section-contact .inquiry-form .form-row { grid-template-columns: 1fr; }
  .ns-section-contact .inquiry-form .btn { width: 100%; }
}

/* Utility
   .mt-3 / .mt-4 曾在清理 .mt-1 / .mt-2 时被整行连带删掉，是误伤：
   12 个 product-*.html 的 "Request a Quote" 按钮用 .mt-3，
   about / sustainability 用 .mt-4。现已恢复，只删真正没用的 mt-1 / mt-2。 */
.text-center { text-align: center; }
.mt-3 { margin-top: 24px; } .mt-4 { margin-top: 32px; }
/* ===== New long-form homepage (epotw structure) =====
   类名统一 ns- 前缀 + 连字符。原名 banner_wrap / banner_summary 是照抄采集站
   epotw 的命名（下划线、无前缀），全站无任何 ns- 之外的前缀体系，容易和采集站
   原始 CSS 混淆，这里整体换掉。 */
.naisi-hero { position: relative; }
.naisi-hero .ns-banner { position: relative; overflow: hidden; border-top-right-radius: 5.2vw; }
.naisi-hero .ns-banner-img { width: 100%; height: clamp(420px, 68vh, 720px); object-fit: cover; display: block; }
.naisi-hero .ns-banner::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,32,32,.30), rgba(8,32,32,.55)); z-index: 1; }
.naisi-hero .ns-banner-text { position: absolute; left: 50%; top: 46%; transform: translate(-50%,-50%); width: min(680px, 82%); text-align: center; z-index: 2; }
.naisi-hero .ns-banner-title { font-family: 'Urbanist', sans-serif; font-weight: 800; font-size: clamp(2rem, 4.4vw, 3.8rem); line-height: 1.05; color: #fff; letter-spacing: .01em; text-shadow: 0 2px 18px rgba(0,0,0,.4); margin-bottom: 18px; }
.naisi-hero .ns-banner-lead { font-family: 'Lato', sans-serif; font-size: clamp(1rem, 1.5vw, 1.35rem); color: rgba(255,255,255,.92); margin-bottom: 28px; text-shadow: 0 1px 10px rgba(0,0,0,.35); }

/* Anchor menu (epotw .menuBox) */
.anchor-menu { background: #fff; border-bottom: 1px solid var(--border); position: sticky; top: 72px; z-index: 900; }
.anchor-menu ul { display: flex; justify-content: center; gap: 0; list-style: none; margin: 0; padding: 0; flex-wrap: wrap; }
.anchor-menu li { border-left: 1px solid var(--border); }
.anchor-menu li:last-child { border-right: 1px solid var(--border); }
.anchor-menu a { display: flex; flex-direction: column; align-items: center; padding: 16px 28px; color: var(--dark); font-family: 'Urbanist', sans-serif; font-weight: 600; transition: .25s; }
.anchor-menu a:hover { background: var(--section-bg); color: var(--primary); }
.anchor-menu .num { color: var(--accent); font-size: .75rem; margin-bottom: 4px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.anchor-menu .label { font-size: .92rem; }
@media (max-width: 860px) { .anchor-menu a { padding: 12px 16px; } .anchor-menu .label { font-size: .82rem; } }

/* Long-form sections */
.naisi-section { padding: 0 0 6vw; }
.naisi-section.section-alt { background: var(--section-bg); }
.section-hero { position: relative; margin: 0 clamp(20px, 4vw, 64px); border-bottom-left-radius: 6.25vw; border-top-right-radius: 6.25vw; overflow: hidden; }
.section-hero img { width: 100%; height: clamp(260px, 34vw, 480px); object-fit: cover; display: block; }
.section-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,32,32,.25), rgba(8,32,32,.55)); }
.section-hero-text { position: absolute; left: 0; bottom: 0; padding: 5vw 4vw; z-index: 2; width: 55%; }
.section-hero-text .num { color: var(--accent); font-family: 'Urbanist', sans-serif; font-weight: 800; font-size: clamp(20px, 2.083vw, 40px); line-height: 1; margin-bottom: .8vw; text-transform: uppercase; }
.section-hero-text h2 { color: #fff; font-family: 'Urbanist', sans-serif; font-weight: 800; font-size: clamp(1.6rem, 3.2vw, 3rem); line-height: 1.1; margin: 0; text-shadow: 0 2px 12px rgba(0,0,0,.35); text-transform: uppercase; letter-spacing: .04em; }
.section-content { padding-top: 4vw; padding-bottom: 2vw; }
.section-content .container { max-width: 1200px; }
.section-lead { font-size: 1.15rem; color: var(--muted); max-width: 760px; margin: 0 0 40px; line-height: 1.7; }
.sub-title { font-family: 'Urbanist', sans-serif; font-weight: 700; font-size: clamp(1.3rem, 1.8vw, 1.6rem); color: var(--primary); margin-bottom: 1rem; }
.sub-title.center { text-align: center; }

/* Alternating text/image rows */
.row-alt { display: grid; grid-template-columns: 1fr 1fr; gap: 4vw; align-items: center; margin-bottom: 4vw; }
/* .row-alt.reverse（rtl 翻转左右分栏）全站没有用到，已删除 */
.row-alt img { width: 100%; height: auto; display: block; border-top-left-radius: 6.25vw; }
.row-alt .text p { color: var(--text); line-height: 1.7; }
@media (max-width: 860px) { .row-alt { grid-template-columns: 1fr; gap: 24px; } .section-hero-text { width: 80%; padding: 30px 24px; } }

/* Numbered feature list with circle markers (epotw .InsUlBox) */

/* Horizontal scrolling image strip (epotw applications) */

/* CTA band before footer */
.cta-band { background: var(--primary); color: #fff; padding: 80px 0; }
.cta-band h2 { color: #fff; margin-bottom: 16px; }
.cta-band p { color: rgba(255,255,255,.9); max-width: 900px; margin: 0 auto 28px; font-size: 1.1rem; }
.cta-band .btn { background: #fff; color: var(--primary); }
.cta-band .btn:hover { background: var(--section-bg); color: var(--primary-dark); }

/* ==========================================================================
   ABOUT 页模块 —— 视觉对齐首页 section1–5
   数值全部来自首页 content.css 的实测（1920/1440）：
     FristRow 图盒 宽 81.77% 居中 / padding 5.208vw 3.906vw / 圆角 0 6.25vw
     编号 clamp(30px,2.083vw,40px) lh1 mb1.042vw / 标题 clamp(43.5px,3.021vw,58px) lh1 mb1.5625vw
     导语 clamp(15px,.9375vw,18px) lh2 #3d5a66 / 文本块宽 50%
   不引入首页那套 epotw CSS（会覆盖 .container / h1-h6 / .footer），改为在现有体系里复刻。
   ========================================================================== */
/* 垂直节奏照抄首页：section 只有 padding-top（实测首页 95px @1920），
   相邻两 section 之间就靠下一段的 padding-top 撑开，不再上下各垫一半。 */
.pg-sec { padding-top: clamp(56px, 4.948vw, 95px); }
.pg-sec:first-of-type { padding-top: clamp(40px, 4vw, 72px); }
/* 整页的节奏是"只给 padding-top"——段与段之间靠下一段的 padding-top 撑开，
   所以 .pg-sec 不能普遍加 padding-bottom，否则相邻两段会双份留白。
   但最后一段没有下内边距就会直接贴住 footer（旧版 .section 是 padding:80px 0，
   首页 section5 末尾的 ThrRow 是 8.333vw = 160px@1920）。这里单独给末尾一段补上。 */
.pg-sec--end { padding-bottom: clamp(56px, 8.333vw, 160px); }
/* about 页 section5（Global Footprint）与下方 .cta-band 之间直接贴边，
   给最后一个 pg-sec 单独加下内边距，在白底与绿色 CTA 带之间留出呼吸。 */
.pg-sec--pre-cta { padding-bottom: clamp(40px, 4vw, 72px); }
/* band 与下方内容之间原本是 0（两者是 .container 的相邻兄弟，没有任何 margin），
   视觉上直接糊在一起。首页这段间距是 SecRow 的 padding-top:6.25vw，
   实测 90px @1440 / 120px @1920。 */
.pg-band { margin-bottom: clamp(56px, 6.25vw, 120px); }
/* 段内二级间距（正文块→图网格、全景图→图网格）见下方各模块自己的 margin-top，
   统一 clamp(40px,4vw,72px)：约等于 band 间距的 0.64 倍，层级不倒置。 */
/* 通栏正文块：首页 SecRow 的文本列约占一半宽，这里放宽到 70% 便于阅读长段落 */
.pg-narrow { max-width: 70%; }
.pg-narrow h2 { font-family: 'Urbanist', sans-serif; font-weight: 700; color: var(--dark); }
.pg-narrow p { color: #3d5a66; line-height: 1.9; }

/* ---- 通栏标题条（= 首页 FristRow） ---- */
.pg-band__box {
  /* 首页的 band 是 81.77vw（1920 下 1570 宽、x175），比其下方内容列（1500 宽、x210）
     每边外扩 35px——那是 bootstrap container-fluid 撑满视口的结果。
     内页 .container 没有 max-width，1920 下内容列本身就有 1808 宽，照搬 81.77vw
     反而会让 band 比内容窄 151px @1440，方向完全反了。这里直接与内容列同宽，
     保证整页左右只有一条栅格线。 */
  width: 100%; max-width: none;
  padding: 5.208vw 3.906vw;
  border-radius: 0 6.25vw;
  background-size: cover; background-position: 50% 50%; background-repeat: no-repeat;
}
.pg-band__txt { width: 50%; }
.pg-band__num {
  font-family: 'Urbanist', sans-serif; font-weight: 800; text-transform: uppercase;
  font-size: clamp(30px, 2.083vw, 40px); line-height: 1; color: var(--dark);
  margin: 0 0 1.042vw;
}
.pg-band__title {
  font-family: 'Urbanist', sans-serif; font-weight: 800; text-transform: uppercase;
  font-size: clamp(43.5px, 3.021vw, 58px); line-height: 1; color: var(--dark);
  margin: 0 0 1.5625vw;
}
.pg-band__lead {
  font-size: clamp(15px, .9375vw, 18px); line-height: 2; color: #3d5a66; margin: 0;
}

/* ---- 左文右图（= 首页 SecRow） ---- */
.pg-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 64px); align-items: center; }
.pg-split--img-first > .pg-split__media { order: -1; }
/* 圆角只给通栏 band（沿用首页 FristRow 的 0 6.25vw）。内容区图片在首页是清一色直角，
   这里取 12px 与内页 .model-media img 一致，不套 band 的大圆角。 */
.pg-split__media img { width: 100%; height: auto; display: block; border-radius: 12px; }
.pg-split__body p { color: #3d5a66; line-height: 1.9; margin: 0 0 1rem; }
.pg-split__body p:last-child { margin-bottom: 0; }

/* ---- 数字条（首页无对应模块，按数字条惯例 + 品牌主色） ---- */
.pg-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  padding: clamp(24px, 2.6vw, 40px) 0; margin-top: clamp(40px, 4vw, 72px);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.pg-stats__num {
  font-family: 'Urbanist', sans-serif; font-weight: 800; color: var(--primary);
  font-size: clamp(28px, 2.6vw, 44px); line-height: 1.1; margin-bottom: 6px;
  white-space: nowrap;
}
.pg-stats__label {
  color: var(--muted); font-size: .82rem; text-transform: uppercase;
  letter-spacing: .06em; line-height: 1.5;
}

/* ---- 图片网格（= 首页 ThrRow 网格） ---- */
.pg-grid { display: grid; gap: clamp(16px, 1.8vw, 28px); margin-top: clamp(40px, 4vw, 72px); }
.pg-grid--5 { grid-template-columns: repeat(5, 1fr); }
.pg-grid--4 { grid-template-columns: repeat(4, 1fr); }
.pg-grid--3 { grid-template-columns: repeat(3, 1fr); }
.pg-card {
  background: #fff; border-top: 4px solid var(--accent); border-radius: 12px;
  overflow: hidden; box-shadow: 0 6px 20px rgba(0,0,0,.06);
}
.pg-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; }
.pg-card__cap {
  padding: 12px 14px; font-size: .82rem; line-height: 1.45; color: #4b5563;
  text-align: center;
}
/* 纯图卡片：展会照片这类无法确认具体内容的素材不放图注，避免编造说明文字 */
.pg-card--plain { border-top: none; box-shadow: 0 4px 14px rgba(0,0,0,.06); }

/* ---- 通栏全景图 ---- */
.pg-pano { width: 100%; border-radius: 12px; overflow: hidden; margin-top: clamp(40px, 4vw, 72px); }
.pg-pano img { width: 100%; height: auto; display: block; }

/* ---- 证书网格（= 首页 section5 的 .certGrid） ----
   证书是竖版文件，必须 object-fit:contain + 白底内边距，
   套 .pg-card 的 4/3 cover 会把证书裁掉。数值照抄首页：5 列、gap 1.2vw、
   图 1/1.25、padding 12px、1px #e4e4e4 描边。 */
.pg-certs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.2vw;
  margin-top: clamp(40px, 4vw, 72px); }
.pg-certs img {
  width: 100%; aspect-ratio: 1 / 1.25; object-fit: contain; box-sizing: border-box;
  background: #fff; border: 1px solid #e4e4e4; padding: 12px;
}

/* ---- 文案块 + 文字 CTA（= 首页 section5 的 SecRow：subTitle + txt + more） ----
   首页 subTitle 是 40px@1920 / 30px@1440（=2.083vw）、行高 1.2、主色大写；
   正文 18px@1920 / 15px@1440（=.9375vw）、行高 2、#666。 */
.pg-narrow.pg-narrow--sec h2 {
  font-size: clamp(30px, 2.083vw, 40px); line-height: 1.2; font-weight: 800;
  text-transform: uppercase; color: var(--primary);
  margin: 0 0 clamp(12px, 1.1vw, 18px);
}
.pg-narrow.pg-narrow--sec p {
  color: #666; font-size: clamp(15px, .9375vw, 18px); line-height: 2; margin: 0;
}
/* 首页这条 CTA 是 lime #b3cd4d 文字压在白底上，实测仅 1.79:1，基本读不出来。
   这里改用主色的深一档 #007a7d（5.15:1，过 AA）。箭头用内联 SVG——内页不加载 Font Awesome。 */
.pg-more {
  display: inline-flex; align-items: center; text-decoration: none;
  font-family: 'Urbanist', sans-serif; font-weight: 700;
  font-size: clamp(15px, .9375vw, 18px);
  color: var(--primary-dark); transition: color .3s;
}
.pg-more__txt { margin-right: 15px; }
.pg-more svg { width: 16px; height: 16px; flex-shrink: 0; transition: transform .3s; }
.pg-more:hover { color: var(--primary); }
.pg-more:hover svg { transform: translateX(5px); }

/* ---- ABOUT 页响应式：band 在小屏无法维持 81.77% 与 6.25vw 圆角 ---- */
@media (max-width: 1200px) {
  .pg-grid--5 { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 991px) {
  /* 首页 content.css 在 ≤991px 把 band 的字号钉成固定值并改用固定内边距，这里照抄：
     编号 22px、标题 28px、导语 14px/1.6，内边距 20px@375 → 30px@768，圆角仍是 6.25vw。 */
  .pg-band__box { padding: clamp(20px, 4vw, 30px); border-radius: 0 6.25vw; }
  .pg-band__txt { width: 100%; }
  .pg-band__num { font-size: 22px; margin-bottom: 1.042vw; }
  .pg-band__title { font-size: 28px; margin-bottom: 1.5625vw; }
  .pg-band__lead { font-size: 14px; line-height: 1.6; }
  .pg-narrow { max-width: 100%; }
  .pg-split { grid-template-columns: 1fr; gap: 28px; }
  .pg-split--img-first > .pg-split__media { order: 0; }
  /* 首页 ≤991px 同样把 section5 SecRow 的字号钉成固定值：subTitle 22px/1.2、正文 14px/1.6，
     CTA 15px、证书网格降为 3 列（gap 已是 1.2vw，跟着视口缩）。 */
  .pg-narrow.pg-narrow--sec h2 { font-size: 22px; line-height: 1.2; }
  .pg-narrow.pg-narrow--sec p { font-size: 14px; line-height: 1.6; }
  .pg-more { font-size: 15px; }
  .pg-more svg { width: 13px; height: 13px; }
  .pg-certs { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 860px) {
  .pg-stats { grid-template-columns: repeat(2, 1fr); gap: 20px 16px; }
  .pg-grid--5, .pg-grid--4, .pg-grid--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .pg-grid--5, .pg-grid--4, .pg-grid--3 { grid-template-columns: 1fr; }
}


/* Batch C: semantic replacements for former inline presentation styles */
.ns-bg-who-we-are{background-image:url('../images/bg-who-we-are.jpg');background-image:image-set(url('../images/bg-who-we-are.avif') type('image/avif'),url('../images/bg-who-we-are.jpg') type('image/jpeg'))}
.ns-bg-workshop{background-image:url('../images/bg-workshop.jpg');background-image:image-set(url('../images/bg-workshop.avif') type('image/avif'),url('../images/bg-workshop.jpg') type('image/jpeg'))}
.ns-bg-certifications{background-image:url('../images/bg-certifications.jpg');background-image:image-set(url('../images/bg-certifications.avif') type('image/avif'),url('../images/bg-certifications.jpg') type('image/jpeg'))}
.ns-bg-logistics{background-image:url('../images/bg-logistics.jpg');background-image:image-set(url('../images/bg-logistics.avif') type('image/avif'),url('../images/bg-logistics.jpg') type('image/jpeg'))}
.ns-bg-partners{background-image:url('../images/bg-partners.jpg');background-image:image-set(url('../images/bg-partners.avif') type('image/avif'),url('../images/bg-partners.jpg') type('image/jpeg'))}
.ns-bg-cover-backlit{background-image:url('../images/cover-backlit.jpg');background-image:image-set(url('../images/cover-backlit.avif') type('image/avif'),url('../images/cover-backlit.jpg') type('image/jpeg'))}
.ns-bg-cover-display{background-image:url('../images/cover-display.jpg');background-image:image-set(url('../images/cover-display.avif') type('image/avif'),url('../images/cover-display.jpg') type('image/jpeg'))}
.ns-bg-cover-poster{background-image:url('../images/cover-poster.jpg');background-image:image-set(url('../images/cover-poster.avif') type('image/avif'),url('../images/cover-poster.jpg') type('image/jpeg'))}
.ns-bg-cover-pvcfree{background-image:url('../images/cover-pvcfree.jpg');background-image:image-set(url('../images/cover-pvcfree.avif') type('image/avif'),url('../images/cover-pvcfree.jpg') type('image/jpeg'))}
.ns-bg-hero-products{background-image:url('../images/hero-poster-paper.jpg');background-image:image-set(url('../images/hero-poster-paper.avif') type('image/avif'),url('../images/hero-poster-paper.jpg') type('image/jpeg'))}

/* Batch L: WCAG AA color, link and scroll-region corrections */
.btn{background:var(--primary-dark)}
.nav a:hover,.nav a.active{color:var(--primary-dark)}
.sec-label{color:var(--primary-dark)}
.product-table .pt-range{color:#00666a}
.feature-icon{color:var(--primary-dark)}
.product-table thead th{background:var(--primary-dark)}
.product-table .pt-tech{color:#4b5563}
.breadcrumb-bar .breadcrumb a{color:#374151;text-decoration:underline;text-underline-offset:.16em}
.breadcrumb-bar .breadcrumb a:hover{color:var(--primary-dark)}
.cta-band{background:var(--primary-dark)}
.cta-band p{color:#fff}
.cta-band .btn{color:var(--primary-dark)}
.spec-wrap:focus-visible{outline:3px solid var(--primary-dark);outline-offset:3px}

.ns-text-center{text-align:center}
.ns-text-left{text-align:left}
.ns-text-inverse{color:#fff}
.ns-text-inverse-muted,.ns-text-inverse-muted a{color:rgba(255,255,255,.8)}
.ns-section-contact{padding-top:40px}
.ns-section-compact{padding-top:10px}
.ns-section-spec{padding:40px 0}
.ns-product-title{font-size:2.2rem}

/* ==========================================================================
   Blog（列表页 + 详情页）
   前缀 ns-blog-，不触碰任何现有页面样式。列表页 4 列全宽 + 分页；
   详情页左右两栏，右侧 = 产品类目 + 相关新闻（图文结合）。
   ========================================================================== */

/* ---- 列表页页头 ---- */
.ns-blog-hero { padding: clamp(40px, 5vw, 80px) 0 clamp(28px, 3.5vw, 56px); }
.ns-blog-hero h1 { font-size: clamp(2rem, 4vw, 3rem); margin: 0 0 8px; }
.ns-blog-hero p { color: var(--muted); max-width: none; margin: 0; }

/* ---- 列表网格：一行四列、全屏满宽 ---- */
.ns-blog-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.ns-blog-card { background: #fff; border: 1px solid var(--border); border-radius: 10px; overflow: hidden; display: flex; flex-direction: column; transition: transform .25s, box-shadow .25s; }
.ns-blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(0,0,0,.08); }
.ns-blog-card__media { aspect-ratio: 4 / 3; overflow: hidden; background: #f2f2f2; display: block; }
.ns-blog-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.ns-blog-card:hover .ns-blog-card__media img { transform: scale(1.04); }
.ns-blog-card__body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.ns-blog-card__meta { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; font-size: .75rem; color: var(--primary-dark); text-transform: uppercase; letter-spacing: .06em; font-family: 'Archivo', sans-serif; font-weight: 600; }
.ns-blog-card__meta .dot { color: var(--border); }
.ns-blog-card__title { font-size: 1.08rem; line-height: 1.35; margin: 10px 0; }
.ns-blog-card__title a { color: var(--dark); text-decoration: none; }
.ns-blog-card__title a:hover { color: var(--primary-dark); }
.ns-blog-card__excerpt { color: var(--muted); font-size: .9rem; line-height: 1.6; margin: 0 0 14px; flex: 1; }
.ns-blog-card__more { color: var(--primary-dark); font-weight: 600; font-size: .88rem; display: inline-flex; align-items: center; gap: 4px; }
.ns-blog-card__more:hover { color: var(--primary); }
@media (max-width: 1200px) { .ns-blog-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 900px) { .ns-blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .ns-blog-grid { grid-template-columns: 1fr; } }

/* ---- 分页：兼容静态页 button 与 WordPress page-numbers 输出 ---- */
.ns-blog-pagination { display: flex; justify-content: center; margin-top: 48px; }
.ns-blog-pagination .nav-links { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 8px; }
.ns-blog-pagination button,
.ns-blog-pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; min-width: 42px; height: 42px; padding: 0 12px; border: 1px solid var(--border); background: #fff; color: var(--dark); border-radius: 6px; font-weight: 600; font-size: .9rem; line-height: 1; text-decoration: none; cursor: pointer; transition: border-color .2s, background-color .2s, color .2s; }
.ns-blog-pagination button:hover,
.ns-blog-pagination a.page-numbers:hover { border-color: var(--primary); color: var(--primary-dark); }
.ns-blog-pagination button.is-active,
.ns-blog-pagination .page-numbers.current { background: var(--primary-dark); border-color: var(--primary-dark); color: #fff; cursor: default; }
.ns-blog-pagination .page-numbers.current:hover { background: var(--primary-dark); border-color: var(--primary-dark); color: #fff; }
.ns-blog-pagination button:disabled { opacity: .4; cursor: default; }
.ns-blog-pagination button:disabled:hover { border-color: var(--border); color: var(--dark); }
.ns-blog-pagination .page-numbers.dots { border-color: transparent; background: transparent; padding-inline: 4px; cursor: default; }
.ns-blog-pagination a.page-numbers:focus-visible { outline: 3px solid var(--primary-dark); outline-offset: 3px; }

/* ---- 详情页两栏 ---- */
.ns-blog-detail { padding: clamp(32px, 4vw, 64px) 0 clamp(56px, 6vw, 96px); }
.ns-blog-detail-split { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 48px; align-items: start; }
.ns-blog-article { min-width: 0; }
.ns-blog-article__meta { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; font-size: .82rem; color: var(--muted); margin-bottom: 6px; }
.ns-blog-article__meta .cat { color: var(--primary-dark); text-transform: uppercase; letter-spacing: .06em; font-weight: 700; font-family: 'Archivo', sans-serif; }
.ns-blog-article h1 { font-size: clamp(1.7rem, 3vw, 2.4rem); line-height: 1.2; margin: 0 0 16px; }
.ns-blog-article__author { font-size: .88rem; color: var(--muted); margin-bottom: 16px; }
.ns-blog-article__author strong { color: var(--dark); }
.ns-blog-article__excerpt { font-size: 1.05rem; color: var(--dark); line-height: 1.7; border-left: 3px solid var(--accent); padding-left: 16px; margin: 0 0 24px; }
.ns-blog-article__image { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: 12px; margin: 0 0 28px; }
/* 缩略图：右侧浮动、最大宽 400px、圆角，正文文字环绕其左侧 */
.ns-blog-article__thumb { float: right; width: 100%; max-width: 400px; margin: 0 0 20px 28px; }
.ns-blog-article__thumb img { width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 12px; display: block; }
.ns-blog-article__body { color: var(--text); font-size: 1rem; line-height: 1.9; }
.ns-blog-article__body h2 { font-size: 1.3rem; margin: 28px 0 10px; color: var(--dark); }
.ns-blog-article__body p { margin: 0 0 16px; }
@media (max-width: 640px) {
  .ns-blog-article__thumb { float: none; max-width: 100%; margin: 0 0 20px; }
}

/* ---- 右侧栏 ---- */
.ns-blog-sidebar { min-width: 0; position: sticky; top: 96px; }
.ns-blog-widget { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 24px; margin-bottom: 24px; box-shadow: 0 6px 24px rgba(15,46,46,.05); }
.ns-blog-widget h3 { font-size: 1.05rem; margin-bottom: 16px; }
.ns-blog-widget h3 span { color: var(--primary-dark); }
.ns-blog-catlist { list-style: none; margin: 0; padding: 0; }
.ns-blog-catlist li { border-bottom: 1px solid var(--border); }
.ns-blog-catlist li:last-child { border-bottom: none; }
.ns-blog-catlist a { display: flex; justify-content: space-between; align-items: center; padding: 11px 0; color: var(--dark); text-decoration: none; font-size: .92rem; transition: color .2s; }
.ns-blog-catlist a:hover { color: var(--primary-dark); }
.ns-blog-catlist .count { color: var(--muted); font-size: .8rem; }
.ns-blog-related { list-style: none; margin: 0; padding: 0; }
.ns-blog-related li + li { margin-top: 16px; }
.ns-blog-related a { display: flex; gap: 12px; align-items: center; text-decoration: none; }
.ns-blog-related img { width: 72px; height: 54px; object-fit: cover; border-radius: 6px; flex-shrink: 0; }
.ns-blog-related .t { font-size: .88rem; color: var(--dark); line-height: 1.4; font-weight: 600; transition: color .2s; }
.ns-blog-related a:hover .t { color: var(--primary-dark); }
@media (max-width: 900px) {
  .ns-blog-detail-split { grid-template-columns: 1fr; }
  .ns-blog-sidebar { position: static; }
}

/* ==========================================================================
   Blog 区块内边距微调修饰类（替代内联 style）
   ========================================================================== */
.ns-blog-hero--tight { padding-bottom: 32px; }
.ns-blog-detail--tight { padding-top: 32px; }
.ns-blog-list { padding-top: 16px; }
