/* ============================================================
   SAOJIE TECHNOLOGY — Foreign Trade Site Shared Stylesheet
   Brand: teal-green gradient (from logo) + red accent
   Reference layout: firstmold.com
   ============================================================ */
/* ============================================================
   Local self-hosted fonts (Inter variable + Poppins static)
   SIL Open Font License — free for commercial use.
   Files: style/fonts/
   ============================================================ */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('fonts/Inter-Variable.woff2') format('woff2');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/Poppins-Medium.woff2') format('woff2');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/Poppins-SemiBold.woff2') format('woff2');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/Poppins-Bold.woff2') format('woff2');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('fonts/Poppins-ExtraBold.woff2') format('woff2');
}

:root {
  /* ============ 品牌配色（取自 logo） ============
     --brand      主蓝 #3078e0（logo 文字/环形主体色）
     --brand-2    青 teal #0ea8a0（logo 渐变环的青端）
     --accent     红 #c82028（logo 方形点缀）
     --ink/--bg   深蓝青 / 浅蓝灰，用于文字与页面底 */
  --brand: #3078e0;
  --brand-2: #0ea8a0;
  --brand-soft: #e9f2fc;
  --brand-dark: #1f63c4;
  --ink: #0b2e3b;
  --ink-2: #3d5a66;
  --gray: #687b8c;
  --line: #e2ecf2;
  --accent: #c82028;
  --accent-dark: #a5171e;
  --bg: #f4f8fb;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 10px 34px rgba(31, 99, 196, .10);
  --shadow-lg: 0 24px 60px rgba(31, 99, 196, .16);
  --container: 1440px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
.font-display {
  font-family: 'Poppins', 'Inter', sans-serif;
  line-height: 1.3
}

img {
  max-width: 100%;
  display: block
}

a {
  text-decoration: none;
  color: inherit
}

ul {
  list-style: none
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px)
}

.section {
  padding: 80px 0
}

.section-alt {
  background: var(--bg)
}

.sec-head {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center
}

.sec-head .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
  background: var(--brand-soft);
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.sec-head h2 {
  font-size: clamp(26px, 3.4vw, 40px);
  font-weight: 800;
  color: var(--ink)
}

.sec-head h2 span {
  color: var(--brand)
}

.sec-head p {
  margin-top: 14px;
  color: var(--ink-2);
  font-size: 16.5px
}

.eyebrow-inline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
  background: var(--brand-soft);
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: .25s;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 22px rgba(200, 32, 40, .28)
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px)
}

.btn-brand {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
  box-shadow: 0 8px 22px rgba(48, 120, 224, .28)
}

.btn-brand:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(48, 120, 224, .38)
}

.btn-outline {
  border-color: var(--brand);
  color: var(--brand);
  background: transparent
}

.btn-outline:hover {
  background: var(--brand);
  color: #fff
}

.btn-white {
  background: #fff;
  color: var(--brand-dark)
}

.btn-white:hover {
  background: var(--brand-soft);
  transform: translateY(-2px)
}

/* ---------- Top bar ---------- */
.topbar {
  background: var(--ink);
  color: #cfe0ef;
  font-size: 13.5px
}

.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 40px;
  gap: 12px
}

.topbar a {
  color: #cfe0ef;
  transition: .2s
}

.topbar a:hover {
  color: #fff
}

.topbar .tb-left {
  display: flex;
  gap: 20px;
  align-items: center
}

.topbar .tb-right {
  display: flex;
  gap: 18px;
  align-items: center
}

.topbar .tb-right .sep {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, .25)
}

.topbar svg {
  vertical-align: -2px;
  margin-right: 5px
}

@media(max-width:768px) {
  .topbar .tb-left .hide-sm {
    display: none
  }

  .topbar .tb-right {
    display: none
  }

  .topbar .tb-left {
    gap: 12px
  }
}

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #fff;
  transition: .3s;
  border-bottom: 1px solid transparent
}

.header.scrolled {
  box-shadow: 0 6px 24px rgba(11, 46, 59, .08);
  border-color: var(--line)
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 20px
}

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

.logo img {
  height: 56px;
  width: auto
}

.logo .logo-txt {
  line-height: 1.1
}

.logo .logo-txt b {
  font-family: 'Poppins';
  font-size: 20px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: .5px
}

.logo .logo-txt small {
  display: block;
  font-size: 9.5px;
  letter-spacing: .3em;
  color: var(--gray);
  text-transform: uppercase
}

@media(max-width:768px) {
  .logo img {
    height: 48px
  }
}

.nav {
  display: flex;
  align-items: center;
  gap: 35px
}

.nav>li {
  position: relative
}

.nav>li>a {
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  transition: .2s;
  padding: 6px 0
}

.nav>li>a:hover,
.nav>li.active>a {
  color: var(--brand)
}

.nav>li>a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--brand);
  transition: .3s;
  border-radius: 2px
}

.nav>li>a:hover::after,
.nav>li.active>a::after {
  width: 100%
}

.nav .btn {
  margin-left: 6px;
  padding: 11px 20px;
  font-size: 14px
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: var(--brand-soft);
  border: 2px solid var(--brand);
  border-radius: 10px;
  cursor: pointer;
  padding: 0;
  width: 46px;
  height: 44px
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: var(--brand);
  border-radius: 3px;
  transition: .3s
}

.hamburger.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg)
}

.hamburger.open span:nth-child(2) {
  opacity: 0
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg)
}

@media(max-width:1024px) {
  .nav {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 34px 30px 30px;
    gap: 8px;
    box-shadow: -20px 0 50px rgba(11, 46, 59, .15);
    transition: .35s;
    z-index: 998
  }

  .nav.open {
    right: 0
  }

  .nav>li {
    width: 100%
  }

  .nav>li>a {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    font-size: 16px
  }

  .nav .btn {
    margin: 18px 0 0;
    width: 100%
  }

  .hamburger {
    display: flex;
    z-index: 999
  }
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 46, 59, .5);
  z-index: 997;
  opacity: 0;
  pointer-events: none;
  transition: .3s
}

.nav-overlay.show {
  opacity: 1;
  pointer-events: auto
}

/* ---------- Dropdown / Mega menu (二级栏目) ---------- */
.nav .has-drop {
  position: relative
}

.nav .has-drop>.drop-link {
  display: flex;
  align-items: center;
  gap: 5px
}

.nav .has-drop>.drop-link .chev {
  transition: .25s
}

.nav .has-drop:hover>.drop-link .chev,
.nav .has-drop.open>.drop-link .chev {
  transform: rotate(180deg)
}

.dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 22px 55px rgba(11, 46, 59, .18);
  border: 1px solid var(--line);
  padding: 14px;
  min-width: 230px;
  opacity: 0;
  visibility: hidden;
  transition: .28s;
  z-index: 990;
}

.dropdown::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -14px;
  height: 14px
}

.nav .has-drop:hover>.dropdown,
.nav .has-drop.open>.dropdown,
.nav .has-drop:focus-within>.dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0)
}

.dropdown.mega {
  width: 640px
}

.dropdown .drop-head {
  display: grid;
  grid-template-columns: repeat(3, 1fr);   /* 默认每行固定 3 个 */
  gap: 14px
}

.dropdown .drop-col {
  display: grid;
  gap: 4px;
  align-content: start
}


@media(min-width:1025px) {
  .dropdown .drop-head:has(> .drop-col:nth-child(2):last-child) {
    grid-template-columns: repeat(2, 1fr)
  }
}

.dropdown .drop-title {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brand);
  padding: 6px 12px 4px
}

.dropdown a {
  display: flex;
  flex-direction: column;
  gap: 1px;
  padding: 9px 12px;
  border-radius: 9px;
  transition: .2s;
  border-left: 3px solid transparent
}

.dropdown a:hover {
  background: var(--brand-soft);
  border-left-color: var(--brand)
}

.dropdown a b {
  font-size: 14px;
  color: var(--ink);
  font-weight: 600
}

.dropdown a small {
  font-size: 12px;
  color: var(--gray);
  font-weight: 400
}

.dropdown.simple a {
  flex-direction: row;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink)
}

.dropdown.simple a:hover {
  color: var(--brand)
}

@media(max-width:1024px) {
  .nav .has-drop {
    position: static
  }

  .dropdown,
  .dropdown.mega {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: 0;
    border-left: 2px solid var(--brand-soft);
    border-radius: 0;
    padding: 2px 0 2px 8px;
    width: 100%;
    min-width: 0;
    display: none;
    margin: 0 0 8px
  }

  .dropdown::before {
    display: none
  }

  .nav .has-drop.open .dropdown {
    display: block
  }

  .nav .has-drop>.drop-link {
    justify-content: space-between
  }

  .dropdown .drop-head {
    flex-direction: column;
    gap: 8px;
    padding: 0
  }

  .dropdown a b {
    font-size: 14px
  }

  .dropdown a small {
    font-size: 12px
  }
}

/* ---------- Hero (home) ---------- */
.hero {
  position: relative;
  color: #fff;
  overflow: hidden
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(100deg, rgba(6, 28, 48, .93) 0%, rgba(8, 44, 66, .78) 42%, rgba(31, 99, 196, .35) 100%)
}

