:root {
  --brand-deep: #084e52;
  --brand-dark: #0b5c61;
  --brand: #13a79c;
  --brand-light: #dff5f2;
  --ink: #18333a;
  --muted: #657a80;
  --line: #d9e6e7;
  --surface: #f3f8f8;
  --white: #fff;
  --nav-background: rgba(5, 65, 69, 0.58);
  --nav-blur: 12px;
  --nav-divider: rgba(255, 255, 255, 0.12);
  --header-height: 78px;
  --shell: min(1220px, calc(100vw - 72px));
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--white);
}

body.menu-open {
  overflow: hidden;
}

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

button,
summary {
  font: inherit;
}

img {
  max-width: 100%;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--brand-deep);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.page-shell {
  width: var(--shell);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  color: var(--white);
  background: var(--nav-background);
  -webkit-backdrop-filter: blur(var(--nav-blur));
  backdrop-filter: blur(var(--nav-blur));
  box-shadow: 0 1px 0 var(--nav-divider);
}

.header-inner {
  width: var(--shell);
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.brand-logo {
  position: relative;
  width: 168px;
  height: 52px;
  display: block;
  overflow: hidden;
  background: transparent;
}

.brand-logo img {
  position: absolute;
  top: -89px;
  left: -35px;
  width: 230px;
  height: 230px;
  max-width: none;
  display: block;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 8px;
  color: var(--white);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.04;
}

.brand-copy strong {
  font-size: 20px;
  font-weight: 700;
}

.brand-copy small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 10px;
  letter-spacing: 0.04em;
}

.desktop-nav {
  height: 100%;
  display: flex;
  align-items: stretch;
  gap: 3px;
}

