/*
Theme Name: Kanghe Compliance
Theme URI: https://example.com/
Author: Kanghe
Description: WordPress theme for cGMP, CMC quality assurance, GMP compliance, FDA inspection readiness, testing validation and regulatory services.
Version: 1.0.0
Text Domain: kanghe-compliance
*/

:root {
  --primary-blue: #063B72;
  --deep-blue: #031B3D;
  --nav-blue: #062B55;
  --bright-blue: #0B7BC2;
  --cyan-blue: #19A7CE;
  --light-blue: #F3F8FC;
  --text-dark: #102A43;
  --text-gray: #5B6B7A;
  --border-light: #DDEAF4;
  --white: #FFFFFF;
  --shadow-soft: 0 8px 24px rgba(6, 43, 85, 0.08);
  --shadow-hover: 0 16px 36px rgba(6, 43, 85, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Sans SC", "Microsoft YaHei", Arial, sans-serif;
  color: var(--text-dark);
  background: #f8fbfe;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

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



.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: 72px;
  color: var(--white);
  background: rgba(6, 43, 85, 0.98);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}
.admin-bar .site-header{
  top: 32px;
}

.site-header.is-scrolled {
  box-shadow: 0 12px 30px rgba(3, 27, 61, 0.24);
  background: rgba(6, 43, 85, 0.96);
  backdrop-filter: blur(12px);
}

.nav-container {
  width: min(100% - 48px, 1320px);
  height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.brand-mark {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.brand-text {
  display: grid;
  line-height: 1.15;
}

.brand-text strong {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-text small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 34px);
  font-size: 15px;
  font-weight: 600;
  position: relative;
}

.site-nav ul,
.site-nav li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav > ul {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 34px);
}

/* 桌面端二级下拉 */
@media (min-width: 769px) {
  .site-nav .sub-menu {
    position: absolute;
    top: calc(100% + 15px);
    left: 0;
    min-width: 200px;
    background: linear-gradient(180deg, #0a3a72 0%, #072a55 100%);
    border: 1px solid rgba(25, 167, 206, 0.3);
    border-radius: 8px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
    z-index: 100;
  }

  .site-nav .menu-item-has-children {
    position: relative;
  }

  .site-nav .menu-item-has-children:hover > .sub-menu,
  .site-nav .menu-item-has-children:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav .sub-menu li {
    display: block;
  }

  .site-nav .sub-menu a {
    display: block;
    padding: 10px 18px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    white-space: nowrap;
  }

  .site-nav .sub-menu a::after {
    display: none;
  }

  .site-nav .sub-menu a:hover,
  .site-nav .sub-menu .current-menu-item > a {
    background: rgba(25, 167, 206, 0.18);
    color: #ffffff;
  }
}

.site-nav a {
  position: relative;
  padding: 24px 0;
  color: rgba(255, 255, 255, 0.86);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 13px;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan-blue), #6ed9ff);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.22s ease;
}

.site-nav a:hover,
.site-nav a.active,
.site-nav .current-menu-item > a,
.site-nav .current_page_item > a {
  color: var(--white);
}

.site-nav a:hover::after,
.site-nav a.active::after,
.site-nav .current-menu-item > a::after,
.site-nav .current_page_item > a::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  background: transparent;
  padding: 10px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero-section {
  position: relative;
  min-height: 620px;
  padding-top: 72px;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(90deg, #031B3D 0%, #064C8C 55%, #0B7BC2 100%);
}

.hero-bg {
  position: absolute;
  inset: 72px 0 0;
  background:
    linear-gradient(90deg, rgba(3, 27, 61, 0.92) 0%, rgba(3, 27, 61, 0.76) 42%, rgba(6, 76, 140, 0.45) 72%, rgba(11, 123, 194, 0.3) 100%),
    url("assets/hero-lab-compliance.png") center right / cover no-repeat;
  opacity: 0.96;
}

.hero-section::after {
  content: "";
  position: absolute;
  right: -140px;
  bottom: -170px;
  width: 620px;
  height: 360px;
  border: 1px solid rgba(25, 167, 206, 0.2);
  background:
    linear-gradient(120deg, transparent 0 43%, rgba(25, 167, 206, 0.55) 43% 44%, transparent 44%),
    radial-gradient(circle at 70% 40%, rgba(77, 204, 255, 0.22), transparent 42%);
  transform: rotate(-8deg);
  pointer-events: none;
}

.hero-layout {
  position: relative;
  z-index: 2;
  min-height: 548px;
  display: grid;
  grid-template-columns: 45% 55%;
  align-items: center;
  gap: 28px;
}

.hero-copy {
  padding: 44px 0 56px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--cyan-blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}

.hero-copy h1 {
  margin: 18px 0 20px;
  color: var(--white);
  font-size: clamp(40px, 4.7vw, 68px);
  line-height: 1.14;
  font-weight: 800;
  letter-spacing: 0;
}

.hero-copy p {
  margin: 0;
  max-width: 700px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, #0077ff 0%, var(--cyan-blue) 100%);
  box-shadow: 0 14px 30px rgba(11, 123, 194, 0.26);
}

.btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.66);
  background: rgba(255, 255, 255, 0.05);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-trust span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  background: rgba(255, 255, 255, 0.06);
}

.hero-visual {
  position: relative;
  min-height: 440px;
}

.hero-visual > img {
  position: absolute;
  inset: 34px 0 auto auto;
  width: min(100%, 760px);
  height: 420px;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
  opacity: 0.58;
  filter: saturate(1.1) contrast(1.05);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.report-card,
.dashboard-card {
  position: absolute;
  border: 1px solid rgba(218, 238, 255, 0.78);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--primary-blue);
  box-shadow: 0 24px 55px rgba(3, 27, 61, 0.22);
  backdrop-filter: blur(12px);
}

.report-main {
  top: 92px;
  left: 12%;
  width: 184px;
  min-height: 220px;
  padding: 22px;
}

.report-side {
  top: 138px;
  left: 41%;
  width: 168px;
  min-height: 170px;
  padding: 18px;
}

.doc-label {
  display: block;
  color: #204b77;
  font-size: 12px;
  font-weight: 800;
}

.report-card strong {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin: 42px auto 22px;
  border: 2px solid var(--bright-blue);
  border-radius: 50%;
  color: var(--bright-blue);
  font-size: 16px;
}

.report-card i {
  display: block;
  width: 96px;
  height: 22px;
  margin: 24px auto 0;
  border-bottom: 2px solid rgba(6, 59, 114, 0.48);
  transform: rotate(-8deg);
}

.mini-bars {
  display: flex;
  align-items: end;
  gap: 8px;
  height: 62px;
  margin: 28px 0 20px;
}

.mini-bars b {
  flex: 1;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, var(--cyan-blue), var(--bright-blue));
}

.mini-bars b:nth-child(1) { height: 35%; }
.mini-bars b:nth-child(2) { height: 70%; }
.mini-bars b:nth-child(3) { height: 50%; }
.mini-bars b:nth-child(4) { height: 90%; }

.dashboard-card {
  right: 4%;
  top: 96px;
  width: 224px;
  padding: 18px;
  color: #eaf8ff;
  background: rgba(3, 27, 61, 0.82);
  border-color: rgba(25, 167, 206, 0.36);
}

.dashboard-card span {
  color: rgba(234, 248, 255, 0.76);
  font-size: 12px;
}

.dashboard-card strong {
  display: block;
  margin-top: 8px;
  font-size: 32px;
}

.line-chart {
  height: 54px;
  margin-top: 12px;
  background:
    linear-gradient(135deg, transparent 5%, rgba(25, 167, 206, 0.3) 6% 16%, transparent 17% 28%, rgba(25, 167, 206, 0.45) 29% 39%, transparent 40% 54%, rgba(25, 167, 206, 0.55) 55% 68%, transparent 69%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 24px);
}

.hero-badges {
  position: absolute;
  right: 3%;
  bottom: 52px;
  display: flex;
  gap: 14px;
}

.hero-badges span {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  background: rgba(3, 27, 61, 0.36);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
}

.service-cards {
  position: relative;
  z-index: 5;
  margin-top: -42px;
}

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

.core-card {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 138px;
  padding: 28px;
  border: 1px solid #E3ECF5;
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

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

.core-card h2 {
  margin: 0 0 8px;
  color: var(--primary-blue);
  font-size: 19px;
}

.core-card p {
  margin: 0;
  color: var(--text-gray);
  font-size: 14px;
}

.core-icon {
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, #eaf7ff, #edf2ff);
  position: relative;
}

.core-icon::before,
.core-icon::after {
  content: "";
  position: absolute;
}

.capsule-icon::before {
  width: 40px;
  height: 18px;
  left: 12px;
  top: 23px;
  border: 3px solid #075fc3;
  border-radius: 999px;
  transform: rotate(-42deg);
}

.capsule-icon::after {
  width: 10px;
  height: 10px;
  right: 12px;
  bottom: 13px;
  border-radius: 50%;
  background: var(--cyan-blue);
}

.device-icon::before {
  width: 26px;
  height: 34px;
  left: 19px;
  top: 12px;
  border: 3px solid var(--bright-blue);
  border-radius: 8px;
}

.device-icon::after {
  width: 34px;
  height: 12px;
  left: 15px;
  bottom: 12px;
  border: 3px solid var(--cyan-blue);
  border-top: 0;
  border-radius: 0 0 12px 12px;
}

.cosmetic-icon::before {
  width: 14px;
  height: 36px;
  left: 17px;
  bottom: 12px;
  border-radius: 5px;
  background: linear-gradient(180deg, #8158e6, #8fcaff);
}

.cosmetic-icon::after {
  width: 18px;
  height: 30px;
  right: 14px;
  bottom: 12px;
  border-radius: 6px;
  background: linear-gradient(180deg, #8f6cf1, #19A7CE);
}

.shield-icon::before {
  width: 34px;
  height: 40px;
  left: 15px;
  top: 12px;
  background: linear-gradient(135deg, #0b7bc2, #65c8ec);
  clip-path: polygon(50% 0, 90% 14%, 84% 70%, 50% 100%, 16% 70%, 10% 14%);
}

.shield-icon::after {
  width: 14px;
  height: 8px;
  left: 25px;
  top: 27px;
  border-left: 3px solid var(--white);
  border-bottom: 3px solid var(--white);
  transform: rotate(-45deg);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading.compact {
  margin-bottom: 34px;
}

.section-heading h2 {
  margin: 10px 0 12px;
  color: var(--primary-blue);
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.25;
}

.section-heading p {
  margin: 0;
  color: var(--text-gray);
  font-size: 17px;
}

.system-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--border-light);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 18px 52px rgba(6, 43, 85, 0.08);
  overflow: hidden;
}

.system-column {
  padding: 34px 34px 36px;
}

.system-column + .system-column {
  border-left: 1px solid var(--border-light);
}

.system-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.system-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  color: var(--white);
  background: linear-gradient(135deg, var(--bright-blue), var(--cyan-blue));
  font-weight: 800;
}

.system-title h3 {
  margin: 0;
  color: var(--primary-blue);
  font-size: 22px;
}

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

.check-list li {
  position: relative;
  padding-left: 26px;
  margin: 9px 0;
  color: #28445f;
  font-size: 15px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--bright-blue);
}

.check-list li::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 10px;
  width: 5px;
  height: 3px;
  border-left: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(-45deg);
}

.solution-section,
.news-section {
  background: linear-gradient(180deg, #f8fbfe 0%, var(--light-blue) 100%);
}

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

.solution-card,
.news-card,
.case-card {
  border: 1px solid var(--border-light);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

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

.solution-image,
.news-image {
  aspect-ratio: 600 / 428;
  background-image: linear-gradient(120deg, rgba(3, 27, 61, 0.2), rgba(25, 167, 206, 0.1)), url("assets/hero-lab-compliance.png");
  background-size: cover;
}

.solution-pharma { background-position: 82% 70%; }
.solution-api { background-position: 58% 64%; filter: saturate(0.9) brightness(1.06); }
.solution-cosmetic { background-position: 70% 55%; filter: hue-rotate(12deg) brightness(1.08); }
.solution-fda { background-position: 95% 55%; }

.solution-body {
  padding: 22px;
}

.solution-body h3 {
  margin: 0 0 10px;
  color: var(--primary-blue);
  font-size: 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.solution-body p {
  min-height: 78px;
  margin: 0;
  color: var(--text-gray);
  font-size: 15px;
}

.solution-excerpt {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.solution-body a,
.case-card a {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  color: var(--bright-blue);
  font-weight: 800;
}

.solution-body a::after,
.case-card a::after {
  content: "→";
  margin-left: 8px;
}

.solution-hero {
  min-height: 420px;
  padding: 118px 0 72px;
  color: var(--white);
  background: linear-gradient(120deg, #031B3D 0%, #063B72 52%, #0B7BC2 100%);
  overflow: hidden;
}

.solution-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.45fr) minmax(0, 0.55fr);
  gap: 48px;
  align-items: center;
}

.solution-hero-copy h1 {
  margin: 16px 0 20px;
  color: var(--white);
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.08;
}

.solution-hero-copy p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 19px;
  line-height: 1.9;
}

.solution-hero-visual {
  position: relative;
  min-height: 330px;
  border-radius: 28px;
}

.solution-hero-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
  opacity: 0.74;
  mix-blend-mode: screen;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.3);
}

.term-image-visual {
  overflow: hidden;
}

.term-image-visual img {
  opacity: 1;
  mix-blend-mode: normal;
}

.insight-child-archive .latest-insights {
  padding-top: 48px;
}

.solution-visual-card {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(207, 231, 248, 0.54);
  border-radius: 16px;
  background: rgba(3, 27, 61, 0.58);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(10px);
}

.solution-visual-card.checklist {
  left: 24px;
  top: 28px;
  width: 190px;
  padding: 18px;
}

.solution-visual-card.checklist strong,
.solution-visual-card.dossier b,
.solution-visual-card.dashboard strong {
  display: block;
  color: var(--white);
  font-size: 18px;
}

.solution-visual-card.checklist span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.solution-visual-card.dossier {
  right: 42px;
  top: 70px;
  width: 210px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.88);
}

.solution-visual-card.dossier b {
  color: var(--primary-blue);
}

.solution-visual-card.dossier i {
  display: block;
  height: 7px;
  margin-top: 13px;
  border-radius: 999px;
  background: #cfe7f8;
}

.solution-visual-card.dashboard {
  right: 80px;
  bottom: 38px;
  width: 230px;
  padding: 18px;
}

.solution-visual-card.dashboard span {
  color: var(--cyan-blue);
  font-weight: 800;
}

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

.solution-detail-card {
  display: flex;
  flex-direction: column;
  min-height: 360px;
  padding: 34px;
  border: 1px solid var(--border-light);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(3, 27, 61, 0.08);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.solution-detail-card:hover {
  transform: translateY(-6px);
  border-color: var(--bright-blue);
  box-shadow: 0 18px 42px rgba(3, 27, 61, 0.14);
}

.solution-detail-card .icon-box {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  border: 1px solid #CFE7F8;
  background: #F3F8FC;
  position: relative;
}

.solution-detail-card .icon-box::before,
.solution-detail-card .icon-box::after {
  content: "";
  position: absolute;
  border: 2px solid var(--bright-blue);
}

.solution-icon-pharma::before { width: 28px; height: 12px; border-radius: 999px; left: 16px; top: 25px; transform: rotate(-38deg); }
.solution-icon-api::before { width: 30px; height: 30px; border-radius: 50%; left: 16px; top: 16px; }
.solution-icon-cosmetic::before { width: 20px; height: 34px; border-radius: 8px; left: 21px; top: 18px; }
.solution-icon-device::before { width: 30px; height: 24px; border-radius: 6px; left: 16px; top: 20px; }
.solution-icon-fda::before { width: 30px; height: 34px; border-radius: 10px 10px 14px 14px; left: 16px; top: 15px; }
.solution-icon-cmc::before { width: 24px; height: 34px; border-radius: 4px 4px 12px 12px; left: 20px; top: 16px; }

.solution-detail-card h3 {
  margin: 24px 0 14px;
  color: var(--primary-blue);
  font-size: 24px;
}

.solution-detail-card p {
  color: var(--text-gray);
  line-height: 1.8;
}

.solution-detail-card > a {
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  color: var(--bright-blue);
  font-weight: 800;
}

.solution-detail-card > a::after {
  content: "→";
  margin-left: 8px;
}

.solution-tag-list {
  margin: 8px 0 24px;
}

.solution-tag-list span {
  display: inline-flex;
  align-items: center;
  margin: 4px;
  padding: 7px 13px;
  border-radius: 999px;
  background: var(--light-blue);
  color: var(--primary-blue);
  font-size: 13px;
  font-weight: 700;
}

.stage-section {
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

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

.stage-grid article {
  padding: 24px;
  border: 1px solid var(--border-light);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.stage-grid span {
  color: var(--bright-blue);
  font-size: 26px;
  font-weight: 900;
}

.stage-grid h3 {
  margin: 12px 0 10px;
  color: var(--primary-blue);
}

.stage-grid p {
  color: var(--text-gray);
  line-height: 1.7;
}

.stage-grid strong {
  display: block;
  margin-top: 16px;
  color: var(--text-dark);
  line-height: 1.6;
}

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

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

.problem-card {
  position: relative;
  min-height: 170px;
  padding: 28px 58px 28px 28px;
  border: 1px solid var(--border-light);
  border-radius: 18px;
  background: var(--light-blue);
  color: var(--text-dark);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.problem-card.is-active {
  color: var(--white);
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--bright-blue) 100%);
}

.problem-card:hover {
  transform: translateY(-4px);
  border-color: var(--bright-blue);
}

.problem-card h3 {
  margin: 0 0 12px;
  color: inherit;
  font-size: 20px;
}

.problem-card p {
  margin: 0;
  color: inherit;
  opacity: 0.86;
  line-height: 1.7;
}

.problem-card i {
  position: absolute;
  right: 26px;
  bottom: 20px;
  color: inherit;
  font-style: normal;
  font-size: 24px;
  font-weight: 900;
}

.matrix-section {
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.solution-matrix-grid {
  display: grid;
  gap: 22px;
}

.solution-matrix-card {
  overflow: hidden;
  border: 1px solid var(--border-light);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(3, 27, 61, 0.08);
}

.solution-matrix-title {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 26px;
  background:
    linear-gradient(90deg, rgba(3, 27, 61, 0.98), rgba(6, 59, 114, 0.94)),
    url("assets/hero-lab-compliance.png") center / cover;
}

.solution-matrix-title span {
  display: inline-flex;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--cyan-blue);
  font-size: 18px;
  font-weight: 900;
}

.solution-matrix-title h3 {
  margin: 0;
  color: var(--white);
  font-size: 22px;
  line-height: 1.35;
}

.solution-matrix-body {
  display: grid;
  grid-template-columns: 0.95fr 1.25fr 1.25fr;
  gap: 0;
}

.solution-matrix-body > div {
  min-width: 0;
  padding: 24px 26px;
}

.solution-matrix-body > div + div {
  border-left: 1px solid var(--border-light);
}

.solution-matrix-body b {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--light-blue);
  color: var(--primary-blue);
  font-size: 13px;
}

.solution-matrix-body p {
  margin: 0;
  color: var(--text-gray);
  line-height: 1.8;
}

.about-hero {
  position: relative;
  min-height: 360px;
  padding: 126px 0 78px;
  background:
    linear-gradient(90deg, rgba(247, 251, 255, 0.94) 0%, rgba(247, 251, 255, 0.84) 42%, rgba(247, 251, 255, 0.42) 100%),
    url("assets/hero-lab-compliance.png") center right / cover no-repeat;
  color: var(--primary-blue);
  overflow: hidden;
}

.about-hero-inner {
  display: flex;
  align-items: center;
}

.about-hero-copy {
  max-width: 720px;
}

.about-breadcrumb {
  display: block;
  margin-bottom: 16px;
  color: var(--bright-blue);
  font-size: 14px;
  font-weight: 900;
}

.about-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(42px, 5vw, 62px);
  line-height: 1.08;
}