.hero .container {
  position: relative;
  z-index: 2;
  padding-top: 110px;
  padding-bottom: 120px
}

.hero-inner {
  max-width: 680px
}

.hero .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .25);
  backdrop-filter: blur(6px);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  margin-bottom: 22px;
}

.hero .badge i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #34e3c0;
  box-shadow: 0 0 0 4px rgba(63, 214, 196, .25);
  display: inline-block
}

.hero h1 {
  font-size: clamp(30px, 4.6vw, 56px);
  font-weight: 800;
  letter-spacing: -.5px;
  line-height: 1.15
}

.hero h1 em {
  font-style: normal;
  color: #3fd6c4
}

.hero p.lead {
  margin: 22px 0 32px;
  font-size: clamp(15px, 1.6vw, 18px);
  color: #d6e8f0;
  max-width: 580px
}

.hero .cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px
}

.hero .cert-row {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px
}

.hero .cert-chip {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .22);
  padding: 7px 14px;
  border-radius: 8px;
  font-size: 12.5px;
  font-weight: 600;
  color: #eaf7f5;
}

.hero .cert-chip svg {
  color: #3fd6c4
}

.hero-card {
  position: absolute;
  right: 40px;
  bottom: 44px;
  z-index: 2;
  display: none;
  background: rgba(255, 255, 255, .10);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 18px;
  padding: 22px 26px;
  max-width: 340px;
  color: #fff;
}

.hero-card h4 {
  font-size: 16px;
  margin-bottom: 6px;
  color: #fff
}

.hero-card p {
  font-size: 13.5px;
  color: #d6e8f0
}

.hero-card .hc-num {
  font-size: 30px;
  font-weight: 800;
  color: #3fd6c4
}

@media(min-width:1200px) {
  .hero-card {
    display: block
  }
}

@media(max-width:768px) {
  .hero .container {
    padding-top: 70px;
    padding-bottom: 84px
  }
}

/* ---------- Inner page hero / breadcrumb ---------- */
.page-hero {
  position: relative;
  color: #fff;
  overflow: hidden;
  padding: 74px 0 64px;
  background: linear-gradient(120deg, #083043 0%, #1f63c4 60%, #3078e0 130%)
}

.page-hero::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(63, 214, 196, .25), transparent 70%);
  pointer-events: none
}

.page-hero .container {
  position: relative;
  z-index: 1
}

.page-hero h1 {
  font-size: clamp(28px, 3.6vw, 42px);
  font-weight: 800;
  margin-bottom: 12px
}

.page-hero p {
  color: #cfe0ef;
  max-width: 640px;
  font-size: 16px
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #8fb4cc;
  margin-bottom: 18px;
  flex-wrap: wrap
}

.breadcrumb a {
  color: #cfe0ef;
  transition: .2s
}

.breadcrumb a:hover {
  color: #fff
}

.breadcrumb .sep {
  color: #5d918a
}

.breadcrumb .cur {
  color: #3fd6c4
}

/* ---------- Stats strip ---------- */
.stats {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
  padding: 46px 0
}

.stats .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px
}

.stat {
  text-align: center;
  padding: 8px
}

.stat .num {
  font-family: 'Poppins';
  font-size: clamp(30px, 3.6vw, 46px);
  font-weight: 800;
  line-height: 1
}

.stat .num sup {
  font-size: .55em
}

.stat .lbl {
  margin-top: 8px;
  font-size: 13.5px;
  font-weight: 600;
  opacity: .92;
  letter-spacing: .03em
}

@media(max-width:820px) {
  .stats .container {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px
  }
}

/* ---------- Products (home grid) ---------- */
.products {
  background: var(--bg)
}

.prod-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: stretch
}

.prod-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: .3s;
  display: flex;
  flex-direction: column;
}

.prod-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent
}

.prod-card .thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #eef4f3
}

.prod-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .5s
}

.prod-card:hover .thumb img {
  transform: scale(1.06)
}

.prod-card .thumb::after {
  content: "View Details →";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(transparent, rgba(31, 99, 196, .9));
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 26px 18px 12px;
  opacity: 0;
  transition: .3s
}

.prod-card:hover .thumb::after {
  opacity: 1
}

.prod-card .body {
  padding: 20px 20px 22px;
  display: flex;
  flex-direction: column;
  flex: 1
}

.prod-card .tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 8px
}

.prod-card h3 {
  font-size: 17.5px;
  font-weight: 700;
  margin-bottom: 8px
}

.prod-card p {
  font-size: 13.5px;
  color: var(--ink-2);
  flex: 1
}

.prod-card .spec {
  margin-top: auto;
  padding-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px
}

.prod-card .spec span {
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-size: 11.5px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px
}

.prod-more {
  text-align: center;
  margin-top: 44px
}

@media(max-width:1100px) {
  .prod-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:560px) {
  .prod-grid {
    grid-template-columns: 1fr
  }
}

/* ---------- Industries ---------- */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px
}

.ind-item {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: .3s;
}

.ind-item:hover {
  border-color: var(--brand);
  box-shadow: var(--shadow);
  transform: translateY(-4px)
}

.ind-item .ind-img {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bg)
}

.ind-item .ind-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .5s
}

.ind-item:hover .ind-img img {
  transform: scale(1.07)
}

.ind-item .ind-body {
  padding: 18px 20px 20px
}

.ind-item h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 3px
}

.ind-item p {
  font-size: 13px;
  color: var(--ink-2)
}

@media(max-width:900px) {
  .industry-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:560px) {
  .industry-grid {
    grid-template-columns: 1fr
  }
}

/* ---------- Why choose us ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

.why-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: .3s;
  position: relative;
  overflow: hidden
}

.why-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  opacity: 0;
  transition: .3s
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg)
}

.why-card:hover::before {
  opacity: 1
}

.why-card .no {
  font-family: 'Poppins';
  font-size: 15px;
  font-weight: 800;
  color: var(--brand);
  letter-spacing: .1em;
  margin-bottom: 14px
}

.why-card .ico {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--brand-soft);
  color: var(--brand);
  margin-bottom: 18px
}

.why-card h3 {
  font-size: 18px;
  margin-bottom: 10px
}

.why-card p {
  font-size: 14px;
  color: var(--ink-2)
}

@media(max-width:1000px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:620px) {
  .why-grid {
    grid-template-columns: 1fr
  }
}

/* ---------- Process ---------- */
.process {
  background: var(--bg)
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px
}

.step {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 26px 28px;
  transition: .3s
}

.step:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px)
}

.step .s-num {
  font-family: 'Poppins';
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  margin-bottom: 18px
}

.step h3 {
  font-size: 17px;
  margin-bottom: 8px
}

.step p {
  font-size: 13.5px;
  color: var(--ink-2)
}

.step .s-arrow {
  position: absolute;
  right: -14px;
  top: 44px;
  color: var(--brand-2);
  z-index: 2;
  display: none
}

@media(min-width:1100px) {
  .step .s-arrow {
    display: block
  }
}

@media(max-width:1020px) {
  .steps {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:560px) {
  .steps {
    grid-template-columns: 1fr
  }
}

/* ---------- Quality split ---------- */
.ql-wrap {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center
}

.ql-media {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-lg)
}

.ql-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 420px
}

.ql-media .ql-chip {
  position: absolute;
  left: 22px;
  bottom: 22px;
  background: rgba(255, 255, 255, .94);
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 16px;
  align-items: center
}

.ql-chip .n {
  font-family: 'Poppins';
  font-size: 28px;
  font-weight: 800;
  color: var(--brand)
}

.ql-chip .t {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-2)
}

.ql-text h2 {
  font-size: clamp(24px, 3vw, 34px);
  margin-bottom: 18px
}

.ql-text h2 span {
  color: var(--brand)
}

.ql-text>p {
  color: var(--ink-2);
  margin-bottom: 24px
}

.tests {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px
}

.test {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px
}

.test svg {
  flex-shrink: 0;
  color: var(--brand);
  margin-top: 2px
}

.test b {
  display: block;
  font-size: 14px
}

.test span {
  font-size: 12.5px;
  color: var(--ink-2)
}

@media(max-width:960px) {
  .ql-wrap {
    grid-template-columns: 1fr;
    gap: 36px
  }
}

/* ---------- Factory ---------- */
.factory {
  background: var(--bg)
}

.fact-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 26px
}

.fact-stat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px 20px
}

.fact-stat b {
  font-family: 'Poppins';
  font-size: 26px;
  font-weight: 800;
  color: var(--brand);
  display: block
}

.fact-stat span {
  font-size: 13px;
  color: var(--ink-2)
}

/* ---------- Certifications ---------- */
.cert-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

.cert-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  text-align: center;
  transition: .3s
}

.cert-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px)
}

.cert-card img.cert-img {
  max-height: 190px;
  margin: 0 auto 16px;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(11, 46, 59, .12)
}

.cert-card .cert-ico {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--brand-soft);
  color: var(--brand)
}