.nav-link,
.nav-trigger {
  position: relative;
  height: 100%;
  padding: 0 15px;
  display: flex;
  align-items: center;
  border: 0;
  color: var(--white);
  background: transparent;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

.nav-link::after,
.nav-trigger::after {
  position: absolute;
  right: 15px;
  bottom: 0;
  left: 15px;
  height: 3px;
  background: transparent;
  content: "";
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link.is-active::after,
.nav-trigger.is-active::after,
.has-mega:hover .nav-trigger::after,
.has-mega:focus-within .nav-trigger::after {
  background: var(--white);
}

.nav-item {
  position: relative;
  height: 100%;
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  min-width: 290px;
  padding: 18px;
  visibility: hidden;
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 0 0 18px 18px;
  color: var(--ink);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.97), rgba(241, 251, 250, 0.94));
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  box-shadow:
    0 22px 55px rgba(8, 56, 60, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  opacity: 0;
  transform: translateX(-50%);
}

.mega-menu::before {
  position: absolute;
  top: 0;
  right: 16px;
  left: 16px;
  height: 3px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, #118ab8, #0aae91);
  content: "";
}

.has-mega:hover .mega-menu,
.has-mega:focus-within .mega-menu,
.has-mega.is-open .mega-menu {
  visibility: visible;
  opacity: 1;
}

.mega-menu a,
.mega-heading {
  margin: 0;
  padding: 10px 12px;
  display: block;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.mega-menu a:hover,
.mega-menu a:focus-visible {
  color: var(--brand-dark);
  background: linear-gradient(90deg, rgba(219, 246, 244, 0.92), rgba(232, 248, 252, 0.88));
}

.mega-heading {
  color: var(--ink);
  font-weight: 700;
}

.mega-link {
  color: var(--ink) !important;
}

.solutions-menu {
  width: 680px;
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(210px, 1fr);
  gap: 28px;
}

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

.mega-group + .mega-group {
  padding-left: 20px;
  border-left: 1px solid var(--line);
}

.platform-menu,
.about-menu {
  width: 330px;
}

.about-menu {
  padding: 14px;
}

.about-menu a {
  min-height: 46px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  border-radius: 8px;
  font-weight: 500;
}

.about-menu a + a {
  border-top: 1px solid rgba(15, 100, 103, 0.08);
}

.nested-group {
  margin: 6px 0;
  padding: 6px 0 6px 16px;
  border-left: 2px solid var(--brand);
}

.nested-group a:not(.mega-heading) {
  padding-left: 24px;
}

.cascade-menu {
  width: 318px;
  min-width: 318px;
  padding: 14px;
  display: block;
}

.cascade-item {
  position: relative;
}

.cascade-item + .cascade-link,
.cascade-link + .cascade-link,
.cascade-link + .cascade-item {
  border-top: 1px solid rgba(15, 100, 103, 0.08);
}

.cascade-link,
.cascade-label {
  width: 100%;
  min-height: 54px;
  padding: 0 17px !important;
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  border: 0;
  border-radius: 9px;
  color: #49656b !important;
  background: transparent;
  font-size: 14px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.cascade-link:hover,
.cascade-link:focus-visible,
.cascade-item:hover > .cascade-label,
.cascade-item:focus-within > .cascade-label {
  color: var(--brand-dark) !important;
  background: linear-gradient(90deg, rgba(215, 246, 243, 0.94), rgba(232, 249, 252, 0.9));
}

.cascade-label span {
  margin-left: 18px;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--brand);
  background: rgba(19, 167, 156, 0.1);
  font-size: 20px;
  line-height: 1;
}

.submenu-panel {
  position: absolute;
  z-index: 3;
  top: 0;
  left: calc(100% + 10px);
  width: 306px;
  padding: 14px;
  visibility: hidden;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(240, 251, 250, 0.96));
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  box-shadow:
    18px 22px 48px rgba(8, 56, 60, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  opacity: 0;
}

.submenu-panel::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -11px;
  width: 11px;
  content: "";
}

.solution-direction-menu {
  width: 486px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cascade-item:hover > .submenu-panel,
.cascade-item:focus-within > .submenu-panel {
  visibility: visible;
  display: grid;
  opacity: 1;
}

.submenu-panel a {
  min-height: 46px;
  padding: 11px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
}

.submenu-panel a::before {
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: linear-gradient(135deg, #138db8, #0aab8e);
  content: "";
}

.menu-button,
.mobile-menu {
  display: none;
}

.full-screen {
  position: relative;
  min-height: max(720px, 100svh);
  overflow: hidden;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-section {
  padding-top: var(--header-height);
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(246, 255, 255, 0.98) 0%, rgba(246, 255, 255, 0.82) 31%, rgba(246, 255, 255, 0.15) 58%, rgba(246, 255, 255, 0) 74%),
    url("./assets/hero-banner.png") center right / cover no-repeat;
}

.hero-content {
  padding-bottom: 3vh;
}

.hero-content h1 {
  max-width: 660px;
  margin: 0;
  color: #119b9a;
  background: linear-gradient(90deg, #21b5a1 0%, #168bbb 58%, #0754ad 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: clamp(43px, 4vw, 66px);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.03em;
  -webkit-text-fill-color: transparent;
}

.title-accent {
  width: 62px;
  height: 8px;
  margin-top: 30px;
  display: block;
  border-radius: 999px;
  background: linear-gradient(90deg, #1cb6a7, #1b8fb7);
}

.hero-lead {
  max-width: 600px;
  margin: 30px 0 0;
  color: #27414d;
  font-size: 17px;
  line-height: 1.85;
}

.hero-benefits {
  margin: 42px 0 0;
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-benefits span {
  display: grid;
  justify-items: center;
  gap: 8px;
  color: var(--brand-dark);
  font-size: 13px;
}

.hero-benefits span b {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(145deg, #59bce3, #1dac9e);
  box-shadow: 0 8px 22px rgba(16, 142, 145, 0.2);
  font-size: 24px;
  font-weight: 400;
}

.hero-benefits > i {
  margin-bottom: 27px;
  color: #60c9ca;
  font-size: 20px;
  font-style: normal;
}

.primary-button,
.outline-button {
  min-height: 46px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
}

.primary-button {
  color: var(--white);
  background: var(--brand);
}

.section-next {
  position: absolute;
  bottom: 24px;
  left: 50%;
  padding-bottom: 26px;
  color: var(--brand-dark);
  font-size: 11px;
  transform: translateX(-50%);
}

.section-next::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 20px;
  background: var(--brand);
  content: "";
}

.section-shell {
  min-height: max(720px, 100svh);
  padding-top: calc(var(--header-height) + 38px);
  padding-bottom: 46px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-intro h2,
.contact-layout h2,
.page-hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(38px, 4vw, 60px);
  font-weight: 650;
  line-height: 1.2;
  letter-spacing: -0.035em;
}

.section-intro > p:last-child {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.centered-intro {
  text-align: center;
}

.centered-intro > p:last-child {
  margin-inline: auto;
}

.research-section {
  background:
    linear-gradient(rgba(240, 249, 251, 0.12), rgba(243, 250, 251, 0.2)),
    url("./assets/research-background.png") center / cover no-repeat;
}

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

.research-card {
  min-height: 205px;
  padding: 25px 22px 20px;
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  align-items: start;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.38);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  box-shadow:
    0 16px 38px rgba(19, 72, 80, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.56);
}

.research-card:hover,
.research-card:focus-visible {
  border-color: var(--brand);
  background: rgba(255, 255, 255, 0.52);
  box-shadow:
    0 18px 42px rgba(9, 113, 119, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.66);
}

.research-card img {
  width: 62px;
  height: 62px;
  padding: 10px;
  border-radius: 50%;
  background: #e7f7f6;
}

.research-card strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
}

.research-card p {
  min-height: 54px;
  margin: 12px 0 16px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.research-card span {
  width: 108px;
  min-height: 34px;
  padding: 0 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(90deg, #0b88b4, #06aa91);
  box-shadow: 0 8px 18px rgba(6, 139, 151, 0.2);
  font-size: 12px;
  font-weight: 700;
}

.research-card span::after {
  content: "›";
  font-size: 19px;
  font-weight: 400;
  line-height: 1;
}

.loop-visual {
  position: relative;
  width: min(940px, 100%);
  min-height: 330px;
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 200px minmax(0, 1fr);
  align-items: center;
  gap: 45px;
}

.loop-center {
  position: relative;
  width: 190px;
  height: 190px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(19, 167, 156, 0.45);
  border-radius: 50%;
  text-align: center;
  background: radial-gradient(circle, #22c8bd 0%, #0ba59e 50%, #e8f8f7 52%, rgba(255, 255, 255, 0.86) 67%);
  box-shadow: 0 0 0 14px rgba(19, 167, 156, 0.08), 0 0 0 30px rgba(19, 167, 156, 0.04);
}

.loop-center img {
  position: absolute;
  width: 92px;
  opacity: 0.08;
}

.loop-center strong {
  position: relative;
  color: var(--white);
  font-size: 24px;
  line-height: 1.35;
}

.loop-copy {
  display: grid;
  gap: 46px;
}

.loop-copy > div {
  position: relative;
}

.loop-copy > div::after {
  position: absolute;
  top: 12px;
  width: 65px;
  height: 1px;
  background: var(--brand);
  content: "";
}

.loop-left > div::after {
  right: -79px;
}

.loop-right > div::after {
  left: -79px;
}

.loop-copy strong {
  display: block;
  color: var(--brand-dark);
  font-size: 16px;
}

.loop-copy span {
  margin-top: 9px;
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.loop-left {
  text-align: right;
}

/* 数据展示 */
.data-story-section {
  padding-top: var(--header-height);
  background: linear-gradient(180deg, #f7fbfc 0%, #fff 76%);
}

.data-people {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 47%;
  background:
    linear-gradient(90deg, rgba(247, 252, 253, 0.96) 0%, rgba(247, 252, 253, 0.2) 43%, rgba(247, 252, 253, 0) 74%),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 40%, #f7fbfc 100%),
    url("./assets/data-team.png") center / cover no-repeat;
}

.data-content {
  position: relative;
  min-height: calc(max(720px, 100svh) - var(--header-height));
  padding: 84px 0 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.data-topline {
  margin-bottom: 18px;
}

.gradient-button {
  min-width: 240px;
  min-height: 48px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(90deg, #0b89b5, #02aa8d);
  box-shadow: 0 10px 26px rgba(7, 137, 154, 0.2);
  font-size: 15px;
  font-weight: 700;
}

.gradient-button span {
  font-size: 25px;
  line-height: 1;
}

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

.stat-panel article {
  min-height: 126px;
  padding: 22px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 30px rgba(24, 73, 87, 0.1);
}

.stat-symbol {
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #079ca4;
  background: #e9f8f8;
  font-size: 25px;
}

.stat-panel article > div {
  min-width: 0;
}

.stat-panel strong {
  display: block;
  color: #f05a16;
  font-size: clamp(30px, 2.6vw, 43px);
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.stat-panel strong sup {
  margin-left: 2px;
  font-size: 0.46em;
  vertical-align: 0.38em;
}

.stat-panel .word-stat {
  font-size: clamp(26px, 2.3vw, 37px);
}

.stat-panel article span {
  margin-top: 11px;
  display: block;
  color: #1f343c;
  font-size: 12px;
  white-space: nowrap;
}

.network-panel {
  position: relative;
  height: clamp(300px, 28vw, 360px);
  min-height: 300px;
  margin-top: 18px;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 30px rgba(24, 73, 87, 0.08);
}

.network-copy {
  position: absolute;
  z-index: 2;
  top: 24px;
  left: 28px;
  padding: 15px 20px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.82);
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
}

.network-copy h3 {
  margin: 0;
  color: #142e3a;
  font-size: 27px;
}

.network-copy > i {
  width: 34px;
  height: 3px;
  margin: 12px 0 0;
  display: block;
  background: var(--brand);
}

.network-panel > img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: center 38%;
}

/* 企业荣誉 */
.honors-story-section {
  padding-top: var(--header-height);
  background:
    linear-gradient(rgba(246, 252, 254, 0.78), rgba(250, 254, 255, 0.78)),
    url("./assets/honors-background.png") center / cover no-repeat;
}

.honors-content {
  min-height: calc(max(720px, 100svh) - var(--header-height));
  padding: 42px 0 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.honors-heading {
  text-align: center;
}

.honors-heading h2 {
  margin: 0;
  color: #1266c5;
  font-size: clamp(40px, 4.5vw, 66px);
  font-weight: 800;
  letter-spacing: 0.1em;
}

.honors-heading h2 span {
  color: transparent;
  background: linear-gradient(90deg, #075ad4, #008f75);
  -webkit-background-clip: text;
  background-clip: text;
}

.honors-heading p {
  margin: 10px 0 0;
  color: #1d3854;
  font-size: 16px;
  letter-spacing: 0.08em;
}

.honors-heading > i {
  width: 52px;
  height: 4px;
  margin: 16px auto 22px;
  display: block;
  border-radius: 99px;
  background: linear-gradient(90deg, #00a994, #075cd5);
}

.honor-cards {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.honor-cards article {
  position: relative;
  min-height: 400px;
  padding: 0 18px 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 18px;
  text-align: center;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 34px rgba(16, 77, 105, 0.11);
}

.honor-cards article > img {
  width: calc(100% + 36px);
  height: 210px;
  margin-left: -18px;
  display: block;
  object-fit: cover;
}

.honor-icon {
  position: relative;
  width: 52px;
  height: 52px;
  margin: -26px auto 8px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #079fa2;
  background: var(--white);
  box-shadow: 0 8px 20px rgba(22, 94, 116, 0.16);
  font-size: 23px;
}

.honor-cards h3 {
  margin: 0;
  color: #0b285b;
  font-size: 21px;
}

.honor-cards p {
  margin: 13px 0 0;
  color: #40556a;
  font-size: 12px;
  line-height: 1.7;
}

.honors-button {
  min-width: 210px;
  min-height: 46px;
  margin-top: 22px;
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.full-image-module {
  height: calc(100svh - var(--header-height));
  min-height: 0;
  margin-top: 0;
  background: #f3fbfc;
}

.full-module-image {
  width: 100%;
  height: 100%;
  max-width: 100vw;
  max-height: 100%;
  display: block;
  object-fit: fill;
  object-position: center;
}

.data-section {
  background: linear-gradient(180deg, #f9fcfc, #eef8f8);
}

.image-section-layout {
  display: grid;
  grid-template-columns: minmax(270px, 0.65fr) minmax(0, 1.65fr);
  align-items: center;
  gap: 58px;
}

.showcase-figure {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 22px 70px rgba(13, 85, 89, 0.13);
}

.showcase-figure img {
  width: 100%;
  height: auto;
  display: block;
}

.honors-section {
  background:
    radial-gradient(circle at 88% 16%, rgba(19, 167, 156, 0.12), transparent 28%),
    var(--white);
}

.contact-section {
  padding-top: var(--header-height);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(4, 54, 58, 0.96), rgba(8, 88, 91, 0.9)),
    url("./assets/research-background.png") center / cover no-repeat;
}

.contact-layout {
  min-height: calc(100svh - var(--header-height) - 180px);
  padding-block: 80px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 90px;
}

.contact-layout h2 {
  color: var(--white);
}

.contact-layout > div > p:last-child {
  max-width: 610px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.9;
}

.contact-card {
  padding: 42px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.contact-card h3 {
  margin: 0;
  font-size: 25px;
}

.contact-card p {
  margin: 18px 0 28px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.8;
}

.outline-button {
  border: 1px solid rgba(255, 255, 255, 0.72);
  color: var(--white);
}

.site-footer {
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(110deg, rgba(3, 51, 55, 0.97), rgba(7, 82, 86, 0.94)),
    url("./assets/research-background.png") center / cover no-repeat;
}

.footer-inner {
  min-height: 180px;
  padding-block: 34px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px 60px;
}

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

.footer-brand div {
  display: flex;
  flex-direction: column;
}

.footer-brand small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
}

.footer-contact-button {
  min-height: 40px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.footer-contact-button:hover,
.footer-contact-button:focus-visible {
  color: var(--brand-deep);
  background: var(--white);
}

.footer-inner > p {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}

/* 内页 */
.inner-page {
  background: #f7fafa;
}

.page-hero {
  min-height: 470px;
  padding-top: calc(var(--header-height) + 86px);
  display: flex;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(5, 78, 82, 0.96), rgba(19, 167, 156, 0.68)),
    url("./assets/research-background.png") center / cover no-repeat;
}

.solutions-page-hero {
  background:
    linear-gradient(90deg, rgba(92, 183, 184, 0.5) 0%, rgba(39, 145, 151, 0.38) 42%, rgba(8, 116, 121, 0.13) 72%, rgba(8, 116, 121, 0.03) 100%),
    url("./assets/solutions-banner-v1.png") center / cover no-repeat;
}

.platform-page-hero {
  background:
    linear-gradient(90deg, rgba(4, 68, 82, 0.78) 0%, rgba(5, 91, 105, 0.58) 34%, rgba(14, 126, 137, 0.2) 58%, rgba(14, 126, 137, 0.02) 100%),
    url("./assets/platform-banner-v2.png") center / cover no-repeat;
}

.solutions-page-hero .page-shell,
.platform-page-hero .page-shell {
  transform: translateY(-26px);
}

.solutions-page-hero .eyebrow,
.platform-page-hero .eyebrow {
  color: #b7fff4;
  text-shadow: 0 2px 12px rgba(0, 52, 58, 0.28);
}

.solutions-page-hero h1,
.platform-page-hero h1 {
  position: relative;
  padding-bottom: 22px;
  display: inline-block;
  font-size: clamp(48px, 5vw, 70px);
  font-weight: 760;
  letter-spacing: 0.08em;
  text-shadow:
    0 3px 8px rgba(0, 49, 55, 0.28),
    0 14px 32px rgba(0, 49, 55, 0.2);
}

.solutions-page-hero h1::after,
.platform-page-hero h1::after {
  position: absolute;
  bottom: 0;
  left: 2px;
  width: 88px;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, #b9e93e, #42e3d0);
  box-shadow: 0 4px 14px rgba(9, 96, 99, 0.2);
  content: "";
}

.platform-page-hero p:not(.eyebrow) {
  max-width: 820px;
  text-shadow: 0 2px 12px rgba(0, 49, 55, 0.3);
}

.page-hero h1 {
  color: var(--white);
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  line-height: 1.8;
}

.content-layout {
  width: var(--shell);
  margin: 0 auto;
  padding: 80px 0 110px;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 70px;
  align-items: start;
}

.single-column-layout {
  grid-template-columns: minmax(0, 900px);
  justify-content: center;
}

.side-nav {
  position: sticky;
  z-index: 30;
  top: calc(var(--header-height) + 28px);
  padding: 18px;
  overflow: visible;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 12px 35px rgba(11, 78, 82, 0.06);
}

.side-nav strong {
  padding: 12px 14px 18px;
  display: block;
  color: var(--ink);
  font-size: 16px;
}

.side-nav a {
  padding: 12px 14px;
  display: block;
  border-radius: 8px;
  color: var(--muted);
  font-size: 14px;
}

.side-nav a:hover,
.side-nav a.is-current {
  color: var(--white);
  background: var(--brand);
}

.side-nav-group {
  position: relative;
}

.side-nav-group::after {
  content: "";
  position: absolute;
  top: -8px;
  right: -12px;
  width: 12px;
  height: calc(100% + 16px);
}

.side-nav-group > a {
  padding-right: 34px;
}

.side-nav-group > a::after {
  content: "›";
  position: absolute;
  top: 50%;
  right: 15px;
  font-size: 19px;
  line-height: 1;
  transform: translateY(-50%);
}

.side-submenu {
  position: absolute;
  z-index: 12;
  top: -10px;
  left: calc(100% + 12px);
  width: 242px;
  max-height: calc(100vh - var(--header-height) - 56px);
  padding: 10px;
  visibility: hidden;
  overflow-y: auto;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 46px rgba(11, 78, 82, 0.16);
  opacity: 0;
  transform: translateX(-6px);
  transition:
    opacity 0.16s ease,
    transform 0.16s ease,
    visibility 0.16s ease;
}

.side-submenu::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -14px;
  width: 14px;
}

.side-nav-group:hover > .side-submenu,
.side-nav-group:focus-within > .side-submenu {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
}

.side-nav .side-submenu a {
  padding: 9px 12px;
  color: var(--muted);
  background: transparent;
  line-height: 1.45;
}

.side-nav .side-submenu a:hover,
.side-nav .side-submenu a:focus,
.side-nav .side-submenu a.is-current {
  color: var(--brand-dark);
  background: var(--brand-light);
}

.side-submenu-short {
  top: 0;
}

.content-sections {
  min-width: 0;
}

.content-section {
  min-height: 480px;
  padding: 22px 0 74px;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.content-section + .content-section {
  padding-top: 74px;
}

.content-section h2 {
  margin: 0 0 28px;
  color: var(--ink);
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 650;
  letter-spacing: -0.03em;
}

.content-section h3 {
  margin: 26px 0 12px;
  color: var(--brand-dark);
  font-size: 20px;
}

.content-section p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 16px;
  line-height: 2;
}

.content-section .lead {
  color: #405b61;
  font-size: 19px;
}

.info-grid,
.direction-grid,
.lab-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.direction-grid {
  grid-template-columns: 1fr;
}

.info-card,
.direction-card,
.lab-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
}

.info-card strong,
.direction-card strong,
.lab-card strong {
  display: block;
  color: var(--brand-dark);
  font-size: 17px;
}

.info-card p,
.direction-card p,
.lab-card p {
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.75;
}

.direction-card {
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.expandable-card {
  padding: 0;
  overflow: hidden;
  scroll-margin-top: calc(var(--header-height) + 18px);
}

.expandable-card > summary {
  min-height: 132px;
  padding: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  list-style: none;
  cursor: pointer;
}

.expandable-card > summary::-webkit-details-marker {
  display: none;
}

.expandable-card > summary > span {
  min-width: 0;
}

.expandable-card > summary small {
  margin-top: 10px;
  display: block;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.expand-label {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--brand);
  font-size: 13px;
  white-space: nowrap;
}

.expand-label i {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--brand);
  font-style: normal;
  font-size: 19px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.direction-grid > .expandable-card[open],
.info-grid > .expandable-card[open] {
  grid-column: 1 / -1;
  border-color: rgba(15, 167, 160, 0.38);
  box-shadow: 0 20px 60px rgba(13, 85, 89, 0.12);
}

.single-card-grid {
  grid-template-columns: 1fr;
}

.expandable-card[open] > summary {
  min-height: 0;
  background: #f4fbfa;
}

.expandable-card[open] .expand-label i {
  transform: rotate(45deg);
}

.card-details {
  padding: 0 34px 36px;
  border-top: 1px solid var(--line);
}

.package-hero {
  margin: 0 -34px;
  padding: 48px 34px;
  background:
    radial-gradient(circle at 92% 12%, rgba(151, 194, 46, 0.22), transparent 34%),
    linear-gradient(135deg, #eff9f7 0%, #d9f0ed 56%, #c9e8e5 100%);
  color: var(--ink);
}

.package-kicker {
  margin: 0 0 12px;
  color: #238783;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.package-hero h3 {
  margin: 0;
  max-width: 760px;
  color: #075a60;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 760;
  line-height: 1.18;
}

.package-hero .package-subtitle {
  margin: 16px 0 0;
  max-width: 880px;
  color: #174f55;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.8;
}

.package-hero .package-opening {
  margin: 18px 0 0;
  max-width: 940px;
  color: #42666b;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.9;
}

.selling-points {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.selling-points span {
  padding: 8px 13px;
  border: 1px solid rgba(8, 110, 110, 0.28);
  border-radius: 999px;
  color: #075a60;
  background: rgba(255, 255, 255, 0.66);
  font-size: 13px;
}

.package-section {
  margin-top: 42px;
}

.package-section h4 {
  margin: 0 0 20px;
  color: var(--brand-dark);
  font-size: 24px;
}

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

.package-facts article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fbfdfd;
}

.package-facts article strong,
.process-grid article strong {
  font-size: 16px;
}

.package-facts article p,
.process-grid article p {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.8;
}

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

.bio-analysis-capability-image,
.bio-delivery-content-image,
.application-core-services-image,
.application-core-deliverables-image,
.academic-delivery-image,
.training-curriculum-image,
.training-delivery-image,
.institute-mission-vision-image,
.institute-core-capabilities-image,
.institute-partnership-resources-image,
.general-lab-capabilities-image,
.p2-lab-capabilities-image,
.animal-lab-capabilities-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 18px 46px rgba(9, 73, 77, 0.1);
}

.bio-showcase-grid article {
  position: relative;
  min-height: 236px;
  padding: 26px;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid rgba(15, 167, 160, 0.18);
  border-radius: 18px;
  background:
    radial-gradient(circle at 100% 0, rgba(15, 167, 160, 0.12), transparent 36%),
    linear-gradient(145deg, #ffffff 0%, #f5fbfa 100%);
  box-shadow: 0 14px 34px rgba(13, 85, 89, 0.06);
}

.bio-showcase-grid article::before {
  position: absolute;
  top: 0;
  right: 26px;
  left: 26px;
  height: 3px;
  border-radius: 0 0 3px 3px;
  background: linear-gradient(90deg, var(--brand), rgba(151, 194, 46, 0.7));
  content: "";
}

.bio-showcase-grid article:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.bio-showcase-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bio-showcase-head span {
  width: 38px;
  height: 30px;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--brand-dark);
  background: rgba(15, 167, 160, 0.1);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.bio-showcase-head h5 {
  margin: 0;
  color: var(--brand-dark);
  font-size: 18px;
  line-height: 1.4;
}

.bio-showcase-grid article > p {
  margin: 18px 0 22px;
  color: var(--muted);
  line-height: 1.85;
}

.bio-showcase-value {
  margin-top: auto;
  padding: 15px 16px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  border-radius: 12px;
  background: rgba(15, 167, 160, 0.075);
}

.bio-showcase-value small {
  padding-top: 2px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.bio-showcase-value strong {
  color: #274d53;
  font-size: 14px;
  line-height: 1.7;
}

.bio-showcase-grid.is-delivery article {
  border-color: rgba(151, 194, 46, 0.22);
  background:
    radial-gradient(circle at 100% 0, rgba(151, 194, 46, 0.14), transparent 36%),
    linear-gradient(145deg, #ffffff 0%, #f8fbf0 100%);
}

.bio-showcase-grid.is-delivery .bio-showcase-head span {
  color: #657c19;
  background: rgba(151, 194, 46, 0.13);
}

.bio-showcase-grid.is-delivery .bio-showcase-value {
  background: rgba(151, 194, 46, 0.09);
}

.bio-showcase-grid.is-delivery .bio-showcase-value small {
  color: #718b1c;
}

@media (hover: hover) {
  .bio-showcase-grid article {
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  }

  .bio-showcase-grid article:hover {
    transform: translateY(-3px);
    border-color: rgba(15, 167, 160, 0.34);
    box-shadow: 0 18px 42px rgba(13, 85, 89, 0.1);
  }
}

.delivery-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
}

.delivery-table {
  width: 100%;
  min-width: 980px;
  border-spacing: 0;
  border-collapse: separate;
  color: #405b61;
  font-size: 13px;
  line-height: 1.65;
}

.delivery-table th,
.delivery-table td {
  padding: 16px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.delivery-table th:last-child,
.delivery-table td:last-child {
  border-right: 0;
}

.delivery-table tbody tr:last-child th,
.delivery-table tbody tr:last-child td {
  border-bottom: 0;
}

.delivery-table thead th {
  color: var(--white);
  background: var(--brand-dark);
  font-size: 14px;
}

.delivery-table tbody th {
  width: 18%;
  color: var(--brand-dark);
  background: #f1f8f7;
}

.delivery-table tbody tr:nth-child(even) td {
  background: #fbfdfd;
}

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

.process-grid.is-four-card-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.process-grid article {
  padding: 24px;
  border-radius: 12px;
  background: var(--brand-light);
}

.process-grid article > b {
  margin-bottom: 14px;
  display: block;
  color: var(--brand);
  font-size: 24px;
}

.compliance-note {
  margin: 16px 0 0;
  padding: 20px 22px;
  border-left: 4px solid var(--accent);
  border-radius: 0 10px 10px 0;
  color: #405b61;
  background: #f5f9eb;
  font-size: 14px;
  line-height: 1.85;
}

.compliance-note strong {
  display: inline;
  margin-right: 6px;
}

.consult-callout {
  margin-top: 34px;
  padding: 28px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-radius: 14px;
  color: var(--white);
  background: linear-gradient(120deg, var(--brand-dark), #0d8f8b);
}

.consult-callout strong {
  color: var(--white);
  font-size: 20px;
}

.consult-callout p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
}

.consult-callout a {
  flex: 0 0 auto;
  padding: 12px 20px;
  border-radius: 999px;
  color: var(--brand-dark);
  background: var(--white);
  font-weight: 800;
}

.platform-overview-panel {
  margin-top: 30px;
  padding: 30px;
  border: 1px solid rgba(15, 167, 160, 0.2);
  border-radius: 16px;
  background:
    radial-gradient(circle at 92% 8%, rgba(151, 194, 46, 0.14), transparent 28%),
    linear-gradient(135deg, #f4fbfa, #e7f5f3);
}

.platform-overview-panel > p {
  margin: 0;
  color: #365d62;
  font-size: 15px;
  line-height: 1.95;
}

.platform-value-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.platform-value-grid span {
  padding: 13px 15px;
  border: 1px solid rgba(8, 110, 110, 0.15);
  border-radius: 10px;
  color: #075a60;
  background: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 700;
}

.platform-goals,
.platform-tag-list {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.platform-goals span,
.platform-tag-list span {
  padding: 9px 13px;
  border: 1px solid rgba(15, 167, 160, 0.24);
  border-radius: 999px;
  color: #17686b;
  background: #f1f9f8;
  font-size: 13px;
  line-height: 1.45;
}

.platform-capability-grid,
.network-node-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.platform-capability-grid article,
.network-node-grid article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fbfdfd;
}

.platform-capability-grid article strong,
.network-node-grid article strong {
  display: block;
  color: var(--brand-dark);
  font-size: 16px;
}

.platform-capability-grid article p,
.network-node-grid article p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.platform-capability-grid article small {
  margin-top: 12px;
  display: block;
  color: #238783;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.6;
}

.compact-grid {
  margin-top: 18px;
}

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

.network-node-grid article > span {
  margin-bottom: 14px;
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  color: #075a60;
  background: var(--brand-light);
  font-size: 12px;
  font-weight: 800;
}

.network-node-grid article small {
  margin-top: 8px;
  display: block;
  color: #238783;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
}

.platform-lab-list {
  margin-top: 24px;
}

.platform-shared-process {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
}

.platform-shared-process h3 {
  margin: 0 0 20px;
  font-size: 24px;
}

.platform-detail-table {
  min-width: 720px;
}

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

.about-stat-grid article {
  min-height: 190px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(15, 167, 160, 0.18);
  border-radius: 14px;
  background:
    radial-gradient(circle at 88% 12%, rgba(151, 194, 46, 0.16), transparent 34%),
    #f5fbfa;
}

.about-stat-grid strong {
  color: var(--brand);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1;
}

.about-stat-grid span {
  margin-top: 14px;
  color: var(--brand-dark);
  font-size: 15px;
  font-weight: 800;
}

.about-stat-grid p {
  margin: auto 0 0;
  padding-top: 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.about-timeline {
  position: relative;
  display: grid;
  gap: 0;
}

.about-timeline::before {
  position: absolute;
  top: 36px;
  bottom: 36px;
  left: 166px;
  width: 2px;
  background: linear-gradient(var(--brand), rgba(15, 167, 160, 0.12));
  content: "";
}

.about-timeline article {
  position: relative;
  padding: 28px 26px;
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  align-items: start;
  gap: 52px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fbfdfd;
}

.about-timeline article::before {
  position: absolute;
  z-index: 2;
  top: 34px;
  left: 159px;
  width: 16px;
  height: 16px;
  border: 4px solid var(--white);
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 1px rgba(15, 167, 160, 0.32), 0 5px 12px rgba(15, 167, 160, 0.18);
  content: "";
}

.about-timeline time {
  width: max-content;
  max-width: 118px;
  padding: 7px 11px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  color: var(--brand);
  background: rgba(15, 167, 160, 0.09);
  font-size: 14px;
  font-weight: 850;
  line-height: 1.35;
  white-space: nowrap;
}

.about-timeline article strong {
  color: var(--brand-dark);
  font-size: 17px;
  line-height: 1.5;
}

.about-timeline article p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

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

.about-value-grid article {
  min-height: 210px;
  padding: 24px;
  border-radius: 14px;
  background: var(--brand-light);
}

.about-value-grid article b {
  display: block;
  color: rgba(15, 167, 160, 0.48);
  font-size: 24px;
}

.about-value-grid article strong {
  margin-top: 20px;
  display: block;
  color: var(--brand-dark);
  font-size: 20px;
}

.about-value-grid article p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.about-forward-note {
  margin-top: 24px !important;
  padding: 20px 22px;
  border-radius: 12px;
  color: #365d62 !important;
  background: #f4f9ea;
}

.founder-profile {
  padding: 28px;
  display: grid;
  grid-template-columns: 180px 1fr;
  align-items: center;
  gap: 34px;
  border: 1px solid rgba(15, 167, 160, 0.2);
  border-radius: 16px;
  background:
    radial-gradient(circle at 94% 10%, rgba(151, 194, 46, 0.16), transparent 28%),
    #f7fbfb;
}

.founder-photo-placeholder {
  width: 170px;
  aspect-ratio: 3 / 4;
  margin: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  border: 1px dashed rgba(15, 167, 160, 0.48);
  border-radius: 18px;
  color: #4e7478;
  background:
    radial-gradient(circle at 50% 18%, rgba(151, 194, 46, 0.16), transparent 32%),
    linear-gradient(145deg, #f4fbf8, #eaf5f2);
  box-shadow: 0 14px 30px rgba(8, 91, 96, 0.1);
}

.founder-photo-placeholder svg {
  width: 78px;
  height: 98px;
  fill: none;
  stroke: #62a8a3;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.founder-photo-placeholder figcaption {
  display: grid;
  gap: 2px;
  text-align: center;
}

.founder-photo-placeholder figcaption strong {
  color: var(--brand-dark);
  font-size: 14px;
}

.founder-photo-placeholder figcaption small {
  color: var(--muted);
  font-size: 12px;
}

.founder-role {
  margin: 0 0 6px !important;
  color: var(--brand) !important;
  font-size: 13px !important;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.founder-profile h5 {
  margin: 0 0 14px;
  color: var(--brand-dark);
  font-size: 26px;
}

.founder-profile p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}

.org-chart {
  margin-top: 28px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid rgba(15, 167, 160, 0.16);
  border-radius: 20px;
  background:
    radial-gradient(circle at 50% 0%, rgba(151, 194, 46, 0.12), transparent 34%),
    linear-gradient(180deg, #fbfefd 0%, #f3faf7 100%);
}

.org-chart-root {
  position: relative;
  width: min(320px, 80%);
  min-height: 86px;
  margin: 0 auto 52px;
  padding: 16px 24px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #ffffff;
  text-align: center;
  background: linear-gradient(135deg, #08686b, #16a69f);
  box-shadow: 0 14px 28px rgba(7, 100, 101, 0.18);
}

.org-chart-root::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  width: 2px;
  height: 34px;
  background: rgba(15, 167, 160, 0.42);
}

.org-chart-root small {
  opacity: 0.8;
  font-size: 11px;
  letter-spacing: 0.14em;
}

.org-chart-root strong {
  font-size: 21px;
}

.org-chart-branches {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.org-chart-branches::before {
  content: "";
  position: absolute;
  top: -18px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: rgba(15, 167, 160, 0.34);
}

.org-chart-branches article {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  border: 1px solid rgba(15, 167, 160, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 24px rgba(16, 84, 86, 0.07);
}

.org-chart-branches article::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 100%;
  width: 2px;
  height: 20px;
  background: rgba(15, 167, 160, 0.34);
}

.org-chart-branches header {
  min-height: 82px;
  padding: 16px;
  display: grid;
  place-items: center;
  gap: 6px;
  color: var(--brand-dark);
  text-align: center;
  background: linear-gradient(135deg, rgba(15, 167, 160, 0.12), rgba(151, 194, 46, 0.1));
}

.org-chart-branches header > span {
  display: inline-flex;
  padding: 4px 9px;
  border-radius: 999px;
  color: #087b79;
  background: rgba(255, 255, 255, 0.8);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.org-chart-branches header strong {
  font-size: 16px;
}

.org-chart-branches article > div {
  padding: 15px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.org-chart-branches article > div span {
  min-height: 38px;
  padding: 8px 6px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(15, 167, 160, 0.12);
  border-radius: 9px;
  color: #315f63;
  background: #f7fbfa;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

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

.about-partner-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fbfdfd;
}

.about-partner-grid article > span {
  margin-bottom: 14px;
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  color: #075a60;
  background: var(--brand-light);
  font-size: 12px;
  font-weight: 800;
}

.about-partner-grid strong {
  display: block;
  color: var(--brand-dark);
  font-size: 16px;
  line-height: 1.65;
}

.about-partner-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

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

.partner-logo-item {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 82px;
  padding: 10px 12px;
  border: 1px solid rgba(15, 167, 160, 0.18);
  border-radius: 12px;
  background: linear-gradient(135deg, #ffffff 0%, #f3fbf8 100%);
}

.partner-logo-item img {
  width: 86px;
  height: 56px;
  object-fit: contain;
  object-position: center;
  mix-blend-mode: multiply;
}

.partner-logo-card .partner-logo-item strong {
  font-size: 14px;
  line-height: 1.45;
}

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

.about-contact-grid article {
  min-height: 150px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(15, 167, 160, 0.2);
  border-radius: 14px;
  background: #f4fbfa;
}

.about-contact-grid span {
  margin-bottom: 12px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 800;
}

.about-contact-grid strong,
.about-contact-grid a {
  color: var(--brand-dark);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.65;
}

.about-contact-grid a:hover,
.about-contact-grid a:focus-visible {
  color: var(--brand);
}

.about-content-section {
  padding-top: 0 !important;
  scroll-margin-top: calc(var(--header-height) + 28px);
}

.about-section-body {
  margin-top: 32px;
}

.about-data-strength-image {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(15, 167, 160, 0.16);
  border-radius: 22px;
  background: #f8fcfb;
  box-shadow: 0 20px 48px rgba(10, 82, 86, 0.1);
}

.about-data-strength-image img {
  width: 100%;
  height: auto;
  display: block;
}

.about-section-body > .package-hero {
  margin: 0;
  padding: 34px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

.qualification-hero {
  position: relative;
  overflow: hidden;
  padding: 46px 48px;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  align-items: end;
  gap: 40px;
  border: 1px solid rgba(15, 167, 160, 0.16);
  border-radius: 26px;
  background:
    radial-gradient(circle at 88% 8%, rgba(143, 194, 45, 0.16), transparent 32%),
    linear-gradient(135deg, #effaf7 0%, #f9fcf7 55%, #ffffff 100%);
  box-shadow: 0 24px 70px rgba(10, 82, 86, 0.1);
}

.qualification-hero::after {
  position: absolute;
  top: -118px;
  right: -72px;
  width: 290px;
  height: 290px;
  border: 1px solid rgba(15, 167, 160, 0.12);
  border-radius: 50%;
  box-shadow:
    0 0 0 34px rgba(15, 167, 160, 0.035),
    0 0 0 72px rgba(15, 167, 160, 0.025);
  content: "";
}

.qualification-hero > * {
  position: relative;
  z-index: 1;
}

.qualification-hero h3 {
  max-width: 700px;
  margin: 14px 0 16px;
  color: var(--brand-dark);
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.qualification-hero > div:first-child > p:last-child {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
}

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

.qualification-summary article {
  min-width: 0;
  padding: 18px 14px;
  border: 1px solid rgba(15, 167, 160, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(8px);
}

.qualification-summary strong,
.qualification-summary span {
  display: block;
}

.qualification-summary strong {
  color: var(--brand);
  font-size: 30px;
  line-height: 1;
}

.qualification-summary span {
  margin-top: 10px;
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.45;
}

.qualification-section {
  margin-top: 70px;
}

.qualification-section-heading {
  margin-bottom: 26px;
  padding-bottom: 18px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid rgba(15, 167, 160, 0.18);
}

.qualification-section-heading span {
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.qualification-section-heading h4 {
  margin: 7px 0 0;
  color: var(--brand-dark);
  font-size: clamp(25px, 2.8vw, 36px);
  line-height: 1.2;
}

.qualification-section-heading > p {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 13px;
}

.qualification-feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
  gap: 20px;
}

.qualification-feature-card {
  min-width: 0;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(200px, 0.82fr) minmax(0, 1.18fr);
  border: 1px solid rgba(15, 167, 160, 0.17);
  border-radius: 22px;
  color: inherit;
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(13, 85, 89, 0.08);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.qualification-feature-card:not(.is-primary) {
  grid-template-columns: minmax(150px, 0.85fr) minmax(0, 1.15fr);
}

.qualification-feature-card:hover,
.qualification-feature-card:focus-visible,
.qualification-certificate-card:hover,
.qualification-certificate-card:focus-visible {
  border-color: rgba(15, 167, 160, 0.5);
  box-shadow: 0 24px 56px rgba(13, 85, 89, 0.14);
  transform: translateY(-4px);
}

.qualification-feature-card figure,
.qualification-certificate-card figure {
  margin: 0;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(230, 248, 244, 0.9), rgba(255, 255, 255, 0.98));
}

.qualification-feature-card figure {
  min-height: 310px;
  padding: 20px;
  display: grid;
  place-items: center;
}

.qualification-feature-card figure img {
  width: 100%;
  height: 100%;
  max-height: 315px;
  object-fit: contain;
  filter: drop-shadow(0 12px 18px rgba(13, 85, 89, 0.12));
}

.qualification-feature-card > div {
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.qualification-feature-card span,
.qualification-certificate-card span {
  color: var(--brand);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.qualification-feature-card h5,
.qualification-certificate-card h5 {
  color: var(--brand-dark);
}

.qualification-feature-card h5 {
  margin: 10px 0 12px;
  font-size: 23px;
  line-height: 1.4;
}

.qualification-feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.qualification-feature-card b {
  margin-top: 22px;
  color: var(--brand);
  font-size: 13px;
}

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

.qualification-certificate-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(15, 167, 160, 0.16);
  border-radius: 18px;
  color: inherit;
  background: #ffffff;
  box-shadow: 0 14px 38px rgba(13, 85, 89, 0.065);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.qualification-certificate-card figure {
  height: 286px;
  padding: 16px 16px 0;
}

.qualification-certificate-card figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  filter: drop-shadow(0 8px 14px rgba(13, 85, 89, 0.11));
  transition: transform 0.3s ease;
}

.qualification-certificate-card:hover figure img {
  transform: scale(1.025);
}

.qualification-certificate-card > div {
  min-height: 104px;
  padding: 18px 20px 22px;
  border-top: 1px solid rgba(15, 167, 160, 0.11);
}

.qualification-certificate-card h5 {
  margin: 8px 0 0;
  font-size: 16px;
  line-height: 1.55;
}

.qualification-legal-note {
  margin: 18px 0 0;
  color: #82989a;
  font-size: 12px;
  text-align: right;
}

.about-page .about-stat-grid article,
.about-page .about-value-grid article,
.about-page .platform-capability-grid article,
.about-page .process-grid article,
.about-page .about-partner-grid article,
.about-page .about-contact-grid article {
  min-height: 0;
  padding: 22px 0;
  border: 0;
  border-top: 2px solid rgba(15, 167, 160, 0.2);
  border-radius: 0;
  background: transparent;
}

.about-page .about-stat-grid p {
  margin-top: 14px;
  padding-top: 0;
}

.about-page .about-timeline article {
  border-width: 0 0 1px;
  border-radius: 0;
  background: transparent;
}

.about-page .founder-profile {
  padding: 26px 0;
  border-width: 2px 0 0;
  border-radius: 0;
  background: transparent;
}

.about-page .about-contact-grid article {
  justify-content: flex-start;
}

.single-section-page .content-section {
  padding-top: 0 !important;
  border-bottom: 0;
  scroll-margin-top: calc(var(--header-height) + 28px);
}

.single-section-page .direction-grid,
.single-section-page .info-grid {
  margin-top: 30px;
  display: block;
}

.single-section-page .expandable-card {
  overflow: visible;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.single-section-page .expandable-card:first-child {
  border-top: 1px solid var(--line);
}

.single-section-page .expandable-card > summary {
  min-height: 0;
  padding: 23px 0;
  transition:
    color 0.2s ease,
    padding 0.2s ease;
}

.single-section-page .expandable-card > summary:hover,
.single-section-page .expandable-card > summary:focus-visible {
  padding-left: 12px;
}

.single-section-page .expandable-card > summary small {
  max-width: 720px;
}

.single-section-page .expand-label {
  gap: 12px;
}

.single-section-page .expand-label span {
  font-size: 0;
}

.single-section-page .expand-label span::after {
  content: "查看完整内容";
  font-size: 13px;
}

.single-section-page .expand-label i {
  width: auto;
  height: auto;
  color: var(--brand);
  background: transparent;
  font-size: 22px;
  transform: none;
}

.single-section-page .expand-label i::before {
  content: "→";
}

.single-section-page .expand-label i {
  font-size: 0;
}

.single-section-page .expand-label i::before {
  font-size: 22px;
}

.single-section-page .expandable-card.is-selected-detail {
  border: 0;
  box-shadow: none;
}

.single-section-page .direction-grid > .expandable-card.is-selected-detail[open],
.single-section-page .info-grid > .expandable-card.is-selected-detail[open] {
  border-color: transparent;
  box-shadow: none;
}

.single-section-page .expandable-card.is-selected-detail > summary {
  display: none;
}

.single-section-page .card-details {
  padding: 0;
  border-top: 0;
}

.single-section-page .package-hero {
  margin: 30px 0 0;
  padding: 42px 44px;
  border: 0;
  border-radius: 22px;
  background:
    radial-gradient(circle at 92% 16%, rgba(151, 194, 46, 0.13), transparent 34%),
    linear-gradient(125deg, rgba(15, 167, 160, 0.1), rgba(239, 249, 247, 0.42) 58%, rgba(255, 255, 255, 0.2));
}

.single-section-page .package-section {
  margin-top: 54px;
}

.single-section-page .package-section h4 {
  margin-bottom: 26px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.single-section-page .package-section h4::before {
  width: 5px;
  height: 23px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--brand), var(--accent));
  content: "";
}

.single-section-page .package-facts article,
.single-section-page .platform-capability-grid article,
.single-section-page .network-node-grid article,
.single-section-page .process-grid article {
  min-height: 0;
  padding: 6px 0 6px 20px;
  border: 0;
  border-left: 3px solid rgba(15, 167, 160, 0.2);
  border-radius: 0;
  background: transparent;
}

.single-section-page .platform-overview-panel {
  padding: 30px 0;
  border-width: 1px 0;
  border-radius: 0;
  background: transparent;
}

.single-section-page .platform-value-grid span,
.single-section-page .platform-tag-list span {
  border-color: rgba(15, 167, 160, 0.22);
  background: transparent;
}

.single-section-page .delivery-table-wrap {
  overflow-x: auto;
  border-color: rgba(15, 167, 160, 0.18);
  border-radius: 16px;
  box-shadow: 0 14px 36px rgba(13, 85, 89, 0.06);
}

.platform-single-page #research-platform.is-nested-detail-view > .platform-overview-panel,
.platform-single-page #research-platform.is-nested-detail-view > .platform-shared-process {
  display: none;
}

.single-section-page .is-nested-detail-view .direction-grid {
  margin-top: 30px;
}

.single-section-page .is-nested-detail-view .package-hero {
  margin-top: 0;
}

.single-section-page .consult-callout {
  margin-top: 54px;
  border-radius: 18px;
}

.solutions-single-page .content-layout,
.about-single-page .content-layout {
  width: min(var(--shell), calc(100vw - 72px));
  margin-right: auto;
  margin-left: max(58px, calc((100vw - var(--shell)) / 2));
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
}

.solutions-single-page .content-sections,
.about-single-page .content-sections {
  width: 100%;
}

.side-directory-trigger {
  position: fixed;
  z-index: 122;
  top: clamp(190px, 42vh, 420px);
  left: 0;
  width: 42px;
  height: 72px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-left: 0;
  border-radius: 0 10px 10px 0;
  color: var(--white);
  background: linear-gradient(145deg, var(--brand-dark), var(--brand));
  box-shadow: 0 12px 28px rgba(8, 78, 82, 0.24);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: transform 180ms ease, opacity 180ms ease, box-shadow 180ms ease;
}

.side-directory-trigger:hover,
.side-directory-trigger:focus-visible {
  transform: translateX(4px);
  box-shadow: 0 16px 34px rgba(8, 78, 82, 0.3);
}

.side-directory-trigger span {
  writing-mode: vertical-rl;
  text-orientation: upright;
  letter-spacing: 0.18em;
}

body.side-directory-open {
  overflow: hidden;
}

body.side-directory-open .side-directory-trigger {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-100%);
}

.side-directory-backdrop {
  position: fixed;
  z-index: 124;
  top: var(--header-height);
  right: 0;
  bottom: 0;
  left: 0;
  padding: 0;
  visibility: hidden;
  border: 0;
  background: rgba(7, 41, 44, 0.34);
  opacity: 0;
  cursor: default;
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  transition: visibility 220ms ease, opacity 220ms ease;
}

.side-directory-backdrop.is-visible {
  visibility: visible;
  opacity: 1;
}

.solutions-single-page .side-nav,
.about-single-page .side-nav {
  position: fixed;
  z-index: 126;
  top: var(--header-height);
  bottom: 0;
  left: 0;
  width: min(370px, calc(100vw - 40px));
  padding: 0 22px 34px;
  visibility: hidden;
  overflow-x: hidden;
  overflow-y: auto;
  border: 0;
  border-right: 1px solid rgba(15, 167, 160, 0.16);
  border-radius: 0 24px 24px 0;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 24px 0 60px rgba(6, 56, 60, 0.18);
  opacity: 0;
  transform: translateX(-104%);
  transition: visibility 260ms ease, opacity 260ms ease, transform 260ms ease;
}

.solutions-single-page .side-nav.is-open,
.about-single-page .side-nav.is-open {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
}

.side-directory-head {
  position: sticky;
  z-index: 2;
  top: 0;
  margin: 0 -2px 14px;
  padding: 22px 2px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(15, 167, 160, 0.16);
  background: rgba(255, 255, 255, 0.96);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.solutions-single-page .side-directory-head strong,
.about-single-page .side-directory-head strong {
  padding: 0;
  display: block;
  color: var(--ink);
  font-size: 18px;
}

.side-directory-head button {
  width: 38px;
  height: 38px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(15, 167, 160, 0.2);
  border-radius: 50%;
  color: var(--brand-dark);
  background: var(--brand-light);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.solutions-single-page .side-nav > a,
.solutions-single-page .side-nav-group > a,
.about-single-page .side-nav > a {
  margin-top: 4px;
  padding: 13px 14px;
  font-weight: 700;
}

.solutions-single-page .side-nav-group::after,
.solutions-single-page .side-nav-group > a::after {
  display: none;
}

.solutions-single-page .side-nav .side-submenu {
  position: static;
  min-width: 0;
  margin: 6px 0 12px 14px;
  padding: 7px 8px 7px 12px;
  visibility: visible;
  border: 0;
  border-left: 2px solid rgba(15, 167, 160, 0.22);
  border-radius: 0 12px 12px 0;
  background: #f5faf9;
  box-shadow: none;
  opacity: 1;
  transform: none;
}

.solutions-single-page .side-nav .side-submenu::before {
  display: none;
}

.solutions-single-page .side-nav .side-submenu a {
  padding: 9px 10px;
  white-space: normal;
}

.about-section-tabs {
  position: relative;
  width: 100%;
  margin: 0 0 54px;
  overflow-x: auto;
  overflow-y: hidden;
  border-bottom: 1px solid rgba(15, 167, 160, 0.14);
  background: var(--white);
  scrollbar-width: none;
  scroll-snap-type: x proximity;
}

.about-section-tabs::-webkit-scrollbar {
  display: none;
}

.about-section-tabs-list {
  min-width: 900px;
  padding: 8px 0 14px;
  display: grid;
  grid-template-columns: repeat(7, minmax(120px, 1fr));
  gap: 8px;
}

.about-section-tabs a {
  position: relative;
  min-height: 58px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 12px;
  color: #49656a;
  font-size: 14px;
  font-weight: 750;
  text-align: center;
  text-decoration: none;
  scroll-snap-align: start;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.about-section-tabs a:hover,
.about-section-tabs a:focus-visible {
  color: var(--brand-dark);
  border-color: rgba(15, 167, 160, 0.18);
  background: #f7fbf9;
}

.about-section-tabs a:focus-visible {
  outline: 2px solid rgba(15, 167, 160, 0.38);
  outline-offset: 2px;
}

.about-section-tabs a.is-current {
  color: var(--brand-dark);
  border-color: rgba(15, 167, 160, 0.2);
  background: linear-gradient(135deg, #edf9f5, #f5fae9);
  box-shadow: 0 8px 20px rgba(11, 103, 99, 0.08);
}

.about-section-tabs a.is-current::after {
  position: absolute;
  right: 16px;
  bottom: -15px;
  left: 16px;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, var(--brand), #8dbc2f);
  content: "";
}

.about-single-page .about-content-section {
  min-height: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.solution-directory-heading {
  margin-bottom: 34px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 34px;
}

.content-section .directory-eyebrow {
  margin: 0 0 11px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.4;
}

.solution-directory-heading h2 {
  margin-bottom: 14px;
}

.content-section .directory-lead {
  max-width: 720px;
  margin: 0;
  color: #526b70;
  font-size: 16px;
  line-height: 1.85;
}

.directory-count {
  width: 112px;
  height: 112px;
  display: grid;
  place-content: center;
  border: 1px solid rgba(15, 167, 160, 0.2);
  border-radius: 50%;
  text-align: center;
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.9), transparent 42%),
    linear-gradient(145deg, rgba(15, 167, 160, 0.11), rgba(151, 194, 46, 0.12));
}

.directory-count strong {
  color: var(--brand-dark);
  font-size: 36px;
  line-height: 1;
}

.directory-count span {
  margin-top: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.research-direction-tabs {
  position: relative;
  margin: 28px 0 0;
  overflow-x: auto;
  overflow-y: hidden;
  border: 0;
  background: transparent;
  scrollbar-width: none;
}

.research-direction-tabs::-webkit-scrollbar {
  display: none;
}

.research-direction-tabs-list {
  min-width: 1180px;
  display: grid;
  grid-template-columns: repeat(10, minmax(118px, 1fr));
}

.research-direction-tabs a {
  --direction-color: #13a79c;
  position: relative;
  min-height: 164px;
  padding: 24px 10px 27px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  gap: 13px;
  color: #385f62;
  text-align: center;
  text-decoration: none;
  scroll-snap-align: start;
  transition:
    color 0.2s ease,
    background 0.2s ease;
}

.research-direction-tabs a::after {
  position: absolute;
  right: 16px;
  bottom: 0;
  left: 16px;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: var(--direction-color);
  content: "";
  opacity: 0;
  transform: scaleX(0.35);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.research-direction-tabs a:hover,
.research-direction-tabs a:focus-visible,
.research-direction-tabs a.is-current {
  color: var(--brand-dark);
  background: transparent;
}

.research-direction-tabs a:focus-visible {
  outline: 2px solid rgba(15, 167, 160, 0.42);
  outline-offset: -3px;
}

.research-direction-tabs a.is-current::after {
  opacity: 1;
  transform: scaleX(1);
}

.research-direction-tabs a > span:last-child {
  max-width: 108px;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.55;
}

.research-direction-icon {
  position: relative;
  width: 72px;
  height: 72px;
  display: grid;
  flex: 0 0 72px;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--direction-color) 15%, white), rgba(255, 255, 255, 0) 68%);
  filter: drop-shadow(0 9px 12px color-mix(in srgb, var(--direction-color) 18%, transparent));
  transition: transform 0.2s ease;
}

.research-direction-icon::before {
  width: 54px;
  height: 54px;
  background: var(--direction-color);
  content: "";
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.research-direction-tabs a:hover .research-direction-icon,
.research-direction-tabs a:focus-visible .research-direction-icon,
.research-direction-tabs a.is-current .research-direction-icon {
  transform: translateY(-4px) scale(1.05);
}

.research-direction-tabs [data-package-tab="pediatric"] {
  --direction-color: #36b895;
}

.research-direction-tabs [data-package-tab="oncology"] {
  --direction-color: #5aa96d;
}

.research-direction-tabs [data-package-tab="icu"] {
  --direction-color: #249e91;
}

.research-direction-tabs [data-package-tab="microbiome"] {
  --direction-color: #72ad43;
}

.research-direction-tabs [data-package-tab="tcm"] {
  --direction-color: #8caf3e;
}

.research-direction-tabs [data-package-tab="cardiology"] {
  --direction-color: #28a69c;
}

.research-direction-tabs [data-package-tab="reproduction"] {
  --direction-color: #54ae78;
}

.research-direction-tabs [data-package-tab="immunity"] {
  --direction-color: #7aa64a;
}

.research-direction-tabs [data-package-tab="gestational"] {
  --direction-color: #45b28b;
}

.research-direction-tabs [data-package-tab="nephrology"] {
  --direction-color: #15978f;
}

.research-direction-tabs [data-package-tab="pediatric"] .research-direction-icon::before {
  -webkit-mask-image: url("./assets/icons/solutions/pediatrics.svg");
  mask-image: url("./assets/icons/solutions/pediatrics.svg");
}

.research-direction-tabs [data-package-tab="oncology"] .research-direction-icon::before {
  -webkit-mask-image: url("./assets/icons/solutions/oncology.svg");
  mask-image: url("./assets/icons/solutions/oncology.svg");
}

.research-direction-tabs [data-package-tab="icu"] .research-direction-icon::before {
  -webkit-mask-image: url("./assets/icons/solutions/intensive-care.svg");
  mask-image: url("./assets/icons/solutions/intensive-care.svg");
}

.research-direction-tabs [data-package-tab="microbiome"] .research-direction-icon::before {
  -webkit-mask-image: url("./assets/icons/solutions/intestine.svg");
  mask-image: url("./assets/icons/solutions/intestine.svg");
}

.research-direction-tabs [data-package-tab="tcm"] .research-direction-icon::before {
  -webkit-mask-image: url("./assets/icons/solutions/traditional-medicine.svg");
  mask-image: url("./assets/icons/solutions/traditional-medicine.svg");
}

.research-direction-tabs [data-package-tab="cardiology"] .research-direction-icon::before {
  -webkit-mask-image: url("./assets/icons/solutions/cardiology.svg");
  mask-image: url("./assets/icons/solutions/cardiology.svg");
}

.research-direction-tabs [data-package-tab="reproduction"] .research-direction-icon::before {
  -webkit-mask-image: url("./assets/icons/solutions/reproductive-medicine.svg");
  mask-image: url("./assets/icons/solutions/reproductive-medicine.svg");
}

.research-direction-tabs [data-package-tab="immunity"] .research-direction-icon::before {
  -webkit-mask-image: url("./assets/icons/solutions/autoimmune.svg");
  mask-image: url("./assets/icons/solutions/autoimmune.svg");
}

.research-direction-tabs [data-package-tab="gestational"] .research-direction-icon::before {
  -webkit-mask-image: url("./assets/icons/solutions/pregnancy.svg");
  mask-image: url("./assets/icons/solutions/pregnancy.svg");
}

.research-direction-tabs [data-package-tab="nephrology"] .research-direction-icon::before {
  -webkit-mask-image: url("./assets/icons/solutions/kidneys.svg");
  mask-image: url("./assets/icons/solutions/kidneys.svg");
}

#packages.is-tabbed-direction-view .solution-directory-heading {
  margin-bottom: 0;
  display: block;
}

#packages.is-tabbed-direction-view .direction-grid {
  margin-top: 54px;
}

#packages.is-tabbed-direction-view .direction-grid > .expandable-card {
  border-top: 0;
}

#packages.is-tabbed-direction-view .direction-grid > .expandable-card > summary {
  display: none;
}

#packages.is-tabbed-direction-view .direction-grid > .expandable-card .card-details {
  animation: direction-detail-reveal 0.32s ease both;
}

@keyframes direction-detail-reveal {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#packages.is-directory-view .direction-grid {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

#packages.is-directory-view .expandable-card:first-child {
  border-top: 0;
}

#packages.is-directory-view .expandable-card > summary {
  position: relative;
  padding: 24px 18px;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  background: transparent;
  transition:
    background 0.2s ease,
    padding 0.2s ease;
}

#packages.is-directory-view .expandable-card > summary:hover,
#packages.is-directory-view .expandable-card > summary:focus-visible {
  padding-left: 24px;
  background: linear-gradient(90deg, rgba(15, 167, 160, 0.08), rgba(255, 255, 255, 0.26) 72%);
}

#packages.is-directory-view .expandable-card > summary::before {
  width: 54px;
  height: 54px;
  display: block;
  border: 1px solid rgba(15, 167, 160, 0.18);
  border-radius: 16px;
  background-color: rgba(236, 248, 246, 0.9);
  content: "";
  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
}

#packages.is-directory-view .expandable-card > summary:hover::before,
#packages.is-directory-view .expandable-card > summary:focus-visible::before {
  background-color: rgba(255, 255, 255, 0.95);
  transform: translateY(-2px);
}

#packages.is-directory-view .expandable-card > summary::after {
  position: absolute;
  top: 50%;
  left: 32px;
  width: 26px;
  height: 26px;
  background-color: #0b8581;
  content: "";
  pointer-events: none;
  transform: translateY(-50%);
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  transition: left 0.2s ease;
}

#packages.is-directory-view .expandable-card > summary:hover::after,
#packages.is-directory-view .expandable-card > summary:focus-visible::after {
  left: 38px;
}

#packages.is-directory-view #pediatric > summary::after {
  -webkit-mask-image: url("./assets/icons/solutions/pediatrics.svg");
  mask-image: url("./assets/icons/solutions/pediatrics.svg");
}

#packages.is-directory-view #oncology > summary::after {
  -webkit-mask-image: url("./assets/icons/solutions/oncology.svg");
  mask-image: url("./assets/icons/solutions/oncology.svg");
}

#packages.is-directory-view #icu > summary::after {
  -webkit-mask-image: url("./assets/icons/solutions/intensive-care.svg");
  mask-image: url("./assets/icons/solutions/intensive-care.svg");
}

#packages.is-directory-view #microbiome > summary::after {
  -webkit-mask-image: url("./assets/icons/solutions/intestine.svg");
  mask-image: url("./assets/icons/solutions/intestine.svg");
}

#packages.is-directory-view #tcm > summary::after {
  -webkit-mask-image: url("./assets/icons/solutions/traditional-medicine.svg");
  mask-image: url("./assets/icons/solutions/traditional-medicine.svg");
}

#packages.is-directory-view #cardiology > summary::after {
  -webkit-mask-image: url("./assets/icons/solutions/cardiology.svg");
  mask-image: url("./assets/icons/solutions/cardiology.svg");
}

#packages.is-directory-view #reproduction > summary::after {
  -webkit-mask-image: url("./assets/icons/solutions/reproductive-medicine.svg");
  mask-image: url("./assets/icons/solutions/reproductive-medicine.svg");
}

#packages.is-directory-view #immunity > summary::after {
  -webkit-mask-image: url("./assets/icons/solutions/autoimmune.svg");
  mask-image: url("./assets/icons/solutions/autoimmune.svg");
}

#packages.is-directory-view #gestational > summary::after {
  -webkit-mask-image: url("./assets/icons/solutions/pregnancy.svg");
  mask-image: url("./assets/icons/solutions/pregnancy.svg");
}

#packages.is-directory-view #nephrology > summary::after {
  -webkit-mask-image: url("./assets/icons/solutions/kidneys.svg");
  mask-image: url("./assets/icons/solutions/kidneys.svg");
}

#packages.is-directory-view .expandable-card > summary > span {
  grid-column: 2;
}

#packages.is-directory-view .expand-label {
  grid-column: 3;
}

.directory-tags {
  margin-top: 13px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.directory-tags em {
  padding: 4px 9px;
  border: 1px solid rgba(15, 167, 160, 0.18);
  border-radius: 999px;
  color: #397176;
  background: rgba(244, 251, 250, 0.82);
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.4;
}

#packages.is-nested-detail-view .solution-directory-heading {
  margin-bottom: 18px;
  display: block;
}

#packages.is-nested-detail-view .directory-eyebrow,
#packages.is-nested-detail-view .directory-lead,
#packages.is-nested-detail-view .directory-count {
  display: none;
}

#packages.is-nested-detail-view .solution-directory-heading h2 {
  margin: 0;
  color: #638086;
  font-size: 14px;
  font-weight: 750;
  letter-spacing: 0.08em;
}

#packages.is-nested-detail-view .solution-directory-heading h2::before {
  color: var(--brand);
  content: "解决方案 / ";
}

.template-package-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 48px 50px !important;
  background:
    radial-gradient(circle at 91% 8%, rgba(151, 194, 46, 0.2), transparent 29%),
    radial-gradient(circle at 72% 92%, rgba(15, 167, 160, 0.13), transparent 36%),
    linear-gradient(130deg, #f3fbfa 0%, #e7f5f2 55%, #f7faef 100%) !important;
}

#pediatric .template-package-hero {
  background:
    linear-gradient(90deg, rgba(247, 251, 241, 0.98) 0%, rgba(247, 251, 241, 0.94) 52%, rgba(241, 249, 232, 0.68) 72%, rgba(241, 249, 232, 0.08) 100%),
    url("./assets/pediatric-metabolic-hero-green.png") right center / cover no-repeat !important;
}

#pediatric .template-package-hero h3,
#pediatric .template-package-hero .package-subtitle,
#pediatric .template-package-hero .package-opening {
  max-width: 70%;
}

#pediatric .template-package-hero .selling-points {
  max-width: 80%;
}

#bioinformatics-service .package-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(247, 251, 241, 0.98) 0%, rgba(247, 251, 241, 0.94) 52%, rgba(241, 249, 232, 0.66) 72%, rgba(241, 249, 232, 0.08) 100%),
    url("./assets/bioinformatics-analysis-hero.png") right center / cover no-repeat !important;
}

#bioinformatics-service .package-hero h3,
#bioinformatics-service .package-hero .package-subtitle,
#bioinformatics-service .package-hero .package-opening {
  max-width: 70%;
}

#bioinformatics-service .package-hero .selling-points {
  max-width: 80%;
}

