:root {
  --green: #009848;
  --green-dark: #006b3f;
  --green-deep: #004b32;
  --green-light: #8cc63f;
  --green-soft: #eaf7ef;
  --green-pale: #f4fbf6;
  --text: #1f2a24;
  --muted: #65746c;
  --line: #dde8e1;
  --bg-alt: #f7faf8;
  --footer: #133428;
  --shadow: 0 18px 38px rgba(24, 74, 48, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  background: #fff;
  line-height: 1.65;
}

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

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

input,
select,
button,
textarea {
  font: inherit;
}

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 1000;
  padding: 10px 14px;
  background: #fff;
  color: var(--green-dark);
}

.skip-link:focus {
  left: 12px;
}

.topbar {
  height: 34px;
  background: #f5f7f6;
  border-bottom: 1px solid #e5ece8;
  font-size: 13px;
  color: #56645d;
}

.topbar .container,
.header-main,
.nav-row {
  display: flex;
  align-items: center;
}

.topbar .container {
  height: 100%;
  justify-content: space-between;
}

.topbar-menu {
  display: flex;
  gap: 22px;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-header {
  background: #fff;
  position: relative;
  z-index: 99999;
}

.header-main {
  min-height: 60px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
}

.site-branding {
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo-mark {
  position: relative;
  width: 72px;
  height: 52px;
  overflow: hidden;
  flex: 0 0 auto;
  background: var(--green);
  border-radius: 8px 30px 8px 30px;
}

.logo-mark::before,
.logo-mark::after {
  content: "";
  position: absolute;
  background: #fff;
  border-radius: 100%;
  transform: rotate(-16deg);
}

.logo-mark::before {
  left: 12px;
  top: 12px;
  width: 58px;
  height: 16px;
}

.logo-mark::after {
  left: 19px;
  top: 28px;
  width: 48px;
  height: 8px;
  opacity: 0.9;
}

.site-title {
  display: block;
  font-size: 24px;
  color: var(--green);
  line-height: 1.15;
  font-weight: 800;
}

.custom-logo {
  max-width: 60px;
  max-height: 48px;
  object-fit: contain;
}

.site-desc {
  display: block;
  margin-top: 6px;
  color: #6a766f;
  font-size: 13px;
}

.header-search {
  display: flex;
  height: 46px;
  overflow: hidden;
  background: #fff;
  border: 2px solid var(--green);
  border-radius: 4px;
}

.header-search input {
  flex: 1;
  min-width: 0;
  padding: 0 16px;
  color: #3d4a44;
  border: 0;
  outline: 0;
}

.header-search button {
  width: 64px;
  color: #fff;
  cursor: pointer;
  background: var(--green);
  border: 0;
  font-size: 18px;
  font-weight: 800;
}

.phone-box {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: flex-end;
  color: var(--green);
}

.phone-icon {
  display: grid;
  width: 50px;
  height: 50px;
  color: #fff;
  place-items: center;
  background: var(--green);
  border-radius: 50%;
  font-size: 22px;
}

.phone-box strong {
  display: block;
  font-size: 25px;
  line-height: 1;
}

.phone-box span:last-child {
  display: block;
  margin-top: 5px;
  color: #718078;
  font-size: 12px;
  text-align: right;
}

.nav-wrap {
  background: var(--green);
}

.nav-row {
  min-height: 56px;
  justify-content: space-between;
}

.site-nav ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a {
  display: flex;
  align-items: center;
  min-height: 56px;
  padding: 0 22px;
  color: #fff;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 16px;
  font-weight: 700;
}

.site-nav li:first-child a,
.site-nav .current-menu-item > a,
.site-nav .current-menu-ancestor > a {
  background: var(--green-light);
}

.site-nav a:hover {
  background: var(--green-dark);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 4px;
  cursor: pointer;
}

.hero {
  background: var(--green-soft);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 54px;
  align-items: center;
  min-height: 520px;
  padding: 62px 0;
}

.section-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 800;
}

.eyebrow {
  padding: 6px 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.hero h1 {
  max-width: 800px;
  margin: 0 0 20px;
  color: #173326;
  font-size: 46px;
  line-height: 1.18;
}

.hero p {
  max-width: 680px;
  margin: 0 0 30px;
  color: #50645a;
  font-size: 18px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  color: var(--green-dark);
  background: #fff;
  border: 1px solid var(--green);
  border-radius: 4px;
  font-weight: 800;
}

.btn-primary {
  color: #fff;
  background: var(--green);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

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

.metric strong {
  display: block;
  color: var(--green);
  font-size: 24px;
  line-height: 1.1;
}

.metric span {
  display: block;
  margin-top: 6px;
  color: #6c7a73;
  font-size: 13px;
}

.hero-panel {
  position: relative;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(0, 79, 49, 0.11);
}

.lab-visual {
  position: relative;
  height: 270px;
  overflow: hidden;
  background: linear-gradient(135deg, #ffffff 0%, #eef8f2 100%);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.lab-visual .machine {
  position: absolute;
  left: 36px;
  bottom: 28px;
  width: 210px;
  height: 150px;
  background: #e5ebe8;
  border: 1px solid #cad7d0;
  border-radius: 14px;
}

.lab-visual .machine::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 18px;
  width: 70px;
  height: 58px;
  background: #fff;
  border: 1px solid #cad7d0;
  border-radius: 8px;
}

.lab-visual .screen {
  position: absolute;
  top: 42px;
  right: 34px;
  width: 118px;
  height: 86px;
  background: var(--green);
  border: 10px solid #dce5e0;
  border-radius: 10px;
}

.lab-visual .sample {
  position: absolute;
  right: 70px;
  bottom: 44px;
  width: 150px;
  height: 70px;
  background: #d9a85f;
  border-radius: 12px;
  box-shadow: 0 0 0 10px rgba(0, 152, 72, 0.08);
}

.lab-visual .arm {
  position: absolute;
  left: 205px;
  top: 58px;
  width: 220px;
  height: 10px;
  background: #6c8990;
  border-radius: 999px;
  transform: rotate(-5deg);
}

.hero-panel-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 20px;
}

.hero-panel-list div {
  padding: 14px 16px;
  color: #244437;
  background: var(--green-pale);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
}

.section {
  padding: 74px 0;
}

.section.white {
  background: #fff;
}

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

.section.soft {
  background: var(--green-pale);
}

.section.dark {
  color: #fff;
  background: var(--green-dark);
}

.section-head {
  display: flex;
  gap: 28px;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 34px;
}

.section-title {
  max-width: 760px;
}

.section-title h2,
.archive-hero h1,
.entry-title {
  margin: 0;
  color: #15261e;
  font-size: 34px;
  line-height: 1.25;
}

.section-title p,
.archive-hero p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.dark .section-title h2,
.dark .section-title p,
.dark .section-kicker {
  color: #fff;
}

.more {
  color: var(--green);
  font-weight: 800;
  white-space: nowrap;
}

.home-more-row {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.home-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  min-height: 48px;
  padding: 0 34px;
  border-radius: 4px;
  color: #fff;
  background: var(--green);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(0, 152, 72, .18);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.home-more-btn:hover {
  color: #fff;
  background: var(--green-dark);
  box-shadow: 0 16px 30px rgba(0, 107, 63, .22);
  transform: translateY(-1px);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.category-card,
.service-card,
.hot-card,
.report-card,
.panel,
.lab-card,
.solution-card,
.case-card,
.news-list,
.keyword-box,
.faq-item,
.post-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.category-card {
  min-height: 210px;
  padding: 24px;
  border-top: 5px solid var(--green);
  transition: transform 0.2s, box-shadow 0.2s;
}

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

.category-card .num {
  margin-bottom: 12px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.category-card h3,
.service-card h3,
.hot-card h3,
.report-card h3,
.solution-card h3,
.case-card h3,
.faq-item h3,
.post-card h3 {
  margin: 0 0 10px;
  color: #183127;
  font-size: 16px;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.category-card p,
.service-card p,
.hot-card p,
.report-card p,
.solution-card p,
.case-card p,
.faq-item p,
.post-card p {
  margin: 0;
  color: #65746c;
  font-size: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-card img,
.solution-card img,
.case-card img,
.news-item img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 14px;
}

.pill-list,
.case-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.pill-list li,
.case-meta span,
.label-tag {
  display: inline-flex;
  padding: 3px 8px;
  color: #426355;
  background: var(--green-pale);
  border-radius: 999px;
  font-size: 12px;
  font-style: normal;
}

.service-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 26px;
}

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

.service-tabs a,
.service-tabs button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  color: #30423a;
  border-bottom: 1px solid var(--line);
  font-weight: 800;
  text-align: left;
  width: 100%;
}

.service-tabs a.active,
.service-tabs button.active {
  color: #fff;
  background: var(--green);
}

.service-tabs a:last-child,
.service-tabs button:last-child {
  border-bottom: 0;
}

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

.service-card,
.hot-card,
.report-card,
.solution-card,
.faq-item,
.post-card {
  padding: 22px;
}

.service-card {
  min-height: 176px;
}

.service-card a,
.post-card a {
  display: inline-flex;
  margin-top: 16px;
  color: var(--green);
  font-size: 16px;
  font-weight: 800;
}

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

.hot-card {
  position: relative;
  min-height: 170px;
  overflow: hidden;
}

.hot-card::after {
  content: "";
  position: absolute;
  right: -22px;
  bottom: -22px;
  width: 92px;
  height: 92px;
  background: var(--green-pale);
  border-radius: 50%;
}

.hot-card strong {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  color: #fff;
  background: var(--green);
  border-radius: 50%;
}

.hot-card h3,
.hot-card p {
  position: relative;
  z-index: 1;
}

.report-band {
  display: grid;
  grid-template-columns: 1.05fr 1.95fr;
  gap: 28px;
  align-items: stretch;
}

.report-left {
  padding: 34px;
  color: #fff;
  background: var(--green);
  border-radius: 16px;
}

.report-left h2 {
  margin: 0 0 14px;
  font-size: 32px;
  line-height: 1.25;
}

.report-left p {
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.86);
}

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

.process {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  counter-reset: step;
}

.step {
  position: relative;
  min-height: 150px;
  padding: 22px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.step::before {
  display: block;
  margin-bottom: 16px;
  color: var(--green);
  counter-increment: step;
  content: "0" counter(step);
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
}

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

.step p {
  margin: 0;
  color: #68776f;
  font-size: 13px;
}

.two-col,
.content-sidebar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.panel {
  padding: 30px;
}

.panel h3 {
  margin: 0 0 18px;
  font-size: 24px;
}

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

.clean-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px 0;
  color: #43534b;
  border-bottom: 1px solid var(--line);
}

.clean-list li:last-child {
  border-bottom: 0;
}

.clean-list li::before {
  content: "";
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  margin-top: 12px;
  background: var(--green);
  border-radius: 50%;
}

.lab-grid,
.solution-grid,
.advantage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.lab-card {
  overflow: hidden;
}

.lab-thumb {
  position: relative;
  height: 150px;
  background: var(--green-soft);
}

.lab-thumb::before {
  content: "";
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  height: 70px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.lab-thumb::after {
  content: "";
  position: absolute;
  top: 38px;
  left: 54px;
  width: 120px;
  height: 16px;
  background: var(--green);
  border-radius: 999px;
  box-shadow: 0 30px 0 #c7ded1;
}

.lab-card > div:last-child {
  padding: 20px;
}

.solution-card {
  min-height: 206px;
}

.solution-card .label-tag {
  margin-bottom: 18px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 800;
}

.advantage {
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
}

.advantage strong {
  display: block;
  margin-bottom: 16px;
  color: #fff;
  font-size: 30px;
  line-height: 1;
}

.advantage h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 18px;
}

.advantage p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

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

.case-card {
  overflow: hidden;
}

.case-top {
  height: 86px;
  padding: 22px;
  color: #fff;
  background: var(--green);
}

.case-card > div:last-child {
  padding: 22px;
}

.news-layout {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 26px;
}

.news-list {
  overflow: hidden;
}

.news-item {
  display: grid;
  grid-template-columns: 115px 1fr;
  gap: 18px;
  padding: 22px;
  border-bottom: 1px solid var(--line);
}

.news-item:last-child {
  border-bottom: 0;
}

.date {
  padding: 16px 10px;
  color: var(--green-dark);
  text-align: center;
  background: var(--green-pale);
  border-radius: 10px;
  font-weight: 900;
}

.date strong {
  display: block;
  font-size: 28px;
  line-height: 1;
}

.date span {
  font-size: 13px;
}

.news-item h3 {
  margin: 0 0 8px;
  font-size: 19px;
}

.news-item p {
  margin: 0;
  color: #66736c;
  font-size: 14px;
}

.keyword-box {
  padding: 24px;
}

.keyword-box h3 {
  margin: 0 0 18px;
  font-size: 22px;
}

.keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.keywords a,
.keywords span {
  padding: 7px 10px;
  color: #49695b;
  background: var(--green-pale);
  border-radius: 999px;
  font-size: 13px;
}

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

/* FAQ accordion */
.faq-item.faq-collapsible {
  cursor: default;
}

.faq-item.faq-collapsible h3 {
  cursor: pointer;
  position: relative;
  padding-right: 28px;
  user-select: none;
}

.faq-item.faq-collapsible h3::after {
  content: "\f107";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--green);
  font-size: 14px;
  transition: transform .25s ease;
}

.faq-item.faq-collapsible.faq-open h3::after {
  transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, opacity .25s ease;
  opacity: 0;
}

.faq-item.faq-open .faq-answer {
  max-height: 200px;
  opacity: 1;
}

.cta {
  padding: 54px 0;
  color: #fff;
  background: var(--green);
}

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

.cta h2 {
  margin: 0 0 10px;
  font-size: 34px;
  line-height: 1.25;
}

.cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
}

.cta .btn {
  border-color: #fff;
}

.site-footer {
  padding: 54px 0 24px;
  color: rgba(255, 255, 255, 0.78);
  background: var(--footer);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(4, 1fr);
  gap: 32px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer h3 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 18px;
}

/* 桌面端隐藏折叠箭头 */
.footer-col .js-footer-toggle i {
  display: none;
}

.site-footer p,
.site-footer a {
  display: block;
  margin: 7px 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.copyright {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  padding-top: 20px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
}

.archive-hero {
  padding: 54px 0;
  background: var(--green-soft);
}

/* 通用页面Hero（带背景图） */
.page-hero {
  min-height: 270px;
  display: grid;
  align-items: center;
  color: #fff;
  background: linear-gradient(90deg, rgba(0,75,50,.98), rgba(0,107,63,.76), rgba(0,107,63,.20)), var(--hero-bg) center / cover no-repeat;
}

.page-hero__inner {
  padding: 54px 0;
}

.page-hero h1 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 46px;
  line-height: 1.12;
}

.page-hero p {
  margin: 0 0 12px;
  color: #fff;
  font-size: 21px;
  font-weight: 800;
}

.page-hero--single .page-hero__inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
  padding: 40px 0 20px;
}