.cert-card h3 {
  font-size: 16.5px;
  margin-bottom: 6px
}

.cert-card p {
  font-size: 13px;
  color: var(--ink-2)
}

@media(max-width:900px) {
  .cert-wrap {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:560px) {
  .cert-wrap {
    grid-template-columns: 1fr
  }
}

/* ---------- Testimonials ---------- */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

.testi-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  position: relative;
  transition: .3s
}

.testi-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px)
}

.testi-card .quote {
  font-size: 54px;
  line-height: 1;
  color: var(--brand-2);
  font-family: Georgia, serif;
  height: 30px
}

.testi-card p {
  font-size: 14.5px;
  color: var(--ink-2);
  font-style: italic;
  margin: 14px 0 22px
}

.testi-card .who {
  display: flex;
  align-items: center;
  gap: 14px
}

.testi-card .who .av {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
  font-weight: 800;
  font-family: 'Poppins'
}

.testi-card .who b {
  display: block;
  font-size: 14.5px
}

.testi-card .who span {
  font-size: 12.5px;
  color: var(--gray)
}

.stars {
  color: #f5b50a;
  letter-spacing: 2px;
  font-size: 14px
}

@media(max-width:900px) {
  .testi-grid {
    grid-template-columns: 1fr
  }
}

/* ---------- News ---------- */
.news {
  background: var(--bg)
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

.news-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: .3s;
  display: flex;
  flex-direction: column
}

.news-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px)
}

.news-card .n-date {
  font-size: 12.5px;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px
}

.news-card .n-date::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand)
}

.news-card .n-body {
  padding: 22px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column
}

.news-card h3 {
  font-size: 16.5px;
  line-height: 1.5;
  margin-bottom: 10px
}

.news-card p {
  font-size: 13.5px;
  color: var(--ink-2);
  flex: 1
}

.news-card a.more {
  color: var(--brand);
  font-weight: 700;
  font-size: 13.5px;
  margin-top: 14px;
  display: inline-flex;
  gap: 6px;
  align-items: center
}

.news-card a.more:hover {
  gap: 10px
}

@media(max-width:900px) {
  .news-grid {
    grid-template-columns: 1fr
  }
}

/* ---------- Contact CTA ---------- */
.contact {
  position: relative;
  color: #fff;
  overflow: hidden
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, #083043 0%, #1f63c4 55%, #3078e0 130%)
}

.contact .container {
  position: relative;
  z-index: 1
}

.cta-inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 56px;
  align-items: start
}

.cta-txt h2 {
  font-size: clamp(24px, 3vw, 34px);
  margin-bottom: 18px
}

.cta-txt p {
  color: #cfe0ef;
  margin-bottom: 28px
}

.cta-list {
  display: grid;
  gap: 16px
}

.cta-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start
}

.cta-list .ci {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, .12);
  display: grid;
  place-items: center;
  color: #3fd6c4
}

.cta-list b {
  display: block;
  font-size: 15px
}

.cta-list span {
  font-size: 13.5px;
  color: #cfe0ef
}

.quote-form {
  background: #fff;
  color: var(--ink);
  border-radius: 18px;
  padding: 34px 30px;
  box-shadow: var(--shadow-lg)
}

.quote-form h3 {
  font-size: 21px;
  margin-bottom: 6px
}

.quote-form .sub {
  font-size: 13.5px;
  color: var(--ink-2);
  margin-bottom: 22px
}

.frm {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px
}

.frm .full {
  grid-column: 1/-1
}

.frm label {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink);
  display: block;
  margin-bottom: 6px
}

.frm input,
.frm select,
.frm textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14px;
  font-family: inherit;
  color: var(--ink);
  background: #fbfdfd;
  transition: .2s;
  outline: none;
}

.frm input:focus,
.frm select:focus,
.frm textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(0, 169, 157, .14)
}

.frm textarea {
  resize: vertical;
  min-height: 90px
}

.frm .btn {
  width: 100%;
  margin-top: 4px
}

.frm-note {
  grid-column: 1/-1;
  font-size: 12px;
  color: var(--gray);
  text-align: center;
  margin-top: 4px
}

@media(max-width:960px) {
  .cta-inner {
    grid-template-columns: 1fr;
    gap: 40px
  }
}

/* ---------- Footer ---------- */
.footer {
  background: #072430;
  color: #a9c3d6;
  font-size: 14px
}

.footer .container {
  padding-top: 70px;
  padding-bottom: 30px
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, .10)
}

.footer h4 {
  color: #fff;
  font-size: 15.5px;
  margin-bottom: 18px;
  font-weight: 700
}

.foot-brand p {
  margin: 16px 0 0;
  font-size: 13.5px
}

.footer ul li {
  margin-bottom: 11px
}

.footer ul li a {
  color: #a9c3d6;
  transition: .2s;
  display: inline-flex;
  gap: 8px;
  align-items: center
}

.footer ul li a:hover {
  color: #3fd6c4;
  padding-left: 4px
}

.footer ul li a::before {
  content: "›";
  color: #3fd6c4
}

.foot-contact li {
  display: flex;
  gap: 10px;
  margin-bottom: 13px;
  align-items: flex-start
}

.foot-contact svg {
  color: #3fd6c4;
  flex-shrink: 0;
  margin-top: 3px
}

.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 22px;
  font-size: 12.5px
}

.foot-bottom a {
  color: #3fd6c4
}

@media(max-width:960px) {
  .foot-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:560px) {
  .foot-grid {
    grid-template-columns: 1fr
  }
}

/* ---------- Back to top ---------- */
#backTop {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 0;
  cursor: pointer;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
  font-size: 18px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transition: .3s;
  z-index: 900
}

#backTop.show {
  opacity: 1;
  pointer-events: auto
}

@media(max-width:768px) {
  #backTop {
    right: 16px;
    bottom: 16px;
    width: 42px;
    height: 42px
  }
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease
}

.reveal.in {
  opacity: 1;
  transform: none
}

/* ============================================================
   INNER PAGE STYLES
   ============================================================ */

/* ---------- Two-column content layout ---------- */
.layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 44px;
  align-items: start
}

.sidebar {
  position: sticky;
  top: 100px;
  display: grid;
  gap: 22px
}

.side-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden
}

.side-card h4 {
  font-size: 15px;
  font-weight: 700;
  padding: 16px 20px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
  letter-spacing: .03em
}

.side-card ul {
  padding: 8px 0
}

.side-card ul li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 20px;
  font-size: 14px;
  color: var(--ink-2);
  border-left: 3px solid transparent;
  transition: .2s
}

.side-card ul li a:hover,
.side-card ul li.active a {
  color: var(--brand);
  border-left-color: var(--brand);
  background: var(--brand-soft)
}

.side-card .side-contact {
  padding: 18px 20px
}

.side-card .side-contact p {
  font-size: 13px;
  color: var(--ink-2);
  margin-bottom: 10px
}

.side-card .side-contact b {
  color: var(--brand);
  font-size: 15px
}

@media(max-width:960px) {
  .layout {
    grid-template-columns: 1fr
  }

  .sidebar {
    position: static;
    grid-template-columns: 1fr
  }
}

/* ---------- Tables ---------- */
.tbl-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff
}

table.spec {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 0
}

table.spec th,
table.spec td {
  padding: 13px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line)
}

table.spec th {
  background: var(--bg);
  font-weight: 700;
  color: var(--ink);
  font-size: 13.5px;
  white-space: nowrap
}

table.spec tr:last-child td {
  border-bottom: 0
}

table.spec td:first-child {
  font-weight: 600;
  color: var(--brand-dark);
  white-space: nowrap
}

table.spec tr:hover td {
  background: #fafcfc
}

/* ---------- Product list page ---------- */
.cat-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px
}

.cat-filter button {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink-2);
  border-radius: 999px;
  padding: 9px 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: .2s;
  font-family: inherit;
}

.cat-filter button:hover {
  border-color: var(--brand);
  color: var(--brand)
}

.cat-filter button.active {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 6px 18px rgba(48, 120, 224, .25)
}

.prod-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: .3s;
  margin-bottom: 20px;
}

.prod-row:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: transparent
}

.prod-row .pimg {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3
}

.prod-row .pimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .5s
}

.prod-row:hover .pimg img {
  transform: scale(1.05)
}

.prod-row .pbody {
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center
}

.prod-row .ptag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 6px
}

.prod-row h3 {
  font-size: 19px;
  margin-bottom: 8px
}

.prod-row p {
  font-size: 14px;
  color: var(--ink-2);
  margin-bottom: 14px
}

.prod-row .spec {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px
}

.prod-row .spec span {
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 11px;
  border-radius: 6px
}

@media(max-width:700px) {
  .prod-row {
    grid-template-columns: 1fr
  }

  .prod-row .pimg {
    aspect-ratio: 16/9
  }
}

/* ---------- Product detail ---------- */
.pd-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: start
}

.pd-gallery {
  position: sticky;
  top: 100px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-lg)
}

.pd-gallery img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover
}

.pd-info .ptag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 10px
}