#application-service .package-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(247, 251, 241, 0.98) 0%, rgba(247, 251, 241, 0.94) 52%, rgba(241, 249, 232, 0.66) 72%, rgba(241, 249, 232, 0.08) 100%),
    url("./assets/research-grant-application-hero.png") right center / cover no-repeat !important;
}

#application-service .package-hero h3,
#application-service .package-hero .package-subtitle,
#application-service .package-hero .package-opening {
  max-width: 70%;
}

#application-service .package-hero .selling-points {
  max-width: 80%;
}

#academic-communication .package-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(247, 251, 241, 0.98) 0%, rgba(247, 251, 241, 0.94) 52%, rgba(241, 249, 232, 0.66) 72%, rgba(241, 249, 232, 0.08) 100%),
    url("./assets/academic-conference-communication-hero.png") right center / cover no-repeat !important;
}

#academic-communication .package-hero h3,
#academic-communication .package-hero .package-subtitle,
#academic-communication .package-hero .package-opening {
  max-width: 70%;
}

#academic-communication .package-hero .selling-points {
  max-width: 80%;
}

#training-skills .package-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(247, 251, 241, 0.98) 0%, rgba(247, 251, 241, 0.94) 52%, rgba(241, 249, 232, 0.66) 72%, rgba(241, 249, 232, 0.08) 100%),
    url("./assets/research-skills-training-hero.png") right center / cover no-repeat !important;
}