.page-hero__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-hero__cat-title {
  margin: 0 0 12px;
  color: #fff;
  font-size: 42px;
  font-weight: 700;
}

.page-hero__cat-desc {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  font-weight: 400;
  max-width: 700px;
  line-height: 1.6;
}

.page-hero__footer {
  margin-top: 16px;
}

.single-header {
  margin: 0 0 28px;
  padding: 20px 0 24px;
}

.single-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.single-cat {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  border-radius: 20px;
  background: #009848;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.single-title {
  margin: 0 0 16px;
  font-size: 32px;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.single-date {
  font-size: 14px;
  color: #65746c;
}

.single-tags {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.single-tags a {
  display: inline-flex;
  padding: 4px 12px;
  border-radius: 4px;
  background: #f4fbf6;
  color: #009848;
  font-size: 13px;
  text-decoration: none;
  transition: background .2s;
}

.single-tags a:hover {
  background: #e0f0e6;
}

.archive-hero span {
  display: block;
  max-width: 700px;
  color: rgba(255,255,255,.9);
  line-height: 1.8;
}

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

.archive-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 34px;
}

.single-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 34px;
  align-items: start;
}

.single-layout .archive-sidebar {
  position: sticky;
  top: 20px;
  align-self: start;
  margin-top: 24px;
}

.archive-main,
.single-main {
  min-width: 0;
}

.archive-content
 {
  padding: 54px 0 74px;
  overflow: visible;
}
.single-content{
  overflow: visible;
}

.entry-content {
  color: #33453d;
  font-size: 16px;
}

.entry-content h2 {
  margin: 34px 0 14px;
  color: #183127;
  font-size: 26px;
  line-height: 1.35;
}

.entry-content h3 {
  margin: 26px 0 10px;
  color: #183127;
  font-size: 20px;
}

.entry-content p {
  margin: 0 0 16px;
}

.entry-content ul,
.entry-content ol {
  margin: 0 0 18px 22px;
  padding: 0;
}

.entry-content li {
  margin: 6px 0;
}

.entry-content table {
  width: 100%;
  margin: 24px 0;
  border-collapse: collapse;
}

.entry-content th,
.entry-content td {
  padding: 12px;
  border: 1px solid var(--line);
}

.entry-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
  color: #66766f;
  font-size: 14px;
}

.featured-media {
  margin: 24px 0;
}

.section-gap {
  margin-top: 34px;
}

.search-wide {
  max-width: 620px;
  margin-top: 24px;
}

.search-wide--404 {
  display: grid;
  grid-template-columns: 1fr 58px;
  max-width: 480px;
  border: 2px solid var(--green-600, #009848);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 24px;
}

.search-wide--404 input {
  min-height: 48px;
  border: 0;
  outline: 0;
  padding: 0 16px;
}

.search-wide--404 button {
  border: 0;
  color: #fff;
  background: var(--green-600, #009848);
  cursor: pointer;
  font-size: 18px;
}

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

.scope-articles {
  background: #f7fbf8;
}

.scope-article-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.scope-article-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  color: var(--green-800);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.scope-article-nav a:hover {
  color: #fff;
  background: var(--green);
  border-color: var(--green);
}

.scope-article-stack {
  display: grid;
  gap: 22px;
}

.scope-article {
  scroll-margin-top: 110px;
}

.scope-article__header {
  max-width: 900px;
}

.scope-article__header span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
}

.scope-article__header h3 {
  margin: 0 0 12px;
  color: #183127;
  font-size: 26px;
  line-height: 1.3;
}

.scope-article__header p,
.scope-article__body p {
  margin: 0;
  color: #43534b;
  line-height: 1.85;
}

.scope-article__grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 18px;
  margin-top: 22px;
}