.about-hero p {
  max-width: 640px;
  margin: 0;
  color: #263f5c;
  font-size: 19px;
  line-height: 1.9;
}

.about-intro {
  background: var(--white);
}

.about-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.72fr);
  gap: 64px;
  align-items: center;
}

.about-intro-copy h2,
.about-service-panel h2 {
  margin: 10px 0 18px;
  color: var(--primary-blue);
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.25;
}

.about-intro-copy p,
.about-service-panel p {
  color: var(--text-gray);
  font-size: 16px;
  line-height: 1.9;
}

.about-check-list {
  display: grid;
  gap: 14px;
  margin: 26px 0 24px;
  padding: 0;
  list-style: none;
}

.about-check-list li {
  position: relative;
  padding-left: 30px;
  color: #243c58;
  line-height: 1.8;
}

.about-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--bright-blue);
  box-shadow: 0 0 0 5px rgba(11, 123, 194, 0.12);
}

.about-text-link {
  display: inline-flex;
  align-items: center;
  color: var(--bright-blue);
  font-weight: 900;
}

.about-text-link::after {
  content: "->";
  margin-left: 8px;
}

.about-intro-visual {
  position: relative;
  min-height: 320px;
}

.about-intro-visual img {
  width: 100%;
  height: 320px;
  display: block;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 22px 58px rgba(3, 27, 61, 0.14);
}

.about-visual-note {
  position: absolute;
  left: 26px;
  bottom: -30px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  width: min(82%, 340px);
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 10px;
  background: rgba(3, 27, 61, 0.92);
  color: var(--white);
  box-shadow: 0 20px 42px rgba(3, 27, 61, 0.18);
}

.about-visual-note strong {
  grid-column: 1 / -1;
  color: var(--cyan-blue);
  font-size: 18px;
}

.about-visual-note span {
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 800;
}

.about-why {
  background: #eef6ff;
}

.about-why-grid,
.about-capability-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.about-why-grid article,
.about-capability-grid article {
  min-height: 210px;
  padding: 28px;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(3, 27, 61, 0.07);
}

.about-why-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: var(--bright-blue);
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
}

.about-why-grid h3,
.about-capability-grid h3,
.about-process-grid h3 {
  margin: 0 0 12px;
  color: var(--primary-blue);
  line-height: 1.35;
}

.about-why-grid p,
.about-capability-grid p,
.about-process-grid p {
  margin: 0;
  color: var(--text-gray);
  line-height: 1.75;
}

.about-metric-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.about-metric-row div {
  padding: 22px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--primary-blue), var(--bright-blue));
  color: var(--white);
  text-align: center;
}

.about-metric-row strong {
  display: block;
  font-size: 30px;
  line-height: 1.1;
}

.about-metric-row span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 800;
}

.about-capability {
  background: var(--white);
}

.about-capability-grid article {
  text-align: center;
}

.about-capability-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 68px;
  height: 58px;
  margin-bottom: 22px;
  padding: 0 12px;
  border-radius: 8px;
  background: var(--light-blue);
  color: var(--bright-blue);
  font-weight: 900;
}

.about-process {
  background: #f8fbfe;
}

.about-process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.about-process-grid article {
  position: relative;
  min-height: 190px;
  padding: 26px 26px 26px 30px;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  background: var(--white);
  overflow: hidden;
}

.about-process-grid article::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--bright-blue), var(--cyan-blue));
}

.about-process-grid span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--bright-blue);
  font-size: 24px;
  font-weight: 900;
}

.about-service {
  background: var(--white);
}

.about-service-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: 42px;
  align-items: center;
  padding: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, #f3f8fc 0%, #ffffff 100%);
  border: 1px solid var(--border-light);
  box-shadow: 0 18px 46px rgba(3, 27, 61, 0.08);
}

.about-service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.about-service-list span {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 0 18px;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  background: var(--white);
  color: var(--primary-blue);
  font-weight: 900;
}

.case-hero {
  min-height: 360px;
  padding: 108px 0 56px;
  color: var(--white);
  background: linear-gradient(120deg, #031B3D 0%, #063B72 55%, #0B7BC2 100%);
  overflow: hidden;
}

.case-taxonomy-hero {
  min-height: 320px;
}

.case-hero-visual-clean img {
  border-radius: 24px;
  box-shadow: 0 26px 70px rgba(3, 27, 61, 0.26);
}

.case-filter-section,
.case-template-section,
.case-service-section {
  background: var(--white);
}

.case-overview,
.case-list-section,
.case-industry-section,
.case-library-section {
  background: var(--soft-bg);
}

.case-library-section.section-pad,
.case-taxonomy-list.section-pad {
  padding-top: 56px;
}

.case-library-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.case-filter-bar {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 8px;
  margin: 26px 0 28px;
  padding: 0 0 12px;
  overflow-x: auto;
  border-bottom: 1px solid var(--border-light);
  scrollbar-width: thin;
  scrollbar-color: rgba(3, 27, 61, 0.28) transparent;
}

.case-filter-bar::-webkit-scrollbar {
  height: 8px;
}

.case-filter-bar::-webkit-scrollbar-track {
  background: transparent;
}

.case-filter-bar::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(3, 27, 61, 0.24);
}

.case-filter {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: var(--white);
  color: var(--primary-blue);
  font: inherit;
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.case-filter:hover,
.case-filter.active {
  border-color: var(--primary-blue);
  background: var(--primary-blue);
  color: var(--white);
}

.case-filter:hover:not(.active) {
  border-color: var(--border-light);
  background: #F2F7FB;
  color: var(--primary-blue);
}

.case-filter small {
  min-width: 22px;
  padding: 2px 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--primary-blue);
  font-size: 12px;
  line-height: 1.3;
}

.case-filter:not(.active) small {
  background: var(--light-blue);
}

.featured-case-grid,
.case-list-grid,
.template-grid,
.case-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.case-list-grid {
  gap: 20px;
}

.featured-case-card,
.case-list-card,
.template-grid article,
.case-entry-grid a,
.case-service-grid a,
.case-detail-grid article {
  border: 1px solid var(--border-light);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(3, 27, 61, 0.08);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.featured-case-card:hover,
.case-list-card:hover,
.case-entry-grid a:hover,
.case-service-grid a:hover {
  transform: translateY(-6px);
  border-color: var(--bright-blue);
  box-shadow: 0 18px 42px rgba(3, 27, 61, 0.14);
}

.featured-case-card {
  display: flex;
  flex-direction: column;
  min-height: 500px;
  min-width: 0;
  padding: 30px;
  border-radius: 22px;
}

.case-category {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 16px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--light-blue);
  color: var(--primary-blue);
  font-size: 13px;
  font-weight: 800;
}

.featured-case-card h3,
.case-card-content h3,
.template-grid h3,
.case-detail-grid h2 {
  margin: 0 0 16px;
  color: var(--primary-blue);
  line-height: 1.35;
}

.featured-case-card dl {
  display: grid;
  gap: 14px;
  margin: 0 0 24px;
}

.featured-case-card dt {
  color: var(--text-dark);
  font-weight: 900;
}

.featured-case-card dd {
  margin: 6px 0 0;
  color: var(--text-gray);
  line-height: 1.75;
}

.featured-case-card > a,
.case-card-content a,
.case-entry-grid a strong,
.case-service-grid a,
.case-detail-grid a {
  color: var(--bright-blue);
  font-weight: 900;
}

.featured-case-card > a {
  display: inline-flex;
  margin-top: auto;
}

.featured-case-card > a::after,
.case-card-content a::after,
.case-detail-grid a::after {
  content: "->";
  margin-left: 8px;
}

.case-list-card {
  overflow: hidden;
  height: 100%;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
}

.case-list-card.is-hidden,
.featured-case-card.is-hidden {
  display: none;
}

.case-card-image {
  position: relative;
  width: 100%;
  height: 200px;
  flex-shrink: 0;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(3, 27, 61, 0.2), rgba(11, 123, 194, 0.34)),
    url("assets/hero-lab-compliance.png") center / cover;
}

.case-card-image img {
  width: 100%;
  height: 200px;
  display: block;
  object-fit: cover;
}

.case-img-api { background-position: 60% center; filter: saturate(0.9) hue-rotate(8deg); }
.case-img-cosmetic { background-position: 38% center; filter: saturate(1.1) hue-rotate(18deg) brightness(1.08); }
.case-img-dossier { background-position: 70% center; filter: saturate(0.82) brightness(1.1); }
.case-img-lab { background-position: center; filter: saturate(1.05); }
.case-img-cleanroom { background-position: 48% center; filter: brightness(1.08) saturate(0.95); }
.case-img-device { background-position: 75% center; filter: hue-rotate(-8deg) saturate(0.9); }

.case-card-link {
  display: flex;
  height: 100%;
  flex-direction: column;
  color: inherit;
}

.case-card-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}

.case-card-image .case-category {
  position: absolute;
  left: 16px;
  bottom: 14px;
  margin: 0;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 18px rgba(3, 27, 61, 0.12);
}

.case-featured-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 5px 10px;
  border-radius: 8px;
  background: rgba(3, 27, 61, 0.84);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
}

.case-card-meta {
  display: grid;
  gap: 6px;
  margin: -4px 0 12px;
  color: var(--text-gray);
  font-size: 14px;
  line-height: 1.6;
}

.case-card-meta span {
  display: block;
}