#training-skills .package-hero h3,
#training-skills .package-hero .package-subtitle,
#training-skills .package-hero .package-opening {
  max-width: 70%;
}

#training-skills .package-hero .selling-points {
  max-width: 80%;
}

#institute .package-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(247, 251, 241, 0.98) 0%, rgba(247, 251, 241, 0.95) 50%, rgba(241, 249, 232, 0.66) 72%, rgba(241, 249, 232, 0.08) 100%),
    url("./assets/institute-biomedical-hero.png") right center / cover no-repeat !important;
}

#institute .package-hero h3,
#institute .package-hero .package-subtitle,
#institute .package-hero .package-opening {
  max-width: 70%;
}

#institute .package-hero .selling-points {
  max-width: 80%;
}

#general-lab .package-hero,
#p2-lab .package-hero,
#animal-lab .package-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(247, 251, 241, 0.98) 0%, rgba(247, 251, 241, 0.95) 50%, rgba(241, 249, 232, 0.66) 72%, rgba(241, 249, 232, 0.08) 100%),
    url("./assets/research-labs-shared-hero.png") right center / cover no-repeat !important;
}

#general-lab .package-hero h3,
#general-lab .package-hero .package-subtitle,
#general-lab .package-hero .package-opening,
#p2-lab .package-hero h3,
#p2-lab .package-hero .package-subtitle,
#p2-lab .package-hero .package-opening,
#animal-lab .package-hero h3,
#animal-lab .package-hero .package-subtitle,
#animal-lab .package-hero .package-opening {
  max-width: 70%;
}