.scope-article__block {
  padding: 18px;
  background: var(--green-soft);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.scope-article__block h4,
.scope-article__body h4 {
  margin: 0 0 10px;
  color: #183127;
  font-size: 17px;
}

.scope-article__block ul {
  margin: 0;
  padding-left: 18px;
  color: #43534b;
  line-height: 1.75;
}

.scope-article__block li + li {
  margin-top: 6px;
}

.scope-article__body {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.sidebar-card {
  padding: 24px;
  margin-bottom: 18px;
  margin-top: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.sidebar-card h3 {
  margin: 0 0 14px;
  font-size: 20px;
}

.sidebar-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sidebar-card li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.sidebar-card li:last-child {
  border-bottom: 0;
}

.sidebar-card a {
  color: var(--text);
  text-decoration: none;
}

.sidebar-card a:hover,
.sidebar-card .current-cat > a {
  color: var(--green);
  font-weight: 800;
}

.sidebar-card--nav .current-cat {
  margin: 0 -12px;
  padding-right: 12px;
  padding-left: 12px;
  border-radius: 8px;
  background: var(--green-soft);
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 28px;
  align-items: center;
  padding: 34px;
  color: #fff;
  background: var(--green-dark);
  border-radius: 16px;
}

.contact-panel h2 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 28px;
}

.contact-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contact-form input,
.contact-form select {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  background: #fff;
  border: 0;
  border-radius: 4px;
}

.contact-form button {
  min-height: 46px;
  color: var(--green-dark);
  cursor: pointer;
  background: #fff;
  border: 0;
  border-radius: 4px;
  font-weight: 800;
}

.pagination {
  margin-top: 30px;
  text-align: center;
}

.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  margin-right: 6px;
  color: var(--green-dark);
  border: 1px solid var(--line);
  border-radius: 4px;
}

.pagination .current {
  color: #fff;
  background: var(--green);
  border-color: var(--green);
}

.empty-state {
  padding: 24px;
  color: #66766f;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.not-found {
  min-height: 360px;
  padding: 74px 0;
}

@media (max-width: 1024px) {
  .header-main {
    grid-template-columns: 1fr;
    padding: 13px 0;
  }

  .phone-box {
    justify-content: flex-start;
  }

  .hero-inner,
  .service-layout,
  .report-band,
  .two-col,
  .service-intro-grid,
  .scope-article__grid,
  .news-layout,
  .archive-layout,
  .single-layout,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .category-grid,
  .hot-grid,
  .lab-grid,
  .solution-grid,
  .advantage-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process,
  .service-cards,
  .post-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 720px) {
  .container {
    width: min(100% - 30px, 1200px);
  }

  .topbar {
    display: none;
  }

  .nav-row {
    min-height: 54px;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
  }

  .site-nav {
    display: none;
    width: 100%;
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav ul {
    display: block;
  }

  .site-nav a {
    min-height: 46px;
    padding: 0 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 0;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero-inner {
    padding: 44px 0;
  }

  .section {
    padding: 52px 0;
  }

  .section-head,
  .cta-inner,
  .copyright {
    display: block;
  }

  .section-title h2,
  .archive-hero h1,
  .entry-title,
  .cta h2 {
    font-size: 28px;
  }

  .page-hero {
    min-height: 230px;
  }

  .page-hero__inner {
    padding: 38px 0;
  }

  .page-hero h1 {
    font-size: 34px;
  }

  .page-hero p {
    font-size: 18px;
  }

  
  
  .category-grid,
  .service-cards,
  
  .report-grid,
  .process,
  .lab-grid,
  .solution-grid,
  .advantage-grid,
  .case-grid,
  .faq,
  .footer-grid,
  .post-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }
.hero-metrics {
  grid-template-columns: repeat(2, 1fr);
}
  .news-item {
    grid-template-columns: 1fr;
  }

  .sidebar-grid-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }

  .sidebar-grid-list li {
    padding: 10px 4px;
    border-bottom: 0;
    border-radius: 10px;
    background: var(--soft);
    text-align: center;
  }

  .sidebar-grid-list a {
    font-size: 13px;
  }

  .sidebar-card--nav .current-cat {
    margin: 0;
    padding-right: 4px;
    padding-left: 4px;
  }
}

/* Mobile-first homepage design from homepage-design.html — merged variable overrides */
:root {
      --green-900: #063f2a;
      --green-800: #075438;
      --green-700: #007a3d;
      --green-600: #009848;
      --green-500: #12a95b;
      --green-300: #8cc63f;
      --green-100: #eaf7ef;
      --green-50: #f4fbf6;
      --ink: #18231d;
      --paper: #ffffff;
      --soft: #f7faf8;
      --warning: #f5a623;
      --shadow-soft: 0 8px 24px rgba(6, 63, 42, .08);
      --radius-sm: 10px;
      --radius: 16px;
      --radius-lg: 24px;
      --container: 1180px;
      --header-h: 50px;
      --safe-bottom: env(safe-area-inset-bottom, 0px);
      --font: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: var(--font);
      color: var(--ink);
      background: var(--paper);
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }
    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }
    button, input { font: inherit; }

    .container {
      width: min(calc(100% - 32px), var(--container));
      margin-inline: auto;
    }

    .skip-link {
      position: absolute;
      left: 12px;
      top: -80px;
      z-index: 9999;
      background: var(--green-800);
      color: #fff;
      padding: 10px 14px;
      border-radius: 8px;
      transition: top .2s ease;
    }
    .skip-link:focus { top: 12px; }

    .topbar {
      display: none;
      background: #f3f7f5;
      border-bottom: 1px solid var(--line);
      color: var(--muted);
      font-size: 13px;
    }
    .topbar-inner {
      min-height: 34px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }
    .topbar-links {
      display: flex;
      gap: 16px;
      align-items: center;
      white-space: nowrap;
    }
    .topbar-links a:hover { color: var(--green-600); }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(255, 255, 255, .96);
      backdrop-filter: saturate(1.2) blur(10px);
      box-shadow: 0 1px 0 rgba(6, 63, 42, .08);
    }
    .header-main {
      min-height: var(--header-h);
      display: grid;
      grid-template-columns: auto 1fr auto;
      align-items: center;
      gap: 10px;
    }
    .brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      min-width: 0;
    }
    .brand-mark {
      width: 42px;
      height: 42px;
      border-radius: 12px;
      background:
        radial-gradient(circle at 70% 22%, rgba(140, 198, 63, .92), transparent 28%),
        linear-gradient(135deg, var(--green-700), var(--green-600));
      display: grid;
      place-items: center;
      color: #fff;
      box-shadow: 0 8px 20px rgba(0, 152, 72, .24);
      flex: none;
    }
    .brand-mark svg { width: 27px; height: 27px; }
    .brand-text { min-width: 0; display: flex; flex-direction: column; justify-content: center; }
    .brand-name {
      display: block;
      color: var(--green-700);
      font-size: 17px;
      font-weight: 800;
      letter-spacing: .02em;
      line-height: 1.2;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      max-width: 140px;
    }
    .brand-sub {
      display: block;
      color: var(--muted);
      font-size: 11px;
      line-height: 1.2;
      margin-top: 3px;
    }

    .mobile-actions {
      display: flex;
      justify-content: flex-end;
      align-items: center;
      gap: 8px;
    }
    .icon-btn {
      width: 42px;
      height: 42px;
      border: 1px solid var(--line);
      border-radius: 999px;
      display: grid;
      place-items: center;
      background: #fff;
      color: var(--green-700);
    }
    .icon-btn svg { width: 20px; height: 20px; }
    .menu-toggle { display: none; }
    .hamburger {
      width: 42px;
      height: 42px;
      border-radius: 999px;
      background: var(--green-600);
      display: grid;
      place-items: center;
      cursor: pointer;
      box-shadow: 0 8px 20px rgba(0, 152, 72, .18);
    }
    .hamburger span,
    .hamburger span::before,
    .hamburger span::after {
      content: "";
      width: 18px;
      height: 2px;
      border-radius: 2px;
      background: #fff;
      display: block;
      transition: transform .2s ease, opacity .2s ease;
    }
    .hamburger span::before { transform: translateY(-6px); }
    .hamburger span::after { transform: translateY(4px); }

    .search-desktop, .phone-desktop, .desktop-nav { display: none; }

    .mobile-panel {
      position: fixed;
      top: var(--header-h);
      left: 0;
      right: 0;
      background: #fff;
      border-top: 1px solid var(--line);
      box-shadow: var(--shadow);
      transform: translateY(-12px);
      opacity: 0;
      visibility: hidden;
      transition: all .22s ease;
      max-height: calc(100vh - var(--header-h));
      overflow: auto;
    }
    .menu-toggle:checked ~ .site-header .mobile-panel {
      transform: translateY(0);
      opacity: 1;
      visibility: visible;
    }
    .menu-toggle:checked ~ .site-header .hamburger span { background: transparent; }
    .menu-toggle:checked ~ .site-header .hamburger span::before { transform: translateY(1px) rotate(45deg); }
    .menu-toggle:checked ~ .site-header .hamburger span::after { transform: translateY(-1px) rotate(-45deg); }

    .mobile-panel-inner { padding: 14px 16px 18px; }
    .mobile-search {
      display: grid;
      grid-template-columns: 1fr 48px;
      overflow: hidden;
      border: 1px solid var(--green-600);
      border-radius: 12px;
      background: #fff;
    }
    .mobile-search input {
      width: 100%;
      border: 0;
      padding: 13px 14px;
      outline: none;
      color: var(--ink);
    }
    .mobile-search button {
      border: 0;
      background: var(--green-600);
      color: #fff;
      display: grid;
      place-items: center;
      cursor: pointer;
    }
    .mobile-search svg { width: 20px; height: 20px; }

    .mobile-nav {
      display: grid;
      gap: 8px;
      padding: 16px 0 0;
      margin: 0;
      list-style: none;
    }
    .mobile-nav a {
      min-height: 46px;
      border-radius: 12px;
      background: var(--soft);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 14px;
      color: var(--ink);
      font-weight: 700;
    }
    .mobile-nav a::after {
      content: "›";
      color: var(--green-600);
      font-size: 20px;
      line-height: 1;
    }
    .mobile-panel-cta {
      margin-top: 14px;
      padding: 14px;
      border-radius: 16px;
      background: var(--green-50);
      border: 1px solid var(--line);
    }
    .mobile-panel-cta strong { display: block; color: var(--green-800); }
    .mobile-panel-cta p { margin: 4px 0 12px; color: var(--muted); font-size: 13px; }

    .btn {
      min-height: 44px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 11px 18px;
      border-radius: 999px;
      border: 1px solid transparent;
      font-weight: 800;
      letter-spacing: .01em;
      cursor: pointer;
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    }
    .btn:hover { transform: translateY(-1px); }
    .btn-primary { background: var(--green-600); color: #fff; box-shadow: 0 10px 22px rgba(0, 152, 72, .22); }
    .btn-primary:hover { background: var(--green-700); }
    .btn-outline { background: #fff; color: var(--green-700); border-color: rgba(0, 152, 72, .32); }
    .btn-outline:hover { border-color: var(--green-600); box-shadow: var(--shadow-soft); }
    .btn-white { background: #fff; color: var(--green-700); }
    .btn-ghost { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.28); }
    .btn-block { width: 100%; }

    main { overflow: hidden; }
    section { position: relative; }
    .section-pad { padding: 56px 0; }
    .section-soft { background: var(--soft); }
    .section-green-soft { background: var(--green-50); }
    .section-title {
      max-width: 760px;
      margin: 0 auto 26px;
      text-align: center;
    }
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 10px;
      color: var(--green-700);
      font-weight: 800;
      font-size: 13px;
      letter-spacing: .08em;
      text-transform: uppercase;
    }
    .eyebrow::before {
      content: "";
      width: 24px;
      height: 3px;
      border-radius: 99px;
      background: var(--green-300);
    }
    h1, h2, h3, h4, p { margin-top: 0; }
    h1 {
      margin-bottom: 14px;
      font-size: clamp(30px, 9vw, 54px);
      line-height: 1.12;
      letter-spacing: -.035em;
      color: var(--ink);
    }
    h2 {
      margin-bottom: 12px;
      font-size: clamp(25px, 6vw, 38px);
      line-height: 1.22;
      letter-spacing: -.025em;
      color: var(--ink);
    }
    h3 {
      font-size: 16px;
      line-height: 1.35;
      margin-bottom: 8px;
      color: var(--ink);
    }
    p { color: var(--text); }

    .hero {
      background:
        radial-gradient(circle at 88% 5%, rgba(140, 198, 63, .26), transparent 26%),
        radial-gradient(circle at 10% 88%, rgba(0, 152, 72, .13), transparent 26%),
        linear-gradient(135deg, #f3fbf6 0%, #ffffff 52%, #eaf7ef 100%);
      padding: 30px 0 40px;
    }
    .hero-grid {
      display: grid;
      gap: 28px;
      align-items: center;
    }
    .hero-copy p {
      font-size: 16px;
      margin-bottom: 20px;
    }
    .hero-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 18px;
    }
    .badge {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      border: 1px solid rgba(0, 152, 72, .18);
      background: rgba(255,255,255,.76);
      border-radius: 999px;
      padding: 7px 10px;
      color: var(--green-800);
      font-size: 13px;
      font-weight: 700;
      box-shadow: 0 6px 18px rgba(6, 63, 42, .05);
    }
    .badge::before {
      content: "";
      width: 7px;
      height: 7px;
      background: var(--green-300);
      border-radius: 50%;
    }
    .hero-actions {
      display: grid;
      grid-template-columns: 1fr;
      gap: 10px;
      margin-bottom: 22px;
    }
    .hero-stats {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px;
    }
    .stat {
      border: 1px solid var(--line);
      background: rgba(255,255,255,.78);
      border-radius: 14px;
      padding: 12px;
    }
    .stat strong {
      display: block;
      font-size: 20px;
      color: var(--green-700);
      line-height: 1.1;
    }
    .stat span { color: var(--muted); font-size: 12px; }

    .hero-visual {
      position: relative;
      min-height: 360px;
    }
    .phone-card {
      position: relative;
      border-radius: var(--radius-lg);
      background: #fff;
      border: 1px solid rgba(0, 152, 72, .12);
      box-shadow: var(--shadow);
      padding: 16px;
      overflow: hidden;
    }
    .lab-image {
      height: 206px;
      border-radius: 18px;
      background:
        linear-gradient(120deg, rgba(6, 63, 42, .82), rgba(0, 152, 72, .36)),
        radial-gradient(circle at 28% 35%, rgba(255,255,255,.55), transparent 17%),
        radial-gradient(circle at 72% 30%, rgba(255,255,255,.42), transparent 15%),
        linear-gradient(135deg, #cfdad4, #edf4ef);
      position: relative;
      overflow: hidden;
    }
    .lab-image::before {
      content: "";
      position: absolute;
      width: 190px;
      height: 94px;
      left: -28px;
      bottom: 20px;
      border-radius: 999px;
      background: rgba(255,255,255,.88);
      box-shadow: 58px -28px 0 rgba(255,255,255,.3), 150px 8px 0 rgba(255,255,255,.25);
    }
    .lab-image::after {
      content: "";
      position: absolute;
      right: 22px;
      bottom: 0;
      width: 78px;
      height: 172px;
      border-radius: 34px 34px 0 0;
      background: rgba(255,255,255,.78);
      box-shadow: -74px 32px 0 rgba(255,255,255,.36), -144px 56px 0 rgba(255,255,255,.24);
      transform: rotate(-8deg);
    }
    .visual-caption {
      display: grid;
      grid-template-columns: 1fr;
      gap: 12px;
      padding: 16px 2px 0;
    }
    .caption-title strong { display: block; color: var(--ink); font-size: 18px; }
    .caption-title span { color: var(--muted); font-size: 13px; }
    .mini-list {
      display: grid;
      gap: 8px;
      margin: 0;
      padding: 0;
      list-style: none;
    }
    .mini-list li {
      display: flex;
      align-items: center;
      gap: 8px;
      color: var(--text);
      font-size: 14px;
    }
    .mini-list li::before {
      content: "✓";
      width: 20px;
      height: 20px;
      display: inline-grid;
      place-items: center;
      border-radius: 50%;
      background: var(--green-100);
      color: var(--green-700);
      font-weight: 900;
      font-size: 12px;
      flex: none;
    }
    .floating-card {
      display: none;
      position: absolute;
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 16px;
      padding: 12px 14px;
      box-shadow: var(--shadow-soft);
      color: var(--text);
    }
    .floating-card strong { display: block; color: var(--green-700); }

    .service-grid {
      display: grid;
      gap: 14px;
    }
    .service-card, .plain-card, .solution-card, .case-card, .news-card, .faq-item {
      border: 1px solid var(--line);
      background: #fff;
      border-radius: var(--radius);
      box-shadow: 0 3px 0 rgba(6, 63, 42, .02);
    }
    .service-card {
      padding: 20px;
      min-height: 210px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .service-card:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-soft);
      border-color: rgba(0, 152, 72, .35);
    }
    .service-icon {
      width: 46px;
      height: 46px;
      border-radius: 14px;
      background: var(--green-100);
      color: var(--green-700);
      display: grid;
      place-items: center;
      font-size: 24px;
      font-weight: 900;
    }
    .service-card p { margin-bottom: 4px; font-size: 14px; }
    .chips {
      display: flex;
      flex-wrap: wrap;
      gap: 7px;
      margin-top: auto;
    }
    .chip {
      display: inline-flex;
      align-items: center;
      min-height: 28px;
      padding: 4px 10px;
      border-radius: 999px;
      background: var(--green-50);
      color: var(--green-700);
      font-size: 12px;
      font-weight: 700;
    }
    .card-link {
      color: var(--green-700);
      font-weight: 800;
      margin-top: 6px;
    }

    .service-layout {
      display: grid;
      gap: 18px;
    }
    .service-tabs {
      display: flex;
      gap: 0px;
      overflow-x: auto;
      padding-bottom: 4px;
      scroll-snap-type: x mandatory;
      scrollbar-width: none;
    }
    .service-tabs::-webkit-scrollbar { display: none; }
    .tab-pill {
      flex: 0 0 auto;
      min-height: 42px;
      padding: 9px 13px;
      border-radius: 999px;
      border: 1px solid var(--line);
      background: #fff;
      color: var(--text);
      font-weight: 800;
      scroll-snap-align: start;
    }
    .tab-pill.active {
      background: var(--green-600);
      color: #fff;
      border-color: var(--green-600);
    }
    .popular-grid {
      display: grid;
      gap: 12px;
    }
    .plain-card {
      padding: 18px;
      transition: transform .2s ease, box-shadow .2s ease;
    }
    .plain-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); }
    .plain-card p { margin-bottom: 0; font-size: 14px; }
    .plain-card small {
      display: inline-block;
      margin-bottom: 8px;
      color: var(--green-700);
      font-weight: 800;
    }

    .test-items {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px;
    }
    .test-item {
      min-height: 78px;
      border: 1px solid var(--line);
      border-radius: 14px;
      background: #fff;
      padding: 12px;
      display: flex;
      align-items: center;
      gap: 10px;
      color: var(--ink);
      font-weight: 800;
      font-size: 14px;
      box-shadow: 0 3px 0 rgba(6, 63, 42, .02);
    }
    .test-item span {
      width: 30px;
      height: 30px;
      flex: none;
      border-radius: 10px;
      display: grid;
      place-items: center;
      background: var(--green-100);
      color: var(--green-700);
      font-size: 14px;
    }

    .report-layout {
      display: grid;
      gap: 18px;
      align-items: stretch;
    }
    .report-intro {
      background: linear-gradient(135deg, var(--green-800), var(--green-600));
      color: #fff;
      border-radius: var(--radius-lg);
      padding: 24px;
      box-shadow: var(--shadow);
    }
    .report-intro h2 { color: #fff; }
    .report-intro p { color: rgba(255,255,255,.86); }
    .report-grid {
      display: grid;
      gap: 12px;
    }
    .report-card {
      border-radius: 16px;
      background: #fff;
      border: 1px solid rgba(0, 152, 72, .16);
      padding: 16px;
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 12px;
      align-items: start;
    }
    .report-no {
      width: 34px;
      height: 34px;
      border-radius: 999px;
      display: grid;
      place-items: center;
      background: var(--green-100);
      color: var(--green-700);
      font-weight: 900;
    }
    .report-card p { margin: 0; font-size: 14px; }

    .process-list {
      display: grid;
      gap: 12px;
      counter-reset: step;
    }
    .process-step {
      counter-increment: step;
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 12px;
      align-items: start;
      border: 1px solid var(--line);
      border-radius: 16px;
      background: #fff;
      padding: 16px;
    }
    .process-step::before {
      content: counter(step, decimal-leading-zero);
      width: 44px;
      height: 44px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      background: var(--green-600);
      color: #fff;
      font-weight: 900;
      box-shadow: 0 8px 20px rgba(0, 152, 72, .18);
    }
    .process-step p { margin: 0; font-size: 14px; }

    .split-grid {
      display: grid;
      gap: 18px;
    }
    .panel {
      border: 1px solid var(--line);
      background: #fff;
      border-radius: var(--radius-lg);
      padding: 20px;
      box-shadow: 0 4px 0 rgba(6, 63, 42, .02);
    }
    .link-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      gap: 10px;
    }
    .link-list a {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      align-items: center;
      border: 1px solid var(--line);
      background: var(--soft);
      border-radius: 12px;
      padding: 11px 12px;
      color: var(--text);
      font-weight: 700;
    }
    .link-list a::after { content: "›"; color: var(--green-600); font-size: 20px; line-height: 1; }
    .capability-list {
      margin: 0;
      padding: 0;
      list-style: none;
      display: grid;
      gap: 10px;
    }
    .capability-list li {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 10px;
      color: var(--text);
      font-size: 14px;
    }
    .capability-list li::before {
      content: "";
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--green-300);
      margin-top: 8px;
    }

    .lab-grid {
      display: grid;
      gap: 14px;
    }
    .lab-card {
      border-radius: var(--radius);
      overflow: hidden;
      border: 1px solid var(--line);
      background: #fff;
      box-shadow: 0 4px 0 rgba(6, 63, 42, .02);
    }
    .lab-thumb {
      height: 150px;
      background: linear-gradient(135deg, #dfe9e3, #ffffff);
      position: relative;
      overflow: hidden;
    }
    .lab-thumb::before {
      content: "";
      position: absolute;
      inset: 18px auto auto 18px;
      width: 98px;
      height: 70px;
      border-radius: 18px;
      background: linear-gradient(135deg, rgba(0, 152, 72, .78), rgba(140, 198, 63, .46));
      box-shadow: 118px 20px 0 rgba(0, 152, 72, .16), 50px 84px 0 rgba(6, 63, 42, .1);
    }
    .lab-thumb::after {
      content: "";
      position: absolute;
      right: 20px;
      bottom: -12px;
      width: 74px;
      height: 112px;
      border-radius: 28px 28px 0 0;
      background: rgba(255, 255, 255, .82);
      transform: rotate(7deg);
    }
    .lab-card-body { padding: 16px; }
    .lab-card-body p { margin-bottom: 0; font-size: 14px; }

    .solutions-grid {
      display: grid;
      gap: 14px;
    }
    .solution-card {
      padding: 20px;
    }
    .solution-label {
      display: inline-flex;
      min-height: 28px;
      align-items: center;
      border-radius: 999px;
      padding: 4px 10px;
      color: var(--green-700);
      background: var(--green-100);
      font-weight: 800;
      font-size: 12px;
      margin-bottom: 12px;
    }
    .solution-card p { margin-bottom: 0; font-size: 14px; }

    .advantage {
      background:
        radial-gradient(circle at 18% 16%, rgba(140, 198, 63, .18), transparent 24%),
        linear-gradient(135deg, var(--green-900), var(--green-800));
      color: #fff;
    }
    .advantage h2, .advantage h3 { color: #fff; }
    .advantage .section-title p { color: rgba(255,255,255,.74); }
    .advantage .eyebrow { color: #bde58a; }
    .advantage-grid {
      display: grid;
      gap: 14px;
    }
    .advantage-card {
      border: 1px solid rgba(255,255,255,.16);
      background: rgba(255,255,255,.08);
      border-radius: var(--radius);
      padding: 20px;
      backdrop-filter: blur(6px);
    }
    .advantage-card p { color: rgba(255,255,255,.74); margin-bottom: 0; font-size: 14px; }

    .cases-grid, .news-grid, .faq-grid {
      display: grid;
      gap: 14px;
    }
    .case-card { overflow: hidden; }
    .case-head {
      min-height: 116px;
      padding: 16px;
      background:
        radial-gradient(circle at 80% 20%, rgba(140,198,63,.36), transparent 30%),
        linear-gradient(135deg, #eaf7ef, #ffffff);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .case-type {
      display: inline-flex;
      align-self: flex-start;
      border-radius: 999px;
      background: var(--green-600);
      color: #fff;
      font-size: 12px;
      font-weight: 800;
      padding: 4px 9px;
    }
    .case-body { padding: 16px; }
    .case-body p { font-size: 14px; margin-bottom: 12px; }

    .news-card { padding: 16px; }
    .news-meta { color: var(--green-700); font-size: 12px; font-weight: 800; margin-bottom: 8px; }
    .news-card p { font-size: 14px; margin-bottom: 0; }
    .keyword-panel {
      margin-top: 18px;
      border-radius: var(--radius-lg);
      background: #fff;
      border: 1px solid var(--line);
      padding: 20px;
    }
    .keyword-cloud {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 12px;
    }
    .keyword-cloud a {
      padding: 7px 10px;
      border-radius: 999px;
      background: var(--green-50);
      color: var(--green-700);
      font-size: 13px;
      font-weight: 700;
    }

    .faq-item { padding: 18px; }
    .faq-item h3 { font-size: 17px; }
    .faq-item p { margin-bottom: 0; font-size: 14px; }

    .cta-band {
      background: linear-gradient(135deg, var(--green-700), var(--green-600));
      color: #fff;
      padding: 42px 0;
    }
    .cta-inner {
      display: grid;
      gap: 18px;
      align-items: center;
    }
    .cta-band h2 { color: #fff; margin-bottom: 8px; }
    .cta-band p { color: rgba(255,255,255,.82); margin-bottom: 0; }
    .cta-actions {
      display: grid;
      gap: 10px;
    }

    .site-footer {
      background: #123729;
      color: rgba(255,255,255,.78);
      padding: 42px 0 calc(32px + 74px + var(--safe-bottom));
    }
    .footer-grid {
      display: grid;
      gap: 24px;
    }
    .footer-brand .brand-name { color: #fff; max-width: none; }
    .footer-brand p { color: rgba(255,255,255,.68); margin: 14px 0 0; font-size: 14px; }
    .footer-col h3 { color: #fff; font-size: 16px; margin-bottom: 12px; }
    .footer-links {
      list-style: none;
      margin: 0;
      padding: 0;
      display: grid;
      gap: 8px;
      font-size: 14px;
    }
    .footer-links a:hover { color: #fff; }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,.12);
      margin-top: 26px;
      padding-top: 18px;
      color: rgba(255,255,255,.58);
      font-size: 13px;
    }

    .mobile-bottom-bar {
      position: fixed;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 120;
      display: grid;
      grid-template-columns: 1fr 1.1fr 1fr;
      gap: 8px;
      padding: 9px 12px calc(9px + var(--safe-bottom));
      background: rgba(255,255,255,.96);
      border-top: 1px solid var(--line);
      box-shadow: 0 -12px 28px rgba(6, 63, 42, .1);
      backdrop-filter: saturate(1.2) blur(10px);
    }
    .mobile-bottom-bar a {
      min-height: 48px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      text-align: center;
      font-weight: 900;
      font-size: 13px;
      background: var(--green-50);
      color: var(--green-700);
      border: 1px solid rgba(0, 152, 72, .13);
    }
    .mobile-bottom-bar a.primary {
      background: var(--green-600);
      color: #fff;
      border-color: var(--green-600);
      box-shadow: 0 8px 18px rgba(0, 152, 72, .2);
    }

    @media (min-width: 480px) {
      .hero-actions, .cta-actions { grid-template-columns: auto auto; justify-content: start; }
      .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .popular-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .test-items { grid-template-columns: repeat(3, minmax(0, 1fr)); }
      .report-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .lab-grid, .solutions-grid, .cases-grid, .news-grid, .faq-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    }

    @media (min-width: 768px) {
      :root { --header-h: 60px; }
      .topbar { display: block; }
      .brand { display: inline-flex; align-items: center; gap: 10px; }
      .brand-text { display: flex; flex-direction: column; justify-content: center; }
      .brand-mark { width: 38px; height: 38px; border-radius: 10px; }
        .brand-name { font-size: 18px; max-width: 200px; }
      .brand-sub { display: block; }
      .mobile-actions, .mobile-panel { display: none; }
      .header-main {
        min-height: var(--header-h);
        grid-template-columns: auto minmax(260px, 520px) auto;
        gap: 22px;
      }
      .search-desktop {
        display: grid;
        grid-template-columns: 1fr 58px;
        overflow: hidden;
        border: 2px solid var(--green-600);
        border-radius: 12px;
        background: #fff;
      }
      .search-desktop input {
        min-height: 50px;
        border: 0;
        outline: none;
        padding: 0 16px;
      }
      .search-desktop button {
        border: 0;
        color: #fff;
        background: var(--green-600);
        cursor: pointer;
        display: grid;
        place-items: center;
      }
      .search-desktop svg { width: 22px; height: 22px; }
      .phone-desktop {
        display: flex;
        align-items: center;
        gap: 12px;
        justify-content: flex-end;
        white-space: nowrap;
      }
      .phone-icon {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: grid;
        place-items: center;
        background: var(--green-600);
        color: #fff;
        box-shadow: 0 10px 22px rgba(0, 152, 72, .2);
      }
      .phone-icon svg { width: 22px; height: 22px; }
      .phone-number { display: block; color: var(--green-700); font-size: 24px; line-height: 1; font-weight: 900; }
      .phone-note { display: block; color: var(--muted); font-size: 12px; margin-top: 6px; }
      .desktop-nav {
        display: block;
        background: var(--green-600);
      }
      .desktop-nav ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        align-items: center;
      }
      .desktop-nav a {
        min-height: 54px;
        padding: 0 18px;
        display: flex;
        align-items: center;
        color: #fff;
        font-weight: 800;
        border-left: 1px solid rgba(255,255,255,.12);
      }
      .desktop-nav li:last-child a { border-right: 1px solid rgba(255,255,255,.12); }
      .desktop-nav a.active, .desktop-nav a:hover { background: var(--green-300); color: #fff; }
      .hero { padding: 58px 0 64px; }
      .hero-grid { grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr); gap: 46px; }
      .hero-copy p { font-size: 17px; }
      .hero-actions .btn { width: auto; }
      .hero-stats { grid-template-columns: repeat(4, minmax(0, 1fr)); }
      .visual-caption { grid-template-columns: 1fr 1fr; align-items: center; }
      .floating-card { display: block; }
      .float-1 { right: -4px; top: 34px; }
      .float-2 { left: -22px; bottom: 46px; }
      .section-pad { padding: 76px 0; }
      .service-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
      .service-card:nth-child(5) { grid-column: span 2; }
      .service-layout { grid-template-columns: 220px 1fr; align-items: start; }
      .service-tabs {
        display: grid;
        gap: 0px;
        overflow: visible;
        padding-bottom: 0;
      }
      .tab-pill {
        width: 100%;
        border-radius: 14px;
        text-align: left;
      }
      .popular-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .test-items { grid-template-columns: repeat(4, minmax(0, 1fr)); }
      .report-layout { grid-template-columns: .85fr 1.15fr; }
      .process-list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
      .split-grid { grid-template-columns: 1fr 1fr; }
      .lab-grid, .solutions-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
      .advantage-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
      .cases-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
      .news-layout { display: grid; grid-template-columns: 1fr 340px; gap: 20px; align-items: start; }
      .news-grid { grid-template-columns: 1fr; }
      .keyword-panel { margin-top: 0; position: sticky; top: 110px; }
      .faq-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .cta-inner { grid-template-columns: 1fr auto; }
      .cta-actions { justify-content: end; }
      .footer-grid { grid-template-columns: 1.5fr repeat(4, 1fr); }
      .site-footer { padding-bottom: 34px; }
      .mobile-bottom-bar { display: none; }
    }

    @media (min-width: 1024px) {
      .container { width: min(calc(100% - 48px), var(--container)); }
      .desktop-nav a { padding: 0 25px; }
      .service-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
      .service-card:nth-child(5) { grid-column: auto; }
      .popular-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
      .report-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .lab-image { height: 284px; }
    }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
      }
    }

.lab-image-img {
  width: 100%;
  height: 206px;
  object-fit: cover;
  border-radius: 18px;
}

.lab-thumb-img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

@media (min-width: 1024px) {
  .lab-image-img {
    height: 284px;
  }
}

/* Homepage alignment pass: follow homepage-design.html while retaining mobile support. */
.desktop-nav .primary-menu {
  width: 100%;
}

.desktop-nav .primary-menu > li {
  flex: 1 1 0;
}

.desktop-nav .primary-menu > li > a {
  justify-content: center;
  width: 100%;
  padding-left: 8px;
  padding-right: 8px;
  text-align: center;
}

.hero {
  background: var(--green-soft);
}

.hero-lab-img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.home-tabs-section .service-layout {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
}

.home-tabs-section .service-tabs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  width: 100%;
}

.home-tabs-section .service-tabs button {
  min-height: 64px;
  border: 0;
  border-right: 1px solid var(--line);
  background: #f7faf8;
  color: #43534b;
  padding: 18px 12px;
  font-weight: 700;
  font-size: 15px;
  white-space: nowrap;
  cursor: pointer;
  transition: all .2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-tabs-section .service-tabs button:last-child {
  border-right: 0;
}

.home-tabs-section .service-tabs button.active {
  background: var(--green);
  color: #fff;
}

.home-tabs-section .home-tab-panels {
  background: #fff;
  padding: 20px;
}

.home-tab-panel {
  display: none;
}

.home-tab-panel.active {
  display: grid;
}

.service-card small {
  display: block;
  margin-bottom: 8px;
  color: var(--green-dark);
  font-weight: 800;
}

.hot-card,
.report-card,
.lab-card,
.solution-card,
.case-card {
  color: inherit;
}

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

.home-news-filter {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin: -8px 0 28px;
}

.home-news-filter a {
  min-width: 112px;
  min-height: 42px;
  padding: 8px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: #43534b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.home-news-filter a.active {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

.home-news-layout {
  display: block;
}

.home-news-layout .keyword-box {
  display: none;
}

.home-news-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-radius: 0;
}

.home-news-list .news-item {
  grid-template-columns: 110px 1fr;
  min-height: 146px;
}

.news-thumb img,
.home-news-list .news-thumb img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 4px;
  margin: 0;
}

.home-news-list .news-item h3 {
  font-size: 16px;
}

.process-page .archive-hero {
  text-align: center;
}

.process-timeline-section {
  background: #f6f7f8;
  overflow: hidden;
}

.process-title {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.process-timeline {
  position: relative;
  display: grid;
  gap: 40px;
  margin-top: 36px;
}

.process-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: #d7dedb;
  transform: translateX(-50%);
}

.process-timeline-card {
  position: relative;
  width: calc(50% - 60px);
  min-height: 200px;
  padding: 44px 30px 30px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 18px 34px rgba(17, 42, 30, 0.08);
}

.process-timeline-card:nth-child(odd) {
  justify-self: start;
}

.process-timeline-card:nth-child(even) {
  justify-self: end;
}

.process-node {
  position: absolute;
  top: 32px;
  width: 34px;
  height: 34px;
  z-index: 2;
  border: 5px solid #b7e0cf;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 900;
}

.process-timeline-card:nth-child(odd) .process-node {
  right: -78px;
}

.process-timeline-card:nth-child(even) .process-node {
  left: -78px;
}

.process-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--green);
  color: #fff;
  box-shadow: 0 12px 24px rgba(0, 152, 72, 0.18);
}

.process-icon i {
  font-size: 20px;
  line-height: 1;
}

.process-timeline-card h3 {
  color: var(--green);
  font-size: 24px;
}

.process-timeline-card p {
  color: #33453d;
}

.page-menu-list,
.page-menu-sidebar .footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-menu-list li,
.page-menu-sidebar .footer-links li {
  border-bottom: 1px solid var(--line);
}

.page-menu-list li:last-child,
.page-menu-sidebar .footer-links li:last-child {
  border-bottom: 0;
}

.page-menu-list a,
.page-menu-sidebar .footer-links a {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 0;
  color: #30423a;
  font-weight: 700;
}

.page-menu-list a::after,
.page-menu-sidebar .footer-links a::after {
  content: "›";
  color: var(--green);
}

.process-page .page-menu-sidebar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 24px;
}

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