.case-card-content p,
.template-grid p,
.case-entry-grid p,
.case-detail-grid p,
.case-detail-grid li {
  color: var(--text-gray);
  line-height: 1.75;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.case-card-content a {
  display: inline-flex;
  margin-top: 8px;
}

.case-taxonomy-actions {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 24px;
}

.case-back-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  background: var(--white);
  color: var(--primary-blue);
  font-weight: 900;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.case-back-link:hover {
  border-color: var(--primary-blue);
  background: var(--primary-blue);
  color: var(--white);
}

.template-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.template-grid article {
  padding: 24px;
  border-radius: 18px;
}

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

.case-entry-grid a {
  display: flex;
  min-height: 220px;
  flex-direction: column;
  padding: 24px;
  border-radius: 20px;
  color: inherit;
}

.case-entry-grid span {
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 16px;
  background: var(--light-blue);
  color: var(--bright-blue);
  font-size: 24px;
  font-weight: 900;
}

.case-entry-grid strong {
  display: block;
  color: var(--primary-blue);
  font-size: 19px;
}

.case-entry-grid p {
  margin: 12px 0 18px;
}

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

.case-service-grid a {
  padding: 22px;
  border-radius: 18px;
  color: var(--primary-blue);
}

.case-detail-hero {
  padding: 128px 0 72px;
  color: var(--white);
  background: linear-gradient(120deg, #031B3D 0%, #063B72 55%, #0B7BC2 100%);
}

.case-detail-hero h1 {
  max-width: 980px;
  margin: 16px 0 20px;
  color: var(--white);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.16;
}

.case-detail-hero p {
  max-width: 850px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
  line-height: 1.85;
}

.case-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.case-meta span {
  display: inline-flex;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-weight: 800;
}

.case-detail-section {
  background: var(--white);
}

.case-detail-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.case-detail-grid article {
  padding: 30px;
  border-radius: 22px;
}

.case-detail-grid ul {
  margin: 0;
  padding-left: 20px;
}

.case-related-section {
  background: var(--soft-bg);
}

.insights-hero {
  min-height: 420px;
  padding: 118px 0 72px;
  color: var(--white);
  background: linear-gradient(120deg, #031B3D 0%, #063B72 55%, #0B7BC2 100%);
  overflow: hidden;
}

.insights-overview,
.recommended-insights,
.latest-insights,
.article-plan-section,
.article-template-section {
  background: var(--soft-bg);
}

.topic-section,
.insight-filter-section,
.guide-section,
.insight-service-section {
  background: var(--white);
}

.topic-grid,
.insight-card-grid,
.guide-grid,
.article-plan-grid,
.article-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.topic-card,
.guide-card,
.article-plan-grid article,
.article-sidebar-card,
.article-content-card {
  border: 1px solid var(--border-light);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(3, 27, 61, 0.08);
}

.topic-card,
.guide-card,
.article-plan-grid article {
  padding: 30px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.topic-carousel {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 46px;
  align-items: center;
  gap: 14px;
}

.topic-carousel-viewport {
  min-width: 0;
  overflow: hidden;
}

.insights-archive .topic-carousel-track {
  display: flex;
  grid-template-columns: none;
  gap: 22px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding: 4px 2px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.insights-archive .topic-carousel-track::-webkit-scrollbar {
  display: none;
}

.insights-archive .topic-carousel-track .topic-card {
  flex: 0 0 min(360px, 84vw);
  min-height: 220px;
  scroll-snap-align: start;
  transition: background-color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.topic-carousel-nav {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-light);
  border-radius: 50%;
  background: var(--white);
  color: var(--primary-blue);
  box-shadow: 0 10px 26px rgba(3, 27, 61, 0.1);
  cursor: pointer;
  transition: all 0.25s ease;
}

.topic-carousel-nav span {
  font-size: 34px;
  line-height: 1;
  transform: translateY(-1px);
}

.topic-carousel-nav:hover:not(:disabled) {
  border-color: var(--primary-blue);
  background: var(--primary-blue);
  color: var(--white);
}

.topic-carousel-nav:disabled {
  opacity: 0.35;
  cursor: default;
}

a.topic-card,
a.insight-category,
.insight-card-link,
.featured-card-link {
  color: inherit;
  text-decoration: none;
}

.topic-card:hover,
.guide-card:hover,
.insight-card:hover {
  transform: translateY(-6px);
  border-color: var(--bright-blue);
  box-shadow: 0 18px 42px rgba(3, 27, 61, 0.14);
}

.insights-archive .topic-carousel-track .topic-card:hover {
  transform: none;
  border-color: var(--border-light);
  background: #F7FBFE;
  box-shadow: 0 10px 30px rgba(3, 27, 61, 0.08);
}

.topic-card span {
  display: inline-flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: var(--light-blue);
  color: var(--bright-blue);
  font-weight: 900;
}

.topic-card h3,
.guide-card h3,
.article-plan-grid h3,
.insight-card h3 {
  margin: 20px 0 12px;
  color: var(--primary-blue);
  line-height: 1.35;
}

.insights-archive .topic-carousel-track .topic-card h3 {
  margin-top: 0;
}

.topic-card p,
.guide-card p,
.article-plan-grid p,
.insight-card p {
  color: var(--text-gray);
  line-height: 1.75;
}

.insight-tools {
  display: grid;
  gap: 20px;
}

.insight-category-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.insights-archive .latest-category-bar {
  flex-wrap: nowrap;
  justify-content: flex-start;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  padding-bottom: 12px;
  scrollbar-width: thin;
  scrollbar-color: rgba(3, 27, 61, 0.28) transparent;
  margin-bottom: 20px;
}

.insights-archive .latest-category-bar::-webkit-scrollbar {
  height: 8px;
}

.insights-archive .latest-category-bar::-webkit-scrollbar-track {
  background: transparent;
}

.insights-archive .latest-category-bar::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(3, 27, 61, 0.22);
}

.insight-category {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  padding: 10px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: transparent;
  color: var(--primary-blue);
  font: inherit;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.insight-category.active,
.insight-category:hover {
  border-color: var(--primary-blue);
  background: var(--primary-blue);
  color: var(--white);
}

.insights-archive .latest-category-bar .insight-category:hover:not(.active) {
  border-color: transparent;
  background: #EEF6FC;
  color: var(--primary-blue);
}

.insight-search {
  display: grid;
  max-width: 620px;
  margin: 0 auto;
  gap: 8px;
  color: var(--primary-blue);
  font-weight: 800;
}

.insight-search input {
  width: 100%;
  padding: 15px 18px;
  border: 1px solid var(--border-light);
  border-radius: 999px;
  color: var(--text-dark);
  font: inherit;
  outline: none;
}

.insight-search input:focus {
  border-color: var(--bright-blue);
  box-shadow: 0 0 0 4px rgba(11, 123, 194, 0.12);
}

.insight-featured-card h3 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: break-word;
}

.insight-featured-card p {
  color: var(--text-gray);
  line-height: 1.8;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.recommended-insights .featured-case-grid {
  align-items: start;
}

.recommended-insights .featured-case-card {
  min-height: 0;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.service-tags span {
  display: inline-flex;
  padding: 5px 10px;
  border-radius: 999px;
  background: #F3F8FC;
  color: var(--primary-blue);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.insight-card {
  overflow: hidden;
  border: 1px solid var(--border-light);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(3, 27, 61, 0.08);
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.insights-archive .insight-compact-card {
  box-shadow: 0 8px 22px rgba(3, 27, 61, 0.07);
}

.insight-card-link {
  display: flex;
  height: 100%;
  flex-direction: column;
}

.insight-card.is-hidden,
.insight-featured-card.is-hidden {
  display: none;
}

.insight-card-image {
  position: relative;
  width: 100%;
  height: 200px;
  flex-shrink: 0;
  background:
    linear-gradient(135deg, rgba(3, 27, 61, 0.2), rgba(11, 123, 194, 0.34)),
    url("assets/hero-lab-compliance.png") center / cover;
}

.insight-card-image img {
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.insight-card-meta {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  pointer-events: none;
}

.insight-card-meta .case-category,
.insight-card-meta time {
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 6px 16px rgba(3, 27, 61, 0.12);
  backdrop-filter: blur(6px);
}

.insight-card-meta time {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--primary-blue);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.insight-card-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px 20px 22px;
}

.insight-card-content > div:first-child {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.insight-card time {
  color: var(--text-gray);
  font-size: 13px;
  font-weight: 700;
}

.insights-archive .insight-compact-card h3 {
  margin: 0 0 10px;
  font-size: 19px;
}

.insights-archive .insight-compact-card p,
.insight-card-content p {
  margin: 0;
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.insight-card a:not(.insight-card-link),
.insight-card .read-more,
.guide-card a {
  display: inline-flex;
  margin-top: 12px;
  color: var(--bright-blue);
  font-weight: 900;
}

.insight-card a:not(.insight-card-link)::after,
.insight-card .read-more::after,
.guide-card a::after {
  content: "->";
  margin-left: 8px;
}

.empty-state {
  margin: 0;
  color: var(--text-gray);
  line-height: 1.75;
}

.insight-pagination {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.insight-pagination .page-numbers {
  display: inline-flex;
  min-width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin: 0 5px;
  padding: 0 14px;
  border: 1px solid var(--border-light);
  border-radius: 999px;
  background: var(--white);
  color: var(--primary-blue);
  font-weight: 900;
  text-decoration: none;
  transition: all 0.25s ease;
}

.insight-pagination .page-numbers.current,
.insight-pagination a.page-numbers:hover {
  border-color: var(--primary-blue);
  background: var(--primary-blue);
  color: var(--white);
}

.guide-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.guide-card {
  background: linear-gradient(135deg, #F3F8FC 0%, #FFFFFF 100%);
}

.article-plan-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.article-plan-grid article {
  min-height: 230px;
}

.article-hero {
  padding: 128px 0 74px;
  color: var(--white);
  background: linear-gradient(120deg, #031B3D 0%, #063B72 55%, #0B7BC2 100%);
}

.article-hero h1 {
  max-width: 980px;
  margin: 18px 0;
  color: var(--white);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.16;
}

/* ---- 文章头部 Banner：左图 + 右文（参照 seantest.com） ---- */
.article-header-banner {
  padding: 40px 0;
  background: #f8f9fb;
  border-bottom: 1px solid var(--border-light);
}

.banner-inner {
  display: flex;
  gap: 36px;
  align-items: flex-start;
}

/* 左侧：特色图片 */
.banner-image {
  flex: 0 0 480px;
  max-width: 480px;
}

.banner-image .banner-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

.banner-img-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  background: linear-gradient(135deg, #031B3D 0%, #063B72 50%, #0a5a9e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-img-placeholder i {
  font-size: 64px;
  color: rgba(255, 255, 255, 0.2);
}

/* 右侧：标题 + 摘要 */
.banner-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 8px;
}

.banner-kicker {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--bright-blue);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.banner-info h1 {
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.3;
  color: var(--text-dark);
  margin-bottom: 14px;
  word-break: break-word;
}

.banner-desc {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-gray);
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.banner-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 18px;
}

.banner-meta i {
  margin-right: 4px;
  color: var(--bright-blue);
}

/* ---- 无图：纯文字标题头（参照 impact-strength-testing-guide.html） ---- */
.article-header-text {
  padding: 36px 0 24px;
  background: #f8f9fb;
  border-bottom: 1px solid var(--border-light);
}

.article-header-text .banner-kicker {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--bright-blue);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.article-header-text h1 {
  font-size: clamp(26px, 3.5vw, 38px);
  line-height: 1.25;
  color: var(--text-dark);
  margin-bottom: 14px;
  word-break: break-word;
}

.text-header-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  color: var(--text-light);
  flex-wrap: wrap;
}

.text-header-meta i {
  margin-right: 4px;
  color: var(--bright-blue);
}

/* ---- Hero 区域 kicker 标签 ---- */
.hero-kicker {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

/* ---- 文章头部卡片：在正文区域内 ---- */
.post-header-card {
  margin-bottom: 32px;
}

/* 有图：左图右文 */
.post-header-with-img {
  display: flex;
  gap: 28px;
  align-items: stretch;
  background: #f8f9fb;
  border-radius: 12px;
  padding: 24px;
  border: 1px solid var(--border-light);
}

.phc-image {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: stretch;
}

.phc-img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  display: block;
  object-fit: cover;
}

.phc-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.phc-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.35;
  margin-bottom: 10px;
}

.phc-desc {
  color: var(--text-medium);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 14px;
}

.phc-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 16px;
}

.phc-meta i { margin-right: 4px; color: var(--bright-blue); }

/* 无图：纯文字标题头 */
.post-header-text-only {
  background: #f8f9fb;
  border-radius: 12px;
  padding: 24px 28px;
  border: 1px solid var(--border-light);
}

.post-header-text-only .phc-title {
  font-size: 26px;
  margin-bottom: 14px;
}

.phc-meta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  color: var(--text-light);
  flex-wrap: wrap;
}

.phc-meta-row i { margin-right: 4px; color: var(--bright-blue); }

.article-hero p {
  max-width: 860px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
  line-height: 1.85;
}

/* ---- 案例详情 Hero（带背景图/占位图） ---- */
.case-hero-with-image {
  position: relative;
  padding: 100px 0 70px;
  overflow: hidden;
  background: linear-gradient(135deg, #031B3D 0%, #063B72 50%, #0a5a9e 100%);
}

.case-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.case-hero-bg .hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
}

.case-hero-bg .hero-bg-placeholder {
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(11, 123, 194, 0.25) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(0, 102, 204, 0.15) 0%, transparent 55%),
    linear-gradient(135deg, #031B3D 0%, #063B72 60%, #0a5a9e 100%);
}

.case-hero-with-image > .container {
  position: relative;
  z-index: 1;
}

.case-hero-with-image .case-meta {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.case-hero-with-image .case-meta i {
  margin-right: 4px;
}

.article-layout {
  grid-template-columns: minmax(0, 1fr) 330px;
  align-items: start;
}

.article-content-card {
  padding: 36px;
}

.article-content {
  color: #243B53;
  font-size: 17px;
  line-height: 1.9;
}

.article-content h2 {
  margin-top: 42px;
  color: var(--primary-blue);
  font-size: 28px;
}

.article-content h3 {
  margin-top: 28px;
  color: var(--text-dark);
  font-size: 22px;
}

.article-content blockquote,
.article-tip {
  margin: 24px 0;
  padding: 18px 22px;
  border-left: 4px solid var(--bright-blue);
  border-radius: 12px;
  background: var(--light-blue);
}

.article-sidebar {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 18px;
}

.article-sidebar-card {
  padding: 22px;
}

.article-sidebar-card h3 {
  margin: 0 0 14px;
  color: var(--primary-blue);
}

.article-sidebar-card a {
  display: block;
  margin-top: 10px;
  color: var(--bright-blue);
  font-weight: 800;
}

.process-section {
  background: var(--white);
}

.process-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.process-timeline::before {
  content: "";
  position: absolute;
  top: 35px;
  left: 6%;
  right: 6%;
  height: 2px;
  background: linear-gradient(90deg, rgba(11, 123, 194, 0.2), rgba(25, 167, 206, 0.75), rgba(11, 123, 194, 0.2));
}

.process-step {
  position: relative;
  padding: 0 6px;
  text-align: center;
}

.process-step span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  margin: 0 auto 18px;
  border: 7px solid #eef7fc;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--primary-blue), var(--cyan-blue));
  font-weight: 800;
}

.process-step h3 {
  margin: 0 0 8px;
  color: var(--primary-blue);
  font-size: 18px;
}

.process-step p {
  margin: 0;
  color: var(--text-gray);
  font-size: 14px;
}

.advantage-section {
  background: #f8fbfe;
}

.advantage-panel {
  position: relative;
  padding: 62px 56px;
  border-radius: 22px;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(3, 27, 61, 0.98), rgba(6, 59, 114, 0.96)),
    url("assets/hero-lab-compliance.png") center / cover;
  box-shadow: 0 24px 70px rgba(3, 27, 61, 0.2);
}

.advantage-panel::after {
  content: "";
  position: absolute;
  inset: auto 0 0 auto;
  width: 420px;
  height: 260px;
  background: radial-gradient(circle, rgba(25, 167, 206, 0.28), transparent 60%);
}

.section-heading.light {
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
}

.section-heading.light h2,
.section-heading.light p {
  color: var(--white);
}

.advantage-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
}

.advantage-grid article {
  min-height: 220px;
  padding: 30px;
  background: rgba(6, 43, 85, 0.38);
}

.advantage-grid span {
  color: var(--cyan-blue);
  font-weight: 800;
}

.advantage-grid h3 {
  margin: 12px 0 12px;
  color: var(--white);
  font-size: 20px;
}

.advantage-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
}

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

.case-card {
  padding: 28px;
}

.case-tag {
  display: inline-flex;
  padding: 5px 12px;
  border-radius: 999px;
  color: var(--bright-blue);
  background: #e9f6ff;
  font-size: 13px;
  font-weight: 800;
}

.case-card h3 {
  margin: 16px 0 12px;

  color: var(--primary-blue);
  font-size: 21px;
  line-height: 1.45;
}

/* 案例卡片摘要 - 显示2行 */
.case-card .case-excerpt {
  margin: 0 0 16px;
  padding: 0;
  color: #666;
  font-size: 13px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 39px; /* 13px * 1.5 * 2 = 39px */
}

.case-card dl,
.case-card dt,
.case-card dd {
  margin: 0;
}

.case-card dl {
  display: grid;
  gap: 12px;
}

.case-card dt {
  color: var(--text-dark);
  font-weight: 800;
  font-size: 14px;
}

/* 案例模块 - 查看更多按钮 */
.case-more {
  text-align: center;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #eee;
}

.case-more .btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #102a43;
  border-color: #19a7ce;
  background: #e8f4f8;
}
.case-more .btn-outline:hover {
  color: #fff;
  background: #19a7ce;
  border-color: #19a7ce;
}

.case-card dd {
  color: var(--text-gray);
  font-size: 14px;
}

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

.news-a { background-position: 82% 60%; }
.news-b { background-position: 66% 68%; filter: hue-rotate(16deg); }
.news-c { background-position: 74% 50%; filter: brightness(1.1); }
.news-d { background-position: 92% 64%; }
.news-e { background-position: 55% 62%; filter: saturate(0.85); }
.news-f { background-position: 70% 78%; filter: hue-rotate(-12deg); }

.news-body {
  padding: 18px 20px 22px;
}

.news-body span {
  color: var(--bright-blue);
  font-size: 13px;
  font-weight: 700;
}

.news-body h3 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 58px;
  margin: 8px 0 0;
  color: var(--primary-blue);
  font-size: 19px;
  line-height: 1.5;
}

.cta-section {
  background: var(--white);
  padding-top: 40px;
  padding-bottom: 50px;
}

.cta-panel {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 46px;
  align-items: center;
  padding: 54px;
  border-radius: 24px;
  background:
    linear-gradient(120deg, rgba(3, 27, 61, 0.96) 0%, rgba(6, 59, 114, 0.9) 46%, rgba(243, 248, 252, 1) 46%),
    url("assets/hero-lab-compliance.png") left center / cover;
  box-shadow: 0 22px 60px rgba(6, 43, 85, 0.12);
}

.cta-copy {
  color: var(--white);
}

.cta-copy h2 {
  margin: 12px 0 16px;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.25;
}

.cta-copy p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
}

.cta-copy ul {
  display: grid;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.9);
}

.cta-copy li::before {
  content: "✓";
  margin-right: 10px;
  color: var(--cyan-blue);
  font-weight: 800;
}

.consult-form {
  display: grid;
  gap: 16px;
  padding: 26px;
  border: 1px solid var(--border-light);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-soft);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.consult-form label {
  display: grid;
  gap: 8px;
  color: var(--primary-blue);
  font-size: 14px;
  font-weight: 800;
}

.consult-form input,
.consult-form select {
  width: 100%;
  height: 48px;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 0 14px;
  color: var(--text-dark);
  background: var(--white);
  font: inherit;
  font-weight: 500;
}

.consult-form input:focus,
.consult-form select:focus {
  outline: 3px solid rgba(25, 167, 206, 0.16);
  border-color: var(--cyan-blue);
}

.consult-form button {
  width: 100%;
  margin-top: 4px;
}

.site-footer {
  padding: 34px 0;
  color: rgba(255, 255, 255, 0.8);
  background: var(--deep-blue);
}

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

.footer-inner strong {
  color: var(--white);
  font-size: 22px;
}

.footer-inner p {
  margin: 4px 0 0;
}

.services-hero {
  position: relative;
  min-height: 420px;
  padding-top: 72px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(3, 27, 61, 0.98) 0%, rgba(6, 76, 140, 0.94) 58%, rgba(11, 123, 194, 0.92) 100%),
    url("assets/hero-lab-compliance.png") center right / cover no-repeat;
}

.services-hero::after {
  content: "";
  position: absolute;
  inset: 72px 0 0;
  background:
    linear-gradient(90deg, rgba(3, 27, 61, 0.32), transparent 70%),
    radial-gradient(circle at 78% 34%, rgba(25, 167, 206, 0.26), transparent 36%);
  pointer-events: none;
}

.services-hero-layout {
  position: relative;
  z-index: 1;
  min-height: 348px;
  display: grid;
  grid-template-columns: 45% 55%;
  align-items: center;
  gap: 34px;
}

.services-hero-copy h1 {
  margin: 12px 0 16px;
  font-size: clamp(42px, 4vw, 62px);
  line-height: 1.15;
}

.services-hero-copy p {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
}

.services-hero-visual {
  position: relative;
  min-height: 300px;
}

.services-hero-visual img {
  position: absolute;
  inset: 18px 0 auto auto;
  width: min(100%, 650px);
  height: 286px;
  object-fit: cover;
  object-position: center;
  border-radius: 18px;
  opacity: 0.44;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.24);
}

.clipboard-card,
.validation-sheet,
.inspection-panel {
  position: absolute;
  border: 1px solid rgba(221, 234, 244, 0.72);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--primary-blue);
  box-shadow: 0 18px 46px rgba(3, 27, 61, 0.24);
  backdrop-filter: blur(12px);
}

.clipboard-card {
  top: 28px;
  left: 28%;
  width: 190px;
  padding: 22px;
}

.clipboard-card strong {
  display: block;
  margin-bottom: 14px;
  font-size: 28px;
}

.clipboard-card span {
  display: block;
  position: relative;
  padding-left: 22px;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 700;
}

.clipboard-card span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 12px;
  height: 8px;
  border-left: 2px solid var(--bright-blue);
  border-bottom: 2px solid var(--bright-blue);
  transform: rotate(-45deg);
}

.validation-sheet {
  right: 8%;
  bottom: 24px;
  width: 160px;
  padding: 18px;
  transform: rotate(2deg);
}

.validation-sheet strong {
  display: block;
  margin-bottom: 18px;
  font-size: 15px;
}