.pd-info h1 {
  font-size: clamp(24px, 3vw, 32px);
  margin-bottom: 12px
}

.pd-info .pd-desc {
  color: var(--ink-2);
  margin-bottom: 20px
}

.pd-info .keypoints {
  display: grid;
  gap: 10px;
  margin-bottom: 22px
}

.pd-info .keypoints li {
  display: flex;
  gap: 10px;
  font-size: 14.5px;
  color: var(--ink)
}

.pd-info .keypoints li svg {
  color: var(--brand);
  flex-shrink: 0;
  margin-top: 3px
}

.pd-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px
}

.pd-meta {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px 20px;
  font-size: 13.5px
}

.pd-meta div {
  display: flex;
  gap: 10px;
  padding: 5px 0
}

.pd-meta .k {
  color: var(--gray);
  min-width: 110px
}

.pd-meta .v {
  color: var(--ink);
  font-weight: 600
}

@media(max-width:820px) {
  .pd-top {
    grid-template-columns: 1fr;
    gap: 30px
  }

  .pd-gallery {
    position: static
  }
}

/* ---------- Related products ---------- */
.related .prod-grid {
  grid-template-columns: repeat(4, 1fr)
}

@media(max-width:900px) {
  .related .prod-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:560px) {
  .related .prod-grid {
    grid-template-columns: 1fr
  }
}

/* ---------- Timeline (about) ---------- */
.timeline {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  padding-left: 30px
}

.timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 6px;
  bottom: 6px;
  width: 3px;
  background: linear-gradient(var(--brand), var(--brand-2));
  border-radius: 3px
}

.tl-item {
  position: relative;
  padding: 0 0 36px 26px
}

.tl-item::before {
  content: "";
  position: absolute;
  left: -29px;
  top: 6px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #fff;
  border: 4px solid var(--brand);
  box-shadow: 0 0 0 4px var(--brand-soft)
}

.tl-item .year {
  font-family: 'Poppins';
  font-weight: 800;
  color: var(--brand);
  font-size: 22px;
  margin-bottom: 6px
}

.tl-item h3 {
  font-size: 17px;
  margin-bottom: 6px
}

.tl-item p {
  font-size: 14px;
  color: var(--ink-2)
}

/* ---------- Gallery grid (factory/quality) ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px
}

.g-item {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
  transition: .3s
}

.g-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: .5s
}

.g-item:hover img {
  transform: scale(1.05)
}

.g-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(transparent, rgba(6, 34, 52, .9));
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 40px 16px 14px
}

@media(max-width:820px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:560px) {
  .gallery-grid {
    grid-template-columns: 1fr
  }
}

/* ---------- Pills / badges ---------- */
.pill {
  display: inline-block;
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-size: 12.5px;
  font-weight: 600;
  padding: 5px 13px;
  border-radius: 999px
}

/* ---------- FAQ ---------- */
.faq {
  max-width: 820px;
  margin: 0 auto
}

.faq details {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  margin-bottom: 12px;
  overflow: hidden
}

.faq summary {
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 700;
  font-size: 15.5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  list-style: none
}

.faq summary::-webkit-details-marker {
  display: none
}

.faq summary::after {
  content: "+";
  font-size: 22px;
  color: var(--brand);
  font-weight: 700;
  transition: .3s;
  flex-shrink: 0
}

.faq details[open] summary::after {
  transform: rotate(45deg)
}

.faq details .fa-body {
  padding: 0 22px 20px;
  color: var(--ink-2);
  font-size: 14.5px
}

/* ---------- Map placeholder ---------- */
.map-box {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: linear-gradient(135deg, #e9f2fc, #cdeee9);
  display: flex;
  flex-direction: column
}

.map-box>div {
  display: grid;
  place-items: center;
  text-align: center;
  padding: 26px 20px 20px
}

.map-box .pin {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  display: grid;
  place-items: center;
  color: #fff;
  margin: 0 auto 14px;
  box-shadow: 0 10px 24px rgba(48, 120, 224, .4)
}

.map-box p {
  color: var(--brand-dark);
  font-weight: 600;
  font-size: 15px
}

.map-box small {
  color: var(--ink-2);
  font-size: 13px
}

.map-box .map-embed {
  width: 100%;
  height: 300px;
  border: 0;
  display: block
}

/* ---------- Pagination ---------- */
.pagination {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 44px
}

.pagination a,
.pagination span {
  min-width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-2);
  background: #fff;
  transition: .2s;
}

.pagination a:hover {
  border-color: var(--brand);
  color: var(--brand)
}

.pagination .cur {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
  border-color: transparent
}

.news-list-section {
  padding-bottom: 24px;
}

/* ---------- Article / news detail ---------- */
.article {
  max-width: 860px;
  margin: 0 auto
}

.article h1 {
  font-size: clamp(24px, 3vw, 34px);
  margin-bottom: 14px
}

.article .art-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--gray);
  font-size: 13.5px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line)
}

.article .art-cover {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 28px;
  box-shadow: var(--shadow)
}

.article .art-cover img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover
}

.article h2 {
  font-size: 22px;
  margin: 28px 0 12px
}

.article h3 {
  font-size: 18px;
  margin: 22px 0 10px
}

.article p {
  color: var(--ink-2);
  margin-bottom: 16px;
  font-size: 15.5px
}

.article ul {
  list-style: disc;
  padding-left: 22px;
  color: var(--ink-2);
  margin-bottom: 16px
}

.article ul li {
  margin-bottom: 8px
}

.article blockquote {
  border-left: 4px solid var(--brand);
  background: var(--brand-soft);
  padding: 16px 20px;
  border-radius: 0 12px 12px 0;
  margin: 22px 0;
  font-style: italic;
  color: var(--brand-dark)
}

/* ---------- Contact info cards ---------- */
.info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 48px
}

.info-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: .3s
}

.info-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px)
}

.info-card .ic {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--brand-soft);
  color: var(--brand)
}

.info-card h3 {
  font-size: 16px;
  margin-bottom: 8px
}

.info-card p {
  font-size: 14px;
  color: var(--ink-2)
}

@media(max-width:900px) {
  .info-cards {
    grid-template-columns: 1fr
  }
}

/* ============================================================
   SOCIAL / QR / FLOATING / ICON ENHANCEMENTS
   ============================================================ */
/* ---------- Social links ---------- */
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px
}

.social-links a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .18);
  color: #cfe0ef;
  transition: .25s;
}

.social-links a:hover {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
  border-color: transparent;
  transform: translateY(-3px)
}

.social-links.light a {
  background: var(--brand-soft);
  border-color: var(--line);
  color: var(--brand)
}

.social-links.light a:hover {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff
}

/* ---------- QR codes ---------- */
.qr-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px
}

.qr-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 12px;
  padding: 10px 12px
}

.qr-item img {
  width: 58px;
  height: 58px;
  border-radius: 8px;
  background: #fff;
  padding: 3px;
  flex-shrink: 0
}

.qr-item b {
  display: block;
  color: #fff;
  font-size: 13px
}

.qr-item span {
  font-size: 11px;
  color: #8fb4cc
}

.qr-item.light {
  background: var(--bg);
  border-color: var(--line)
}

.qr-item.light b {
  color: var(--ink)
}

.qr-item.light span {
  color: var(--gray)
}

/* ---------- Floating buttons ---------- */
.float-wa {
  position: fixed;
  right: 22px;
  bottom: 90px;
  z-index: 901;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25D366;
  color: #fff;
  box-shadow: 0 10px 26px rgba(63, 214, 196, .45);
  transition: .3s;
  cursor: pointer;
}

.float-wa:hover {
  transform: scale(1.08)
}

.float-wa::after {
  content: "WhatsApp";
  position: absolute;
  right: 66px;
  top: 50%;
  transform: translateY(-50%);
  background: #0b2e3b;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: .25s
}

.float-wa:hover::after {
  opacity: 1
}

@media(max-width:768px) {
  .float-wa {
    width: 50px;
    height: 50px;
    right: 16px;
    bottom: 78px
  }
}

/* ---------- Section title with icon ---------- */
.sec-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px
}

.sec-title .st-ico {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
  box-shadow: 0 6px 18px rgba(48, 120, 224, .28)
}

.sec-title h2 {
  font-size: clamp(20px, 2.6vw, 28px);
  font-weight: 800
}

.sec-title p {
  color: var(--ink-2);
  font-size: 14px;
  margin-top: 2px
}

@media(max-width:560px) {
  .sec-title {
    flex-wrap: wrap
  }
}

/* ---------- Icon chips on industry cards ---------- */
.ind-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px
}

.ind-top .iico {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: var(--brand-soft);
  color: var(--brand)
}

.ind-top h3 {
  font-size: 18px;
  font-weight: 700
}

.typ-list {
  list-style: none;
  margin-top: 12px;
  display: grid;
  gap: 7px
}

.typ-list li {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  font-size: 13.5px;
  color: var(--ink-2)
}

.typ-list li svg {
  color: var(--brand);
  flex-shrink: 0;
  margin-top: 3px
}