.site-footer .footer-links li {
  margin: 7px 0;
}

@media (max-width: 1024px) {
  .home-tabs-section .service-tabs button {
    padding: 8px 16px;
    font-size: 14px;
  }

  .home-news-list {
    grid-template-columns: 1fr;
  }

  .process-timeline::before {
    left: 18px;
  }

  .process-timeline-card,
  .process-timeline-card:nth-child(odd),
  .process-timeline-card:nth-child(even) {
    width: calc(100% - 52px);
    justify-self: end;
  }

  .process-timeline-card:nth-child(odd) .process-node,
  .process-timeline-card:nth-child(even) .process-node {
    left: -50px;
    right: auto;
  }

  .process-page .page-menu-sidebar {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .home-news-filter {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .home-news-list .news-item {
    grid-template-columns: 92px 1fr;
    padding: 14px;
  }

  .news-thumb img,
  .home-news-list .news-thumb img {
    width: 92px;
    height: 92px;
  }

  .process-timeline-card {
    padding: 28px 20px 22px;
  }
}

/* Homepage refinement: keep the final homepage close to homepage-design.html. */
.home .section-kicker,
.home .section-title .sub {
  display: none;
}

.home .section-title {
  max-width: 980px;
}

.home .section-title h2 {
  font-size: 32px;
  line-height: 1.22;
  letter-spacing: 0;
}

.home .section-title p {
  max-width: none;

}

@media (min-width: 1025px) {
  .home .section-title p {
    white-space: nowrap;
  }
}

.home #services .category-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.home #services .category-card {
  padding: 28px 24px;
  border-top: 5px solid var(--green);
  border-radius: 8px;
}

.home #services .category-card .num {
  margin-bottom: 18px;
  color: var(--green);
  font-size: 14px;
}