.validation-sheet i {
  display: block;
  height: 8px;
  margin: 10px 0;
  border-radius: 999px;
  background: #d9ebf7;
}

.validation-sheet i:nth-child(3) {
  width: 68%;
}

.inspection-panel {
  right: 23%;
  top: 44px;
  width: 170px;
  padding: 18px;
  color: #eaf8ff;
  background: rgba(3, 27, 61, 0.78);
  border-color: rgba(25, 167, 206, 0.34);
}

.inspection-panel span {
  display: block;
  color: rgba(234, 248, 255, 0.72);
  font-size: 12px;
}

.inspection-panel b {
  display: block;
  margin-top: 8px;
  color: var(--white);
  font-size: 30px;
}

.service-overview {
  background: var(--white);
}

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

.overview-grid article {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 110px;
  padding: 24px;
  border: 1px solid var(--border-light);
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff, #f7fbff);
  box-shadow: var(--shadow-soft);
}

.overview-icon {
  flex: 0 0 54px;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--primary-blue), var(--cyan-blue));
  font-weight: 800;
}

.overview-grid h3 {
  white-space: nowrap;
  flex-shrink: 0;
}

.overview-grid p {
  margin: 0;
  color: #28445f;
  font-weight: 700;
}

.service-fields {
  background: linear-gradient(180deg, #f8fbfe 0%, #f3f8fc 100%);
}

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

.service-field-card {
  display: flex;
  flex-direction: column;
  min-height: 430px;
  background: #ffffff;
  border: 1px solid #DDEAF4;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 10px 30px rgba(3, 27, 61, 0.08);
  transition: all .25s ease;
}

.service-field-card:hover {
  transform: translateY(-6px);
  border-color: #0B7BC2;
  box-shadow: 0 18px 42px rgba(3, 27, 61, 0.14);
}


.field-icon {
  width: 58px;
  height: 58px;
  position: relative;
  display: block;
  margin-bottom: 20px;
  border-radius: 16px;
  background: linear-gradient(135deg, #e9f6ff, #ffffff);
  border: 1px solid #d8ebf8;
}

.field-icon::before,
.field-icon::after {
  content: "";
  position: absolute;
}

.field-icon.pill::before {
  width: 38px;
  height: 16px;
  left: 10px;
  top: 21px;
  border: 3px solid var(--bright-blue);
  border-radius: 999px;
  transform: rotate(-42deg);
}

.field-icon.molecule::before {
  width: 10px;
  height: 10px;
  left: 24px;
  top: 24px;
  border-radius: 50%;
  background: var(--bright-blue);
  box-shadow: -18px -12px 0 #7fcde7, 17px -15px 0 #7fcde7, 18px 15px 0 #7fcde7;
}

.field-icon.molecule::after {
  left: 13px;
  top: 18px;
  width: 34px;
  height: 24px;
  border-top: 2px solid var(--primary-blue);
  border-bottom: 2px solid var(--primary-blue);
  transform: rotate(-28deg);
}

.field-icon.device::before {
  width: 32px;
  height: 24px;
  left: 13px;
  top: 14px;
  border: 3px solid var(--bright-blue);
  border-radius: 5px;
}

.field-icon.device::after {
  width: 22px;
  height: 12px;
  left: 18px;
  bottom: 10px;
  border-bottom: 3px solid var(--primary-blue);
  border-left: 3px solid var(--primary-blue);
  border-right: 3px solid var(--primary-blue);
}

.field-icon.bottle::before,
.field-icon.bottle::after {
  bottom: 10px;
  border-radius: 5px;
  background: linear-gradient(180deg, #9edaf0, var(--bright-blue));
}

.field-icon.bottle::before {
  width: 15px;
  height: 34px;
  left: 15px;
}

.field-icon.bottle::after {
  width: 12px;
  height: 26px;
  right: 14px;
}

.field-icon.shield::before {
  width: 34px;
  height: 40px;
  left: 12px;
  top: 9px;
  background: linear-gradient(135deg, var(--bright-blue), var(--cyan-blue));
  clip-path: polygon(50% 0, 90% 14%, 84% 70%, 50% 100%, 16% 70%, 10% 14%);
}

.field-icon.shield::after {
  width: 13px;
  height: 8px;
  left: 23px;
  top: 25px;
  border-left: 3px solid var(--white);
  border-bottom: 3px solid var(--white);
  transform: rotate(-45deg);
}

.field-icon.flask::before {
  width: 14px;
  height: 16px;
  left: 22px;
  top: 9px;
  border: 3px solid var(--bright-blue);
  border-bottom: 0;
}

.field-icon.flask::after {
  width: 34px;
  height: 28px;
  left: 12px;
  bottom: 10px;
  border: 3px solid var(--bright-blue);
  border-radius: 4px 4px 16px 16px;
  background: linear-gradient(180deg, transparent 45%, rgba(25, 167, 206, 0.24) 45%);
}

.field-icon.document::before {
  width: 31px;
  height: 38px;
  left: 14px;
  top: 10px;
  border: 3px solid var(--bright-blue);
  border-radius: 5px;
  background: linear-gradient(180deg, transparent 22%, rgba(25, 167, 206, 0.14) 22%);
}

.field-icon.document::after {
  width: 18px;
  height: 3px;
  left: 22px;
  top: 27px;
  background: var(--primary-blue);
  box-shadow: 0 8px 0 var(--primary-blue);
}

.service-field-card h3 {
  margin: 0 0 14px;
  color: var(--primary-blue);
  font-size: 23px;
  line-height: 1.35;
}

.service-field-card p {
  margin: 0 0 20px;
  color: var(--text-gray);
  font-size: 15px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.tag {
  display: inline-flex;
  align-items: center;
  background: #F3F8FC;
  color: #063B72;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 700;
}

.service-field-card > a {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 24px;
  color: var(--bright-blue);
  font-weight: 800;
}

.service-field-card > a::after {
  content: "→";
  margin-left: 8px;
}

.capability-section {
  background: var(--white);
}

.matrix-table {
  overflow: hidden;
  border: 1px solid var(--border-light);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 18px 48px rgba(3, 27, 61, 0.08);
}

.matrix-row {
  display: grid;
  grid-template-columns: 1.05fr 1.35fr 1.45fr 1.45fr;
}

.matrix-row > * {
  margin: 0;
  padding: 20px;
  border-top: 1px solid var(--border-light);
  color: #28445f;
  font-size: 14px;
}

.matrix-row > * + * {
  border-left: 1px solid var(--border-light);
}

.matrix-row strong {
  color: var(--primary-blue);
  font-size: 15px;
}

.matrix-head {
  background: linear-gradient(90deg, var(--deep-blue), var(--primary-blue));
}

.matrix-head > * {
  border-top: 0;
  color: var(--white);
  font-weight: 800;
}

.need-section {
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

.need-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.need-grid a {
  position: relative;
  min-height: 150px;
  padding: 24px 54px 24px 24px;
  border: 1px solid var(--border-light);
  border-radius: 18px;
  background: #f3f8fc;
  transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.need-grid a:hover {
  transform: translateY(-5px);
  color: var(--white);
  background: linear-gradient(135deg, var(--primary-blue), var(--bright-blue));
}

.need-grid strong {
  display: block;
  margin-bottom: 12px;
  color: var(--primary-blue);
  font-size: 18px;
}

.need-grid span {
  color: var(--text-gray);
  font-size: 14px;
}

.need-grid i {
  position: absolute;
  right: 22px;
  bottom: 18px;
  color: var(--bright-blue);
  font-style: normal;
  font-size: 24px;
  font-weight: 800;
}

.need-grid a:hover strong,
.need-grid a:hover span,
.need-grid a:hover i {
  color: var(--white);
}

.solution-entry-grid .solution-body p {
  min-height: 92px;
}

.solution-entry-grid .tag-list {
  margin-top: 16px;
}

.solutions-category-archive .process-section {
  background: #f7fbff;
}

.solutions-category-archive .process-section .section-heading {
  max-width: 840px;
  margin-bottom: 44px;
}

.solutions-category-archive .process-section .service-process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.solutions-category-archive .process-section .service-process article {
  position: relative;
  min-height: 230px;
  padding: 28px;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(3, 27, 61, 0.08);
  overflow: hidden;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.solutions-category-archive .process-section .service-process article::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--bright-blue), var(--cyan-blue));
}

.solutions-category-archive .process-section .service-process article:hover {
  border-color: rgba(11, 123, 194, 0.36);
  background: #fafdff;
  box-shadow: 0 18px 44px rgba(3, 27, 61, 0.12);
}

.solutions-category-archive .process-section .service-process span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 22px;
  border-radius: 14px;
  background: var(--primary-blue);
  color: var(--white);
  font-size: 18px;
  font-weight: 900;
}

.solutions-category-archive .process-section .service-process h3 {
  margin: 0 0 12px;
  color: var(--primary-blue);
  font-size: 21px;
  line-height: 1.35;
}

.solutions-category-archive .process-section .service-process p {
  margin: 0;
  color: var(--text-gray);
  line-height: 1.75;
}

.service-process {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.deliverable-section {
  background: linear-gradient(180deg, #ffffff 0%, #f3f8fc 100%);
}

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

.deliverable-grid article {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 92px;
  padding: 22px;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  color: var(--primary-blue);
  font-weight: 800;
}

.deliverable-grid span {
  flex: 0 0 42px;
  width: 42px;
  height: 48px;
  position: relative;
  border: 2px solid var(--bright-blue);
  border-radius: 6px;
  background: #f7fbff;
}

.deliverable-grid span::before {
  content: "";
  position: absolute;
  right: -2px;
  top: -2px;
  border-top: 14px solid var(--bright-blue);
  border-left: 14px solid transparent;
}

.deliverable-grid span::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 20px;
  width: 22px;
  height: 2px;
  background: #9acde8;
  box-shadow: 0 8px 0 #9acde8;
}

.faq-section {
  background: var(--white);
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 980px;
  margin: 0 auto;
}

.faq-list details {
  border: 1px solid var(--border-light);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(3, 27, 61, 0.05);
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 58px 20px 22px;
  color: var(--primary-blue);
  font-weight: 800;
  list-style: none;
  position: relative;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 18px;
  color: var(--bright-blue);
  font-size: 24px;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--text-gray);
}

.tech-hero {
  min-height: 420px;
  padding-top: 72px;
  color: var(--white);
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(3, 27, 61, 0.98) 0%, rgba(6, 76, 140, 0.94) 55%, rgba(11, 123, 194, 0.9) 100%),
    url("assets/hero-lab-compliance.png") center right / cover no-repeat;
}

.tech-hero-layout {
  min-height: 348px;
  display: grid;
  grid-template-columns: 47% 53%;
  align-items: center;
  gap: 36px;
}

.tech-hero-copy h1 {
  margin: 12px 0 16px;
  font-size: clamp(40px, 4vw, 60px);
  line-height: 1.15;
}

.tech-hero-copy p {
  margin: 0;
  max-width: 680px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
}

.tech-hero-visual {
  position: relative;
  min-height: 310px;
}

.tech-hero-visual img {
  position: absolute;
  right: 0;
  top: 18px;
  width: min(100%, 660px);
  height: 292px;
  object-fit: cover;
  border-radius: 18px;
  opacity: 0.42;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.lab-panel,
.validation-file,
.water-system-card {
  position: absolute;
  border-radius: 16px;
  border: 1px solid rgba(221, 234, 244, 0.72);
  box-shadow: 0 18px 48px rgba(3, 27, 61, 0.24);
  backdrop-filter: blur(12px);
}

.lab-panel {
  top: 38px;
  right: 6%;
  width: 205px;
  padding: 18px;
  color: #eaf8ff;
  background: rgba(3, 27, 61, 0.78);
  border-color: rgba(25, 167, 206, 0.34);
}

.lab-panel strong {
  display: block;
  margin-bottom: 14px;
  font-size: 26px;
}

.lab-panel span {
  display: block;
  height: 9px;
  margin-top: 10px;
  border-radius: 999px;
  color: transparent;
  background: linear-gradient(90deg, var(--cyan-blue), rgba(255, 255, 255, 0.2));
}

.lab-panel span:nth-child(3) {
  width: 72%;
}

.lab-panel span:nth-child(4) {
  width: 52%;
}

.validation-file {
  left: 14%;
  top: 44px;
  width: 182px;
  min-height: 214px;
  padding: 22px;
  color: var(--primary-blue);
  background: rgba(255, 255, 255, 0.92);
}

.validation-file b {
  display: block;
  margin-bottom: 42px;
  font-size: 16px;
}

.validation-file i {
  display: block;
  height: 9px;
  margin: 13px 0;
  border-radius: 999px;
  background: #dbeef8;
}

.validation-file i:nth-child(3) {
  width: 76%;
}

.water-system-card {
  left: 38%;
  bottom: 20px;
  width: 220px;
  padding: 18px;
  color: var(--primary-blue);
  background: rgba(255, 255, 255, 0.94);
}

.water-system-card span {
  color: var(--bright-blue);
  font-size: 13px;
  font-weight: 800;
}

.water-system-card strong {
  display: block;
  margin-top: 8px;
  font-size: 18px;
}

.testing-overview,
.testing-service-section,
.scenario-section {
  background: var(--white);
}

.testing-value-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.testing-value-grid article,
.tech-card,
.qualification-grid article,
.scenario-grid article {
  background: #ffffff;
  border: 1px solid #DDEAF4;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(3, 27, 61, 0.08);
  transition: all .25s ease;
}

.testing-value-grid article:hover,
.tech-card:hover,
.qualification-grid article:hover,
.scenario-grid article:hover {
  transform: translateY(-6px);
  border-color: #0B7BC2;
  box-shadow: 0 18px 42px rgba(3, 27, 61, 0.14);
}

.testing-value-grid article {
  min-height: 150px;
  padding: 28px;
}

.testing-value-grid span {
  color: var(--cyan-blue);
  font-weight: 800;
}

.testing-value-grid h3,
.tech-card h3,
.qualification-grid h3,
.scenario-grid h3 {
  margin: 12px 0 12px;
  color: var(--primary-blue);
  font-size: 21px;
}

.testing-value-grid p,
.tech-card p,
.qualification-grid p,
.scenario-grid p {
  margin: 0;
  color: var(--text-gray);
  font-size: 15px;
}

.tech-capabilities,
.qualification-section {
  background: linear-gradient(180deg, #f8fbfe 0%, #f3f8fc 100%);
}

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

.tech-card {
  display: flex;
  flex-direction: column;
  min-height: 430px;
  padding: 30px;
}

.tech-icon {
  display: block;
  position: relative;
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  border: 1px solid #d8ebf8;
  border-radius: 16px;
  background: linear-gradient(135deg, #e9f6ff, #ffffff);
}

.tech-icon::before,
.tech-icon::after {
  content: "";
  position: absolute;
}

.tech-icon.method::before {
  width: 32px;
  height: 32px;
  left: 13px;
  top: 13px;
  border: 3px solid var(--bright-blue);
  border-radius: 50%;
}

.tech-icon.method::after {
  width: 24px;
  height: 3px;
  right: 7px;
  bottom: 12px;
  background: var(--primary-blue);
  transform: rotate(45deg);
}

.tech-icon.chemistry::before,
.tech-icon.water::before {
  width: 14px;
  height: 16px;
  left: 22px;
  top: 8px;
  border: 3px solid var(--bright-blue);
  border-bottom: 0;
}

.tech-icon.chemistry::after,
.tech-icon.water::after {
  width: 34px;
  height: 29px;
  left: 12px;
  bottom: 9px;
  border: 3px solid var(--bright-blue);
  border-radius: 4px 4px 16px 16px;
  background: linear-gradient(180deg, transparent 45%, rgba(25, 167, 206, 0.24) 45%);
}

.tech-icon.stability::before {
  width: 34px;
  height: 38px;
  left: 12px;
  top: 10px;
  border: 3px solid var(--bright-blue);
  border-radius: 8px;
}

.tech-icon.stability::after {
  width: 18px;
  height: 18px;
  left: 20px;
  top: 20px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--cyan-blue) 0 38%, transparent 40%);
  border: 2px solid var(--primary-blue);
}

.tech-icon.package::before {
  width: 32px;
  height: 36px;
  left: 13px;
  top: 11px;
  border: 3px solid var(--bright-blue);
  border-radius: 6px;
}

.tech-icon.package::after {
  width: 20px;
  height: 12px;
  left: 19px;
  top: 5px;
  border: 3px solid var(--primary-blue);
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
}

.tech-icon.microbe::before {
  width: 16px;
  height: 16px;
  left: 21px;
  top: 21px;
  border-radius: 50%;
  background: var(--bright-blue);
  box-shadow: -13px -10px 0 #8dd2eb, 14px -9px 0 #8dd2eb, -11px 14px 0 #8dd2eb, 14px 13px 0 #8dd2eb;
}

.tech-icon.cleanroom::before {
  width: 38px;
  height: 34px;
  left: 10px;
  top: 12px;
  border: 3px solid var(--bright-blue);
  border-radius: 4px;
}

.tech-icon.cleanroom::after {
  width: 3px;
  height: 34px;
  left: 27px;
  top: 12px;
  background: var(--bright-blue);
  box-shadow: -9px 0 0 #b9def1, 9px 0 0 #b9def1;
}

.tech-icon.process::before {
  width: 36px;
  height: 24px;
  left: 11px;
  top: 18px;
  border: 3px solid var(--bright-blue);
  border-radius: 999px;
}

.tech-icon.process::after {
  width: 12px;
  height: 12px;
  left: 23px;
  top: 24px;
  border-radius: 50%;
  background: var(--cyan-blue);
  box-shadow: -18px 0 0 #8dd2eb, 18px 0 0 #8dd2eb;
}

.tech-card .tag-list {
  margin-top: auto;
}

.tech-card > a {
  width: fit-content;
  margin-top: 22px;
  color: var(--bright-blue);
  font-weight: 800;
}

.tech-card > a::after {
  content: "→";
  margin-left: 8px;
}

.testing-split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 46px;
  align-items: center;
}

.testing-image-panel {
  position: relative;
  min-height: 520px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(3, 27, 61, 0.14);
}

.testing-image-panel img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.testing-image-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 27, 61, 0.08), rgba(3, 27, 61, 0.72));
}