/* ---------- Pain / solution block (why-us) ---------- */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

.pain-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: .3s
}

.pain-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px)
}

.pain-card .pc-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  font-weight: 700;
  font-size: 15px;
  color: var(--ink)
}

.pain-card .pc-head .pi {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  flex-shrink: 0
}

.pain-card .pc-head .pi.red {
  background: #fdecec;
  color: var(--accent)
}

.pain-card .pc-head .pi.green {
  background: var(--brand-soft);
  color: var(--brand)
}

.pain-card .pc-body {
  padding: 0 20px 20px
}

.pain-card .pc-body .dilemma {
  font-size: 13.5px;
  color: var(--ink-2);
  background: var(--bg);
  border-left: 3px solid var(--accent);
  border-radius: 0 10px 10px 0;
  padding: 12px 14px;
  margin-bottom: 14px
}

.pain-card .pc-body .solution {
  font-size: 13.5px;
  color: var(--ink-2);
  background: var(--brand-soft);
  border-left: 3px solid var(--brand);
  border-radius: 0 10px 10px 0;
  padding: 12px 14px;
  margin-bottom: 12px
}

.pain-card .pc-body .takeaway {
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-dark)
}

@media(max-width:1000px) {
  .pain-grid {
    grid-template-columns: 1fr
  }
}

/* ---------- Value cards (about) ---------- */
.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px
}

.value-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px;
  text-align: center;
  transition: .3s
}

.value-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px)
}

.value-card .vico {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
  box-shadow: 0 8px 20px rgba(48, 120, 224, .28)
}

.value-card h3 {
  font-size: 16.5px;
  margin-bottom: 8px
}

.value-card p {
  font-size: 13px;
  color: var(--ink-2)
}

@media(max-width:900px) {
  .value-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:560px) {
  .value-grid {
    grid-template-columns: 1fr
  }
}

/* ---------- Process flow (factory) ---------- */
.flow-steps {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px
}

.flow-step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px 10px;
  text-align: center;
  transition: .3s;
  position: relative
}

.flow-step:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px)
}

.flow-step .f-ico {
  width: 40px;
  height: 40px;
  margin: 0 auto 10px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--brand-soft);
  color: var(--brand)
}

.flow-step b {
  display: block;
  font-size: 12.5px;
  color: var(--ink)
}

.flow-step span {
  font-size: 11px;
  color: var(--gray)
}

.flow-step .f-num {
  position: absolute;
  top: -8px;
  left: 8px;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: grid;
  place-items: center
}

.flow-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-2);
  font-size: 18px
}

@media(max-width:1100px) {
  .flow-steps {
    grid-template-columns: repeat(4, 1fr)
  }

  .flow-arrow {
    display: none
  }
}

@media(max-width:620px) {
  .flow-steps {
    grid-template-columns: repeat(2, 1fr)
  }
}

/* ---------- News tags / share ---------- */
.news-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px
}

.news-tags a {
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 6px;
  transition: .2s
}

.news-tags a:hover {
  background: var(--brand);
  color: #fff
}

.share-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid var(--line)
}

.share-row .lbl {
  font-weight: 700;
  font-size: 14px;
  color: var(--ink)
}

.share-row .social-links {
  margin: 0
}

.share-row .social-links a {
  width: 40px;
  height: 40px
}

/* ---------- Responsive-safe layout utilities (replace inline grids) ---------- */
@media(min-width:961px) {
  .layout-2col {
    grid-template-columns: 1fr 1.05fr
  }
}

@media(min-width:961px) {
  .layout-2eq {
    grid-template-columns: 1fr 1fr;
    align-items: stretch
  }
}

@media(min-width:621px) {
  .why-3 {
    grid-template-columns: repeat(3, 1fr)
  }
}

/* ---------- Product card grid (products.html) ---------- */
.p-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

.p-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: .3s
}

.p-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px)
}

.p-card .pc-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
  background: var(--bg)
}

.p-card .pc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .5s
}

.p-card:hover .pc-img img {
  transform: scale(1.06)
}

.p-card .pc-img .ptag {
  position: absolute;
  left: 14px;
  top: 14px;
  background: rgba(5, 24, 42, .82);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 5px 12px;
  border-radius: 20px;
  backdrop-filter: blur(4px)
}

.p-card .pc-body {
  padding: 20px 20px 22px;
  display: flex;
  flex-direction: column;
  flex: 1
}

.p-card .pc-body h3 {
  font-size: 16.5px;
  line-height: 1.4;
  margin-bottom: 8px;
  font-weight: 700
}

.p-card .pc-body p {
  font-size: 13.5px;
  color: var(--ink-2);
  line-height: 1.65;
  margin-bottom: 14px;
  flex: 1
}

.p-card .pc-body .spec {
  margin: 0 0 16px
}

.p-card .pc-body .btn {
  align-self: flex-start;
  padding: 10px 20px;
  font-size: 13.5px
}

@media(max-width:1000px) {
  .p-cards {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:620px) {
  .p-cards {
    grid-template-columns: 1fr
  }
}

@media(max-width:620px) {
  .p-card .pc-img {
    aspect-ratio: 16/9
  }
}

/* ============================================================
   图标点缀（统计数字 / 流程步骤 / 规格对勾 / 新闻日历 / 侧栏箭头）
   ============================================================ */
.stats .stat .ico {
  width: 46px;
  height: 46px;
  margin: 0 auto 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .22);
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 8px 20px rgba(6, 28, 48, .18)
}

.stats .stat .ico svg {
  width: 22px;
  height: 22px
}

.steps .step .ico {
  width: 52px;
  height: 52px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
  margin-bottom: 14px;
  box-shadow: 0 10px 24px rgba(48, 120, 224, .26)
}

.steps .step .ico svg {
  width: 24px;
  height: 24px
}

.spec span::before {
  content: "✓";
  color: var(--brand);
  font-weight: 800;
  margin-right: 4px;
  font-size: 11px
}

.news-card .n-date::before {
  content: "";
  display: inline-block;
  width: 13px;
  height: 13px;
  margin-right: 6px;
  vertical-align: -2px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233078e0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='17' rx='2'/%3E%3Cpath d='M8 2v4M16 2v4M3 10h18'/%3E%3C/svg%3E") no-repeat center/contain
}

.sidebar .side-card ul li a::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 9px;
  border-top: 1.5px solid var(--brand);
  border-right: 1.5px solid var(--brand);
  transform: rotate(45deg);
  vertical-align: 1px;
  transition: .2s
}

.sidebar .side-card ul li a:hover::before,
.sidebar .side-card ul li.active a::before {
  transform: rotate(45deg) translate(2px, -2px)
}

/* ---------- Inner-page hero banners ---------- */
.page-hero {
  background-size: cover;
  background-position: center;
  background-color: #083043
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(4, 24, 42, .94) 0%, rgba(6, 38, 58, .84) 42%, rgba(6, 38, 58, .55) 100%);
  pointer-events: none;
  z-index: 0
}

.ph-products {
  background-image: url('../images/banner-products.jpg')
}

.ph-product {
  background-image: url('../images/banner-product.jpg')
}

.ph-industries {
  background-image: url('../images/banner-industries.jpg')
}

.ph-why-us {
  background-image: url('../images/banner-why-us.jpg')
}

.ph-quality {
  background-image: url('../images/banner-quality.jpg')
}

.ph-factory {
  background-image: url('../images/banner-factory.jpg')
}

.ph-about {
  background-image: url('../images/banner-about.jpg')
}

.ph-news {
  background-image: url('../images/banner-news.jpg')
}

.ph-news-detail {
  background-image: url('../images/banner-news-detail.jpg')
}

.ph-contact {
  background-image: url('../images/banner-contact.jpg')
}

@media(max-width:620px) {
  .page-hero {
    padding: 64px 0 54px
  }
}

/* ---------- Hero slider (home 3-banner carousel) ---------- */
.hero-slides {
  display: flex;
  align-items: stretch;
  will-change: transform;
  transition: transform .85s cubic-bezier(.22, .61, .36, 1);
  touch-action: pan-y;
  -webkit-user-select: none;
  user-select: none
}

.hero-slide {
  flex: 0 0 100%;
  position: relative;
  width: 100%
}

.hero-slide .hero-bg {
  -webkit-user-drag: none
}

.hero-slide.active .hero-bg {
  animation: kenburns 7s ease-out forwards
}

@keyframes kenburns {
  from {
    transform: scale(1)
  }

  to {
    transform: scale(1.07)
  }
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .35);
  background: rgba(255, 255, 255, .12);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: .25s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-arrow:hover {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  border-color: transparent;
  transform: translateY(-50%) scale(1.06)
}

.hero-arrow.prev {
  left: 22px
}

.hero-arrow.next {
  right: 22px
}

.hero-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  display: flex;
  gap: 9px
}

.hero-dots .dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .4);
  cursor: pointer;
  transition: .25s
}

.hero-dots .dot.active {
  background: #3fd6c4;
  box-shadow: 0 0 0 4px rgba(63, 214, 196, .25);
  width: 26px;
  border-radius: 8px
}