.home #services .category-card h3 {
  margin-bottom: 14px;
  font-size: 16px;
}

.home #services .category-card p {
  line-height: 1.8;
}

.home #services .category-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 20px;
  margin-bottom: 0;
  padding: 0;
  list-style: none;
}

.home #services .category-card li {
  display: inline-flex;
  align-items: center;
  width: auto;
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--green-pale);
  color: #426355;
  font-size: 12px;
  line-height: 1.4;
}

.home #services .category-card li::marker {
  content: "";
}

.home-tabs-section .service-layout {
  gap: 26px;
}

.home-tabs-section .service-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.home-tabs-section .service-card {
  min-height: 176px;
  padding: 24px 20px;
  border-radius: 8px;
}

.home-tabs-section .service-card h3 {
  font-size: 21px;
}

.home-tabs-section .service-card p {
  line-height: 1.8;
}

.home-tabs-section .service-card.service-card--image {
  display: block;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  color: var(--text);
  text-decoration: none;
  background: #fff;
}

.home-tabs-section .service-card--image img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #eef5f1;
}

.home-tabs-section .service-card--image .service-card__body {
  display: block;
  padding: 18px 20px 20px;
}

.home-tabs-section .service-card--image h3 {
  margin: 0 0 8px;
  font-size: 16px;
  line-height: 1.35;
}