.testing-image-panel div {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 1;
  padding: 22px;
  border-radius: 16px;
  color: var(--white);
  background: rgba(3, 27, 61, 0.58);
  backdrop-filter: blur(10px);
}

.testing-image-panel strong {
  display: block;
  font-size: 24px;
}

.testing-image-panel span {
  color: rgba(255, 255, 255, 0.78);
}

.testing-list-panel h2 {
  margin: 10px 0 14px;
  color: var(--primary-blue);
  font-size: clamp(30px, 3vw, 42px);
}

.testing-list-panel > p {
  margin: 0 0 28px;
  color: var(--text-gray);
}

.testing-list-groups {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.testing-list-groups article {
  padding: 22px;
  border: 1px solid var(--border-light);
  border-radius: 18px;
  background: #f7fbff;
}

.testing-list-groups h3 {
  margin: 0 0 14px;
  color: var(--primary-blue);
}

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

.qualification-grid article,
.scenario-grid article {
  min-height: 150px;
  padding: 28px;
}

.qualification-grid article::before {
  content: "";
  display: block;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--bright-blue), var(--cyan-blue));
}

.scenario-grid article {
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff, #f7fbff);
}

.scenario-grid h3::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--cyan-blue);
}

.testing-deliverable-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.deliverable-card {
  background: #ffffff;
  border: 1px solid #DDEAF4;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.reg-hero {
  min-height: 420px;
  padding-top: 72px;
  color: var(--white);
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(3, 27, 61, 0.98) 0%, rgba(6, 59, 114, 0.95) 52%, rgba(11, 123, 194, 0.9) 100%),
    url("assets/hero-lab-compliance.png") center right / cover no-repeat;
}

.reg-hero-layout {
  min-height: 348px;
  display: grid;
  grid-template-columns: 47% 53%;
  align-items: center;
  gap: 36px;
}

.reg-hero-copy h1 {
  margin: 12px 0 16px;
  font-size: clamp(40px, 4vw, 60px);
  line-height: 1.15;
}

.reg-hero-copy p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
}

.reg-hero-visual {
  position: relative;
  min-height: 310px;
}

.reg-hero-visual img {
  position: absolute;
  right: 0;
  top: 18px;
  width: min(100%, 660px);
  height: 292px;
  object-fit: cover;
  border-radius: 18px;
  opacity: 0.38;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.ctd-folder,
.dmf-file,
.cep-card,
.reg-dashboard {
  position: absolute;
  border: 1px solid rgba(221, 234, 244, 0.72);
  border-radius: 16px;
  box-shadow: 0 18px 48px rgba(3, 27, 61, 0.24);
  backdrop-filter: blur(12px);
}

.ctd-folder {
  left: 10%;
  top: 46px;
  width: 190px;
  padding: 22px;
  color: var(--primary-blue);
  background: rgba(255, 255, 255, 0.94);
}

.ctd-folder strong {
  display: block;
  margin-bottom: 14px;
  font-size: 32px;
}

.ctd-folder span {
  display: block;
  margin-top: 8px;
  padding: 8px 10px;
  border-radius: 8px;
  background: #f3f8fc;
  color: #244d76;
  font-size: 13px;
  font-weight: 800;
}

.dmf-file {
  right: 14%;
  top: 40px;
  width: 172px;
  min-height: 210px;
  padding: 20px;
  color: var(--primary-blue);
  background: rgba(255, 255, 255, 0.92);
  transform: rotate(2deg);
}

.dmf-file b {
  display: block;
  margin-bottom: 30px;
  color: var(--bright-blue);
  font-size: 30px;
}

.dmf-file i {
  display: block;
  height: 8px;
  margin: 12px 0;
  border-radius: 999px;
  background: #dbeef8;
}

.dmf-file i:nth-child(3) {
  width: 72%;
}

.dmf-file small {
  display: block;
  margin-top: 18px;
  color: var(--text-gray);
  font-weight: 800;
}

.cep-card {
  left: 39%;
  bottom: 22px;
  width: 150px;
  padding: 18px;
  color: var(--primary-blue);
  background: rgba(255, 255, 255, 0.94);
}

.cep-card span {
  color: var(--bright-blue);
  font-weight: 800;
}

.cep-card strong {
  display: block;
  margin-top: 8px;
  font-size: 24px;
}

.reg-dashboard {
  right: 5%;
  bottom: 34px;
  width: 190px;
  padding: 18px;
  color: #eaf8ff;
  background: rgba(3, 27, 61, 0.78);
  border-color: rgba(25, 167, 206, 0.34);
}

.reg-dashboard span {
  display: block;
  color: rgba(234, 248, 255, 0.72);
  font-size: 12px;
}

.reg-dashboard strong {
  display: block;
  margin-top: 8px;
  font-size: 30px;
}

.reg-overview {
  background: var(--white);
}

.reg-services {
  background: linear-gradient(180deg, #f8fbfe 0%, #f3f8fc 100%);
}

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

.reg-card {
  display: flex;
  flex-direction: column;
  min-height: 150px;
  background: #ffffff;
  border: 1px solid #DDEAF4;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(3, 27, 61, 0.08);
  transition: all .25s ease;
}

.reg-card:hover {
  transform: translateY(-6px);
  border-color: #0B7BC2;
  box-shadow: 0 18px 42px rgba(3, 27, 61, 0.14);
}

.reg-icon {
  display: block;
  position: relative;
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  border: 1px solid #d8ebf8;
  border-radius: 16px;
  background: linear-gradient(135deg, #e9f6ff, #ffffff);
}

.reg-icon::before,
.reg-icon::after {
  content: "";
  position: absolute;
}

.reg-icon.dmf::before,
.reg-icon.ctd::before,
.reg-icon.smf::before {
  width: 32px;
  height: 38px;
  left: 13px;
  top: 10px;
  border: 3px solid var(--bright-blue);
  border-radius: 5px;
}

.reg-icon.dmf::after,
.reg-icon.ctd::after,
.reg-icon.smf::after {
  width: 20px;
  height: 3px;
  left: 20px;
  top: 24px;
  background: var(--primary-blue);
  box-shadow: 0 8px 0 var(--primary-blue);
}

.reg-icon.cep::before {
  width: 38px;
  height: 30px;
  left: 10px;
  top: 16px;
  border: 3px solid var(--bright-blue);
  border-radius: 6px;
}

.reg-icon.cep::after {
  width: 18px;
  height: 18px;
  right: 8px;
  bottom: 8px;
  border-radius: 50%;
  background: var(--cyan-blue);
}

.reg-icon.who::before {
  width: 34px;
  height: 34px;
  left: 12px;
  top: 12px;
  border: 3px solid var(--bright-blue);
  border-radius: 50%;
}

.reg-icon.who::after {
  width: 34px;
  height: 2px;
  left: 12px;
  top: 28px;
  background: var(--primary-blue);
  box-shadow: 0 -10px 0 #b7def1, 0 10px 0 #b7def1;
}

.reg-icon.gap::before {
  width: 36px;
  height: 24px;
  left: 11px;
  top: 17px;
  border: 3px solid var(--bright-blue);
  border-radius: 5px;
}

.reg-icon.gap::after {
  width: 18px;
  height: 18px;
  right: 9px;
  bottom: 9px;
  border: 3px solid var(--primary-blue);
  border-radius: 50%;
}

.reg-icon.capa::before {
  width: 34px;
  height: 34px;
  left: 12px;
  top: 12px;
  border: 3px solid var(--bright-blue);
  border-radius: 50%;
}

.reg-icon.capa::after {
  width: 18px;
  height: 10px;
  left: 21px;
  top: 23px;
  border-left: 3px solid var(--primary-blue);
  border-bottom: 3px solid var(--primary-blue);
  transform: rotate(-45deg);
}

.reg-icon.inspection::before {
  width: 34px;
  height: 40px;
  left: 12px;
  top: 9px;
  background: linear-gradient(135deg, var(--bright-blue), var(--cyan-blue));
  clip-path: polygon(50% 0, 90% 14%, 84% 70%, 50% 100%, 16% 70%, 10% 14%);
}

.reg-icon.inspection::after {
  width: 13px;
  height: 8px;
  left: 23px;
  top: 25px;
  border-left: 3px solid var(--white);
  border-bottom: 3px solid var(--white);
  transform: rotate(-45deg);
}

.reg-card h3 {
  margin: 0 0 12px;
  color: var(--primary-blue);
  font-size: 21px;
  line-height: 1.35;
}

.reg-card p {
  margin: 0 0 20px;
  color: var(--text-gray);
  font-size: 15px;
}

.reg-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.reg-tag {
  display: inline-flex;
  align-items: center;
  background: #F3F8FC;
  color: #063B72;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 700;
}

.reg-card > a {
  width: fit-content;
  margin-top: 22px;
  color: var(--bright-blue);
  font-weight: 800;
}

.reg-card > a::after {
  content: "→";
  margin-left: 8px;
}

.international-reg-section {
  background: var(--white);
}

.international-reg-panel {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 42px;
  padding: 54px;
  border-radius: 24px;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(3, 27, 61, 0.98), rgba(6, 59, 114, 0.94)),
    url("assets/hero-lab-compliance.png") center / cover;
  box-shadow: 0 24px 70px rgba(3, 27, 61, 0.18);
  overflow: hidden;
}

.international-visual {
  position: relative;
}

.international-visual h2 {
  margin: 12px 0 14px;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.25;
}

.international-visual p {
  color: rgba(255, 255, 255, 0.78);
}

.world-lines {
  position: absolute;
  left: 0;
  right: 20px;
  bottom: -24px;
  height: 160px;
  opacity: 0.45;
  background:
    radial-gradient(circle at 22% 48%, var(--cyan-blue) 0 4px, transparent 5px),
    radial-gradient(circle at 50% 25%, var(--cyan-blue) 0 4px, transparent 5px),
    radial-gradient(circle at 74% 60%, var(--cyan-blue) 0 4px, transparent 5px),
    linear-gradient(25deg, transparent 28%, rgba(25, 167, 206, 0.65) 29% 30%, transparent 31%),
    linear-gradient(-18deg, transparent 36%, rgba(25, 167, 206, 0.55) 37% 38%, transparent 39%);
}

.international-lists {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.international-lists article {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.international-lists h3 {
  margin: 0 0 16px;
  color: var(--white);
  font-size: 21px;
}

.international-lists .check-list li {
  color: rgba(255, 255, 255, 0.84);
}

.reg-deliverable-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.gmp-hero {
  min-height: 420px;
  padding-top: 72px;
  color: var(--white);
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(3, 27, 61, 0.98) 0%, rgba(6, 59, 114, 0.95) 55%, rgba(11, 123, 194, 0.9) 100%),
    url("assets/hero-lab-compliance.png") center right / cover no-repeat;
}

.gmp-hero-layout {
  min-height: 348px;
  display: grid;
  grid-template-columns: 47% 53%;
  align-items: center;
  gap: 36px;
}

.gmp-hero-copy h1 {
  margin: 12px 0 16px;
  font-size: clamp(38px, 3.8vw, 58px);
  line-height: 1.15;
}

.gmp-hero-copy p {
  max-width: 700px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
}

.gmp-hero-visual {
  position: relative;
  min-height: 310px;
}

.gmp-hero-visual img {
  position: absolute;
  right: 0;
  top: 18px;
  width: min(100%, 660px);
  height: 292px;
  object-fit: cover;
  border-radius: 18px;
  opacity: 0.38;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.gmp-checklist,
.gmp-validation,
.gmp-capa-card,
.gmp-data-card {
  position: absolute;
  border: 1px solid rgba(221, 234, 244, 0.72);
  border-radius: 16px;
  box-shadow: 0 18px 48px rgba(3, 27, 61, 0.24);
  backdrop-filter: blur(12px);
}

.gmp-checklist {
  left: 9%;
  top: 42px;
  width: 198px;
  padding: 22px;
  color: var(--primary-blue);
  background: rgba(255, 255, 255, 0.94);
}

.gmp-checklist strong {
  display: block;
  margin-bottom: 14px;
  font-size: 24px;
}

.gmp-checklist span {
  display: block;
  position: relative;
  margin-top: 9px;
  padding-left: 22px;
  color: #244d76;
  font-size: 13px;
  font-weight: 800;
}

.gmp-checklist span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 12px;
  height: 8px;
  border-left: 2px solid var(--bright-blue);
  border-bottom: 2px solid var(--bright-blue);
  transform: rotate(-45deg);
}

.gmp-validation {
  right: 10%;
  top: 46px;
  width: 176px;
  min-height: 208px;
  padding: 20px;
  color: var(--primary-blue);
  background: rgba(255, 255, 255, 0.92);
  transform: rotate(2deg);
}

.gmp-validation b {
  display: block;
  margin-bottom: 34px;
  font-size: 16px;
}

.gmp-validation i {
  display: block;
  height: 8px;
  margin: 12px 0;
  border-radius: 999px;
  background: #dbeef8;
}

.gmp-validation i:nth-child(3) {
  width: 74%;
}

.gmp-capa-card,
.gmp-data-card {
  padding: 18px;
}

.gmp-capa-card {
  left: 39%;
  bottom: 22px;
  width: 170px;
  color: var(--primary-blue);
  background: rgba(255, 255, 255, 0.94);
}

.gmp-data-card {
  right: 5%;
  bottom: 32px;
  width: 190px;
  color: #eaf8ff;
  background: rgba(3, 27, 61, 0.78);
  border-color: rgba(25, 167, 206, 0.34);
}

.gmp-capa-card span,
.gmp-data-card span {
  color: var(--cyan-blue);
  font-size: 12px;
  font-weight: 800;
}

.gmp-capa-card strong,
.gmp-data-card strong {
  display: block;
  margin-top: 8px;
  font-size: 22px;
}

.gmp-overview,
.gmp-gap-section {
  background: var(--white);
}

.gmp-service-section {
  background: linear-gradient(180deg, #f8fbfe 0%, #f3f8fc 100%);
}

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

.gmp-card {
  background: #ffffff;
  border: 1px solid #DDEAF4;
  border-radius: 22px;
  padding: 32px;
  box-shadow: 0 10px 30px rgba(3, 27, 61, 0.08);
  transition: all .25s ease;
}

.gmp-card:hover {
  transform: translateY(-6px);
  border-color: #0B7BC2;
  box-shadow: 0 18px 42px rgba(3, 27, 61, 0.14);
}

.gmp-icon {
  display: block;
  position: relative;
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  border: 1px solid #d8ebf8;
  border-radius: 16px;
  background: linear-gradient(135deg, #e9f6ff, #ffffff);
}

.gmp-icon::before,
.gmp-icon::after {
  content: "";
  position: absolute;
}

.gmp-icon.system::before {
  width: 34px;
  height: 20px;
  left: 12px;
  top: 19px;
  border: 3px solid var(--bright-blue);
  border-radius: 999px;
  transform: rotate(-42deg);
}

.gmp-icon.file::before,
.gmp-icon.validation::before,
.gmp-icon.review::before {
  width: 31px;
  height: 38px;
  left: 14px;
  top: 10px;
  border: 3px solid var(--bright-blue);
  border-radius: 5px;
}

.gmp-icon.file::after,
.gmp-icon.validation::after,
.gmp-icon.review::after {
  width: 19px;
  height: 3px;
  left: 21px;
  top: 25px;
  background: var(--primary-blue);
  box-shadow: 0 8px 0 var(--primary-blue);
}

.gmp-icon.search::before {
  width: 28px;
  height: 28px;
  left: 13px;
  top: 12px;
  border: 3px solid var(--bright-blue);
  border-radius: 50%;
}

.gmp-icon.search::after {
  width: 22px;
  height: 3px;
  right: 8px;
  bottom: 12px;
  background: var(--primary-blue);
  transform: rotate(45deg);
}

.gmp-icon.factory::before {
  width: 38px;
  height: 26px;
  left: 10px;
  bottom: 10px;
  border: 3px solid var(--bright-blue);
  border-radius: 4px;
}

.gmp-icon.factory::after {
  width: 8px;
  height: 30px;
  left: 15px;
  top: 10px;
  background: var(--primary-blue);
  box-shadow: 16px 8px 0 -2px var(--cyan-blue);
}

.gmp-icon.data::before {
  width: 36px;
  height: 28px;
  left: 11px;
  top: 15px;
  border: 3px solid var(--bright-blue);
  border-radius: 5px;
}

.gmp-icon.data::after {
  width: 4px;
  height: 16px;
  left: 20px;
  bottom: 17px;
  background: var(--cyan-blue);
  box-shadow: 9px -7px 0 var(--primary-blue), 18px -2px 0 var(--cyan-blue);
}

.gmp-icon.shield::before {
  width: 34px;
  height: 40px;
  left: 12px;
  top: 9px;
  background: linear-gradient(135deg, var(--bright-blue), var(--cyan-blue));
  clip-path: polygon(50% 0, 90% 14%, 84% 70%, 50% 100%, 16% 70%, 10% 14%);
}

.gmp-icon.shield::after,
.gmp-icon.capa::after {
  width: 13px;
  height: 8px;
  left: 23px;
  top: 25px;
  border-left: 3px solid var(--white);
  border-bottom: 3px solid var(--white);
  transform: rotate(-45deg);
}

.gmp-icon.capa::before {
  width: 34px;
  height: 34px;
  left: 12px;
  top: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bright-blue), var(--cyan-blue));
}

.gmp-card h3 {
  margin: 0 0 12px;
  color: var(--primary-blue);
  font-size: 22px;
  line-height: 1.35;
}

.gmp-card p {
  margin: 0 0 18px;
  color: var(--text-gray);
  font-size: 15px;
}

.gmp-tag-list {
  
  flex-wrap: wrap;
  gap: 8px;
}

.gmp-tag {
  display: inline-flex;
  align-items: center;
  background: #F3F8FC;
  color: #063B72;
  border-radius: 999px;
  padding: 7px 13px;
  font-size: 13px;
  font-weight: 600;
}

.gmp-framework-section {
  background: #f8fbfe;
}

.gmp-framework-panel {
  padding: 58px 54px;
  border-radius: 24px;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(3, 27, 61, 0.98), rgba(6, 59, 114, 0.94)),
    url("assets/hero-lab-compliance.png") center / cover;
  box-shadow: 0 24px 70px rgba(3, 27, 61, 0.18);
}

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

.gmp-framework-grid article {
  position: relative;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.gmp-framework-grid article + article::before {
  content: "";
  position: absolute;
  left: -18px;
  top: 50%;
  width: 16px;
  height: 2px;
  background: rgba(25, 167, 206, 0.7);
}

.gmp-framework-grid h3 {
  margin: 0 0 16px;
  font-size: 22px;
}

.gmp-framework-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 24px;
}

.gmp-framework-grid li {
  position: relative;
  padding-left: 24px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
}

.gmp-framework-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 8px;
  border-left: 2px solid var(--cyan-blue);
  border-bottom: 2px solid var(--cyan-blue);
  transform: rotate(-45deg);
}

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

.gmp-gap-steps article {
 
  padding: 28px;
  border: 1px solid var(--border-light);
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff, #f7fbff);
  box-shadow: var(--shadow-soft);
}

.gmp-gap-steps span {
  color: var(--cyan-blue);
  font-weight: 800;
}

.gmp-gap-steps h3 {
  margin: 12px 0 10px;
  color: var(--primary-blue);
  font-size: 20px;
}

.gmp-gap-steps p {
  margin: 0;
  color: var(--text-gray);
  font-size: 14px;
}

.gmp-onsite-list {
  columns: 2;
  margin-bottom: 24px;
}

@media (max-width: 1180px) {
  .site-nav {
    gap: 16px;
    font-size: 14px;
  }

  .hero-layout {
    grid-template-columns: 48% 52%;
  }

  .service-card-grid,
  .solution-grid,
  .solution-card-grid,
  .problem-grid,
  .featured-case-grid,
  .case-list-grid,
  .template-grid,
  .case-entry-grid,
  .case-service-grid,
  .case-detail-grid,
  .topic-grid,
  .insight-card-grid,
  .guide-grid,
  .article-plan-grid,
  .article-layout,
  .advantage-grid,
  .service-field-grid,
  .need-grid,
  .deliverable-grid,
  .testing-value-grid,
  .tech-card-grid,
  .reg-card-grid,
  .gmp-card-grid,
  .qualification-grid,
  .scenario-grid,
  .testing-deliverable-grid,
  .reg-deliverable-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-field-card-wide {
    grid-column: auto;
  }

  .about-intro-grid,
  .about-service-panel {
    grid-template-columns: 1fr;
  }

  .about-why-grid,
  .about-capability-grid,
  .about-metric-row,
  .about-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-timeline {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 34px;
  }

  .process-timeline::before {
    display: none;
  }

  .service-process {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .solutions-category-archive .process-section .service-process {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .featured-case-card {
    min-height: 0;
  }

  .solution-matrix-body {
    grid-template-columns: 1fr;
  }

  .solution-matrix-body > div + div {
    border-left: 0;
    border-top: 1px solid var(--border-light);
  }

  .article-sidebar {
    position: static;
  }

  .testing-split,
  .testing-list-groups,
  .international-reg-panel {
    grid-template-columns: 1fr;
  }

  .gmp-gap-steps,
  .gmp-framework-grid {
    grid-template-columns: 1fr;
  }

  .gmp-framework-grid article + article::before {
    display: none;
  }
}

@media (max-width: 900px) {
  .container,
  .nav-container {
    width: min(100% - 32px, 1280px);
  }

  .menu-toggle {
    display: block;
    position: relative;
    z-index: 60;
  }

  .menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: 72px 0 auto;
    display: block;
    padding: 8px 0 20px;
    background: rgba(6, 43, 85, 0.98);
    box-shadow: 0 18px 40px rgba(3, 27, 61, 0.22);
    transform: translateY(-120%);
    transition: transform 0.24s ease;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
  }

  .menu-open .site-nav {
    transform: translateY(0);
  }

  .site-nav > ul {
    display: block;
    width: min(100% - 32px, 1320px);
    margin: 0 auto;
  }

  .site-nav > ul > li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .site-nav > ul > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0 16px 14px;
    font-size: 16px;
    color: #ffffff;
    position: relative;
  }

  .site-nav > ul > li > a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 16px;
    background: var(--cyan-blue);
    border-radius: 2px;
  }

  .site-nav > ul > li > a::after {
    display: none;
  }

  .site-nav > ul > li.menu-item-has-children > a::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free', 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    transition: transform 0.3s ease;
    position: static;
    display: inline-block;
    width: auto;
    height: auto;
    background: none;
    transform: scaleX(1);
  }

  .site-nav > ul > li.menu-item-has-children.is-open > a::after {
    transform: rotate(180deg);
    color: var(--cyan-blue);
  }

  .site-nav .sub-menu {
    position: static;
    visibility: visible;
    transform: none;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding-left: 14px;
    transition: max-height 0.35s ease, opacity 0.3s ease, margin 0.3s ease;
  }

  .site-nav > ul > li.menu-item-has-children.is-open > .sub-menu {
    max-height: 500px;
    opacity: 1;
    margin-bottom: 12px;
  }

  .site-nav .sub-menu li {
    margin-bottom: 10px;
  }

  .site-nav .sub-menu a {
    display: block;
    padding: 8px 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
  }

  .site-nav .sub-menu a::after {
    display: none;
  }

  .hero-section {
    min-height: auto;
  }

  .about-hero {
    min-height: 0;
    padding: 108px 0 58px;
    background:
      linear-gradient(90deg, rgba(247, 251, 255, 0.96), rgba(247, 251, 255, 0.82)),
      url("assets/hero-lab-compliance.png") center / cover no-repeat;
  }

  .about-hero p {
    font-size: 17px;
  }

  .about-intro-grid {
    gap: 36px;
  }

  .about-intro-visual img {
    height: 260px;
  }

  .about-visual-note {
    position: static;
    width: 100%;
    margin-top: 14px;
  }

  .about-why-grid,
  .about-capability-grid,
  .about-metric-row,
  .about-process-grid,
  .about-service-list {
    grid-template-columns: 1fr;
  }

  .about-service-panel {
    padding: 28px 20px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 58px 0 68px;
  }

  .services-hero-layout {
    grid-template-columns: 1fr;
    padding: 46px 0 54px;
  }

  .tech-hero-layout {
    grid-template-columns: 1fr;
    padding: 46px 0 54px;
  }

  .reg-hero-layout {
    grid-template-columns: 1fr;
    padding: 46px 0 54px;
  }

  .solution-hero-layout {
    grid-template-columns: 1fr;
    padding: 46px 0 54px;
  }

  .gmp-hero-layout {
    grid-template-columns: 1fr;
    padding: 46px 0 54px;
  }

  .hero-copy {
    padding: 0;
  }

  .hero-visual {
    min-height: 420px;
  }

  .hero-visual > img {
    inset: 0;
    width: 100%;
    height: 390px;
  }

  .service-cards {
    margin-top: 24px;
  }

  .system-panel,
  .case-grid,
  .news-grid,
  .cta-panel,
  .overview-grid {
    grid-template-columns: 1fr;
  }

  .services-hero-visual {
    min-height: 300px;
  }

  .services-hero-visual img {
    inset: 0;
    width: 100%;
  }

  .tech-hero-visual {
    min-height: 300px;
  }

  .tech-hero-visual img {
    inset: 0 0 auto auto;
    width: 100%;
  }

  .reg-hero-visual {
    min-height: 300px;
  }

  .reg-hero-visual img {
    inset: 0 0 auto auto;
    width: 100%;
  }

  .solution-hero-visual {
    min-height: 300px;
  }

  .solution-hero-visual img {
    inset: 0 0 auto auto;
    width: 100%;
  }

  .gmp-hero-visual {
    min-height: 300px;
  }

  .gmp-hero-visual img {
    inset: 0 0 auto auto;
    width: 100%;
  }

  .matrix-table {
    border-radius: 0;
    border-left: 0;
    border-right: 0;
    box-shadow: none;
  }

  .matrix-row,
  .matrix-head {
    display: block;
  }

  .matrix-head {
    display: none;
  }

  .matrix-row {
    padding: 18px;
    border-top: 1px solid var(--border-light);
  }

  .matrix-row > * {
    display: block;
    border: 0;
    padding: 7px 0;
  }

  .matrix-row p:nth-child(2)::before {
    content: "适用企业：";
    color: var(--primary-blue);
    font-weight: 800;
  }

  .matrix-row p:nth-child(3)::before {
    content: "核心服务：";
    color: var(--primary-blue);
    font-weight: 800;
  }

  .matrix-row p:nth-child(4)::before {
    content: "交付成果：";
    color: var(--primary-blue);
    font-weight: 800;
  }

  .system-column + .system-column {
    border-left: 0;
    border-top: 1px solid var(--border-light);
  }

  .cta-panel {
    background:
      linear-gradient(180deg, rgba(3, 27, 61, 0.96) 0%, rgba(6, 59, 114, 0.92) 44%, rgba(243, 248, 252, 1) 44%),
      url("assets/hero-lab-compliance.png") top center / cover;
    padding: 34px;
  }
}