@media(max-width:768px) {
  .hero-arrow {
    width: 38px;
    height: 38px;
    font-size: 20px
  }

  .hero-arrow.prev {
    left: 12px
  }

  .hero-arrow.next {
    right: 12px
  }

  .hero-dots {
    bottom: 14px
  }
}

/* ---------- Products: two pillars (wire harness / cable assemblies) ---------- */
.pillar-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  margin-top: 8px
}

.pillar-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  display: block;
  min-height: 340px;
  box-shadow: var(--shadow);
  transition: .3s;
  text-decoration: none
}

.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(11, 46, 59, .18)
}

.pillar-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover
}

.pillar-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 28, 48, .28) 0%, rgba(6, 28, 48, .88) 78%, rgba(6, 28, 48, .96) 100%);
  z-index: 1
}

.pillar-body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  padding: 30px 30px 26px;
  color: #fff
}

.pillar-ico {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
  margin-bottom: 18px;
  box-shadow: 0 8px 22px rgba(48, 120, 224, .4)
}

.pillar-kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #3fd6c4;
  margin-bottom: 6px
}

.pillar-title {
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 800;
  margin-bottom: 10px;
  line-height: 1.15
}

.pillar-desc {
  font-size: 14.5px;
  color: #d6e8f0;
  max-width: 480px;
  margin-bottom: 14px;
  line-height: 1.6
}

.pillar-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px
}

.pillar-tags:before {
  content: ""
}

.pillar-tags::first-line {
  color: #3fd6c4
}

.pillar-body .pillar-tags {
  display: inline-flex
}

.pillar-tags span {
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .22);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600
}

.pillar-cta {
  margin-top: auto;
  font-weight: 700;
  color: #fff;
  font-size: 14.5px;
  border-bottom: 2px solid var(--brand);
  padding-bottom: 3px;
  transition: .2s
}

.pillar-card:hover .pillar-cta {
  color: #3fd6c4
}

.pillar-block {
  scroll-margin-top: 90px
}

.pillar-head {
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(120deg, var(--brand-soft), #fff);
  border: 1px solid #dff2ef;
  border-radius: 16px;
  padding: 22px 26px;
  margin: 46px 0 8px
}

.pillar-head h2 {
  font-size: clamp(21px, 2.4vw, 27px);
  font-weight: 800
}

.pillar-head p {
  color: var(--ink-2);
  font-size: 14.5px;
  margin-top: 3px
}

.custom-wrap {
  margin-top: 52px;
  padding-top: 8px
}

.custom-wrap .sec-head {
  margin-bottom: 22px
}

@media(max-width:860px) {
  .pillar-grid {
    grid-template-columns: 1fr
  }

  .pillar-card {
    min-height: 300px
  }
}

@media(max-width:560px) {
  .pillar-body {
    padding: 22px 20px
  }

  .pillar-desc {
    font-size: 13.5px
  }
}

/* ---------- Home: two-pillar quick entry ---------- */
.home-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 4px 0 30px
}

.home-pillars .hp {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-radius: 14px;
  text-decoration: none;
  color: var(--ink);
  background: #fff;
  border: 1px solid #e2efec;
  transition: .25s;
  box-shadow: 0 4px 14px rgba(11, 46, 59, .05);
}

.home-pillars .hp:hover {
  border-color: var(--brand);
  box-shadow: 0 10px 26px rgba(0, 169, 157, .16);
  transform: translateY(-2px)
}

.home-pillars .hp-ico {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff
}

.home-pillars .hp b {
  display: block;
  font-size: 16.5px;
  font-weight: 800
}

.home-pillars .hp small {
  display: block;
  font-size: 12.5px;
  color: var(--ink-2);
  margin-top: 2px
}

.home-pillars .hp-go {
  margin-left: auto;
  font-size: 20px;
  color: var(--brand);
  font-weight: 700
}

@media(max-width:680px) {
  .home-pillars {
    grid-template-columns: 1fr
  }
}

/* ============================================================
   Cookie 同意弹窗 & 页脚 Legal
   ============================================================ */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1200;
  background: rgba(6, 28, 48, .96);
  color: #d9e7f1;
  padding: 15px 0;
  transform: translateY(110%);
  transition: transform .45s ease;
  box-shadow: 0 -10px 30px rgba(6, 28, 48, .28)
}

.cookie-banner.show {
  transform: translateY(0)
}

.cb-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 22px;
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap
}

.cookie-banner p {
  font-size: 13.5px;
  line-height: 1.6;
  max-width: 780px;
  margin: 0
}

.cookie-banner p a {
  color: #3fd6c4;
  text-decoration: underline
}

.cb-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0
}

.cb-actions .btn {
  padding: 9px 20px;
  font-size: 13px
}

.cb-deny {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .35);
  color: #fff;
  padding: 9px 20px;
  border-radius: var(--radius);
  font-size: 13px;
  cursor: pointer;
  transition: .25s
}

.cb-deny:hover {
  border-color: #3fd6c4;
  color: #3fd6c4
}

@media(max-width:640px) {
  .cb-inner {
    flex-direction: column;
    align-items: flex-start
  }

  .cb-actions {
    width: 100%
  }

  .cb-actions .btn,
  .cb-deny {
    flex: 1;
    text-align: center
  }
}

.foot-legal {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, .10)
}

.foot-legal h4 {
  margin-bottom: 12px
}

.foot-links {
  display: inline-flex;
  gap: 8px;
  flex-wrap: wrap
}

/* ============================================================
   Legal 页面（Privacy / Terms）
   ============================================================ */
.legal-wrap {
  max-width: 900px;
  margin: 0 auto
}

.legal-block {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 28px;
  margin-bottom: 22px;
  box-shadow: var(--shadow)
}

.legal-block h2 {
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
  padding-left: 14px;
  border-left: 4px solid var(--brand)
}

.legal-block p {
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.75;
  margin-bottom: 10px
}

.legal-block ul.typ-list li b {
  color: var(--ink)
}

.legal-date {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px dashed var(--line);
  color: var(--gray);
  font-size: 13px
}

@media(max-width:560px) {
  .legal-block {
    padding: 20px 18px
  }
}

/* ============ 图文 Mega Menu（参考 FirstMold 分类图文样式） ============ */
.dropdown.mega {
  width: 720px
}

.drop-col-card {
  display: grid;
  gap: 4px;
  align-content: start
}

.mega-card {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 12px;
  padding: 9px 10px !important;
  border: 1px solid #dce8f5;
  border-radius: 10px;
  background: linear-gradient(135deg, #fff, var(--brand-soft));
  margin-bottom: 8px
}

.mega-card:hover {
  background: #fff !important
}

.mega-card img {
  width: 84px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0
}

.mega-card .mc-body {
  display: flex;
  flex-direction: column;
  gap: 2px
}

.mega-card .mc-body b {
  font-size: 15px;
  color: var(--ink);
  font-weight: 700
}

.mega-card .mc-body small {
  font-size: 12px;
  color: var(--gray)
}

.drop-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid #e2ebf4
}

.drop-foot a {
  flex-direction: row !important;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  font-weight: 700;
  color: var(--brand);
  font-size: 14px;
  border-left: 0 !important
}

.drop-foot a:hover {
  background: var(--brand-soft);
  color: var(--brand-dark)
}

.drop-foot span {
  font-size: 12px;
  color: var(--gray)
}

/* 行业图文卡 */
.dropdown.mega-ind {
  width: 780px
}

.ind-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px
}

.ind-chip {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 10px;
  padding: 8px !important;
  border: 1px solid #e2ebf4;
  border-radius: 10px
}

.ind-chip img {
  width: 62px;
  height: 46px;
  object-fit: cover;
  border-radius: 7px;
  flex-shrink: 0
}

.ind-chip span {
  display: flex;
  flex-direction: column;
  gap: 1px
}

.ind-chip b {
  font-size: 13px;
  color: var(--ink)
}

.ind-chip small {
  font-size: 11px;
  color: var(--gray)
}

/* 公司图文卡 */
.dropdown.mega-cmp {
  width: 640px
}

.cmp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px
}

.cmp-chip {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 10px;
  padding: 8px !important;
  border: 1px solid #e2ebf4;
  border-radius: 10px
}

.cmp-chip img {
  width: 62px;
  height: 46px;
  object-fit: cover;
  border-radius: 7px;
  flex-shrink: 0
}

.cmp-chip span {
  display: flex;
  flex-direction: column;
  gap: 1px
}

.cmp-chip b {
  font-size: 13px;
  color: var(--ink)
}

.cmp-chip small {
  font-size: 11px;
  color: var(--gray)
}

/* 移动端：图文卡降级为纯文字列表 */
@media(max-width:1024px) {

  .dropdown.mega,
  .dropdown.mega-ind,
  .dropdown.mega-cmp {
    width: 100%
  }

  .mega-card {
    flex-direction: column !important;
    align-items: flex-start;
    gap: 4px;
    background: none !important;
    border: 0 !important;
    padding: 6px 12px !important;
    margin: 0;
    border-radius: 0
  }

  .mega-card img,
  .ind-chip img,
  .cmp-chip img {
    display: none
  }

  .drop-foot {
    display: none
  }

  .ind-grid,
  .cmp-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0
  }

  .ind-chip,
  .cmp-chip {
    flex-direction: column !important;
    align-items: flex-start;
    border: 0 !important;
    border-radius: 0;
    padding: 6px 12px !important
  }
}