.home-tabs-section .service-card--image p {
  display: -webkit-box;
  min-height: 48px;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.report-band {
  grid-template-columns: 410px minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
}

.report-band .report-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 314px;
  padding: 42px 34px;
  border-radius: 12px;
}

.report-band .report-left h2 {
  max-width: 320px;
  margin-bottom: 18px;
  font-size: 36px;
  line-height: 1.18;
}

.report-band .report-left p {
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 1.75;
}

.report-band .report-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.report-band .report-card {
  display: block;
  min-height: 150px;
  padding: 28px 24px;
  border-radius: 8px;
}

.report-band .report-card h3 {
  margin: 0 0 16px;
  font-size: 16px;
}

.report-band .report-card p {
  font-size: 15px;
  line-height: 1.8;
}

.home #cases .case-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.home #cases .case-card {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  color: inherit;
}

.home #cases .case-thumb {
  display: block;
  height: 172px;
  overflow: hidden;
  background: #eaf4ef;
}

.home #cases .case-thumb img {
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: cover;
  border-radius: 0;
  transition: transform .2s ease;
}

.home #cases .case-card:hover .case-thumb img {
  transform: scale(1.04);
}

.home #cases .case-body {
  padding: 20px;
}

.home #cases .case-type {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #eef8f2;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
}

