/* Design tokens */
:root {
  --xm-red: #c8161d;
  --xm-black: #111111;
  --xm-white: #ffffff;
  --xm-gray-100: #f5f5f5;
  --xm-gray-300: #e5e5e5;
  --xm-gray-600: #666666;
  --radius: 14px;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  color: var(--xm-black);
  background: var(--xm-white);
  font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
main { flex: 1 0 auto; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.site-header { position: sticky; top: 0; z-index: 20; background: #fff; border-bottom: 1px solid var(--xm-gray-300); }
.header-inner { display: grid; grid-template-columns: 200px 1fr 140px; align-items: center; gap: 12px; min-height: 72px; }
.logo { font-weight: 800; font-size: 24px; color: var(--xm-red); }
.main-nav ul { display: flex; list-style: none; gap: 24px; margin: 0; padding: 0; justify-content: center; }
.main-nav li { font-weight: 600; }
.main-nav .current-menu-item a, .main-nav a:hover { color: var(--xm-red); }
.btn, .cta-btn { display: inline-block; border-radius: 999px; padding: 10px 22px; font-weight: 700; transition: .2s ease; }
.btn-primary, .cta-btn { background: var(--xm-red); color: #fff; border: 2px solid var(--xm-red); }
.btn-primary:hover, .cta-btn:hover { background: #a91016; border-color: #a91016; }
.btn-outline { border: 2px solid var(--xm-black); color: var(--xm-black); }
.btn-outline:hover { background: var(--xm-black); color: #fff; }
.site-header .cta-btn {
  justify-self: end;
  align-self: center;
  line-height: 1.2;
}
.hero {
  position: relative;
  padding: 72px 0 56px;
  overflow: hidden;
  min-height: 540px;
}
.hero-bg-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-track,
.hero-bg-item {
  position: absolute;
  inset: 0;
}
.hero-bg-item {
  opacity: 0;
  transition: opacity .45s ease;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-bg-item.active { opacity: 1; }
.hero-bg-fallback {
  background: linear-gradient(160deg, #fff 0%, #fff 60%, #fff3f3 100%);
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, .58);
}
.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.7);
  background: rgba(0,0,0,.28);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.hero-prev { left: 14px; }
.hero-next { right: 14px; }
.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 8px;
}
.hero-dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.65);
  cursor: pointer;
}
.hero-dots button.active { background: var(--xm-red); }
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 24px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.kicker { color: var(--xm-red); font-weight: 700; letter-spacing: .12em; }
.hero h1 { font-size: clamp(32px, 4.2vw, 56px); line-height: 1.1; margin: 8px 0 14px; }
.hero-card { background: #f7f7f763; color: #c8161d; border-radius: var(--radius); padding: 28px; border: 1px solid rgba(255,255,255,.45); }
.hero-actions { display: flex; gap: 12px; margin-top: 24px; }
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin: 26px auto; }
.features article { background: var(--xm-gray-100); border: 1px solid var(--xm-gray-300); border-radius: var(--radius); padding: 18px; }

.ticker-wrap { margin: 10px auto 18px; }
.ticker-shell {
  background: linear-gradient(180deg, #f7f7f7 0%, #efefef 100%);
  border: 1px solid #e2e2e2;
  border-radius: 12px;
  overflow: hidden;
}
.ticker-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  align-items: center;
  min-height: 52px;
  border-bottom: 1px solid #dfdfdf;
}
.ticker-row:last-child { border-bottom: 0; }
.ticker-row-alt { background: #f9f9f9; }
.ticker-label {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #222;
  border-right: 1px solid #dfdfdf;
  background: #f0f0f0;
}
.ticker-track { overflow: hidden; white-space: nowrap; }
.ticker-move { display: inline-flex; min-width: 200%; animation: xmTicker 36s linear infinite; }
.ticker-item {
  display: inline-block;
  padding: 0 20px;
  line-height: 52px;
  color: #222;
  border-right: 1px dashed #d0d0d0;
}
@keyframes xmTicker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.section-title-row { display: flex; justify-content: space-between; align-items: center; }
.section-title-row h2 { margin: 0; font-size: 30px; }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 16px; }
.products-preview { margin: 24px auto 30px; }
.products-preview {
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: 0;
  padding-right: 0;
}
.products-head { text-align: center; margin-bottom: 14px; }
.products-head h2 { margin: 0; font-size: clamp(36px, 4.6vw, 64px); }
.products-head p { margin: 6px auto 0; color: #555; font-size: 21px; max-width: 980px; }
.product-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 12px 0 18px;
  padding: 0 16px;
}
.product-tabs a {
  display: inline-block;
  border: 1px solid #cfcfcf;
  background: #fff;
  color: #555;
  border-radius: 999px;
  padding: 8px 26px;
  font-size: 30px;
  cursor: pointer;
  transition: .2s ease;
}
.product-tabs a.active {
  background: #c8161d !important;
  color: #fff !important;
  border-color: #c8161d !important;
}
.product-tabs a:hover {
  border-color: #c8161d;
  color: #c8161d;
}
.product-tabs a.active:hover {
  color: #fff !important;
}
.product-showcase {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  width: 100%;
}
.product-tile { position: relative; min-height: 700px; }
.product-tile a { display: block; height: 100%; }
.tile-image { position: absolute; inset: 0; }
.tile-image img, .tile-empty { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .45s ease; }
.tile-empty { display: grid; place-items: center; background: #ddd; color: #666; font-size: 26px; }
.tile-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.48);
  transition: opacity .35s ease;
}
.tile-text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  padding: 0 16px;
  color: #fff;
  z-index: 2;
  text-align: center;
}
.tile-text::before,
.tile-text::after {
  content: "";
  display: block;
  width: 1px;
  height: 72px;
  margin: 0 auto 14px;
  background: rgba(255,255,255,.45);
}
.tile-text::after { margin: 14px auto 0; }
.tile-text h3 {
  margin: 0 0 6px;
  font-size: 42px;
  color: #fff;
  text-shadow: none;
}
.tile-text h4 {
  display: inline-block;
  margin: 0 0 6px;
  font-size: 20px;
  color: #ffffff;
  background: rgba(0, 0, 0, .42);
  padding: 2px 10px;
  border-radius: 4px;
  text-shadow: none;
}
.tile-text p {
  display: inline-block;
  margin: 0;
  font-size: 18px;
  color: #ffffff;
  background: rgba(0, 0, 0, .35);
  padding: 2px 8px;
  border-radius: 4px;
  text-shadow: none;
}
.product-tile.hide { display: none; }
.product-tile:hover .tile-image img { transform: scale(1.08); }
.product-tile:hover .tile-overlay { opacity: 0; }
.product-cta-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  padding: 26px 12px 34px;
  background: #f3f3f300;
}
.product-cta-outline,
.product-cta-solid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 10px 28px;
  font-size: 34px;
  line-height: 1.2;
}
.product-cta-outline {
  border: 2px solid #d31820;
  color: #d31820;
  background: #fff;
}
.product-cta-solid {
  border: 2px solid #d31820;
  color: #fff;
  background: #d31820;
}
.product-cta-outline:hover { background: #fff4f4; }
.product-cta-solid:hover { background: #b90f16; border-color: #b90f16; }
.card { border: 1px solid var(--xm-gray-300); border-radius: var(--radius); overflow: hidden; background: #fff; }
.card img { width: 100%; height: 220px; object-fit: cover; display: block; }
.product-card h2, .product-card h3 { font-size: 20px; margin: 12px; }
.product-card p { margin: 0 12px 14px; color: var(--xm-gray-600); }
.product-cat-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}
.product-cat-nav a {
  display: inline-block;
  border: 1px solid #d6d6d6;
  border-radius: 999px;
  padding: 6px 14px;
  color: #555;
}
.product-cat-nav a.active,
.product-cat-nav a:hover {
  background: #c8161d;
  color: #fff;
  border-color: #c8161d;
}
.products-page {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 20px;
  margin: 20px auto 30px;
}
.products-top-banner img {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
}
.products-breadcrumb {
  padding: 12px 0 4px;
  color: #666;
  font-size: 16px;
}
.products-breadcrumb a { color: #666; }
.products-side .side-box {
  border: 1px solid #e3e3e3;
  background: #fff;
  margin-bottom: 14px;
}
.products-side h3 {
  margin: 0;
  padding: 14px;
  background: #c8161d;
  color: #fff;
  font-size: 30px;
}
.side-cat-list,
.side-news-list { list-style: none; margin: 0; padding: 0; }
.side-cat-list li a,
.side-news-list li a {
  display: block;
  padding: 12px 14px;
  border-bottom: 1px solid #ececec;
  color: #555;
  font-size: 22px;
}
.side-cat-list li:last-child a,
.side-news-list li:last-child a { border-bottom: 0; }
.side-cat-list li a.active,
.side-cat-list li a:hover { background: #f8f8f8; color: #c8161d; }
.products-grid-two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.prod-card-lg .prod-thumb img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  display: block;
}
.prod-card-lg h2 {
  margin: 8px 0 0;
  font-size: 36px;
  color: #fff;
  position: relative;
  top: -56px;
  padding-left: 14px;
  text-shadow: 0 2px 8px rgba(0,0,0,.6);
}
.products-pagination { margin-top: 6px; }
.products-pagination .nav-links { display: flex; gap: 8px; justify-content: center; }
.products-pagination .page-numbers {
  border: 1px solid #ddd;
  padding: 6px 10px;
  color: #555;
}
.products-pagination .current {
  background: #c8161d;
  color: #fff;
  border-color: #c8161d;
}
.case-section {
  margin: 34px auto 28px;
  padding: 30px 0 10px;
}
.case-section-full {
  width: 100%;
  background: radial-gradient(1200px 360px at 50% -60px, #ff5b5b 0%, #ef1d23 40%, #d70f17 100%);
  margin: 34px 0 28px;
  padding: 40px 0 28px;
}
.case-wrap { max-width: 1320px; }
.case-head { text-align: center; margin-bottom: 16px; color: #fff; }
.case-head h2 { margin: 0; font-size: clamp(34px, 4.2vw, 56px); color: #fff; }
.case-head p { margin: 4px 0 0; color: rgba(255,255,255,.9); font-size: 20px; }
.case-slider { position: relative; }
.case-viewport { overflow: hidden; }
.case-track {
  display: flex;
  gap: 18px;
  transition: transform .35s ease;
  will-change: transform;
}
.case-card {
  flex: 0 0 calc(50% - 9px);
  border-radius: 0;
  background: transparent;
  overflow: hidden;
  border: 0;
}
.case-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.75);
  border-radius: 50%;
  background: transparent;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 3;
}
.case-nav:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,.12); }
.case-prev { left: -22px; }
.case-next { right: -22px; }
.case-dots { display: flex; justify-content: center; gap: 10px; padding: 14px 0 4px; }
.case-dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: #b7b7b7;
  cursor: pointer;
}
.case-dots button.active { background: #fff; }
.case-image-wrap img { width: 100%; height: 300px; object-fit: cover; display: block; border: 2px solid rgba(255,255,255,.75); }
.case-image-placeholder {
  height: 300px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.9);
  color: #555;
  font-size: 28px;
  font-weight: 700;
  border: 2px solid rgba(255,255,255,.75);
}
.case-meta {
  margin: 0;
  width: 100%;
  background: transparent;
  border-top: 0;
  min-height: auto;
  padding: 8px 6px 0;
  text-align: center;
}
.case-meta h3 { margin: 0 0 4px; font-size: 26px; line-height: 1.25; color: #fff; }
.case-meta p { margin: 0; color: rgba(255,255,255,.92); font-size: 16px; }
.case-contact {
  text-align: center;
  color: #fff;
  margin-top: 12px;
  font-size: clamp(28px, 4vw, 54px);
  font-weight: 800;
  letter-spacing: .02em;
}
.price, .price-large { color: var(--xm-red); font-weight: 800; }
.price-large { font-size: 28px; }
.process { margin: 44px auto; }
.process ol { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; padding: 0; list-style: none; counter-reset: step; }
.process li { background: #111; color: #fff; padding: 18px; border-radius: var(--radius); }
.cta-strip { margin-top: 42px; background: var(--xm-red); color: #fff; }
.strip-inner { min-height: 130px; display: flex; justify-content: space-between; align-items: center; }
.news-block {
  margin: 26px auto 34px;
  background: #f3f3f3;
  border: 1px solid #e5e5e5;
  padding: 18px;
}
.news-head { text-align: center; margin-bottom: 12px; }
.news-head h2 { margin: 0; font-size: 38px; }
.news-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 16px; }
.news-left { display: grid; grid-template-columns: 140px 1fr; gap: 12px; }
.news-tabs { display: grid; gap: 10px; }
.news-tab-item {
  background: #c50f17;
  color: #fff;
  min-height: 120px;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 24px;
}
.news-tab-item-alt { background: #eb1a25; }
.news-main { background: #fff; border: 1px solid #e3e3e3; padding: 12px; }
.news-feature { margin-bottom: 10px; }
.news-feature a { display: grid; grid-template-columns: 230px 1fr; gap: 10px; }
.news-feature-thumb img { width: 100%; height: 140px; object-fit: cover; display: block; }
.news-feature-text h3 { margin: 0 0 8px; font-size: 28px; line-height: 1.25; }
.news-feature-text p { margin: 0; color: #555; font-size: 18px; line-height: 1.65; }
.news-list { list-style: none; margin: 0; padding: 0; }
.news-list li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px dashed #ddd;
}
.news-list li:last-child { border-bottom: 0; }
.news-list a { font-size: 22px; }
.news-list time { color: #666; font-size: 18px; }
.news-right { background: #fff; border: 1px solid #e3e3e3; padding: 12px; }
.news-right-head h3 { margin: 0 0 10px; font-size: 32px; border-bottom: 2px solid #cf1a1a; display: inline-block; padding-bottom: 4px; }
.qa-list { display: grid; gap: 8px; }
.qa-item {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 10px;
  border-bottom: 1px solid #ececec;
  padding: 8px 0;
}
.qa-item:last-child { border-bottom: 0; }
.qa-icon { display: grid; gap: 4px; }
.qa-icon span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  background: #d71921;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}
.qa-text h4 { margin: 0 0 4px; font-size: 22px; line-height: 1.35; }
.qa-text p { margin: 0; color: #555; font-size: 18px; line-height: 1.6; }
.single-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin: 28px 0; }
.product-main-image img {
  width: 415px;
  height: 415px;
  max-width: 100%;
  display: block;
  object-fit: cover;
}
.spec-list { list-style: none; padding: 0; margin: 0 0 18px; }
.spec-list li { border-bottom: 1px dashed var(--xm-gray-300); padding: 8px 0; }
.content-block, .page-content { margin-bottom: 40px; }
.error-404-page {
  min-height: 50vh;
  display: grid;
  place-items: center;
}
.error-404-inner { text-align: center; }
.error-404-inner h1 { margin-bottom: 12px; }
.error-404-inner p { margin-bottom: 18px; color: #555; }
.inquiry-banner {
  margin: 24px 0 30px;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, #0f0f0f 0%, #1b1b1b 40%, #0d0d0d 100%);
  color: #fff;
}
.inquiry-overlay { padding: 34px 26px; text-align: center; }
.inquiry-overlay h2 { margin: 0 0 14px; font-size: clamp(22px, 3.2vw, 36px); line-height: 1.25; }
.inquiry-points { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin: 0 0 20px; padding: 0; }
.inquiry-points li {
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  border-radius: 10px;
  padding: 10px 8px;
  font-size: 14px;
}
.phone-pill {
  display: inline-block;
  background: var(--xm-red);
  color: #fff;
  border-radius: 999px;
  padding: 12px 28px;
  font-size: 28px;
  font-weight: 800;
  border: 2px solid #ef3a3a;
}
.phone-pill:hover { background: #a91016; border-color: #a91016; }
.faq-section { margin: 24px 0 40px; }
.faq-section h2 { margin: 0 0 14px; font-size: 34px; text-align: center; }
.faq-list { border: 1px solid var(--xm-gray-300); border-radius: 12px; overflow: hidden; background: #fff; }
.faq-item { padding: 16px 18px; border-bottom: 1px solid var(--xm-gray-300); }
.faq-item:last-child { border-bottom: 0; }
.faq-item h3 { margin: 0 0 8px; font-size: 20px; }
.faq-item p { margin: 0; color: var(--xm-gray-600); }
.about-block { margin-bottom: 18px; }
.about-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 12px; }
.about-grid .card, .q-card { padding: 16px; }
.qualification-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 14px 0 18px; }
.contact-page { max-width: 760px; margin: 26px auto 40px; }
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 18px;
  margin: 20px auto 34px;
}
.single-post-card {
  background: #fff;
  border: 1px solid var(--xm-gray-300);
  padding: 24px;
}
.single-post-card h1 { margin: 0 0 12px; font-size: 36px; line-height: 1.3; }
.article-meta {
  margin: 0 0 14px;
  color: #777;
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 10px;
}
.article-content { font-size: 17px; line-height: 1.9; color: #2b2b2b; }
.article-content img { max-width: 100%; height: auto; }
.article-sidebar .side-card {
  background: #fff;
  border: 1px solid var(--xm-gray-300);
  padding: 14px;
}
.article-sidebar h3 {
  margin: 0 0 12px;
  font-size: 28px;
  border-bottom: 2px solid #d62020;
  padding-bottom: 8px;
}
.side-products { display: grid; gap: 12px; }
.side-product-item { display: block; }
.side-product-item .thumb {
  border: 1px solid #e6e6e6;
  overflow: hidden;
}
.side-product-item img { width: 100%; height: 180px; object-fit: cover; display: block; }
.side-product-item span {
  display: block;
  text-align: center;
  margin-top: 6px;
  font-size: 18px;
}
.contact-form { display: grid; gap: 12px; }
.contact-form label { display: grid; gap: 6px; font-weight: 600; }
.contact-form input, .contact-form textarea { width: 100%; border: 1px solid var(--xm-gray-300); border-radius: 8px; padding: 10px; font: inherit; }
.form-row-two { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.industry-field {
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 14px;
}
.industry-field legend { padding: 0 6px; color: #555; }
.industry-field label {
  display: inline-flex !important;
  align-items: center;
  gap: 4px;
  margin-right: 0;
  font-weight: 500;
  white-space: nowrap;
}
.captcha-row { display: grid; grid-template-columns: 1fr 140px; gap: 10px; align-items: end; }
.captcha-code {
  height: 42px;
  border: 1px solid #9fbbe2;
  background: #eaf3ff;
  border-radius: 6px;
  display: grid;
  place-items: center;
  font-weight: 800;
  letter-spacing: 2px;
  color: #184b7a;
}
.notice { padding: 10px 12px; border: 1px solid #9fd7a6; background: #ebfff0; border-radius: 8px; }
.site-footer { color: #eee; }
.footer-hero {
  position: relative;
  margin-top: 24px;
  background-image: url("https://www.xianmaodu.com/wp-content/uploads/2026/03/ft-bg.jpg");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.footer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 16, 35, .20);
}
.footer-main-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr .8fr 1fr 1.2fr;
  gap: 24px;
  padding: 48px 0 30px;
}
.footer-main-grid h3 { margin: 0 0 10px; font-size: 42px; }
.footer-main-grid h4 { margin: 0 0 12px; font-size: 30px; }
.footer-main-grid p,
.footer-main-grid li,
.footer-main-grid a { color: #e7eaf1; font-size: 22px; line-height: 1.8; }
.footer-links,
.footer-warehouses { margin: 0; padding: 0; list-style: none; }
.footer-bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255,255,255,.2);
}
.footer-bottom .container { padding: 12px 0 18px; }
.footer-bottom p { margin: 6px 0; color: #cbd2dd; font-size: 19px; }

@media (max-width: 980px) {
  .products-top-banner img { height: 180px; }
  .products-page { grid-template-columns: 1fr; }
  .products-grid-two { grid-template-columns: 1fr 1fr; }
  .prod-card-lg .prod-thumb img { height: 260px; }
  .prod-card-lg h2 { font-size: 24px; top: -46px; }
  .products-side h3 { font-size: 24px; }
  .side-cat-list li a, .side-news-list li a { font-size: 18px; }
  .header-inner { grid-template-columns: 1fr auto; }
  .main-nav { display: none; }
  .hero-grid, .single-grid { grid-template-columns: 1fr; }
  .product-main-image img { width: 100%; height: auto; aspect-ratio: 415 / 415; }
  .hero { min-height: 500px; }
  .features { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .products-head p { font-size: 16px; }
  .product-tabs a { font-size: 22px; padding: 8px 18px; }
  .product-showcase { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-tile { min-height: 460px; }
  .tile-text h3 { font-size: 32px; }
  .tile-text h4 { font-size: 16px; }
  .tile-text p { font-size: 14px; }
  .product-cta-outline,
  .product-cta-solid { font-size: 22px; padding: 10px 18px; }
  .process ol { grid-template-columns: repeat(2, 1fr); }
  .article-layout { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .news-left { grid-template-columns: 110px 1fr; }
  .news-tab-item { min-height: 96px; font-size: 20px; }
  .news-feature a { grid-template-columns: 170px 1fr; }
  .news-feature-thumb img { height: 120px; }
  .news-feature-text h3 { font-size: 22px; }
  .news-feature-text p { font-size: 15px; }
  .news-list a { font-size: 18px; }
  .news-list time { font-size: 14px; }
  .news-right-head h3 { font-size: 26px; }
  .qa-text h4 { font-size: 18px; }
  .qa-text p { font-size: 14px; }
  .single-post-card h1 { font-size: 32px; }
  .article-content { font-size: 17px; }
  .article-sidebar h3 { font-size: 28px; }
  .side-product-item img { height: 210px; }
  .side-product-item span { font-size: 22px; }
  .case-head h2 { font-size: 42px; }
  .case-head p { font-size: 18px; }
  .case-card { flex-basis: calc(50% - 9px); }
  .case-image-wrap img, .case-image-placeholder { height: 220px; }
  .case-meta h3 { font-size: 24px; }
  .case-meta p { font-size: 14px; }
  .inquiry-points { grid-template-columns: repeat(2, 1fr); }
  .phone-pill { font-size: 22px; }
}
@media (max-width: 560px) {
  .products-top-banner img { height: 130px; }
  .products-breadcrumb { font-size: 14px; }
  .products-grid-two { grid-template-columns: 1fr; }
  .prod-card-lg .prod-thumb img { height: 220px; }
  .prod-card-lg h2 { font-size: 20px; top: -40px; }
  .features, .product-grid, .process ol, .about-grid, .qualification-list { grid-template-columns: 1fr; }
  .products-head h2 { font-size: 34px; }
  .product-tabs { gap: 8px; }
  .product-tabs a { font-size: 16px; padding: 6px 14px; }
  .product-showcase { grid-template-columns: 1fr; }
  .product-tile { min-height: 360px; }
  .tile-text::before,
  .tile-text::after { height: 44px; margin: 0 auto 10px; }
  .tile-text::after { margin: 10px auto 0; }
  .tile-text h3 { font-size: 24px; }
  .tile-text h4 { font-size: 14px; }
  .product-cta-row { flex-direction: column; padding: 16px 12px 24px; }
  .product-cta-outline,
  .product-cta-solid { font-size: 18px; width: 100%; }
  .hero { padding-top: 42px; }
  .hero { min-height: 440px; }
  .hero-nav { width: 34px; height: 34px; font-size: 24px; }
  .single-post-card { padding: 16px; }
  .news-block { padding: 12px; }
  .news-head h2 { font-size: 30px; }
  .news-left { grid-template-columns: 1fr; }
  .news-tabs { grid-template-columns: 1fr 1fr; }
  .news-tab-item { min-height: 62px; font-size: 18px; }
  .news-feature a { grid-template-columns: 1fr; }
  .news-feature-thumb img { height: 180px; }
  .single-post-card h1 { font-size: 28px; }
  .article-content { font-size: 16px; }
  .side-product-item img { height: 180px; }
  .side-product-item span { font-size: 18px; }
  .form-row-two { grid-template-columns: 1fr; }
  .captcha-row { grid-template-columns: 1fr; }
  .case-section { margin-top: 22px; padding-top: 20px; }
  .case-head h2 { font-size: 34px; }
  .case-head p { font-size: 14px; padding: 0 10px; }
  .case-image-wrap img, .case-image-placeholder { height: 180px; }
  .case-card { flex-basis: 100%; }
  .case-prev { left: 6px; }
  .case-next { right: 6px; }
  .case-nav { width: 36px; height: 36px; font-size: 24px; }
  .case-meta h3 { font-size: 20px; }
  .case-meta p { font-size: 13px; }
  .case-contact { font-size: 30px; }
  .ticker-row { grid-template-columns: 100px 1fr; min-height: 46px; }
  .ticker-label { font-size: 14px; }
  .ticker-item { line-height: 46px; padding: 0 14px; font-size: 14px; }
  .inquiry-overlay { padding: 24px 14px; }
  .inquiry-points { grid-template-columns: 1fr; }
  .phone-pill { font-size: 18px; padding: 10px 18px; }
  .faq-section h2 { font-size: 28px; }
  .faq-item h3 { font-size: 18px; }
}

/* News center v2 */
.news-center {
  margin: 30px auto 38px;
  padding: 26px 0 0;
}
.news-center-head { text-align: center; margin-bottom: 18px; }
.news-center-head h2 { margin: 0; font-size: clamp(42px, 5vw, 72px); }
.news-center-head p { margin: 6px 0 0; color: #555; font-size: 19px; }
.news-center-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 22px; }
.news-col-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  border-bottom: 1px solid #e8e8e8;
  padding-bottom: 10px;
}
.news-col-head h3 { margin: 0; font-size: 46px; }
.news-col-head a { color: #666; font-size: 24px; }
.news-company-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.company-card { background: #f4f4f4; border: 1px solid #e3e3e3; overflow: hidden; }
.company-thumb img, .company-thumb-empty { width: 100%; height: 350px; object-fit: cover; display: block; }
.company-thumb-empty { display: grid; place-items: center; background: #ddd; color: #666; font-size: 28px; }
.company-body { padding: 16px 18px 18px; }
.company-body h4 { margin: 0 0 10px; font-size: 36px; line-height: 1.35; }
.company-body p { margin: 0 0 16px; font-size: 22px; color: #666; line-height: 1.75; }
.company-link { color: #d21821; font-size: 30px; }

.news-faq { padding-top: 2px; }
.faq-timeline { display: grid; }
.faq-line-item {
  display: grid;
  grid-template-columns: 94px 1fr;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid #ececec;
}
.faq-date strong { display: block; font-size: 58px; line-height: 1; color: #666; font-weight: 500; }
.faq-date span { display: block; font-size: 26px; color: #8c8c8c; margin-top: 6px; }
.faq-line-text h4 { margin: 0 0 8px; font-size: 38px; line-height: 1.4; }
.faq-line-text p { margin: 0; font-size: 24px; color: #7b7b7b; line-height: 1.7; }

@media (max-width: 980px) {
  .footer-main-grid { grid-template-columns: 1fr 1fr; }
  .footer-main-grid h3 { font-size: 32px; }
  .footer-main-grid h4 { font-size: 24px; }
  .footer-main-grid p,
  .footer-main-grid li,
  .footer-main-grid a { font-size: 16px; }
  .news-center-grid { grid-template-columns: 1fr; }
  .news-col-head h3 { font-size: 34px; }
  .news-col-head a { font-size: 18px; }
  .company-thumb img, .company-thumb-empty { height: 260px; }
  .company-body h4 { font-size: 24px; }
  .company-body p { font-size: 16px; }
  .company-link { font-size: 22px; }
  .faq-line-item { grid-template-columns: 70px 1fr; }
  .faq-date strong { font-size: 40px; }
  .faq-date span { font-size: 18px; }
  .faq-line-text h4 { font-size: 24px; }
  .faq-line-text p { font-size: 16px; }
}

@media (max-width: 560px) {
  .footer-main-grid { grid-template-columns: 1fr; gap: 10px; padding: 26px 0 20px; }
  .footer-main-grid h3 { font-size: 28px; }
  .footer-main-grid h4 { font-size: 20px; }
  .footer-bottom p { font-size: 14px; }
  .news-center { margin-top: 18px; }
  .news-center-head h2 { font-size: 34px; }
  .news-center-head p { font-size: 14px; }
  .news-company-cards { grid-template-columns: 1fr; }
  .company-thumb img, .company-thumb-empty { height: 220px; }
  .company-body h4 { font-size: 20px; }
  .company-body p { font-size: 14px; }
  .company-link { font-size: 18px; }
  .faq-line-item { grid-template-columns: 60px 1fr; }
  .faq-date strong { font-size: 32px; }
  .faq-date span { font-size: 14px; }
  .faq-line-text h4 { font-size: 18px; }
  .faq-line-text p { font-size: 14px; }
}