@media (max-width: 640px) {
  .section-pad {
    padding: 58px 0;
  }

  .brand-text strong {
    font-size: 18px;
  }

  .brand-text small {
    font-size: 11px;
  }

  .hero-copy h1 {
    font-size: 39px;
  }

  .hero-copy p {
    font-size: 16px;
  }

  .hero-actions,
  .hero-actions .btn {
    width: 100%;
  }

  .hero-visual {
    min-height: 360px;
  }

  .hero-visual > img {
    height: 330px;
    border-radius: 16px;
  }

  .report-main {
    top: 36px;
    left: 7%;
    width: 148px;
    min-height: 180px;
    padding: 16px;
  }

  .report-side {
    top: 94px;
    left: auto;
    right: 6%;
    width: 132px;
    min-height: 134px;
  }

  .dashboard-card {
    display: none;
  }

  .hero-badges {
    right: auto;
    left: 6%;
    bottom: 22px;
    gap: 8px;
  }

  .hero-badges span {
    width: 56px;
    height: 56px;
    font-size: 12px;
  }

  .service-card-grid,
  .solution-grid,
  .solution-card-grid,
  .problem-grid,
  .stage-grid,
  .featured-case-grid,
  .case-list-grid,
  .template-grid,
  .case-entry-grid,
  .case-service-grid,
  .case-detail-grid,
  .topic-grid,
  .insight-card-grid,
  .guide-grid,
  .article-plan-grid,
  .article-layout,
  .advantage-grid,
  .form-row,
  .service-field-grid,
  .need-grid,
  
  .service-process,
  .testing-value-grid,
  .tech-card-grid,
  .reg-card-grid,
  
  .gmp-gap-steps,
  .gmp-framework-grid,
  .qualification-grid,

 
  .international-lists {
    grid-template-columns: 1fr;
  }

  .core-card {
    padding: 22px;
  }

  .section-heading {
    text-align: left;
  }

  .system-column,
  .case-card {
    padding: 24px;
  }

  .case-filter-bar {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 6px;
  }

  .insight-category-bar {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 6px;
  }

  .case-filter {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .insight-category {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .featured-case-card,
  .case-detail-grid article,
  .article-content-card {
    padding: 24px;
  }

  .case-detail-hero {
    padding: 112px 0 58px;
  }

  .article-hero {
    padding: 112px 0 58px;
  }

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

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

  .solution-matrix-title {
    align-items: flex-start;
    padding: 20px;
  }

  .solution-matrix-title h3 {
    font-size: 20px;
  }

  .solution-matrix-body > div {
    padding: 20px;
  }

  .process-timeline {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .process-step {
    display: grid;
    grid-template-columns: 70px 1fr;
    column-gap: 16px;
    padding: 0 0 28px;
    text-align: left;
  }

  .process-step span {
    grid-row: 1 / span 2;
    margin: 0;
  }

  .process-step h3 {
    align-self: end;
  }

  .solutions-category-archive .process-section .service-process {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .solutions-category-archive .process-section .service-process article {
    min-height: 0;
    padding: 22px 22px 22px 24px;
  }

  .solutions-category-archive .process-section .service-process span {
    width: 46px;
    height: 46px;
    margin-bottom: 16px;
    border-radius: 12px;
    font-size: 16px;
  }

  .advantage-panel,
  .cta-panel {
    padding: 28px 20px;
    border-radius: 18px;
  }

  .services-hero-copy h1 {
    font-size: 40px;
  }

  .services-hero-visual {
    min-height: 284px;
  }

  .services-hero-visual img {
    height: 260px;
  }

  .clipboard-card {
    left: 4%;
    top: 20px;
    width: 158px;
    padding: 16px;
  }

  .validation-sheet {
    right: 3%;
    bottom: 18px;
    width: 132px;
  }

  .inspection-panel {
    display: none;
  }

  .service-field-card {
    min-height: 0;
    padding: 24px;
  }

  .tech-hero-copy h1 {
    font-size: 40px;
  }

  .tech-hero-visual {
    min-height: 276px;
  }

  .tech-hero-visual img {
    height: 250px;
  }

  .lab-panel {
    right: 4%;
    top: 24px;
    width: 150px;
  }

  .validation-file {
    left: 4%;
    top: 28px;
    width: 148px;
    min-height: 184px;
    padding: 16px;
  }

  .water-system-card {
    display: none;
  }

  .tech-card {
    min-height: 0;
    padding: 24px;
  }

  .reg-hero-copy h1 {
    font-size: 40px;
  }

  .reg-hero-visual {
    min-height: 278px;
  }

  .reg-hero-visual img {
    height: 250px;
  }

  .ctd-folder {
    left: 4%;
    top: 28px;
    width: 148px;
    padding: 16px;
  }

  .dmf-file {
    right: 4%;
    top: 32px;
    width: 136px;
    min-height: 178px;
    padding: 16px;
  }

  .cep-card,
  .reg-dashboard {
    display: none;
  }

  .reg-card {
    min-height: 0;
    padding: 24px;
  }

  .solution-hero-copy h1 {
    font-size: 40px;
  }

  .solution-hero-visual {
    min-height: 278px;
  }

  .solution-hero-visual img {
    height: 250px;
  }

  .solution-visual-card.checklist {
    left: 4%;
    top: 28px;
    width: 152px;
    padding: 16px;
  }

  .solution-visual-card.dossier {
    right: 4%;
    top: 34px;
    width: 138px;
    padding: 16px;
  }

  .solution-visual-card.dashboard {
    display: none;
  }

  .solution-detail-card {
    min-height: 0;
    padding: 24px;
  }

  .problem-card {
    min-height: 0;
  }

  .international-reg-panel {
    padding: 28px 20px;
    border-radius: 18px;
  }

  .gmp-hero-copy h1 {
    font-size: 38px;
  }

  .gmp-hero-visual {
    min-height: 278px;
  }

  .gmp-hero-visual img {
    height: 250px;
  }

  .gmp-checklist {
    left: 4%;
    top: 28px;
    width: 152px;
    padding: 16px;
  }

  .gmp-validation {
    right: 4%;
    top: 32px;
    width: 138px;
    min-height: 176px;
    padding: 16px;
  }

  .gmp-capa-card,
  .gmp-data-card {
    display: none;
  }

  .gmp-card {
    padding: 24px;
  }

  .gmp-framework-panel {
    padding: 28px 20px;
    border-radius: 18px;
  }

  .gmp-onsite-list {
    columns: 1;
  }

  .testing-image-panel,
  .testing-image-panel img {
    min-height: 320px;
    height: 320px;
  }

  .consult-form {
    padding: 20px;
  }

  .footer-inner {
    display: block;
  }
}

/* ============================================================
   文章详情页 — 左右布局（single.php 新版）
   ============================================================ */

/* 整体布局 */
.article-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 32px;
  align-items: start;
}

.article-detail-main {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ---- 左侧：标题区 ---- */
.article-detail-header {
  padding-bottom: 20px;
  border-bottom: 2px solid var(--border-light);
}

.article-detail-title {
  margin: 0 0 14px;
  color: var(--text-dark);
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.35;
  font-weight: 700;
}

.article-detail-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
  color: var(--text-gray);
}

.article-detail-meta .meta-date,
.article-detail-meta .meta-views {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.article-detail-meta .meta-date i,
.article-detail-meta .meta-views i {
  color: var(--bright-blue);
  font-size: 13px;
}

.btn-quote {
  margin-left: auto;
  padding: 8px 22px;
  font-size: 14px;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.15s;
}

.btn-quote:hover {
  transform: translateY(-1px);
}

/* ---- 特色图片（非成功案例文章） ---- */
.article-featured-image {
  margin-bottom: 24px;
  border-radius: 12px;
  overflow: hidden;
}

.article-featured-image .featured-img {
  width: 100%;
  height: auto;
  display: block;
}

/* ---- 左侧：正文 ---- */
.article-detail-content {
  font-size: 16px;
  line-height: 1.9;
  color: #334155;
  word-wrap: break-word;
}

.article-detail-content h2 {
  margin-top: 36px;
  margin-bottom: 12px;
  color: var(--primary-blue);
  font-size: 24px;
  font-weight: 700;
}

.article-detail-content h3 {
  margin-top: 28px;
  margin-bottom: 10px;
  color: var(--text-dark);
  font-size: 20px;
  font-weight: 600;
}

.article-detail-content p {
  margin-bottom: 16px;
}

.article-detail-content img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 18px 0;
}

.article-detail-content ul,
.article-detail-content ol {
  margin: 14px 0;
  padding-left: 24px;
}

.article-detail-content li {
  margin-bottom: 6px;
}

.article-detail-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0;
  font-size: 15px;
}

.article-detail-content th,
.article-detail-content td {
  border: 1px solid var(--border-light);
  padding: 10px 14px;
  text-align: left;
}

.article-detail-content th {
  background: var(--light-blue);
  color: var(--primary-blue);
  font-weight: 600;
}

.article-detail-content blockquote {
  margin: 20px 0;
  padding: 16px 20px;
  border-left: 4px solid var(--bright-blue);
  border-radius: 0 10px 10px 0;
  background: var(--light-blue);
  color: #475569;
  font-style: italic;
}

/* ---- 左侧：标签 ---- */
.article-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 18px 0;
  border-top: 1px dashed var(--border-light);
  border-bottom: 1px dashed var(--border-light);
}

.tag-item {
  display: inline-block;
  padding: 5px 14px;
  font-size: 13px;
  color: var(--bright-blue);
  background: #EBF5FF;
  border-radius: 20px;
  text-decoration: none;
  transition: background-color 0.2s, color 0.2s;
}

.tag-item:hover {
  background: var(--bright-blue);
  color: #fff;
}

/* ---- 上一篇 / 下一篇 导航 ---- */
.article-post-nav {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.post-nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.post-nav-item:hover {
  border-color: var(--bright-blue);
  box-shadow: 0 4px 12px rgba(3, 27, 61, 0.08);
}

.post-nav-prev { text-align: left; }
.post-nav-next { text-align: right; }

.post-nav-label {
  font-size: 13px;
  color: #999;
  margin-bottom: 6px;
}

.post-nav-label i { font-size: 11px; }

.post-nav-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--primary-blue);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ---- 左侧：YARPP 相关文章 ---- */
.article-related-posts {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(3, 27, 61, 0.06);
}

/* 当 YARPP 无结果时，整个区块自动隐藏 */
.article-related-posts:has(.yarpp-related:empty),
.article-related-posts:not(:has(.yarpp-item)) {
  display: none;
}

.related-title {
  margin: 0 0 16px;
  color: var(--primary-blue);
  font-size: 19px;
  font-weight: 700;
}

.related-list {
  /* YARPP 输出的容器，可按需微调 */
}

.related-list .yarpp-related a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-dark);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.2s;
}