.home #cases .case-card h3 {
  margin-bottom: 10px;
  font-size: 16px;
}

.home #cases .case-card p {
  line-height: 1.75;
}

.home-news-tabs .home-news-filter {
  margin: -6px 0 28px;
}

.home-news-filter button {
  min-width: 112px;
  min-height: 42px;
  padding: 8px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: #43534b;
  font-weight: 800;
  cursor: pointer;
}

.home-news-filter button.active {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

.home-news-layout .home-tab-panel {
  display: none;
}

.home-news-layout .home-tab-panel.active {
  display: grid;
}

.home-news-list {
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
}

.home-news-list .news-item {
  grid-template-columns: 110px 1fr;
  min-height: 146px;
  padding: 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.home-news-list .news-item:nth-child(2n) {
  border-right: 0;
}

.home-news-list .news-item:nth-last-child(-n+2) {
  border-bottom: 0;
}

@media (max-width: 1180px) {
  .home #services .category-grid,
  .home #cases .case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .report-band {
    grid-template-columns: 1fr;
  }

  .report-band .report-left {
    min-height: auto;
  }
}

@media (max-width: 1024px) {
  .home .section-title p {
    white-space: normal;
  }

  .home-tabs-section .service-layout {
    grid-template-columns: 1fr;
  }

  .home-tabs-section .service-cards,
  .report-band .report-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .home .section-title h2 {
    font-size: 27px;
  }

  .home #services .category-grid,
  .home-tabs-section .service-cards,
  .report-band .report-grid,
  .home #cases .case-grid,
  .home-news-list {
    grid-template-columns: 1fr;
  }

  .home #services .category-card,
  .report-band .report-card {
    min-height: auto;
  }

  .report-band .report-left h2 {
    font-size: 30px;
  }

  .home-news-list .news-item,
  .home-news-list .news-item:nth-child(2n),
  .home-news-list .news-item:nth-last-child(-n+2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .home-news-list .news-item:last-child {
    border-bottom: 0;
  }
}

/* Footer aligned with homepage-design.html */
.cta {
  padding: 54px 0;
  background: var(--green);
  color: #fff;
}

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

.cta h2 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 34px;
  line-height: 1.25;
}

.cta p {
  margin: 0;
  color: rgba(255,255,255,.86);
}

.cta .btn {
  height: 52px;
  flex: 0 0 auto;
  background: #fff;
  color: var(--green-dark);
  border-color: #fff;
}

.footer.site-footer {
  padding: 54px 0 24px;
  background: #133428;
  color: rgba(255,255,255,.78);
}

.footer .footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(4, 1fr);
  gap: 32px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.footer h3 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 18px;
  line-height: 1.35;
}

.footer p,
.footer a {
  display: block;
  margin: 7px 0;
  color: rgba(255,255,255,.72);
  font-size: 14px;
  line-height: 1.65;
}

.footer a:hover {
  color: #fff;
}

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

.footer .footer-links li {
  margin: 0;
}

.footer .copyright,
.footer .footer-bottom {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 0;
  padding-top: 20px;
  border-top: 0;
  color: rgba(255,255,255,.55);
  font-size: 13px;
}

.footer .copyright span:last-child {
  text-align: inherit;
}

.footer-bottom span,
.footer-bottom a {
  display: inline !important;
}

.mobile-bottom-bar {
  display: none !important;
}

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

@media (max-width: 640px) {
  .cta {
    padding: 42px 0;
  }

  .cta .cta-inner,
  .footer .footer-bottom {
    display: block;
  }

  .cta h2 {
    font-size: 28px;
  }

  .cta .btn {
    margin-top: 22px;
  }



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

  .footer-bottom a,
  .footer-bottom span {
    display: inline !important;
  }

  .footer .copyright,
  .footer .footer-bottom {
    justify-content: center;
    text-align: center;
  }

  /* 移动端页脚折叠 */
  .footer-col .js-footer-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
  }

  .footer-col .js-footer-toggle i {
    display: inline-block;
    font-size: 12px;
    transition: transform 0.25s ease;
  }

  .footer-col .footer-links {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.25s ease, margin 0.25s ease;
    margin: 0;
  }

  .footer-col.is-open .footer-links {
    max-height: 300px;
    opacity: 1;
    margin: 7px 0 0;
  }

  .footer-col.is-open .js-footer-toggle i {
    transform: rotate(180deg);
  }

  .mobile-bottom-bar {
    display: none;
  }
}

/* Static pages: breadcrumb/search, eight-item menu, content cards */
.page-topbar {
  border-top: 4px solid var(--green);
  border-bottom: 1px solid #e5ece8;
  background: #f4f6f5;
}

.page-topbar-inner {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  color: #596760;
  font-size: 14px;
}

.breadcrumb a {
  color: #4d5a54;
}

.breadcrumb a:hover {
  color: var(--green);
}

.breadcrumb span {
  color: #7b8781;
}

.page-hero .breadcrumb,
.page-hero .breadcrumb a,
.page-hero .breadcrumb span,
.page-hero .breadcrumb-sep,
.page-hero .breadcrumb-home::before {
  color: rgba(255, 255, 255, 0.9);
}

.page-hero .breadcrumb a:hover {
  color: #fff;
}

.breadcrumb-home::before {
  content: "\f015";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-right: 5px;
  color: #68756e;
}

.breadcrumb-sep {
  color: #8a9690;
}

.page-search {
  width: min(220px, 100%);
  height: 38px;
  display: grid;
  grid-template-columns: 1fr 40px;
  border: 1px solid #d6dfda;
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
}