/* ===== ① Mega 加宽至接近导航栏宽度 + 大卡大间距（参考 FirstMold） ===== */
.dropdown.mega {
  width: min(1120px, calc(100vw - 48px))
}

.dropdown.mega-ind {
  width: min(1180px, calc(100vw - 48px))
}

.dropdown.mega-cmp {
  width: min(840px, calc(100vw - 48px))
}

.dropdown .drop-head {
  gap: 22px
}

.drop-col-card {
  gap: 6px
}

.dropdown .drop-title {
  padding: 8px 16px 6px;
  font-size: 12px
}

.mega-card {
  gap: 16px;
  padding: 14px 16px !important;
  margin-bottom: 14px;
  border-radius: 12px
}

.mega-card img {
  width: 132px;
  height: 96px;
  border-radius: 10px
}

.mega-card .mc-body b {
  font-size: 16px
}

.mega-card .mc-body small {
  font-size: 12.5px
}

.mega-link {
  padding: 11px 16px !important
}

.mega-link b {
  font-size: 14.5px
}

.mega-link small {
  font-size: 12.5px
}

.drop-foot {
  margin-top: 16px;
  padding-top: 14px
}

.drop-foot a {
  padding: 10px 16px;
  font-size: 15px
}

.drop-foot span {
  font-size: 13px
}

.ind-grid {
  gap: 14px
}

.ind-chip {
  gap: 14px;
  padding: 12px !important;
  border-radius: 12px
}

.ind-chip img {
  width: 96px;
  height: 70px;
  border-radius: 9px
}

.ind-chip b {
  font-size: 14px
}

.ind-chip small {
  font-size: 12px
}

.cmp-grid {
  gap: 14px
}

.cmp-chip {
  gap: 14px;
  padding: 12px !important;
  border-radius: 12px
}

.cmp-chip img {
  width: 92px;
  height: 66px;
  border-radius: 9px
}

.cmp-chip b {
  font-size: 14px
}

.cmp-chip small {
  font-size: 12px
}

/* ===== ② 首页产品卡链接化 ===== */
a.prod-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit
}

a.prod-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent
}

a.prod-card .thumb::after {
  content: "View Details →";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(transparent, rgba(31, 99, 196, .9));
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 26px 18px 12px;
  opacity: 0;
  transition: .3s
}

a.prod-card:hover .thumb::after {
  opacity: 1
}

/* ===== ③ 产品页卡片更舒展 ===== */
.prod-grid {
  gap: 28px
}

.p-cards {
  gap: 30px
}

.p-card .pc-body {
  padding: 24px 24px 26px
}

.p-card .pc-body h3 {
  font-size: 18px;
  margin-bottom: 10px
}

.p-card .pc-body p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 16px
}

.p-card .pc-body .spec {
  margin: 0 0 18px;
  gap: 7px
}

.p-card .pc-body .spec span {
  padding: 5px 12px;
  font-size: 12px
}


/* ===== ④ Mega 字距/图距协调 + 底部社媒 ===== */
.mega-card {
  display: flex !important;
  align-items: center;
  gap: 18px
}

.mega-card .mc-body {
  display: flex;
  flex-direction: column;
  gap: 4px
}

.mega-link {
  display: flex !important;
  flex-direction: column;
  gap: 3px;
  padding: 12px 16px !important
}

.mega-link b {
  font-size: 15px
}

.mega-link small {
  font-size: 13px
}

.ind-chip {
  gap: 16px;
  padding: 13px !important
}

.ind-chip span {
  display: flex;
  flex-direction: column;
  gap: 3px
}

.ind-chip b {
  font-size: 15px
}

.ind-chip small {
  font-size: 12.5px
}

.cmp-chip {
  gap: 16px;
  padding: 13px !important
}

.cmp-chip span {
  display: flex;
  flex-direction: column;
  gap: 3px
}

.cmp-chip b {
  font-size: 15px
}

.cmp-chip small {
  font-size: 12.5px
}

.drop-head {
  gap: 24px
}

.foot-bottom .fb-social {
  display: flex;
  align-items: center;
  gap: 8px
}

.foot-bottom .fb-social a {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 8px;
  color: #cbd5e1;
  transition: .3s;
  text-decoration: none
}

.foot-bottom .fb-social a:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff
}

.foot-bottom .fb-social svg {
  width: 15px;
  height: 15px
}

@media(max-width:760px) {
  .foot-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center
  }
}

/* ===== ⑤ 行业详情页 ===== */
.page-hero .pill {
  display: inline-block;
  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .35);
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 24px;
  margin-bottom: 16px;
  backdrop-filter: blur(4px)
}

.page-hero h1 {
  position: relative;
  z-index: 1
}

.page-hero p {
  position: relative;
  z-index: 1
}

.ind-overview {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 44px;
  align-items: center
}

.ind-overview .ov-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg)
}

.ind-overview .ov-img img {
  width: 100%;
  aspect-ratio: 16/11;
  object-fit: cover
}

.ind-overview h2 {
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.3
}

.ind-overview h2 span {
  color: var(--brand)
}

.ind-overview p {
  color: var(--ink-2);
  line-height: 1.78;
  margin-bottom: 14px;
  font-size: 15px
}

.ind-overview .typ-list {
  margin-top: 10px
}

.ind-overview .typ-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  font-size: 14.5px;
  color: var(--ink)
}

.ind-overview .typ-list svg {
  color: var(--brand);
  flex-shrink: 0
}

.app-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px
}

.app-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: .3s
}

.app-card:hover {
  border-color: var(--brand);
  box-shadow: var(--shadow);
  transform: translateY(-4px)
}

.app-card .ac-ico {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--brand-soft);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px
}

.app-card h3 {
  font-size: 16.5px;
  font-weight: 700;
  margin-bottom: 8px
}

.app-card p {
  font-size: 13.5px;
  color: var(--ink-2);
  line-height: 1.7
}

.rel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px
}

.rel-grid .p-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: .3s
}

.rel-grid .p-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: transparent
}

.rel-grid .p-card .thumb {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--bg)
}

.rel-grid .p-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .5s
}

.rel-grid .p-card:hover .thumb img {
  transform: scale(1.06)
}

.rel-grid .p-card .pbody {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  flex: 1
}

.rel-grid .p-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px
}

.rel-grid .p-card p {
  font-size: 13.5px;
  color: var(--ink-2);
  line-height: 1.65;
  flex: 1
}

.rel-grid .p-card .go {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--brand);
  font-weight: 700;
  font-size: 13.5px;
  margin-top: 12px
}

.ind-link-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px
}

.ind-link-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  text-decoration: none;
  color: inherit;
  transition: .3s
}

.ind-link-chip:hover {
  border-color: var(--brand);
  box-shadow: var(--shadow);
  transform: translateY(-2px)
}

.ind-link-chip img {
  width: 56px;
  height: 42px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0
}

.ind-link-chip.cur {
  border-color: var(--brand);
  background: var(--brand-soft)
}

.ind-link-chip b {
  font-size: 14.5px
}

.ind-link-chip small {
  display: block;
  font-size: 12px;
  color: var(--gray);
  margin-top: 1px
}

@media(max-width:1000px) {
  .ind-overview {
    grid-template-columns: 1fr
  }

  .app-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .rel-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .ind-link-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:620px) {
  .app-grid {
    grid-template-columns: 1fr
  }

  .rel-grid {
    grid-template-columns: 1fr
  }

  .ind-link-grid {
    grid-template-columns: 1fr
  }
}

/* ===== ⑥ 行业卡链接化 ===== */
a.ind-card-link {
  display: block;
  text-decoration: none;
  color: inherit
}

a.ind-card-link:hover .ind-card {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent
}

/* ===== ⑦ 首页行业卡链接化 ===== */
a.ind-item-link {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: .3s;
  text-decoration: none;
  color: inherit
}

a.ind-item-link:hover {
  border-color: var(--brand);
  box-shadow: var(--shadow);
  transform: translateY(-4px)
}

a.ind-item-link:hover .ind-img img {
  transform: scale(1.07)
}