.related-list .yarpp-related a:last-child {
  border-bottom: none;
}

.related-list .yarpp-related a:hover {
  color: var(--bright-blue);
}

/* YARPP 自定义模板输出样式 */
.yarpp-related {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

.yarpp-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px;
  border-radius: 12px;
  text-decoration: none;
  color: var(--text-dark);
  transition: background-color 0.2s, box-shadow 0.2s;
  border: 1px solid transparent;
}

.yarpp-item:hover {
  background: var(--light-blue);
  border-color: #BFDBFE;
  color: inherit;
}

.yarpp-thumb {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
  background: var(--light-blue);
}

.yarpp-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.yarpp-title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.yarpp-item:hover .yarpp-title {
  color: var(--bright-blue);
}

.yarpp-date {
  font-size: 12px;
  color: var(--text-gray);
}

/* ---- 左侧：咨询表单 ---- */
.article-consult-form {
  padding: 28px;
  background: linear-gradient(135deg, #F0F7FF 0%, #E8F4FD 100%);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(3, 27, 61, 0.06);
}

.form-title {
  margin: 0 0 18px;
  color: var(--primary-blue);
  font-size: 19px;
  font-weight: 700;
}

/* ============================================================
   右侧边栏
   ============================================================ */

.article-detail-sidebar {
  position: sticky;
  top: 92px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 4px 16px rgba(3, 27, 61, 0.05);
}

.sidebar-card > h4 {
  margin: 0 0 14px;
  padding-bottom: 10px;
  color: var(--primary-blue);
  font-size: 17px;
  font-weight: 700;
  border-bottom: 2px solid var(--bright-blue);
}

/* -- 分类导航 -- */
.cat-child-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.cat-child-list li {
  margin: 0;
}

.cat-child-list li a {
  display: block;
  padding: 8px 12px 8px 18px;
  color: var(--text-gray);
  text-decoration: none;
  font-size: 14px;
  border-radius: 8px;
  transition: background-color 0.15s, color 0.15s;
  position: relative;
}

.cat-child-list li a::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #CBD5E1;
  transition: background-color 0.15s;
}

.cat-child-list li.active a,
.cat-child-list li a:hover {
  background: var(--light-blue);
  color: var(--bright-blue);
  font-weight: 600;
}

.cat-child-list li.active a::before,
.cat-child-list li a:hover::before {
  background: var(--bright-blue);
}

/* -- 最新/热门推荐列表 -- */
.post-mini-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.post-mini-list li {
  margin: 0;
}

.mini-post-link {
  display: block;
  padding: 10px 14px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  min-height: 42px;
  transition: background-color 0.15s, color 0.15s;
}

.mini-post-link:hover {
  background: var(--light-blue);
  color: var(--bright-blue);
}

.mini-title {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mini-thumb {
  width: 64px;
  height: 48px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
  background: var(--light-blue);
}

.mini-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.mini-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.35;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mini-post-link:hover .mini-title {
  color: var(--bright-blue);
}

.mini-date,
.mini-views {
  font-size: 12px;
  color: var(--text-gray);
}

.mini-views i {
  font-size: 11px;
  margin-right: 2px;
}

/* -- 联系我们 -- */
.contact-list {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-dark);
}

.contact-label {
  flex-shrink: 0;
  min-width: 56px;
  color: var(--text-gray);
  font-size: 13px;
}

.contact-list a {
  color: var(--bright-blue);
  text-decoration: none;
  font-weight: 600;
}

.contact-list a:hover {
  color: var(--primary-blue);
  text-decoration: underline;
}

.contact-qrcode {
  text-align: center;
  padding-top: 10px;
  border-top: 1px dashed var(--border-light);
}

.contact-qrcode img {
  width: 120px;
  height: 120px;
  border-radius: 8px;
  border: 1px solid var(--border-light);
}

/* ============================================================
   咨询报价弹窗
   ============================================================ */

.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(3, 27, 61, 0.55);
  justify-content: center;
  align-items: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.modal-overlay.is-open {
  display: flex;
  opacity: 1;
}

.modal-box {
  position: relative;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--white);
  border-radius: 18px;
  padding: 36px 32px 28px;
  box-shadow: 0 24px 80px rgba(3, 27, 61, 0.25);
  transform: scale(0.95) translateY(10px);
  transition: transform 0.25s ease;
}

.modal-overlay.is-open .modal-box {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 34px;
  height: 34px;
  border: none;
  background: #F1F5F9;
  border-radius: 50%;
  font-size: 22px;
  line-height: 1;
  color: var(--text-gray);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.15s, color 0.15s;
}

.modal-close:hover {
  background: #E2E8F0;
  color: var(--text-dark);
}

.modal-title {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-blue);
}

.modal-desc {
  margin: 0 0 22px;
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.6;
}

.modal-box .consult-form {
  padding: 0;
}

/* ============================================================
   响应式 — 文章详情页
   ============================================================ */

@media (max-width: 1024px) {
  .article-detail-layout {
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .article-detail-layout {
    grid-template-columns: 1fr;
  }

  .article-detail-sidebar {
    position: static;
  }

  /* Banner 响应式：移动端上下堆叠 */
  .banner-inner {
    flex-direction: column;
    gap: 20px;
  }

  .banner-image {
    flex: none;
    max-width: 100%;
    width: 100%;
  }

  /* 文章头部卡片响应式 */
  .post-header-with-img {
    flex-direction: column;
    gap: 18px;
    padding: 18px;
  }

  .phc-image {
    flex: none;
    max-width: 100%;
    width: 100%;
  }

  .phc-title {
    font-size: 20px;
  }

  .post-header-text-only {
    padding: 18px;
  }

  .post-header-text-only .phc-title {
    font-size: 22px;
  }

  .phc-meta-row {
    gap: 12px;
  }

  .article-detail-meta {
    gap: 12px;
  }

  .btn-quote {
    margin-left: 0;
    width: 100%;
    text-align: center;
  }
}

/* ============================================================
   404 与搜索页模板
   ============================================================ */

.kanghe-error-hero,
.kanghe-search-hero {
  background: linear-gradient(180deg, #f8fbfe 0%, var(--light-blue) 100%);
}

.kanghe-error-content {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.kanghe-error-content h1 {
  font-size: clamp(120px, 20vw, 220px);
  line-height: 1;
  margin: 20px 0 24px;
  color: var(--primary-blue);
  font-weight: 800;
  letter-spacing: -4px;
  opacity: 0.18;
}

.kanghe-error-content p {
  font-size: 18px;
  color: var(--text-gray);
  margin: 0 0 28px;
}

.kanghe-error-help {
  padding-top: 0;
}

.kanghe-error-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.kanghe-error-links a {
  display: inline-flex;
  padding: 12px 24px;
  border-radius: 30px;
  border: 1px solid var(--border-light);
  background: var(--white);
  color: var(--primary-blue);
  font-weight: 600;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.kanghe-error-links a:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.kanghe-search-form {
  max-width: 720px;
  margin: 0 auto;
}

.kanghe-search-label {
  display: block;
  margin-bottom: 10px;
  color: var(--text-gray);
  font-size: 14px;
}

.kanghe-search-row {
  display: flex;
  gap: 12px;
}

.kanghe-search-field {
  flex: 1;
  min-width: 0;
  padding: 14px 20px;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  font-size: 16px;
  background: var(--white);
  color: var(--text-dark);
}

.kanghe-search-field:focus {
  outline: none;
  border-color: var(--bright-blue);
  box-shadow: 0 0 0 3px rgba(11, 123, 194, 0.12);
}

.kanghe-search-submit {
  border: none;
  cursor: pointer;
}

.kanghe-result-list {
  display: grid;
  gap: 22px;
  max-width: 960px;
  margin: 0 auto;
}

.kanghe-result-item {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.kanghe-result-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.kanghe-result-type {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  background: var(--light-blue);
  color: var(--bright-blue);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 12px;
}

.kanghe-result-item h2 {
  margin: 0 0 10px;
  font-size: 20px;
}

.kanghe-result-item h2 a {
  color: var(--primary-blue);
}

.kanghe-result-item h2 a:hover {
  color: var(--bright-blue);
}

.kanghe-result-item p {
  margin: 0 0 16px;
  color: var(--text-gray);
  font-size: 15px;
}

.kanghe-result-link {
  color: var(--bright-blue);
  font-weight: 700;
  font-size: 14px;
}

.kanghe-result-link::after {
  content: " →";
}

.kanghe-no-results {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.kanghe-no-results h2 {
  color: var(--primary-blue);
}

.kanghe-no-results p {
  color: var(--text-gray);
  margin-bottom: 24px;
}

.kanghe-search-pagination {
  margin-top: 48px;
  text-align: center;
}

.kanghe-search-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  margin: 0 5px;
  padding: 0 12px;
  border-radius: 8px;
  background: var(--white);
  color: var(--primary-blue);
  border: 1px solid var(--border-light);
  font-weight: 600;
}

.kanghe-search-pagination .page-numbers.current {
  background: var(--primary-blue);
  color: var(--white);
  border-color: var(--primary-blue);
}

.kanghe-search-pagination .page-numbers:hover:not(.current) {
  background: var(--light-blue);
}

@media (max-width: 600px) {
  .kanghe-search-row {
    flex-direction: column;
  }

  .kanghe-error-content h1 {
    font-size: 100px;
  }

  .kanghe-result-item {
    padding: 22px;
  }
}


/* ============================================================
   头部导航搜索框
   ============================================================ */

.kanghe-header-search {
  display: flex;
  align-items: center;
  position: relative;
  flex: 0 0 auto;
}

.kanghe-header-search input {
  width: 160px;
  height: 36px;
  padding: 8px 34px 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 14px;
  transition: width 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.kanghe-header-search input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.kanghe-header-search input:focus {
  width: 200px;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.45);
  outline: none;
}

.kanghe-header-search button {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  padding: 0;
}

.kanghe-header-search button:hover {
  color: var(--white);
}

@media (max-width: 1180px) {
  .kanghe-header-search input {
    width: 130px;
  }

  .kanghe-header-search input:focus {
    width: 160px;
  }
}

@media (max-width: 900px) {
  .kanghe-header-search {
    display: none;
  }
}

/* ============================================================
   关于我们页面
   ============================================================ */

.kh-about-page {
  overflow: hidden;
}

.kh-about-hero {
  background: linear-gradient(135deg, #031B3D 0%, #063B72 50%, #0B7BC2 100%);
  color: var(--white);
  padding: 96px 0 86px;
  position: relative;
}

.kh-about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(25, 167, 206, 0.18), transparent 45%);
  pointer-events: none;
}

.kh-about-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.kh-about-hero-copy {
  max-width: 620px;
}

.kh-about-kicker {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--cyan-blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
}

.kh-about-hero-copy h1 {
  font-size: clamp(36px, 4.2vw, 52px);
  line-height: 1.15;
  margin: 0 0 20px;
  font-weight: 800;
}

.kh-about-hero-copy p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 16px;
}

.kh-about-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 14px 28px;
  border-radius: 30px;
  background: var(--cyan-blue);
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.kh-about-hero-cta::after {
  content: "→";
}

.kh-about-hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(25, 167, 206, 0.35);
}

.kh-about-hero-visual {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25);
}

.kh-about-hero-visual img {
  width: 100%;
  height: auto;
  display: block;
}

.kh-about-why {
  background: var(--white);
}

.kh-about-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 46px;
}

.kh-about-why-grid article {
  padding: 32px 28px;
  border-radius: 18px;
  background: var(--white);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.kh-about-why-grid article:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.kh-about-why-grid i {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--light-blue);
  color: var(--bright-blue);
  font-size: 22px;
  margin-bottom: 18px;
}

.kh-about-why-grid h3 {
  margin: 0 0 10px;
  font-size: 19px;
  color: var(--primary-blue);
}

.kh-about-why-grid p {
  margin: 0;
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.65;
}

.kh-about-certs {
  background: linear-gradient(180deg, #F8FBFE 0%, var(--light-blue) 100%);
}

.kh-about-certs-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 46px;
}

.kh-about-certs-grid img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  border-radius: 12px;
  background: var(--white);
  padding: 12px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.kh-about-certs-grid img:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.kh-about-features {
  background: var(--white);
}

.kh-about-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 46px;
}

.kh-about-features-grid article {
  padding: 40px 32px;
  border-radius: 20px;
  background: linear-gradient(180deg, #031B3D 0%, #063B72 100%);
  color: var(--white);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.kh-about-features-grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(3, 27, 61, 0.22);
}

.kh-about-features-grid i {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--cyan-blue);
  font-size: 26px;
  margin-bottom: 22px;
}

.kh-about-features-grid h3 {
  margin: 0 0 14px;
  font-size: 22px;
  font-weight: 700;
}