.page-search input {
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 0 12px;
  color: #58655f;
}

.page-search button {
  border: 0;
  background: var(--green);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}

.page-menu-section {
  padding: 32px 0 22px;
  background: #f5f6f5;
}

.page-menu-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.page-menu-grid a {
  min-height: 66px;
  display: grid;
  place-items: center;
  padding: 14px 18px;
  border: 1px solid #e2e8e4;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 4px 14px rgba(10, 45, 30, .06);
  color: #1f2a24;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}

.page-menu-grid a.active,
.page-menu-grid a:hover {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

.static-hero {
  padding: 34px 0 20px;
  background: #fff;
  text-align: center;
}

.static-hero .entry-title {
  font-size: 36px;
}

.static-hero p {
  max-width: 920px;
  margin: 14px auto 0;
  color: var(--muted);
  font-size: 16px;
}

.static-section {
  padding-top: 36px;
}

.static-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.static-card {
  min-height: 180px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(16, 56, 38, .06);
}

.static-card-wide {
  grid-column: 1 / -1;
}

.static-card h2 {
  margin: 0 0 14px;
  color: #173326;
  font-size: 24px;
}

.static-card p {
  margin: 0;
  color: #5e6d65;
  line-height: 1.9;
}

.static-card .clean-list li {
  color: #43534b;
}

/* Contact page */
.contact-page-main {
  background: #f7faf8;
}

.contact-page-section {
  padding: 38px 0 72px;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: 30px;
  align-items: stretch;
}

.contact-info-panel,
.contact-form-panel {
  padding: 40px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(16, 56, 38, .08);
}

.contact-info-panel > p,
.contact-form-panel > p {
  margin: 0 0 22px;
  color: #50645a;
}

.contact-info-list {
  display: grid;
  gap: 10px;
}

.contact-info-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 76px;
  padding: 14px 18px;
  border-radius: 8px;
  background: #f7f9f8;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #daf3e5;
  color: var(--green);
  font-weight: 900;
}

.contact-info-item h3 {
  margin: 0 0 4px;
  font-size: 18px;
}

.contact-info-item p,
.contact-info-item strong {
  margin: 0;
  color: #42534a;
}

.contact-info-item strong {
  color: var(--green);
  font-size: 28px;
}

.contact-info-item img {
  width: 92px;
  height: 92px;
}

.contact-form-pro {
  display: grid;
  gap: 15px;
}

.contact-form-pro input,
.contact-form-pro textarea {
  width: 100%;
  border: 1px solid #d7ded9;
  border-radius: 4px;
  padding: 0 16px;
  font: inherit;
  outline: 0;
}

.contact-form-pro input {
  height: 47px;
}

.contact-form-pro textarea {
  min-height: 120px;
  padding-top: 14px;
  resize: vertical;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form-pro button {
  height: 44px;
  border: 0;
  border-radius: 4px;
  background: var(--green);
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
}

/* Floating consultation tools */
.float-tools {
  position: fixed;
  top: 42%;
  right: 0;
  z-index: 160;
  width: 60px;
  background: var(--green);
  box-shadow: 0 8px 22px rgba(0,0,0,.18);
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: opacity .3s ease, transform .3s ease, visibility .3s ease;
}

.float-tools.float-visible {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.float-item {
  position: relative;
}

.float-item button {
  width: 60px;
  min-height: 66px;
  display: grid;
  place-items: center;
  gap: 4px;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.16);
  background: var(--green);
  color: #fff;
  cursor: pointer;
  font-weight: 800;
  font-size: 12px;
}

.float-item:hover button {
  background: #8cc63f;
}

.float-icon {
  display: block;
  font-size: 23px;
  line-height: 1;
}

.float-pop {
  position: absolute;
  top: 0;
  right: 70px;
  display: none;
  min-width: 180px;
  padding: 14px 16px;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
  color: #43534b;
}

.float-item:hover .float-pop,
.float-item.pop-open .float-pop {
  display: block;
}

.float-phone p {
  margin: 0 0 6px;
}

.float-phone strong {
  display: block;
  color: var(--green);
  font-size: 18px;
  line-height: 1.35;
}

.float-wechat {
  width: 150px;
  text-align: center;
}

.float-wechat img {
  width: 120px;
  height: 120px;
  margin: 0 auto 8px;
}

.float-wechat p {
  margin: 0;
  font-size: 13px;
}

.callback-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(0,0,0,.55);
}

.callback-modal.active {
  display: grid;
}

.callback-dialog {
  position: relative;
  width: min(800px, 100%);
  display: grid;
  grid-template-columns: 320px 1fr;
  overflow: hidden;
  border-radius: 4px;
  background: #fff;
}

.callback-close {
  position: absolute;
  top: 14px;
  right: 16px;
  z-index: 1;
  border: 0;
  background: transparent;
  color: #999;
  font-size: 30px;
  cursor: pointer;
}

.callback-close i {
  font-size: 22px;
}

.callback-side {
  padding: 40px 30px;
  background: linear-gradient(145deg, #8cc63f, var(--green));
  color: #fff;
  text-align: center;
}

.callback-qr-card {
  padding: 24px;
  border-radius: 4px;
  background: #fff;
  color: #43534b;
}

.callback-qr-card h3 {
  margin: 0 0 14px;
  color: #1f2a24;
}

.callback-qr-card img {
  width: 170px;
  height: 170px;
  margin: 0 auto 12px;
}

.callback-qr-card p {
  margin: 0 0 14px;
  color: #7a8580;
}

.callback-qr-card strong {
  color: var(--green);
  font-size: 22px;
}

.callback-side > p {
  margin: 62px 0 0;
  font-weight: 700;
}

.callback-form-wrap {
  padding: 42px 50px 40px;
}

.callback-form-wrap h2 {
  margin: 0;
  text-align: center;
  color: var(--green);
  font-size: 30px;
}

.callback-subtitle {
  margin: 8px 0 20px;
  text-align: center;
  color: var(--green);
  font-weight: 700;
}

.callback-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 26px;
  color: #999;
}

.callback-divider::before,
.callback-divider::after {
  content: "";
  width: 44px;
  height: 1px;
  background: #e4e8e5;
}

.callback-form {
  display: grid;
  gap: 16px;
}

.callback-form input {
  height: 48px;
  border: 1px solid #e1e5e2;
  border-radius: 4px;
  padding: 0 16px;
  font: inherit;
}

.callback-form button {
  height: 48px;
  border: 0;
  border-radius: 4px;
  background: var(--green);
  color: #fff;
  font-size: 17px;
  font-weight: 900;
  cursor: pointer;
}

@media (max-width: 900px) {
  .page-topbar-inner,
  .contact-page-grid,
  .callback-dialog {
    grid-template-columns: 1fr;
  }

  .page-topbar-inner {
    display: grid;
    padding: 12px 0;
  }

  .page-search {
    width: 100%;
  }

  .page-menu-grid,
  .static-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .callback-side {
    display: none;
  }
}

@media (max-width: 640px) {
 
  .static-card-grid,
  .contact-form-row {
    grid-template-columns: 1fr;
  }

  .static-hero .entry-title {
    font-size: 30px;
  }

  .static-card,
  .contact-info-panel,
  .contact-form-panel {
    padding: 24px 20px;
  }

  .float-tools {
    top: 50%;
    transform: translateY(-50%);
    right: 8px;
    width: 44px;
    border-radius: 12px;
    overflow: hidden;
  }

  .float-item:not(:last-child) {
    display: none;
  }

  .float-item:last-child button {
    width: 44px;
    min-height: 44px;
    border-radius: 12px;
  }

  .float-item:last-child button span:last-of-type {
    display: none;
  }

  .float-item:last-child .float-icon {
    font-size: 18px;
  }

  .float-tools.float-visible {
    transform: translateY(-50%);
  }

  .callback-form-wrap {
    padding: 36px 22px 26px;
  }
}

/* Homepage solution cards with images */
.home #solutions .solution-card {
  min-height: 0;
  padding: 0;
  overflow: hidden;
}

.home #solutions .solution-thumb {
  display: block;
  width: 100%;
  background: #eef6f1;
}

.home #solutions .solution-thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
}

.home #solutions .solution-body {
  padding: 20px 22px 22px;
}

.home #solutions .solution-card .label-tag {
  display: inline-block;
  margin-bottom: 10px;
}

/* Homepage text descriptions should stay compact and balanced. */
.home .hero-inner > div > p,
.home .section-title p,
.home .category-card p,
.home .service-card p,
.home .hot-card p,
.home .report-left p,
.home .report-card p,
.home .step p,
.home .panel p,
.home .lab-card p,
.home .solution-card p,
.home .case-card p,
.home .news-item p,
.home .post-card p,
.home .faq-item p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.home .section-title p {
  white-space: normal;
}

/* Archive category cards: images should fill the card top edge. */
.archive-content .post-card {
  padding: 0;
  overflow: hidden;
}

.archive-content .post-card-thumb {
  display: block;
  margin: 0;
}

.archive-content .post-card-thumb img {
  display: block;
  width: 100%;
  height: 168px;
  margin: 0;
  border-radius: 0;
  object-fit: cover;
}

.archive-content .post-card-body {
  padding: 20px 22px 22px;
}

.archive-content .post-card h3 a {
  display: inline;
  margin: 0;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}

.archive-content .post-card-more {
  display: inline-flex;
  margin-top: 16px;
  color: var(--green);
  font-size: 16px;
  font-weight: 800;
}

.archive-content .post-card p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