#general-lab .package-hero .selling-points,
#p2-lab .package-hero .selling-points,
#animal-lab .package-hero .selling-points {
  max-width: 80%;
}

#bioinformatics-center .package-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(247, 251, 241, 0.98) 0%, rgba(247, 251, 241, 0.95) 50%, rgba(241, 249, 232, 0.66) 72%, rgba(241, 249, 232, 0.08) 100%),
    url("./assets/bioinformatics-center-hero.png") right center / cover no-repeat !important;
}

#bioinformatics-center .package-hero h3,
#bioinformatics-center .package-hero .package-subtitle,
#bioinformatics-center .package-hero .package-opening {
  max-width: 70%;
}

#bioinformatics-center .package-hero .selling-points {
  max-width: 80%;
}

#database .package-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(247, 251, 241, 0.98) 0%, rgba(247, 251, 241, 0.95) 50%, rgba(241, 249, 232, 0.66) 72%, rgba(241, 249, 232, 0.08) 100%),
    url("./assets/research-database-hero.png") right center / cover no-repeat !important;
}

#database .package-hero h3,
#database .package-hero .package-subtitle,
#database .package-hero .package-opening {
  max-width: 70%;
}

#database .package-hero .selling-points {
  max-width: 80%;
}

#quality .package-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(247, 251, 241, 0.98) 0%, rgba(247, 251, 241, 0.95) 50%, rgba(241, 249, 232, 0.66) 72%, rgba(241, 249, 232, 0.08) 100%),
    url("./assets/quality-control-system-hero.png") right center / cover no-repeat !important;
}

#quality .package-hero h3,
#quality .package-hero .package-subtitle,
#quality .package-hero .package-opening {
  max-width: 70%;
}

#quality .package-hero .selling-points {
  max-width: 80%;
}

#network .package-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(247, 251, 241, 0.98) 0%, rgba(247, 251, 241, 0.95) 50%, rgba(241, 249, 232, 0.66) 72%, rgba(241, 249, 232, 0.08) 100%),
    url("./assets/global-resource-network-hero.png") right center / cover no-repeat !important;
}

#network .package-hero h3,
#network .package-hero .package-subtitle,
#network .package-hero .package-opening {
  max-width: 70%;
}

#network .package-hero .selling-points {
  max-width: 80%;
}

.template-package-hero::after {
  position: absolute;
  z-index: -1;
  top: -75px;
  right: -45px;
  width: 230px;
  height: 230px;
  border: 1px solid rgba(15, 167, 160, 0.12);
  border-radius: 50%;
  box-shadow:
    0 0 0 32px rgba(15, 167, 160, 0.035),
    0 0 0 66px rgba(151, 194, 46, 0.025);
  content: "";
}

#pediatric .template-package-hero::after {
  display: none;
}