.kh-about-features-grid p {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .kh-about-hero-inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .kh-about-hero-visual {
    max-width: 640px;
    margin: 0 auto;
  }

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

  .kh-about-certs-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

@media (max-width: 768px) {
  .kh-about-hero {
    padding: 64px 0 54px;
  }

  .kh-about-hero-copy h1 {
    font-size: 32px;
  }

  
  .kh-about-certs-grid,
  .kh-about-features-grid {
    grid-template-columns: 1fr;
  }

  .kh-about-certs-grid img {
    height: 220px;
  }

  .kh-about-features-grid article {
    padding: 32px 24px;
  }
}

/* =================== 联系我们页面 =================== */
.kh-contact-hero {
  background: linear-gradient(135deg, #031B3D 0%, #063B72 50%, #0B7BC2 100%);
  color: var(--white);
  padding: 96px 0 86px;
  position: relative;
}
.kh-contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(25, 167, 206, 0.18), transparent 45%);
  pointer-events: none;
}
.kh-contact-hero .container {
  position: relative;
  max-width: 720px;
  text-align: center;
}
.kh-contact-hero h1 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.15;
  margin: 0 0 16px;
  font-weight: 800;
}
.kh-contact-hero p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.kh-contact-body {
  background: #f8fbfe;
}
.kh-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: start;
}
.kh-contact-info {
  display: grid;
  gap: 20px;
}
.kh-contact-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-soft);
}
.kh-contact-card i {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--light-blue);
  color: var(--bright-blue);
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.kh-contact-card h3 {
  font-size: 16px;
  margin: 0 0 6px;
  color: var(--text-dark);
}
.kh-contact-card p {
  margin: 0;
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.6;
}
.kh-contact-card a {
  color: var(--bright-blue);
}
.kh-contact-qr {
  width: 120px;
  height: 120px;
  margin-top: 10px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid var(--border-light);
}
.kh-contact-form-wrap {
  padding: 32px;
  border-radius: 18px;
  background: var(--white);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-soft);
}
.kh-contact-form-wrap .consult-form label {
  display: block;
  margin-bottom: 14px;
  font-size: 14px;
  color: var(--text-dark);
}
.kh-contact-form-wrap .consult-form input,
.kh-contact-form-wrap .consult-form select {
  width: 100%;
  padding: 12px 14px;
  margin-top: 6px;
  border-radius: 10px;
  border: 1px solid var(--border-light);
  font-size: 14px;
  background: #fafbfc;
}
.kh-contact-form-wrap .consult-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.kh-contact-form-wrap .consult-form button {
  width: 100%;
  margin-top: 8px;
  padding: 14px;
  border-radius: 10px;
  border: none;
  background: var(--bright-blue);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}
.kh-contact-form-wrap .consult-form button:hover {
  background: var(--primary-blue);
}
.kh-contact-tip {
  font-size: 13px;
  color: var(--text-gray);
  margin: 0 0 18px;
}

/* =================== 服务流程页面 =================== */
.kh-process-hero {
  background: linear-gradient(135deg, #031B3D 0%, #063B72 50%, #0B7BC2 100%);
  color: var(--white);
  padding: 96px 0 86px;
  position: relative;
}
.kh-process-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(25, 167, 206, 0.18), transparent 45%);
  pointer-events: none;
}
.kh-process-hero .container {
  position: relative;
  max-width: 720px;
  text-align: center;
}
.kh-process-hero h1 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.15;
  margin: 0 0 16px;
  font-weight: 800;
}
.kh-process-hero p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.kh-process-timeline {
  background: var(--white);
}
.kh-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 28px;
  margin-top: 46px;
  position: relative;
}
.kh-timeline::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--bright-blue), var(--cyan-blue));
  border-radius: 2px;
  z-index: 0;
}
.kh-timeline-item {
  position: relative;
  z-index: 1;
  text-align: center;
}
.kh-timeline-marker {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--bright-blue);
  color: var(--bright-blue);
  font-size: 20px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 4px 14px rgba(11, 123, 194, 0.18);
}
.kh-timeline-content {
  padding: 24px 20px;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-soft);
}
.kh-timeline-content h3 {
  font-size: 18px;
  margin: 0 0 10px;
  color: var(--text-dark);
}
.kh-timeline-content p {
  margin: 0;
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .kh-contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .kh-timeline {
    grid-template-columns: repeat(2, 1fr);
  }
  .kh-timeline::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .kh-contact-hero,
  .kh-process-hero {
    padding: 64px 0 54px;
  }
  .kh-contact-hero h1,
  .kh-process-hero h1 {
    font-size: 28px;
  }
  .kh-contact-form-wrap .consult-form .form-row {
    grid-template-columns: 1fr;
  }
  .kh-timeline {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 32px;
  }
  .kh-timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    text-align: left;
  }
  .kh-timeline-marker {
    width: 44px;
    height: 44px;
    font-size: 16px;
    flex-shrink: 0;
    margin-bottom: 0;
  }
  .kh-timeline-content {
    flex: 1;
    padding: 20px;
  }
}

/* =================== 联系我们 - 服务优势 =================== */
.kh-contact-advantages {
  background: var(--white);
}
.kh-contact-adv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 46px;
}
.kh-contact-adv-grid article {
  padding: 32px 28px;
  border-radius: 18px;
  background: var(--white);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-soft);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.kh-contact-adv-grid article:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.kh-contact-adv-grid i {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--light-blue);
  color: var(--bright-blue);
  font-size: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.kh-contact-adv-grid h3 {
  font-size: 18px;
  margin: 0 0 10px;
  color: var(--text-dark);
}
.kh-contact-adv-grid p {
  margin: 0;
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.7;
}

/* =================== 联系我们 - FAQ =================== */
.kh-contact-faq {
  background: #f8fbfe;
}
.kh-faq-list {
  max-width: 860px;
  margin: 46px auto 0;
  display: grid;
  gap: 14px;
}
.kh-faq-item {
  border-radius: 14px;
  background: var(--white);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.kh-faq-item summary {
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.kh-faq-item summary::after {
  content: "+";
  font-size: 20px;
  font-weight: 400;
  color: var(--bright-blue);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.kh-faq-item[open] summary::after {
  content: "−";
}
.kh-faq-item p {
  padding: 0 24px 20px;
  margin: 0;
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.7;
}

/* =================== 服务流程 - 适用场景 =================== */
.kh-process-scenes {
  background: var(--white);
}
.kh-scenes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 46px;
}
.kh-scenes-grid article {
  padding: 32px 28px;
  border-radius: 18px;
  background: var(--white);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.kh-scenes-grid article:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.kh-scenes-grid i {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--light-blue);
  color: var(--bright-blue);
  font-size: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.kh-scenes-grid h3 {
  font-size: 17px;
  margin: 0 0 8px;
  color: var(--text-dark);
}
.kh-scenes-grid p {
  margin: 0;
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.7;
}

/* =================== 服务流程 - 流程保障 =================== */
.kh-process-guarantee {
  background: #f8fbfe;
}
.kh-guarantee-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 46px;
}
.kh-guarantee-grid article {
  padding: 32px 28px;
  border-radius: 18px;
  background: var(--white);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-soft);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.kh-guarantee-grid article:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.kh-guarantee-grid i {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--light-blue);
  color: var(--bright-blue);
  font-size: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.kh-guarantee-grid h3 {
  font-size: 18px;
  margin: 0 0 10px;
  color: var(--text-dark);
}
.kh-guarantee-grid p {
  margin: 0;
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.7;
}

/* =================== 服务流程 - 服务周期 =================== */
.kh-process-cycles {
  background: var(--white);
}
.kh-cycles-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 46px;
}
.kh-cycle-card {
  padding: 28px;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.kh-cycle-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}
.kh-cycle-tag {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 20px;
  background: var(--light-blue);
  color: var(--bright-blue);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 12px;
}
.kh-cycle-card h3 {
  font-size: 18px;
  margin: 0 0 8px;
  color: var(--text-dark);
}
.kh-cycle-card p {
  margin: 0;
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .kh-contact-adv-grid,
  .kh-scenes-grid,
  .kh-guarantee-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .kh-cycles-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .kh-contact-adv-grid,
  .kh-scenes-grid,
  .kh-guarantee-grid {
    grid-template-columns: 1fr;
  }
  .kh-faq-item summary {
    padding: 16px 18px;
    font-size: 15px;
  }
  .kh-faq-item p {
    padding: 0 18px 16px;
  }
  .kh-cycle-card {
    padding: 22px;
  }
}

/* =================== 服务流程 - 法规标准体系 =================== */
.kh-process-standards {
  background: #f8fbfe;
}
.kh-standards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 46px;
}
.kh-standards-grid article {
  padding: 28px 26px;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.kh-standards-grid article:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.kh-standards-grid i {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--light-blue);
  color: var(--bright-blue);
  font-size: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.kh-standards-grid h3 {
  font-size: 18px;
  margin: 0 0 12px;
  color: var(--text-dark);
}
.kh-standards-grid ul {
  margin: 0;
  padding-left: 18px;
  color: var(--text-gray);
  font-size: 14px;
  line-height: 1.9;
}

/* =================== 服务流程 - 交付成果 =================== */
.kh-process-deliverables {
  background: var(--white);
}
.kh-deliverables-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 46px;
}
.kh-deliverable-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 26px;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.kh-deliverable-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}
.kh-deliverable-num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--bright-blue), var(--cyan-blue));
  color: var(--white);
  font-size: 16px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.kh-deliverable-body h3 {
  font-size: 17px;
  margin: 0 0 8px;
  color: var(--text-dark);
}
.kh-deliverable-body p {
  margin: 0;
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.7;
}

/* =================== 服务流程 - 数据指标 =================== */
.kh-process-metrics {
  background: linear-gradient(135deg, #031B3D 0%, #063B72 50%, #0B7BC2 100%);
  color: var(--white);
  padding: 70px 0;
}
.kh-metrics-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  text-align: center;
}
.kh-metric-box strong {
  display: block;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
}
.kh-metric-box span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

/* =================== 联系我们 - 服务覆盖 =================== */
.kh-contact-coverage {
  background: #f8fbfe;
}
.kh-coverage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 46px;
}
.kh-coverage-grid article {
  padding: 28px 26px;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.kh-coverage-grid article:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.kh-coverage-grid i {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--light-blue);
  color: var(--bright-blue);
  font-size: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.kh-coverage-grid h3 {
  font-size: 18px;
  margin: 0 0 8px;
  color: var(--text-dark);
}
.kh-coverage-grid p {
  margin: 0;
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.7;
}

/* =================== 联系我们 - 响应机制 =================== */
.kh-contact-hours {
  background: var(--white);
}
.kh-hours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 46px;
}
.kh-hour-card {
  padding: 32px 28px;
  border-radius: 18px;
  background: var(--white);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-soft);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.kh-hour-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.kh-hour-highlight {
  border-color: var(--bright-blue);
  background: linear-gradient(180deg, #f3f8fc 0%, var(--white) 100%);
}
.kh-hour-card i {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--light-blue);
  color: var(--bright-blue);
  font-size: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.kh-hour-card h3 {
  font-size: 18px;
  margin: 0 0 8px;
  color: var(--text-dark);
}
.kh-hour-time {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 20px;
  background: var(--light-blue);
  color: var(--bright-blue);
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 14px;
}
.kh-hour-card > p:last-child {
  margin: 0;
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.7;
}

/* =================== 联系我们 - 客户信赖 =================== */
.kh-contact-trust {
  background: linear-gradient(135deg, #031B3D 0%, #063B72 50%, #0B7BC2 100%);
  color: var(--white);
  padding: 70px 0;
}
.kh-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.kh-trust-box strong {
  display: block;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
}
.kh-trust-box span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

/* =================== 新增模块响应式 =================== */
@media (max-width: 1024px) {
  .kh-standards-grid,
  .kh-deliverables-list,
  .kh-coverage-grid,
  .kh-hours-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .kh-metrics-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .kh-trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .kh-standards-grid,
  .kh-deliverables-list,
  .kh-coverage-grid,
  .kh-hours-grid {
    grid-template-columns: 1fr;
  }
  .kh-metrics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 16px;
  }
  .kh-trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 16px;
  }
  .kh-deliverable-item {
    padding: 22px;
  }
  .kh-hour-card {
    padding: 26px 22px;
  }
}

/* ========================================
   通用分类归档页样式
   ======================================== */

/* 分类 Hero */
.cat-archive-hero {
  background: linear-gradient(135deg, #102a43 0%, #1a3a5c 50%, #19a7ce 100%);
  color: #fff;
  padding: 60px 0;
}
.cat-hero-layout {
  padding-top: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.cat-hero-copy h1 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.cat-hero-copy p {
  font-size: 16px;
  opacity: 0.85;
  line-height: 1.7;
  max-width: 520px;
}
.cat-hero-visual img {
  border-radius: 16px;
  max-height: 260px;
  width: auto;
  object-fit: contain;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* 子分类卡片网格（图文并茂） */
.cat-subcats {
  background: #f8fafc;
}
.cat-subcat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 30px;
}
.cat-subcat-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  border: 1px solid #e2e8f0;
}
.cat-subcat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(25, 167, 206, 0.18);
  border-color: #19a7ce;
}
.cat-subcat-cover {
  position: relative;
  height: 180px;
  overflow: hidden;
}
.cat-subcat-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.cat-subcat-card:hover .cat-subcat-cover img {
  transform: scale(1.08);
}
.cat-subcat-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(16,42,67,0.7), transparent);
}
.cat-subcat-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: rgba(25, 167, 206, 0.9);
  padding: 5px 12px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}
.cat-subcat-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.cat-subcat-info h3 {
  font-size: 17px;
  font-weight: 700;
  color: #102a43;
  margin-bottom: 8px;
  line-height: 1.4;
}
.cat-subcat-info p {
  font-size: 13px;
  color: #64748b;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cat-subcat-link {
  font-size: 13px;
  font-weight: 600;
  color: #19a7ce;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s ease;
}
.cat-subcat-card:hover .cat-subcat-link {
  gap: 8px;
}

/* 子分类导航区域 */
.cat-sibling-nav {
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}

/* 面包屑 */
.cat-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #64748b;
  flex-wrap: wrap;
  width: min(100% - 48px, 1280px);
  margin: 14px auto;
}
.cat-breadcrumb a {
  color: #64748b;
  text-decoration: none;
  transition: color 0.2s;
}
.cat-breadcrumb a:hover {
  color: #19a7ce;
}
.breadcrumb-sep {
  color: #cbd5e1;
}
.breadcrumb-current {
  color: #102a43;
  font-weight: 600;
}

/* 标签导航 — 等宽网格卡片 */
.cat-tab-nav {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
}
.cat-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 500;
  color: #475569;
  text-decoration: none;
  text-align: center;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #fff;
  transition: all 0.2s ease;
  line-height: 1.4;
  overflow-wrap: break-word;
  word-break: break-word;
}
.cat-tab:hover {
  color: #0e7490;
  background: #f8fafc;
  border-color: #bae6fd;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(25, 167, 206, 0.12);
}
.cat-tab.active {
  color: #0e7490;
  background: #f0f9ff;
  border-color: #19a7ce;
  box-shadow: 0 0 0 1px #19a7ce, 0 4px 12px rgba(25, 167, 206, 0.15);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .cat-subcat-grid,
  .cat-hero-layout {
    grid-template-columns: 1fr;
  }
  .cat-hero-layout {
    text-align: center;
  }
  .cat-hero-copy p {
    max-width: 100%;
  }
  .cat-tab-nav {
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 10px;
  }
  .cat-tab {
    min-height: 52px;
    padding: 10px 8px;
    font-size: 13px;
    border-radius: 10px;
  }
}

/* ========================================
   图文并茂案例卡片 + 分页样式
   ======================================== */

/* 案例网格（带缩略图） */
.case-grid-rich {
  grid-template-columns: repeat(3, 1fr);
}

.case-card-rich {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border: 1px solid #e8ecf1;
  transition: all 0.3s ease;
}
.case-card-rich:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(25, 167, 206, 0.15);
  border-color: #19a7ce;
}

/* 缩略图区域 */
.case-thumb {
  width: 100%;
  height: 180px;
  overflow: hidden;
  position: relative;
}
.case-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.case-card-rich:hover .case-thumb img {
  transform: scale(1.06);
}

/* 卡片内容区 */
.case-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.case-body h3 {
  font-size: 16px;
  font-weight: 700;
  color: #102a43;
  line-height: 1.4;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.case-body h3 a {
  color: #102a43;
  text-decoration: none;
  transition: color 0.2s;
}
.case-body h3 a:hover {
  color: #19a7ce;
}
.case-body .case-excerpt {
  font-size: 13px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.case-body dl {
  margin-bottom: 12px;
}
.case-body dl div {
  display: flex;
  gap: 8px;
  margin-bottom: 4px;
  font-size: 12px;
}
.case-body dl dt {
  color: #94a3b8;
  white-space: nowrap;
  min-width: 56px;
}
.case-body dl dd {
  color: #475569;
}

/* 查看详情链接 */
.case-readmore {
  font-size: 13px;
  font-weight: 600;
  color: #19a7ce;
  text-decoration: none;
  align-self: flex-start;
  padding-top: 8px;
  border-top: 1px solid #f1f5f9;
  width: 100%;
  transition: all 0.2s;
}
.case-readmore:hover {
  color: #158ba8;
}

/* 分页导航 */
.cat-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 48px;
  padding: 24px 0 16px;
}
.cat-pagination a,
.cat-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 14px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 10px;
  border: 1.5px solid #e2e8f0;
  background: #fff;
  color: #475569;
  transition: all 0.25s ease;
}
.cat-pagination a:hover {
  border-color: #19a7ce;
  color: #19a7ce;
  background: #f0f9ff;
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(25,167,206,0.15);
}
.cat-pagination .current,
.cat-pagination span.current {
  background: linear-gradient(135deg, #19a7ce, #17a2b8);
  border-color: transparent;
  color: #fff;
  cursor: default;
  box-shadow: 0 3px 12px rgba(25,167,206,0.35);
  font-weight: 700;
}
.cat-pagination .prev,
.cat-pagination .next {
  letter-spacing: 0.5px;
}
.cat-pagination .dots {
  border-color: transparent;
  background: transparent;
  color: #94a3b8;
  cursor: default;
  min-width: 28px;
}

@media (max-width: 992px) {
  .case-grid-rich {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .case-grid-rich {
    grid-template-columns: 1fr;
  }
}