/* ===== ⑧ 移动端二级导航（mega）展开修复：防溢出、图隐藏、紧凑布局 ===== */
@media(max-width:1024px) {

  .dropdown.mega,
  .dropdown.mega-ind,
  .dropdown.mega-cmp {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden;
    box-sizing: border-box
  }

  .dropdown .drop-head {
    min-width: 0;
    width: 100%
  }

  .drop-col,
  .drop-col-card {
    width: 100%;
    min-width: 0
  }

  .mega-card img,
  .ind-chip img,
  .cmp-chip img {
    display: none !important
  }

  .mega-card {
    flex-direction: column !important;
    align-items: flex-start;
    gap: 3px;
    background: none !important;
    border: 0 !important;
    padding: 5px 12px !important;
    margin: 0;
    border-radius: 0;
    width: 100%
  }

  .mega-card .mc-body b {
    font-size: 15px
  }

  .mega-card .mc-body small {
    font-size: 12.5px
  }

  .mega-link,
  .ind-chip,
  .cmp-chip {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%
  }

  .mega-link {
    padding: 8px 12px !important
  }

  .mega-link b {
    font-size: 14.5px
  }

  .mega-link small {
    font-size: 12px;
    word-break: break-word
  }

  .ind-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 6px
  }

  .cmp-grid {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 4px
  }

  .ind-chip,
  .cmp-chip {
    flex-direction: column !important;
    align-items: flex-start;
    border: 0 !important;
    border-radius: 0;
    padding: 7px 12px !important;
    gap: 1px
  }

  .ind-chip b {
    font-size: 14px
  }

  .ind-chip small {
    font-size: 12px
  }

  .drop-foot {
    margin-top: 10px;
    padding-top: 10px
  }

  .drop-foot a {
    padding: 9px 12px;
    font-size: 14px
  }
}

/* ===== ⑨ 移动端菜单交互修复：抽屉关闭按钮 ===== */
@media(max-width:1024px) {
  .nav>li>a::after {
    display: none
  }

  .nav-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-soft);
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--brand);
    cursor: pointer;
    z-index: 999;
    transition: .25s
  }

  .nav-close:hover {
    background: var(--brand);
    color: #fff;
    transform: rotate(90deg)
  }

  .nav {
    padding-top: 74px
  }

  .nav .has-drop:hover>.dropdown {
    opacity: 1;
    visibility: visible;
    transform: none
  }
}

.nav-close {
  display: none
}

/* 移动端抽屉内不再显示第二个关闭按钮，统一由 header 右上角 hamburger（打开时变为 X）关闭 */
.nav-close {
  display: none
}

/* ===== ⑩ 产品页分类间距优化：大分类/小分类间隔加大 ===== */
.pillar-block {
  scroll-margin-top: 110px
}

.pillar-head {
  margin: 76px 0 14px
}

.sec-title {
  margin: 62px 0 26px
}

.pillar-head+.sec-title {
  margin-top: 16px
}

@media(max-width:768px) {
  .pillar-head {
    margin: 46px 0 10px
  }

  .sec-title {
    margin: 40px 0 20px
  }
}

/* ===== ⑪ 规格表格移动端适配：不溢出、字号收缩 ===== */
@media(max-width:768px) {
  table.spec {
    font-size: 12.5px;
    min-width: 0
  }

  table.spec th,
  table.spec td {
    padding: 9px 7px
  }

  table.spec th:first-child,
  table.spec td:first-child {
    white-space: nowrap
  }
}

/* ===== ⑫ 筛选按钮小屏适配：一行排布不换行 ===== */
@media(max-width:560px) {
  .cat-filter {
    gap: 8px;
    margin-bottom: 32px
  }

  .cat-filter button {
    font-size: 12px;
    padding: 7px 12px
  }
}

/* ===== ⑬ News 二级导航宽度 ===== */
.dropdown.mega-news {
  width: min(1060px, calc(100vw - 48px))
}

@media(max-width:1024px) {
  .dropdown.mega-news {
    width: 100% !important;
    max-width: 100% !important
  }
}

/* ===== ⑭ 桌面 mega 图-文字间距优化 ===== */
@media(min-width:1025px) {
  .dropdown .mega-card {
    gap: 20px;
    padding: 16px 20px !important;
    margin-bottom: 16px;
    border-radius: 12px
  }

  .dropdown .mega-card img {
    width: 132px;
    height: 96px;
    border-radius: 10px;
    flex-shrink: 0
  }

  .dropdown .mega-card .mc-body {
    display: flex;
    flex-direction: column;
    gap: 5px
  }

  .dropdown .mega-card .mc-body b {
    font-size: 16px
  }

  .dropdown .mega-card .mc-body small {
    font-size: 12.5px;
    line-height: 1.45
  }

  .dropdown .mega-link {
    padding: 12px 18px !important
  }

  .ind-grid .ind-chip {
    gap: 18px;
    padding: 14px 16px !important;
    border-radius: 12px
  }

  .cmp-grid .cmp-chip {
    gap: 18px;
    padding: 14px 16px !important;
    border-radius: 12px
  }

  .ind-grid .ind-chip span,
  .cmp-grid .cmp-chip span {
    gap: 4px
  }
}

/* ===== ⑮ 新闻卡片封面图 ===== */
.news-card .n-img {
  display: block;
  position: relative;
  height: 212px;
  overflow: hidden;
  background: var(--brand-soft)
}

.news-card .n-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .5s
}

.news-card:hover .n-img img {
  transform: scale(1.06)
}

.news-card .n-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(6, 28, 48, .25));
  pointer-events: none
}

@media(max-width:768px) {
  .news-card .n-img {
    height: 190px
  }
}

/* ===== ⑯ 服务页 / FAQ 页样式 ===== */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px
}

.svc-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 26px 24px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: .3s
}

.svc-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand)
}

.svc-ico {
  width: 54px;
  height: 54px;
  border-radius: 13px;
  background: var(--brand-soft);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center
}

.svc-card h3 {
  font-size: 18px;
  font-weight: 700
}

.svc-card p {
  color: var(--ink-2);
  font-size: 14px;
  flex: 1
}

.svc-card .go {
  color: var(--brand);
  font-weight: 700;
  font-size: 13.5px
}

.svc-card:hover .go {
  color: var(--brand-dark)
}

.caps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px
}

.cap-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: .3s
}

.cap-card:hover {
  border-color: var(--brand);
  box-shadow: var(--shadow)
}

.cap-ico {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--brand-soft);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center
}

.cap-card h3 {
  font-size: 16.5px;
  font-weight: 700
}

.cap-card p {
  color: var(--ink-2);
  font-size: 13.5px;
  line-height: 1.6
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px
}

.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px
}

.step-n {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 14px
}

.step h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px
}

.step p {
  color: var(--ink-2);
  font-size: 13.5px;
  line-height: 1.6
}

.split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 46px;
  align-items: center
}

.split-txt h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  margin: 12px 0 14px
}

.split-txt p {
  color: var(--ink-2);
  line-height: 1.75;
  margin-bottom: 12px
}

.split-img img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: var(--shadow-lg)
}

@media(max-width:900px) {

  .svc-grid,
  .caps-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .split {
    grid-template-columns: 1fr;
    gap: 28px
  }
}

@media(max-width:560px) {

  .svc-grid,
  .caps-grid,
  .steps-grid {
    grid-template-columns: 1fr
  }
}

/* ===== ⑰ mega 下拉与顶部导航容器等宽对齐（桌面） ===== */
@media(min-width:1025px) {
  .header .container {
    position: relative
  }

  .nav>li,
  .nav>li.has-drop,
  .nav .has-drop {
    position: static
  }

  .nav>li>.dropdown,
  .nav .has-drop>.dropdown {
    position: absolute !important;
    top: calc(100% + 0px) !important;
    left: 0 !important;
    right: 0 !important;
    width: auto !important;
    max-width: none !important;
    min-width: 0 !important;
    transform: none !important;
  }

  .nav .has-drop:hover>.dropdown,
  .nav .has-drop.open>.dropdown,
  .nav .has-drop:focus-within>.dropdown {
    transform: none !important
  }

  .dropdown.mega,
  .dropdown.mega-ind,
  .dropdown.mega-cmp,
  .dropdown.mega-news,
  .dropdown.mega-svc {
    width: auto !important;
    max-width: none !important
  }

  /* 宽容器下内部布局适配 */
  .cmp-grid {
    grid-template-columns: repeat(4, 1fr) !important
  }

  .cmp-chip {
    justify-content: flex-start
  }

  .ind-grid {
    grid-template-columns: repeat(3, 1fr) !important
  }

  .ind-chip {
    gap: 18px;
    padding: 15px 18px !important
  }

  .drop-head {
    gap: 28px
  }

  .dropdown .drop-head {
    justify-content: flex-start
  }

  /* News mega：分类列定宽 + 新闻卡列横排 */
  .mega-news .drop-head {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 34px
  }

  .mega-news .drop-col-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    align-content: start
  }

  .mega-news .mega-card {
    margin: 0 !important
  }

  .mega-news .mega-card img {
    width: 100%;
    height: 150px;
    object-fit: cover
  }

  .mega-news .mega-card {
    flex-direction: column !important;
    align-items: flex-start;
    gap: 12px;
    padding: 16px !important
  }
}
/* ---------- Footer layout ----------
   Keep the document in normal flow. Do not create a viewport-sized spacer
   after the news content or grow main before the footer. */
html,
body {
  background: #ffffff;
}
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
main { margin-bottom: 0; }
footer.footer { margin-top: auto; margin-bottom: 0; }

.news-list-section {
  padding-bottom: 0;
  margin-bottom: 0;
}