.template-hero-meta {
  margin-bottom: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.template-hero-meta span {
  padding: 6px 11px;
  border-radius: 999px;
  color: #316b70;
  background: rgba(255, 255, 255, 0.66);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.direction-template-preview.is-selected-detail .package-kicker {
  margin-bottom: 10px;
}

.direction-template-preview.is-selected-detail .template-package-hero h3 {
  max-width: 690px;
  font-size: clamp(38px, 4.2vw, 52px);
}

.direction-template-preview.is-selected-detail .template-package-hero .package-opening {
  max-width: 820px;
}

.direction-template-preview.is-selected-detail .package-facts {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.direction-template-preview.is-selected-detail .package-facts .path-fact {
  display: none;
}

.direction-template-preview.is-selected-detail .package-facts article {
  padding: 24px;
  border: 1px solid rgba(15, 167, 160, 0.16);
  border-radius: 16px;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.96), rgba(242, 250, 248, 0.78));
  box-shadow: 0 12px 30px rgba(13, 85, 89, 0.045);
}

.direction-template-preview.is-selected-detail .package-facts article::before {
  margin-bottom: 17px;
  display: block;
  color: rgba(15, 167, 160, 0.5);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.direction-template-preview.is-selected-detail .package-facts article:nth-child(1)::before {
  content: "SCENARIO";
}

.direction-template-preview.is-selected-detail .package-facts article:nth-child(2)::before {
  content: "CHALLENGE";
}

.direction-template-preview.is-selected-detail .package-facts article:nth-child(4)::before {
  content: "VALUE";
}

.template-research-route {
  margin-top: 26px;
  padding: 30px;
  border-radius: 18px;
  color: var(--white);
  background:
    radial-gradient(circle at 95% 10%, rgba(151, 194, 46, 0.2), transparent 32%),
    linear-gradient(120deg, #075e63, #0b8581);
}

.route-heading {
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.route-heading span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.17em;
}

.route-heading strong {
  color: var(--white);
  font-size: 20px;
}

.template-research-route ol {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
}

.template-research-route li {
  position: relative;
  padding: 0 18px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
}

.template-research-route li:first-child {
  padding-left: 0;
}

.template-research-route li:last-child {
  padding-right: 0;
}

.template-research-route li + li {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.template-research-route li > b {
  color: #c7ef63;
  font-size: 12px;
}

.template-research-route li strong {
  display: block;
  color: var(--white);
  font-size: 14px;
}

.template-research-route li small {
  margin-top: 7px;
  display: block;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  line-height: 1.65;
}

.template-delivery-stages {
  display: block;
}

.template-delivery-stages > :not(.delivery-standard-image) {
  display: none;
}

.delivery-standard-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  box-shadow: 0 18px 46px rgba(9, 73, 77, 0.1);
}

.delivery-stage {
  position: relative;
  padding: 30px 30px 28px;
  display: grid;
  overflow: hidden;
  grid-template-columns: 142px minmax(0, 1fr);
  gap: 30px;
  border: 1px solid rgba(15, 167, 160, 0.16);
  border-radius: 20px;
  background:
    linear-gradient(115deg, rgba(236, 248, 246, 0.92), rgba(255, 255, 255, 0.96) 42%),
    var(--white);
  box-shadow: 0 12px 34px rgba(13, 85, 89, 0.05);
}

.delivery-stage::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--brand), #7abf50);
  content: "";
}

.delivery-stage:nth-child(2) {
  background:
    linear-gradient(115deg, rgba(232, 246, 248, 0.94), rgba(255, 255, 255, 0.96) 42%),
    var(--white);
}

.delivery-stage:nth-child(2)::before {
  background: linear-gradient(180deg, #087d87, #39b9b0);
}

.delivery-stage:nth-child(3) {
  background:
    linear-gradient(115deg, rgba(243, 249, 232, 0.94), rgba(255, 255, 255, 0.96) 42%),
    var(--white);
}

.delivery-stage:nth-child(3)::before {
  background: linear-gradient(180deg, #79af32, #b3cf43);
}

.delivery-stage-heading {
  padding-top: 2px;
}

.delivery-stage-heading > span {
  color: var(--brand);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.18em;
}

.delivery-stage-heading h5 {
  margin: 8px 0 10px;
  color: var(--brand-dark);
  font-size: 21px;
  line-height: 1.3;
}

.delivery-stage-heading p {
  margin: 0;
  color: #617a7f;
  font-size: 12px;
  line-height: 1.75;
}

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

.delivery-stage-items.is-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.delivery-stage-items article {
  min-width: 0;
  padding: 0 22px;
  border-left: 1px solid rgba(15, 167, 160, 0.14);
}

.delivery-stage-items article:first-child {
  padding-left: 0;
  border-left: 0;
}

.delivery-stage-items article:last-child {
  padding-right: 0;
}

.delivery-item-title {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  align-items: start;
  gap: 11px;
}

.delivery-item-title > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(15, 167, 160, 0.22);
  border-radius: 11px;
  color: var(--brand-dark);
  background: rgba(255, 255, 255, 0.88);
  font-size: 11px;
  font-weight: 850;
}

.delivery-item-title h6 {
  margin: 0 0 6px;
  color: var(--brand-dark);
  font-size: 15px;
  line-height: 1.45;
}

.delivery-item-title strong {
  display: block;
  color: #365c62;
  font-size: 12px;
  line-height: 1.65;
}

.delivery-stage-items article > p {
  margin: 14px 0 12px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.delivery-stage-items article > small {
  padding-top: 10px;
  display: block;
  border-top: 1px solid rgba(15, 167, 160, 0.12);
  color: #4f7075;
  font-size: 11px;
  line-height: 1.65;
}

.delivery-stage-items article > small b {
  margin-right: 7px;
  color: #6d9f2e;
  font-size: 10px;
  letter-spacing: 0.04em;
}

.template-process-grid {
  position: relative;
  gap: 28px;
}

.template-process-grid::before {
  position: absolute;
  top: 21px;
  right: 12%;
  left: 12%;
  height: 1px;
  background: linear-gradient(90deg, rgba(15, 167, 160, 0.18), rgba(15, 167, 160, 0.5), rgba(151, 194, 46, 0.35));
  content: "";
}

.single-section-page .template-process-grid article {
  position: relative;
  padding: 0;
  border-left: 0;
}

.template-process-grid article > b {
  position: relative;
  z-index: 1;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  display: grid;
  place-items: center;
  border: 6px solid #f7fafa;
  border-radius: 50%;
  color: var(--white);
  background: var(--brand);
  font-size: 11px;
  box-sizing: border-box;
}

.template-consult-callout {
  position: relative;
  overflow: hidden;
  padding: 32px 34px;
  background:
    radial-gradient(circle at 92% 10%, rgba(151, 194, 46, 0.22), transparent 28%),
    linear-gradient(120deg, #07565d, #0b8581);
}

.template-consult-callout a {
  box-shadow: 0 8px 24px rgba(0, 56, 60, 0.18);
}

.contact-note {
  padding: 26px;
  border-left: 4px solid var(--brand);
  background: var(--brand-light);
}

@media (max-width: 1120px) {
  :root {
    --shell: min(980px, calc(100vw - 48px));
  }

  .brand-copy small {
    display: none;
  }

  .nav-link,
  .nav-trigger {
    padding-inline: 10px;
    font-size: 14px;
  }

  .nav-link::after,
  .nav-trigger::after {
    right: 10px;
    left: 10px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 64px;
    --shell: calc(100vw - 36px);
  }

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

  .org-chart-branches::before,
  .org-chart-branches article::before {
    display: none;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .brand-logo {
    width: 140px;
    height: 42px;
  }

  .brand-logo img {
    top: -74px;
    left: -29px;
    width: 192px;
    height: 192px;
  }

  .brand-copy strong {
    font-size: 17px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-button {
    width: 40px;
    height: 40px;
    padding: 7px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    border: 0;
    background: transparent;
  }

  .menu-button span {
    width: 26px;
    height: 2px;
    display: block;
    background: var(--white);
  }

  .mobile-menu {
    position: fixed;
    z-index: 99;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    visibility: hidden;
    overflow-y: auto;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.99);
    opacity: 0;
  }

  .mobile-menu.is-open {
    visibility: visible;
    opacity: 1;
  }

  .mobile-menu nav {
    width: var(--shell);
    margin: 0 auto;
    padding: 18px 0 48px;
  }

  .mobile-menu > nav > a,
  .mobile-menu summary {
    padding: 16px 6px;
    display: block;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    font-weight: 700;
    cursor: pointer;
  }

  .mobile-menu details a,
  .mobile-menu details span {
    padding: 11px 10px 11px 28px;
    display: block;
    color: var(--muted);
    font-size: 14px;
  }

  .mobile-menu details span {
    color: var(--ink);
    font-weight: 700;
  }

  .hero-section {
    min-height: 720px;
    align-items: flex-end;
    background:
      linear-gradient(180deg, rgba(246, 255, 255, 0.06) 24%, rgba(246, 255, 255, 0.92) 58%, #f6ffff 100%),
      url("./assets/hero-banner.png") 65% top / auto 62% no-repeat,
      #f6ffff;
  }

  .hero-content {
    padding-bottom: 85px;
  }

  .hero-content h1 {
    font-size: clamp(34px, 9vw, 48px);
  }

  .hero-lead {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.7;
  }

  .hero-benefits {
    margin-top: 25px;
  }

  .hero-benefits span b {
    width: 48px;
    height: 48px;
  }

  .section-shell {
    min-height: 0;
    padding-top: calc(var(--header-height) + 54px);
    padding-bottom: 70px;
  }

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

  .research-card {
    min-height: 180px;
  }

  .loop-visual {
    grid-template-columns: 1fr;
  }

  .loop-center {
    grid-row: 1;
    justify-self: center;
  }

  .loop-left,
  .loop-right {
    text-align: center;
  }

  .loop-copy > div::after {
    display: none;
  }

  .data-story-section,
  .honors-story-section {
    min-height: 0;
  }

  .data-people {
    height: 34%;
  }

  .data-content,
  .honors-content {
    min-height: 0;
    padding-block: 82px 70px;
  }

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

  .network-panel > img {
    height: 100%;
  }

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

  .image-section-layout,
  .contact-layout {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
  }

  .image-section-layout {
    gap: 42px;
  }

  .contact-layout {
    min-height: calc(100svh - var(--header-height) - 190px);
    gap: 45px;
  }

  .contact-card {
    padding: 30px;
  }

  .footer-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .content-layout {
    padding-top: 42px;
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .side-nav {
    position: static;
    display: flex;
    overflow-x: auto;
    gap: 6px;
    white-space: nowrap;
  }

  .side-nav strong {
    display: none;
  }

  .side-nav a {
    flex: 0 0 auto;
  }

  .side-nav-group {
    flex: 0 0 auto;
  }

  .side-nav-group::after,
  .side-nav-group > a::after,
  .side-submenu {
    display: none;
  }

  .solutions-single-page .side-nav,
  .about-single-page .side-nav {
    position: fixed;
    display: block;
    overflow-x: hidden;
    overflow-y: auto;
    gap: 0;
    white-space: normal;
  }

  .solutions-single-page .side-directory-head strong,
  .about-single-page .side-directory-head strong {
    display: block;
  }

  .solutions-single-page .side-nav a,
  .solutions-single-page .side-nav-group,
  .about-single-page .side-nav a {
    flex: none;
  }

  .solutions-single-page .side-nav .side-submenu {
    display: block;
  }

  .about-section-tabs {
    margin-bottom: 42px;
  }

  .package-facts,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .bio-showcase-grid {
    grid-template-columns: 1fr;
  }

  .bio-showcase-grid article:last-child:nth-child(odd) {
    grid-column: auto;
  }

  .process-grid.is-four-card-grid {
    grid-template-columns: 1fr;
  }

  .platform-value-grid,
  .platform-capability-grid,
  .network-node-grid,
  .about-stat-grid,
  .about-value-grid,
  .about-partner-grid,
  .about-contact-grid {
    grid-template-columns: 1fr;
  }

  .solution-directory-heading {
    grid-template-columns: minmax(0, 1fr) 96px;
    gap: 24px;
  }

  .directory-count {
    width: 92px;
    height: 92px;
  }

  .directory-count strong {
    font-size: 30px;
  }

  .direction-template-preview.is-selected-detail .package-facts {
    grid-template-columns: 1fr;
  }

  .template-research-route ol {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 26px;
  }

  .template-research-route li:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }

  .delivery-stage {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .delivery-stage-heading p {
    max-width: 430px;
  }

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

  .delivery-stage-items.is-three article:nth-child(3) {
    grid-column: 1 / -1;
    margin-top: 22px;
    padding: 22px 0 0;
    border-top: 1px solid rgba(15, 167, 160, 0.14);
    border-left: 0;
  }

  .template-process-grid::before {
    display: none;
  }
}

@media (max-width: 560px) {
  :root {
    --shell: calc(100vw - 30px);
  }

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

  .founder-photo-placeholder {
    width: min(170px, 62vw);
    justify-self: center;
  }

  .org-chart {
    padding: 18px 14px;
  }

  .org-chart-root {
    width: 100%;
    margin-bottom: 22px;
  }

  .org-chart-root::after {
    display: none;
  }

  .org-chart-branches {
    grid-template-columns: 1fr;
  }

  .org-chart-branches article {
    min-height: 0;
  }

  .side-directory-trigger {
    top: calc(var(--header-height) + 118px);
    width: 40px;
    height: 68px;
    border-radius: 0 9px 9px 0;
    font-size: 14px;
  }

  .about-single-page .side-directory-trigger {
    top: calc(var(--header-height) + 28px);
  }

  .solutions-single-page .side-nav,
  .about-single-page .side-nav {
    width: calc(100vw - 24px);
    padding-right: 18px;
    padding-left: 18px;
    border-radius: 0 20px 20px 0;
  }

  .full-screen {
    min-height: 100svh;
  }

  .hero-section {
    min-height: 760px;
    background:
      linear-gradient(180deg, rgba(246, 255, 255, 0.02) 20%, rgba(246, 255, 255, 0.93) 52%, #f6ffff 100%),
      url("./assets/hero-banner.png") 68% top / auto 54% no-repeat,
      #f6ffff;
  }

  .hero-content {
    padding-bottom: 72px;
  }

  .hero-benefits {
    gap: 8px;
  }

  .hero-benefits span {
    padding: 0;
    font-size: 11px;
  }

  .hero-benefits > i {
    display: none;
  }

  .hero-benefits span b {
    width: 43px;
    height: 43px;
    font-size: 19px;
  }

  .section-intro h2,
  .contact-layout h2,
  .page-hero h1 {
    font-size: 36px;
  }

  .research-cards,
  .info-grid,
  .direction-grid,
  .lab-grid {
    grid-template-columns: 1fr;
  }

  .expandable-card > summary {
    min-height: 0;
    padding: 22px;
    align-items: flex-start;
  }

  .expand-label span {
    display: none;
  }

  .card-details {
    padding: 0 20px 24px;
  }

  .package-hero {
    margin: 0 -20px;
    padding: 36px 20px;
  }

  .package-hero .package-subtitle {
    font-size: 17px;
  }

  .package-section {
    margin-top: 32px;
  }

  .package-facts article,
  .process-grid article {
    padding: 19px;
  }

  .bio-showcase-grid article {
    min-height: 0;
    padding: 22px;
  }

  .bio-showcase-value {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .consult-callout {
    padding: 24px;
    align-items: flex-start;
    flex-direction: column;
  }

  .platform-overview-panel,
  .platform-shared-process {
    padding: 22px;
  }

  .about-timeline::before {
    top: 30px;
    bottom: 30px;
    left: 18px;
  }

  .about-timeline article {
    padding: 24px 0 24px 46px;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .about-timeline article::before {
    top: 30px;
    left: 11px;
  }

  .founder-profile {
    padding: 22px;
    grid-template-columns: 1fr;
  }

  .research-card {
    min-height: 160px;
  }

  .loop-center {
    width: 145px;
    height: 145px;
  }

  .data-people {
    height: 18%;
  }

  .data-content,
  .honors-content {
    padding-block: 64px;
  }

  .stat-panel,
  .honor-cards {
    grid-template-columns: 1fr;
  }

  .stat-panel article {
    min-height: 112px;
  }

  .network-copy {
    top: 16px;
    left: 16px;
    padding: 12px 16px 10px;
  }

  .network-panel {
    height: auto;
    min-height: 0;
    aspect-ratio: 1672 / 941;
  }

  .network-panel > img {
    object-fit: contain;
  }

  .honors-heading h2 {
    font-size: 38px;
  }

  .honors-heading p {
    font-size: 13px;
    line-height: 1.7;
  }

  .honor-cards article {
    min-height: 0;
  }

  .showcase-figure {
    margin-right: -15px;
    margin-left: -15px;
    border-radius: 0;
  }

  .page-hero {
    min-height: 400px;
    padding-top: calc(var(--header-height) + 60px);
  }

  .platform-page-hero {
    background-position: 58% center;
  }

  .page-hero p:not(.eyebrow) {
    font-size: 15px;
  }

  .content-section {
    min-height: 0;
  }

  .about-section-tabs {
    width: calc(100vw - 30px);
    margin-bottom: 34px;
  }

  .about-section-tabs-list {
    min-width: 840px;
    padding-bottom: 12px;
    grid-template-columns: repeat(7, minmax(112px, 1fr));
    gap: 6px;
  }

  .about-section-tabs a {
    min-height: 52px;
    padding: 10px 12px;
    font-size: 13px;
  }

  .about-data-strength-image {
    margin-right: -7px;
    margin-left: -7px;
    border-radius: 14px;
  }

  .partner-logo-item {
    grid-template-columns: 102px minmax(0, 1fr);
    gap: 10px;
    padding: 10px;
  }

  .partner-logo-item img {
    width: 96px;
    height: 52px;
  }

  .partner-logo-list {
    grid-template-columns: 1fr;
  }

  .single-section-page .package-hero {
    padding: 30px 24px;
    border-radius: 16px;
  }

  .single-section-page .package-section {
    margin-top: 44px;
  }

  .single-section-page .package-facts article,
  .single-section-page .platform-capability-grid article,
  .single-section-page .network-node-grid article,
  .single-section-page .process-grid article {
    padding-left: 16px;
  }

  .single-section-page .consult-callout {
    margin-top: 44px;
  }

  .solution-directory-heading {
    margin-bottom: 26px;
    display: block;
  }

  .research-direction-tabs {
    width: calc(100vw - 30px);
    margin-top: 20px;
  }

  .research-direction-tabs-list {
    min-width: 1080px;
    grid-template-columns: repeat(10, minmax(108px, 1fr));
  }

  .research-direction-tabs a {
    min-height: 142px;
    padding: 20px 8px 23px;
    gap: 9px;
  }

  .research-direction-icon {
    width: 62px;
    height: 62px;
    flex-basis: 62px;
  }

  .research-direction-icon::before {
    width: 47px;
    height: 47px;
  }

  #packages.is-tabbed-direction-view .direction-grid {
    margin-top: 36px;
  }

  .directory-count {
    display: none;
  }

  #packages.is-directory-view .expandable-card > summary {
    padding: 20px 4px;
    grid-template-columns: 46px minmax(0, 1fr) 24px;
    gap: 13px;
  }

  #packages.is-directory-view .expandable-card > summary:hover,
  #packages.is-directory-view .expandable-card > summary:focus-visible {
    padding-left: 8px;
  }

  #packages.is-directory-view .expandable-card > summary::before {
    width: 44px;
    height: 44px;
    border-radius: 13px;
  }

  #packages.is-directory-view .expandable-card > summary::after {
    left: 15px;
    width: 22px;
    height: 22px;
  }

  #packages.is-directory-view .expandable-card > summary:hover::after,
  #packages.is-directory-view .expandable-card > summary:focus-visible::after {
    left: 19px;
  }

  #packages.is-directory-view .expand-label span {
    display: none;
  }

  .directory-tags {
    margin-top: 10px;
  }

  .template-package-hero {
    padding: 30px 24px !important;
  }

  #pediatric .template-package-hero {
    background:
      linear-gradient(90deg, rgba(247, 251, 241, 0.97), rgba(241, 249, 232, 0.9)),
      url("./assets/pediatric-metabolic-hero-green.png") 70% center / cover no-repeat !important;
  }

  #pediatric .template-package-hero h3,
  #pediatric .template-package-hero .package-subtitle,
  #pediatric .template-package-hero .package-opening,
  #pediatric .template-package-hero .selling-points {
    max-width: none;
  }

  #bioinformatics-service .package-hero {
    background:
      linear-gradient(90deg, rgba(247, 251, 241, 0.97), rgba(241, 249, 232, 0.9)),
      url("./assets/bioinformatics-analysis-hero.png") 70% center / cover no-repeat !important;
  }

  #bioinformatics-service .package-hero h3,
  #bioinformatics-service .package-hero .package-subtitle,
  #bioinformatics-service .package-hero .package-opening,
  #bioinformatics-service .package-hero .selling-points {
    max-width: none;
  }

  #application-service .package-hero {
    background:
      linear-gradient(90deg, rgba(247, 251, 241, 0.97), rgba(241, 249, 232, 0.9)),
      url("./assets/research-grant-application-hero.png") 70% center / cover no-repeat !important;
  }

  #application-service .package-hero h3,
  #application-service .package-hero .package-subtitle,
  #application-service .package-hero .package-opening,
  #application-service .package-hero .selling-points {
    max-width: none;
  }

  #academic-communication .package-hero {
    background:
      linear-gradient(90deg, rgba(247, 251, 241, 0.97), rgba(241, 249, 232, 0.9)),
      url("./assets/academic-conference-communication-hero.png") 70% center / cover no-repeat !important;
  }

  #academic-communication .package-hero h3,
  #academic-communication .package-hero .package-subtitle,
  #academic-communication .package-hero .package-opening,
  #academic-communication .package-hero .selling-points {
    max-width: none;
  }

  #training-skills .package-hero {
    background:
      linear-gradient(90deg, rgba(247, 251, 241, 0.97), rgba(241, 249, 232, 0.9)),
      url("./assets/research-skills-training-hero.png") 70% center / cover no-repeat !important;
  }

  #training-skills .package-hero h3,
  #training-skills .package-hero .package-subtitle,
  #training-skills .package-hero .package-opening,
  #training-skills .package-hero .selling-points {
    max-width: none;
  }

  #institute .package-hero {
    background:
      linear-gradient(90deg, rgba(247, 251, 241, 0.98), rgba(241, 249, 232, 0.92)),
      url("./assets/institute-biomedical-hero.png") 70% center / cover no-repeat !important;
  }

  #institute .package-hero h3,
  #institute .package-hero .package-subtitle,
  #institute .package-hero .package-opening,
  #institute .package-hero .selling-points {
    max-width: none;
  }

  #general-lab .package-hero,
  #p2-lab .package-hero,
  #animal-lab .package-hero {
    background:
      linear-gradient(90deg, rgba(247, 251, 241, 0.98), rgba(241, 249, 232, 0.92)),
      url("./assets/research-labs-shared-hero.png") 70% center / cover no-repeat !important;
  }

  #general-lab .package-hero h3,
  #general-lab .package-hero .package-subtitle,
  #general-lab .package-hero .package-opening,
  #general-lab .package-hero .selling-points,
  #p2-lab .package-hero h3,
  #p2-lab .package-hero .package-subtitle,
  #p2-lab .package-hero .package-opening,
  #p2-lab .package-hero .selling-points,
  #animal-lab .package-hero h3,
  #animal-lab .package-hero .package-subtitle,
  #animal-lab .package-hero .package-opening,
  #animal-lab .package-hero .selling-points {
    max-width: none;
  }

  #bioinformatics-center .package-hero {
    background:
      linear-gradient(90deg, rgba(247, 251, 241, 0.98), rgba(241, 249, 232, 0.92)),
      url("./assets/bioinformatics-center-hero.png") 70% center / cover no-repeat !important;
  }

  #bioinformatics-center .package-hero h3,
  #bioinformatics-center .package-hero .package-subtitle,
  #bioinformatics-center .package-hero .package-opening,
  #bioinformatics-center .package-hero .selling-points {
    max-width: none;
  }

  #database .package-hero {
    background:
      linear-gradient(90deg, rgba(247, 251, 241, 0.98), rgba(241, 249, 232, 0.92)),
      url("./assets/research-database-hero.png") 70% center / cover no-repeat !important;
  }

  #database .package-hero h3,
  #database .package-hero .package-subtitle,
  #database .package-hero .package-opening,
  #database .package-hero .selling-points {
    max-width: none;
  }

  #quality .package-hero {
    background:
      linear-gradient(90deg, rgba(247, 251, 241, 0.98), rgba(241, 249, 232, 0.92)),
      url("./assets/quality-control-system-hero.png") 70% center / cover no-repeat !important;
  }

  #quality .package-hero h3,
  #quality .package-hero .package-subtitle,
  #quality .package-hero .package-opening,
  #quality .package-hero .selling-points {
    max-width: none;
  }

  #network .package-hero {
    background:
      linear-gradient(90deg, rgba(247, 251, 241, 0.98), rgba(241, 249, 232, 0.92)),
      url("./assets/global-resource-network-hero.png") 70% center / cover no-repeat !important;
  }

  #network .package-hero h3,
  #network .package-hero .package-subtitle,
  #network .package-hero .package-opening,
  #network .package-hero .selling-points {
    max-width: none;
  }

  .template-hero-meta {
    margin-bottom: 20px;
  }

  .direction-template-preview.is-selected-detail .template-package-hero h3 {
    font-size: 34px;
  }

  .template-research-route {
    padding: 24px 20px;
  }

  .route-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .template-research-route ol {
    grid-template-columns: 1fr;
    row-gap: 0;
  }

  .template-research-route li,
  .template-research-route li:first-child,
  .template-research-route li:last-child {
    padding: 16px 0;
    border-left: 0;
  }

  .template-research-route li + li {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .delivery-stage {
    padding: 24px 20px;
    gap: 18px;
    border-radius: 16px;
  }

  .delivery-stage-items,
  .delivery-stage-items.is-three {
    grid-template-columns: 1fr;
  }

  .delivery-stage-items article,
  .delivery-stage-items article:first-child,
  .delivery-stage-items article:last-child,
  .delivery-stage-items.is-three article:nth-child(3) {
    grid-column: auto;
    margin: 0;
    padding: 20px 0;
    border-top: 1px solid rgba(15, 167, 160, 0.14);
    border-left: 0;
  }

  .delivery-stage-items article:first-child {
    padding-top: 0;
    border-top: 0;
  }

  .delivery-stage-items article:last-child {
    padding-bottom: 0;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 14px 22px;
  }
}

/* 新闻中心 */
.news-page {
  background: #f4f8f8;
}

.news-page-hero {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(28, 116, 120, 0.32) 0%, rgba(19, 109, 113, 0.18) 42%, rgba(31, 128, 130, 0.07) 70%, rgba(255, 255, 255, 0.04) 100%),
    url("./assets/news-hero-banner-v1.webp") center / cover no-repeat;
}

.news-hero-content {
  position: relative;
  z-index: 2;
}

.news-page-hero .eyebrow {
  margin: 0 0 18px;
  color: #7eeadd;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.24em;
}

.news-page-hero h1,
.news-page-hero .news-hero-title {
  position: relative;
  width: fit-content;
  margin: 0;
  padding-bottom: 22px;
  color: var(--white);
  font-size: clamp(50px, 5vw, 72px);
  font-weight: 760;
  line-height: 1.15;
  letter-spacing: 0.08em;
  text-shadow:
    0 3px 8px rgba(0, 40, 46, 0.3),
    0 14px 32px rgba(0, 40, 46, 0.2);
}

.news-page-hero h1::after,
.news-page-hero .news-hero-title::after {
  position: absolute;
  bottom: 0;
  left: 2px;
  width: 88px;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, #c6e94a, #4be4d0);
  content: "";
}

.news-page-hero p:not(.eyebrow):not(.news-hero-title) {
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 19px;
  letter-spacing: 0.04em;
  text-shadow: 0 2px 12px rgba(0, 44, 50, 0.3);
}

.news-content {
  padding-top: 42px;
  padding-bottom: 120px;
}

.news-category-nav {
  position: sticky;
  z-index: 40;
  top: calc(var(--header-height) + 18px);
  margin-bottom: 92px;
  padding: 8px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid rgba(215, 231, 231, 0.9);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 38px rgba(5, 69, 73, 0.08);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.news-category-nav button {
  min-height: 66px;
  padding: 12px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 0;
  border-radius: 9px;
  color: var(--ink);
  background: transparent;
  text-align: center;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
}

.news-category-nav button.is-active {
  color: var(--white);
  background: linear-gradient(110deg, var(--brand-deep), var(--brand));
}

.news-category-nav button:not(.is-active):hover,
.news-category-nav button:not(.is-active):focus-visible {
  color: var(--brand-dark);
  background: var(--brand-light);
}

.news-category-nav span {
  font-size: 17px;
  font-weight: 700;
}

.news-category-nav small {
  margin-top: 5px;
  font-family: Arial, sans-serif;
  font-size: 9px;
  letter-spacing: 0.18em;
  opacity: 0.65;
}

.news-section {
  scroll-margin-top: calc(var(--header-height) + 116px);
}

.news-section + .news-section {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.news-section[hidden] {
  display: none !important;
}

.news-section [data-news-item][hidden] {
  display: none !important;
}

.news-section-heading {
  margin-bottom: 42px;
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(380px, 1fr);
  align-items: end;
  gap: 70px;
}

.news-section-heading > div > p {
  margin: 0 0 10px;
  color: var(--brand);
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.news-section-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 3.5vw, 48px);
  font-weight: 680;
  letter-spacing: -0.035em;
}

.news-section-heading > p {
  max-width: 570px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
}

.industry-news-feed {
  display: grid;
  gap: 24px;
}

.industry-feed-card {
  overflow: hidden;
  border: 1px solid #dce8e8;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 14px 36px rgba(9, 71, 75, 0.055);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.industry-feed-card:hover {
  border-color: #b7dcd8;
  box-shadow: 0 22px 48px rgba(9, 71, 75, 0.11);
  transform: translateY(-4px);
}

.industry-feed-card > a {
  min-height: 252px;
  display: grid;
  grid-template-columns: minmax(300px, 34%) minmax(0, 1fr);
  color: inherit;
  text-decoration: none;
}

.industry-feed-card > a:focus-visible {
  outline: 3px solid rgba(19, 167, 156, 0.45);
  outline-offset: -3px;
}

.industry-feed-cover {
  position: relative;
  min-height: 252px;
  margin: 0;
  overflow: hidden;
  background: #dce8e8;
}

.industry-feed-cover::after {
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  background: linear-gradient(180deg, transparent, rgba(3, 48, 53, 0.42));
  content: "";
  pointer-events: none;
}

.industry-feed-cover img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.industry-feed-card:hover .industry-feed-cover img {
  transform: scale(1.035);
}

.industry-feed-cover .news-list-tag {
  position: absolute;
  z-index: 2;
  top: 20px;
  left: 20px;
  color: var(--white);
  background: rgba(5, 78, 82, 0.78);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.industry-feed-cover figcaption {
  position: absolute;
  z-index: 2;
  right: 16px;
  bottom: 12px;
  left: 16px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 10px;
  line-height: 1.45;
  text-align: right;
}

.industry-feed-copy {
  padding: 34px 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.industry-feed-copy h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(20px, 1.8vw, 25px);
  font-weight: 650;
  line-height: 1.5;
}

.industry-feed-copy > p:not(.news-meta) {
  margin: 14px 0 22px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}

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

.news-feature-card,
.news-row-card,
.company-news-card {
  overflow: hidden;
  border: 1px solid #dce8e8;
  background: var(--white);
  box-shadow: 0 14px 36px rgba(9, 71, 75, 0.055);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.news-feature-card:hover,
.news-row-card:hover,
.company-news-card:hover {
  border-color: #b7dcd8;
  box-shadow: 0 22px 48px rgba(9, 71, 75, 0.11);
  transform: translateY(-5px);
}

.news-feature-card {
  min-height: 286px;
  display: grid;
  grid-template-columns: minmax(280px, 34%) minmax(0, 1fr);
  border-radius: 18px;
}

.news-card-visual {
  position: relative;
  min-height: 286px;
  height: auto;
  overflow: hidden;
}

.visual-genomics {
  background:
    linear-gradient(135deg, rgba(4, 60, 66, 0.95), rgba(11, 143, 136, 0.82)),
    linear-gradient(35deg, #0a5057, #18a797);
}

.visual-genomics::before,
.visual-genomics::after {
  position: absolute;
  left: -5%;
  width: 110%;
  height: 70px;
  border: 1px solid rgba(158, 241, 227, 0.28);
  border-radius: 50%;
  content: "";
  transform: rotate(-12deg);
}

.visual-genomics::before {
  top: 84px;
}

.visual-genomics::after {
  top: 165px;
  transform: rotate(12deg);
}

.news-tag {
  position: relative;
  z-index: 3;
  margin: 24px;
  padding: 7px 12px;
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.visual-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  transform: translate(-50%, -44%);
}

.visual-orbit::before,
.visual-orbit::after {
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 50%;
  content: "";
}

.visual-orbit::after {
  inset: 67px;
  border: 0;
  background: rgba(198, 233, 74, 0.84);
  box-shadow: 0 0 45px rgba(198, 233, 74, 0.46);
}

.visual-orbit i {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #69ecdc;
}

.visual-orbit i:nth-child(1) {
  top: 17px;
  left: 42px;
}

.visual-orbit i:nth-child(2) {
  right: -4px;
  bottom: 73px;
}

.visual-orbit i:nth-child(3) {
  bottom: 11px;
  left: 61px;
  background: rgba(255, 255, 255, 0.84);
}

.news-feature-copy {
  padding: 40px 44px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.news-meta {
  margin: 0 0 17px;
  display: flex;
  align-items: center;
  gap: 18px;
  color: #819397;
  font-family: Arial, "Microsoft YaHei", sans-serif;
  font-size: 12px;
  letter-spacing: 0.03em;
}

.news-meta span {
  position: relative;
  padding-left: 18px;
  color: var(--brand-dark);
}

.news-meta span::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand);
  content: "";
  transform: translateY(-50%);
}

.news-feature-copy h3,
.news-row-card h3,
.company-news-card h3,
.news-brief-list h3 {
  margin: 0;
  color: var(--ink);
  font-weight: 650;
  line-height: 1.55;
}

.news-feature-copy h3 {
  font-size: clamp(22px, 2vw, 28px);
}

.news-feature-copy > p:not(.news-meta) {
  margin: 17px 0 25px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}

.news-read-more {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 700;
}

.news-read-more b {
  font-size: 18px;
  font-weight: 400;
  transition: transform 0.2s ease;
}

article:hover .news-read-more b {
  transform: translateX(5px);
}

.industry-news-list {
  margin-top: 24px;
  display: grid;
  gap: 24px;
}

.news-row-card {
  min-height: 236px;
  display: grid;
  grid-template-columns: minmax(280px, 34%) minmax(0, 1fr);
  border-radius: 16px;
}

.news-row-card > div:last-child {
  padding: 25px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.news-row-card h3 {
  margin-bottom: auto;
  font-size: 17px;
}

.news-row-card .news-read-more {
  margin-top: 20px;
}

.news-mini-visual {
  position: relative;
  min-height: 236px;
  overflow: hidden;
  background: #0b696c;
}

.visual-spatial {
  background:
    radial-gradient(circle at 30% 30%, rgba(199, 233, 74, 0.85) 0 3px, transparent 4px),
    radial-gradient(circle at 72% 68%, rgba(99, 234, 215, 0.9) 0 4px, transparent 5px),
    linear-gradient(145deg, #07545d, #16a390);
  background-size: 38px 38px, 52px 52px, auto;
}

.visual-spatial::after {
  position: absolute;
  inset: 28% 22%;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 46% 54% 62% 38%;
  box-shadow: 0 0 0 14px rgba(255, 255, 255, 0.07), 0 0 0 30px rgba(255, 255, 255, 0.045);
  content: "";
}

.visual-data {
  background:
    linear-gradient(180deg, transparent 92%, rgba(124, 237, 220, 0.22) 93%),
    linear-gradient(90deg, transparent 92%, rgba(124, 237, 220, 0.18) 93%),
    linear-gradient(145deg, #084b57, #0a817d);
  background-size: 100% 28px, 28px 100%, auto;
}

.visual-data i {
  position: absolute;
  bottom: 25%;
  width: 13px;
  border-radius: 9px 9px 0 0;
  background: linear-gradient(180deg, #c6e94a, #49d7c4);
}

.visual-data i:nth-child(1) {
  left: 26%;
  height: 22%;
}

.visual-data i:nth-child(2) {
  left: 45%;
  height: 48%;
}

.visual-data i:nth-child(3) {
  left: 64%;
  height: 67%;
}

.news-brief-list {
  margin-top: 28px;
  border-top: 1px solid #d5e3e3;
}

.news-brief-list article {
  min-height: 116px;
  padding: 22px 6px;
  display: grid;
  grid-template-columns: 86px 108px minmax(0, 1fr) 48px;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid #d5e3e3;
  transition: background 0.2s ease, padding 0.2s ease;
}

.news-brief-list article:hover {
  padding-right: 18px;
  padding-left: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.news-brief-list time,
.company-card-top time {
  display: flex;
  flex-direction: column;
}

.news-brief-list time strong {
  color: var(--brand-dark);
  font-family: Arial, sans-serif;
  font-size: 28px;
  line-height: 1;
}

.news-brief-list time span {
  margin-top: 5px;
  color: #8a9a9e;
  font-family: Arial, sans-serif;
  font-size: 10px;
}

.news-list-tag {
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--brand-dark);
  background: var(--brand-light);
  font-size: 11px;
  text-align: center;
}

.news-brief-list h3 {
  font-size: 17px;
}

.news-list-arrow {
  color: var(--brand);
  font-size: 21px;
  text-align: center;
}

.company-news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.company-news-card {
  min-height: 236px;
  padding: 18px;
  display: grid;
  grid-template-columns: minmax(250px, 28%) 105px minmax(0, 1fr) auto;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 28px;
  border-radius: 16px;
  color: inherit;
  text-decoration: none;
}

.company-news-card:focus-visible {
  outline: 3px solid rgba(19, 167, 156, 0.45);
  outline-offset: 3px;
}

.company-news-cover {
  position: relative;
  margin: 0;
  min-height: 200px;
  height: 100%;
  display: flex;
  grid-column: 1;
  grid-row: 1 / 3;
  align-items: flex-end;
  overflow: hidden;
  border-radius: 12px;
  background: linear-gradient(140deg, #07505a, #129c91);
}

.company-news-cover.has-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.company-news-card:hover .company-news-cover.has-image img {
  transform: scale(1.035);
}

.company-news-cover.has-image::before {
  display: none;
}

.company-news-cover.has-image::after {
  inset: auto 0 0;
  width: 100%;
  height: 48%;
  background: linear-gradient(180deg, transparent, rgba(3, 47, 52, 0.72));
}

.company-news-cover.has-image span {
  padding: 0 18px 15px;
  color: var(--white);
  font-family: "Microsoft YaHei", sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
}

.company-news-cover::before,
.company-news-cover::after {
  position: absolute;
  content: "";
}

.company-news-cover::before {
  inset: 18%;
  border: 1px solid rgba(196, 246, 236, 0.26);
  border-radius: 50%;
  box-shadow: 0 0 0 24px rgba(196, 246, 236, 0.05);
}

.company-news-cover::after {
  top: 0;
  right: 0;
  width: 52%;
  height: 100%;
  background: linear-gradient(115deg, transparent, rgba(198, 233, 74, 0.14));
}

.company-news-cover span {
  position: relative;
  z-index: 2;
  padding: 0 20px 17px;
  color: rgba(255, 255, 255, 0.48);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.company-news-cover i {
  position: absolute;
  z-index: 2;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #c6e94a;
}

.company-news-cover i:nth-of-type(1) {
  top: 22%;
  left: 26%;
}

.company-news-cover i:nth-of-type(2) {
  top: 48%;
  right: 22%;
  background: #6be8d8;
}

.company-news-cover i:nth-of-type(3) {
  right: 38%;
  bottom: 20%;
  background: rgba(255, 255, 255, 0.82);
}

.cover-quality {
  background:
    linear-gradient(180deg, transparent 92%, rgba(130, 234, 220, 0.18) 93%),
    linear-gradient(90deg, transparent 92%, rgba(130, 234, 220, 0.15) 93%),
    linear-gradient(140deg, #084755, #087975);
  background-size: 100% 28px, 28px 100%, auto;
}

.cover-quality::before {
  inset: 27% 31%;
  border-radius: 6px;
  box-shadow: 0 0 0 18px rgba(196, 246, 236, 0.05);
  transform: rotate(45deg);
}

.cover-team {
  background: linear-gradient(140deg, #0a5361, #12a191);
}

.cover-team::before {
  inset: 23% 25%;
  border-radius: 28% 72% 54% 46%;
  transform: rotate(-12deg);
}

.company-card-top {
  width: 100%;
  margin-bottom: 0;
  display: flex;
  grid-column: 2;
  grid-row: 1 / 3;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.company-card-top time strong {
  color: var(--brand-dark);
  font-family: Arial, sans-serif;
  font-size: 36px;
  font-weight: 500;
  line-height: 1;
}

.company-card-top time span {
  margin-top: 6px;
  color: #91a0a3;
  font-family: Arial, sans-serif;
  font-size: 11px;
}

.company-card-top > span {
  padding: 6px 9px;
  border-radius: 999px;
  color: var(--brand-dark);
  background: var(--brand-light);
  font-size: 11px;
}

.company-news-card h3 {
  grid-column: 3;
  grid-row: 1;
  font-size: 19px;
}

.company-news-card > p {
  margin: 14px 0 0;
  grid-column: 3;
  grid-row: 2;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.85;
}

.company-news-card .news-read-more {
  margin: 0 10px 0 18px;
  grid-column: 4;
  grid-row: 1 / 3;
}

.news-article-page {
  background: #f3f8f7;
}

.article-heading {
  margin: 0 0 42px;
  padding-bottom: 34px;
  border-bottom: 1px solid #d5e3e3;
}

.article-heading-meta {
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  color: #7d9093;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.article-heading-meta span {
  padding: 6px 11px;
  border-radius: 999px;
  color: var(--brand-dark);
  background: var(--brand-light);
}

.article-heading h1 {
  max-width: 940px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 680;
  line-height: 1.35;
  letter-spacing: -0.035em;
}

.article-heading-lead {
  max-width: 780px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
}

.article-main {
  padding-top: 62px;
  padding-bottom: 96px;
}

.article-shell {
  max-width: 940px;
}

.article-cover {
  margin: 0 0 42px;
  overflow: hidden;
  border-radius: 18px;
  background: #dce8e8;
  box-shadow: 0 24px 60px rgba(7, 65, 70, 0.12);
}

.article-cover img {
  width: 100%;
  max-height: 560px;
  display: block;
  object-fit: cover;
}

.article-cover figcaption {
  padding: 12px 18px;
  color: #7c8e91;
  background: var(--white);
  font-size: 11px;
  line-height: 1.6;
  text-align: center;
}

.article-body {
  padding: 10px 0;
  color: #38565b;
  font-size: 16px;
  line-height: 2;
}

.article-body h2 {
  margin: 42px 0 16px;
  color: var(--ink);
  font-size: clamp(23px, 2.4vw, 30px);
  line-height: 1.45;
}

.article-body p {
  margin: 0 0 22px;
}

.article-body ul {
  margin: 0 0 26px;
  padding-left: 1.35em;
}

.article-body li + li {
  margin-top: 10px;
}

.article-note {
  margin: 34px 0;
  padding: 22px 24px;
  border-left: 4px solid var(--brand);
  border-radius: 0 12px 12px 0;
  color: #45656a;
  background: #e7f5f2;
}

.article-back {
  margin-top: 48px;
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  border-top: 1px solid #d5e3e3;
}

.article-back a {
  min-height: 50px;
  padding: 7px 20px 7px 8px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1px solid #c7dfdc;
  border-radius: 999px;
  color: var(--brand-dark);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 9px 24px rgba(8, 80, 83, 0.08);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition:
    color 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.article-back a::before {
  width: 34px;
  height: 34px;
  display: grid;
  flex: 0 0 34px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--brand-deep), var(--brand));
  box-shadow: 0 6px 14px rgba(19, 167, 156, 0.22);
  font-size: 17px;
  font-weight: 500;
  content: "←";
  transition: transform 0.22s ease;
}

.article-back a:hover {
  border-color: #91cec7;
  color: #064f53;
  background: var(--white);
  box-shadow: 0 14px 30px rgba(8, 80, 83, 0.14);
  transform: translateY(-2px);
}

.article-back a:hover::before {
  transform: translateX(-3px);
}

.article-back a:focus-visible {
  outline: 3px solid rgba(19, 167, 156, 0.3);
  outline-offset: 3px;
}

.article-back a:active {
  box-shadow: 0 7px 18px rgba(8, 80, 83, 0.1);
  transform: translateY(0);
}

.news-pagination {
  margin-top: 52px;
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-top: 1px solid #d5e3e3;
}

.news-pagination-summary {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 20px;
  color: #7a8d91;
  font-size: 12px;
}

.news-pagination-summary span + span {
  position: relative;
  padding-left: 20px;
}

.news-pagination-summary span + span::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 12px;
  background: #cedddd;
  content: "";
  transform: translateY(-50%);
}

.news-pagination-summary strong {
  color: var(--brand-dark);
  font-size: 14px;
}

.news-pagination-controls,
.news-page-numbers {
  display: flex;
  align-items: center;
  gap: 8px;
}

.news-pagination-controls button {
  min-width: 42px;
  height: 42px;
  padding: 0 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid #cfe0e0;
  border-radius: 9px;
  color: var(--brand-dark);
  background: var(--white);
  font-size: 12px;
  cursor: pointer;
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

.news-pagination-controls button:hover:not(:disabled),
.news-pagination-controls button:focus-visible {
  border-color: var(--brand);
  color: var(--white);
  background: var(--brand);
  transform: translateY(-2px);
}

.news-pagination-controls button.is-active {
  border-color: var(--brand);
  color: var(--white);
  background: linear-gradient(135deg, var(--brand-dark), var(--brand));
  box-shadow: 0 7px 18px rgba(19, 167, 156, 0.18);
}

.news-pagination-controls button:disabled {
  color: #aab8ba;
  background: #f1f5f5;
  cursor: not-allowed;
  opacity: 0.7;
}

.news-page-ellipsis {
  width: 26px;
  color: #8a9a9e;
  text-align: center;
}

@media (max-width: 1040px) {
  .industry-news-layout {
    display: block;
  }

  .industry-feed-card > a {
    grid-template-columns: minmax(260px, 36%) minmax(0, 1fr);
  }

  .industry-feed-copy {
    padding: 30px 32px;
  }

  .news-row-card {
    grid-template-columns: minmax(240px, 34%) minmax(0, 1fr);
  }

  .news-mini-visual {
    min-height: 150px;
  }

  .company-news-card {
    grid-template-columns: minmax(220px, 28%) 92px minmax(0, 1fr);
    grid-template-rows: auto auto auto;
  }

  .company-news-cover,
  .company-card-top {
    grid-row: 1 / 4;
  }

  .company-news-card .news-read-more {
    margin: 16px 0 0;
    grid-column: 3;
    grid-row: 3;
  }
}

@media (max-width: 780px) {
  .news-page-hero {
    min-height: 470px;
    background-position: 58% center;
  }

  .news-page-hero h1,
  .news-page-hero .news-hero-title {
    font-size: 46px;
  }

  .news-page-hero p:not(.eyebrow):not(.news-hero-title) {
    max-width: 80%;
    font-size: 16px;
  }

  .news-content {
    padding-top: 28px;
    padding-bottom: 86px;
  }

  .news-category-nav {
    top: calc(var(--header-height) + 10px);
    margin-bottom: 68px;
  }

  .news-section-heading {
    margin-bottom: 30px;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .industry-feed-card > a {
    min-height: 230px;
    grid-template-columns: minmax(240px, 38%) minmax(0, 1fr);
  }

  .industry-feed-cover {
    min-height: 230px;
  }

  .industry-feed-copy {
    padding: 26px 28px;
  }

  .news-feature-card {
    grid-template-columns: 1fr;
  }

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

  .news-row-card {
    grid-template-columns: 1fr;
  }

  .news-card-visual {
    height: 280px;
  }

  .news-brief-list article {
    grid-template-columns: 70px 90px minmax(0, 1fr) 30px;
    gap: 14px;
  }

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

  .company-news-card {
    grid-template-columns: minmax(190px, 34%) minmax(0, 1fr);
    grid-template-rows: auto auto auto auto;
  }

  .company-news-cover {
    min-height: 230px;
    grid-column: 1;
    grid-row: 1 / 5;
  }

  .company-card-top {
    grid-column: 2;
    grid-row: 1;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .company-news-card h3 {
    grid-column: 2;
    grid-row: 2;
  }

  .company-news-card > p {
    grid-column: 2;
    grid-row: 3;
  }

  .company-news-card .news-read-more {
    margin: 18px 0 0;
    grid-column: 2;
    grid-row: 4;
  }

  .news-pagination {
    align-items: flex-start;
    flex-direction: column;
  }

  .article-main {
    padding-top: 38px;
    padding-bottom: 76px;
  }
}

@media (max-width: 560px) {
  .news-page-hero {
    min-height: 440px;
    background:
      linear-gradient(90deg, rgba(23, 105, 111, 0.48) 0%, rgba(17, 101, 107, 0.34) 68%, rgba(33, 127, 130, 0.16) 100%),
      url("./assets/news-hero-banner-v1.webp") 62% center / cover no-repeat;
  }

  .news-page-hero p:not(.eyebrow):not(.news-hero-title) {
    max-width: 94%;
  }

  .news-category-nav button {
    min-height: 58px;
    padding: 10px 8px;
  }

  .news-category-nav span {
    font-size: 15px;
  }

  .news-category-nav small {
    display: none;
  }

  .news-section + .news-section {
    margin-top: 0;
    padding-top: 0;
  }

  .news-section-heading h2 {
    font-size: 34px;
  }

  .industry-news-feed {
    gap: 18px;
  }

  .industry-feed-card > a {
    grid-template-columns: 1fr;
  }

  .industry-feed-cover {
    min-height: 0;
    aspect-ratio: 3 / 2;
  }

  .industry-feed-copy {
    padding: 23px 22px 26px;
  }

  .industry-feed-copy h3 {
    font-size: 19px;
  }

  .industry-feed-copy > p:not(.news-meta) {
    margin-bottom: 18px;
    font-size: 13px;
  }

  .industry-news-list,
  .company-news-grid {
    grid-template-columns: 1fr;
  }

  .news-card-visual {
    height: 230px;
  }

  .news-feature-copy {
    padding: 26px 23px 30px;
  }

  .news-row-card {
    grid-template-columns: 38% minmax(0, 1fr);
  }

  .news-mini-visual {
    min-height: 200px;
  }

  .news-row-card > div:last-child {
    padding: 20px 17px;
  }

  .news-row-card .news-meta {
    display: block;
  }

  .news-row-card .news-meta span {
    margin-top: 6px;
    padding-left: 0;
    display: block;
  }

  .news-row-card .news-meta span::before {
    display: none;
  }

  .news-row-card h3 {
    font-size: 15px;
  }

  .news-brief-list article {
    padding: 20px 4px;
    grid-template-columns: 62px minmax(0, 1fr) 26px;
  }

  .news-list-tag {
    display: none;
  }

  .news-brief-list h3 {
    font-size: 15px;
  }

  .company-news-card {
    min-height: 0;
    padding: 16px;
    grid-template-columns: 1fr;
    grid-template-rows: 180px auto auto auto auto;
    row-gap: 16px;
  }

  .company-news-cover {
    min-height: 180px;
    grid-column: 1;
    grid-row: 1;
  }

  .company-card-top {
    grid-column: 1;
    grid-row: 2;
  }

  .company-news-card h3 {
    grid-column: 1;
    grid-row: 3;
  }

  .company-news-card > p {
    margin-top: 0;
    grid-column: 1;
    grid-row: 4;
  }

  .company-news-card .news-read-more {
    margin-top: 0;
    grid-column: 1;
    grid-row: 5;
  }

  .company-news-card:last-child {
    grid-column: auto;
  }

  .article-heading {
    margin-bottom: 28px;
    padding-bottom: 26px;
  }

  .article-heading h1 {
    font-size: 30px;
  }

  .article-heading-lead {
    font-size: 14px;
  }

  .article-cover {
    margin-bottom: 28px;
    border-radius: 13px;
  }

  .article-body {
    font-size: 15px;
    line-height: 1.9;
  }

  .article-back {
    align-items: flex-start;
    flex-direction: column;
  }

  .news-pagination {
    margin-top: 38px;
    padding-top: 22px;
    gap: 18px;
  }

  .news-pagination-summary {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
  }

  .news-pagination-summary span + span {
    padding-left: 10px;
  }

  .news-pagination-summary span + span::before {
    display: none;
  }

  .news-pagination-controls {
    width: 100%;
    justify-content: space-between;
  }

  .news-pagination-controls > button > span:not([aria-hidden="true"]) {
    display: none;
  }
}

@media (max-width: 1100px) {
  .qualification-hero {
    grid-template-columns: 1fr;
  }

  .qualification-feature-grid {
    grid-template-columns: 1fr;
  }

  .qualification-feature-card:not(.is-primary) {
    grid-template-columns: minmax(200px, 0.82fr) minmax(0, 1.18fr);
  }
}

@media (max-width: 760px) {
  .qualification-hero {
    padding: 34px 24px;
    border-radius: 20px;
  }

  .qualification-hero h3 {
    font-size: 36px;
  }

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

  .qualification-summary article {
    padding: 15px 10px;
  }

  .qualification-summary strong {
    font-size: 25px;
  }

  .qualification-section {
    margin-top: 54px;
  }

  .qualification-section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .qualification-section-heading > p {
    margin: 0;
  }

  .qualification-feature-card,
  .qualification-feature-card:not(.is-primary) {
    grid-template-columns: 1fr;
  }

  .qualification-feature-card figure {
    min-height: 250px;
  }

  .qualification-feature-card > div {
    padding: 24px;
  }

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

  .qualification-certificate-card figure {
    height: 250px;
  }

}

@media (max-width: 520px) {
  .qualification-hero {
    padding: 30px 20px;
  }

  .qualification-hero h3 {
    font-size: 31px;
  }

  .qualification-summary {
    grid-template-columns: 1fr;
  }

  .qualification-summary article {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
  }

  .qualification-summary span {
    margin-top: 0;
  }

  .qualification-certificate-grid {
    grid-template-columns: 1fr;
  }

  .qualification-certificate-card {
    display: grid;
    grid-template-columns: 128px minmax(0, 1fr);
  }

  .qualification-certificate-card figure {
    height: 190px;
    padding: 12px;
  }

  .qualification-certificate-card > div {
    min-height: 0;
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-top: 0;
    border-left: 1px solid rgba(15, 167, 160, 0.11);
  }

  .qualification-certificate-card h5 {
    font-size: 14px;
  }

  .qualification-legal-note {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
