/* 01-foundation.css */
:root {
  --bg-deep: #10324a;
  --bg-deeper: #1b4966;
  --bg-soft: #f4f8fb;
  --surface: #ffffff;
  --surface-soft: #f7fafb;
  --surface-dark: rgba(16, 50, 74, 0.62);
  --line: rgba(19, 37, 49, 0.1);
  --line-strong: rgba(255, 255, 255, 0.14);
  --text: #132531;
  --text-soft: #607484;
  --text-light: rgba(255, 255, 255, 0.88);
  --heading: #091824;
  --brand: #78d0b5;
  --brand-strong: #2da985;
  --brand-warm: #f0b15c;
  --shadow-lg: 0 30px 80px rgba(20, 51, 74, 0.14);
  --shadow-md: 0 20px 48px rgba(20, 51, 74, 0.08);
  --shadow-soft: 0 16px 34px rgba(20, 51, 74, 0.06);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family:
    "Source Han Sans SC",
    "PingFang SC",
    "Hiragino Sans GB",
    "Microsoft YaHei",
    sans-serif;
  background:
    radial-gradient(circle at top left, rgba(120, 208, 181, 0.14), transparent 24%),
    linear-gradient(180deg, #133a55 0%, #1c506e 18%, #f4f8fb 18%, #f4f8fb 100%);
}

body.page-inner {
  background:
    radial-gradient(circle at top left, rgba(120, 208, 181, 0.14), transparent 24%),
    linear-gradient(180deg, #133a55 0, #1c506e 470px, #f4f8fb 470px, #f4f8fb 100%);
}

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

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

section[id],
article[id] {
  scroll-margin-top: 116px;
}

p,
li {
  line-height: 1.8;
}

.page-shell {
  position: relative;
  overflow: hidden;
}

.page-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -5;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(19, 37, 49, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(19, 37, 49, 0.035) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(180deg, transparent 0, rgba(0, 0, 0, 0.45) 540px, rgba(0, 0, 0, 0.08));
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid transparent;
  background: rgba(7, 19, 30, 0.28);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(120, 208, 181, 0.42), transparent);
  opacity: 0;
  transition: opacity 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(7, 19, 30, 0.86);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 34px rgba(5, 12, 22, 0.22);
}

.site-header.is-scrolled::after {
  opacity: 1;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 24px;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand img {
  width: 62px;
  height: 62px;
  border-radius: 16px;
  padding: 8px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.96);
  box-shadow:
    0 18px 38px rgba(5, 12, 22, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: transform 180ms var(--ease-out), box-shadow 180ms ease;
}

.brand:hover img {
  transform: translateY(-1px);
  box-shadow:
    0 22px 44px rgba(5, 12, 22, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.brand__text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand__text strong {
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0.01em;
}

.brand__text span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
}

.lang-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    background 180ms ease,
    color 180ms ease;
}

.lang-switch a:hover,
.lang-switch a.is-current {
  color: #08131e;
  background: linear-gradient(135deg, #c4f1df, #78d0b5);
}

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

.site-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.96rem;
  transition: color 180ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand), rgba(240, 177, 92, 0.72));
  opacity: 0;
  transform: scaleX(0.58);
  transition: opacity 180ms ease, transform 180ms var(--ease-out);
}

.site-nav a.active,
.site-nav a:hover {
  color: var(--brand);
}

.site-nav a.active::after,
.site-nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

:focus-visible {
  outline: 3px solid rgba(120, 208, 181, 0.72);
  outline-offset: 4px;
}

::selection {
  color: #07131e;
  background: rgba(120, 208, 181, 0.55);
}
/* 02-hero.css */
.hero {
  position: relative;
  min-height: 700px;
  padding: 58px 0 76px;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: auto;
  pointer-events: none;
  z-index: -1;
}

.hero::before {
  top: 110px;
  right: 8%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(120, 208, 181, 0.22), rgba(120, 208, 181, 0));
  filter: blur(24px);
  animation: heroOrbFloat 8.5s ease-in-out infinite alternate;
}

.hero::after {
  left: 5%;
  bottom: 150px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(143, 189, 230, 0.18), rgba(143, 189, 230, 0));
  filter: blur(28px);
  animation: heroOrbFloat 10.5s ease-in-out infinite alternate-reverse;
}

.hero__media {
  position: absolute;
  inset: 0 0 auto;
  height: 760px;
  z-index: -2;
  overflow: hidden;
  background: #08141f var(--hero-poster) center / cover no-repeat;
}

.hero__media img,
.hero__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.08) saturate(0.9) contrast(1.01);
  transform: scale(1.04) translate3d(0, var(--hero-media-shift, 0px), 0);
  will-change: transform, opacity;
  transition: transform 220ms linear;
}

.hero__media video {
  pointer-events: none;
}

.js-enabled .hero__media video {
  opacity: 0;
  transition:
    opacity 360ms ease,
    transform 220ms linear;
}

.js-enabled .hero__media.is-video-ready video {
  opacity: 1;
}

.hero__media--poster-motion video,
.hero__media--poster-motion img {
  animation: heroPosterDrift 6.8s ease-in-out infinite alternate;
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(7, 19, 30, 0.82) 8%, rgba(7, 19, 30, 0.28) 56%, rgba(7, 19, 30, 0.76) 100%),
    linear-gradient(180deg, rgba(7, 19, 30, 0.02), rgba(7, 19, 30, 0.68));
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 34px;
  align-items: end;
  position: relative;
}

.hero__grid > div:first-child {
  animation: heroContentReveal 0.62s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.eyebrow {
  display: inline-flex;
  margin: 0 0 18px;
  color: var(--brand);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero h1,
.section-head h2,
.page-hero__content h1 {
  margin: 0;
  color: inherit;
  letter-spacing: -0.03em;
  line-height: 1.04;
}

.hero h1 {
  max-width: 12ch;
  font-size: clamp(2.6rem, 5.1vw, 4.8rem);
}

.hero__lead,
.page-hero__lead {
  max-width: 60ch;
  margin: 20px 0 0;
  color: var(--text-light);
  font-size: 1.06rem;
}

.hero__actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
  animation: heroActionsReveal 0.72s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.08s;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(5, 12, 22, 0.18);
}

.button--primary {
  color: #08131e;
  background: linear-gradient(135deg, #c4f1df, #78d0b5);
  box-shadow: 0 18px 42px rgba(120, 208, 181, 0.22);
}

.button--secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.16);
}

.button--dark {
  color: #fff;
  background: #17384c;
}

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.hero__chips li {
  padding: 11px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: heroChipReveal 0.52s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero__chips li:nth-child(1) {
  animation-delay: 0.26s;
}

.hero__chips li:nth-child(2) {
  animation-delay: 0.34s;
}

.hero__chips li:nth-child(3) {
  animation-delay: 0.42s;
}

.glass-card {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04)),
    rgba(8, 20, 32, 0.74);
  box-shadow: var(--shadow-lg);
}

.hero__panel {
  display: grid;
  gap: 16px;
  animation: heroPanelReveal 0.72s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.12s;
}

.hero-slider {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 30px;
  background: rgba(8, 20, 32, 0.48);
  box-shadow:
    0 34px 88px rgba(3, 10, 18, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transform: translate3d(0, var(--hero-panel-shift, 0px), 0);
  transition: transform 220ms linear;
  animation: heroPanelFloat 4.8s ease-in-out infinite;
}

.hero-slider::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.08), transparent 28%, transparent 72%, rgba(255, 255, 255, 0.08)),
    radial-gradient(circle at top right, rgba(120, 208, 181, 0.16), transparent 26%);
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero-slider::after {
  content: "";
  position: absolute;
  inset: -24% -36%;
  z-index: 1;
  background: linear-gradient(105deg, transparent 43%, rgba(255, 255, 255, 0.18) 50%, transparent 57%);
  transform: translate3d(-44%, 0, 0) rotate(8deg);
  animation: heroSweep 5.4s ease-in-out infinite;
  pointer-events: none;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 260ms ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 720ms var(--ease-out), filter 620ms ease;
}

.hero-slide.is-active img {
  transform: scale(1.025);
  filter: saturate(1.03) contrast(1.02);
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 20, 32, 0.08), rgba(8, 20, 32, 0.72));
}

.hero-slide__caption {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 24px;
  z-index: 2;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
  box-shadow: 0 20px 44px rgba(5, 12, 22, 0.22);
}

.hero-slide.is-active img {
  transform: scale(1);
  animation: heroSlideBreath 8.6s ease-in-out infinite alternate;
}

.hero-slide.is-active .hero-slide__caption {
  opacity: 1;
  transform: translateY(0);
  animation: heroCaptionFloat 5.6s ease-in-out infinite alternate;
}

.hero-slide__caption strong {
  display: block;
  color: #fff;
  font-size: 1.26rem;
}

.hero-slide__caption span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
}

.hero-slider__dots {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  display: flex;
  gap: 8px;
}

.hero-slider__dots button {
  width: 26px;
  height: 10px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
  transition: width 260ms ease, background 260ms ease, transform 260ms ease;
}

.hero-slider__dots button.is-active {
  background: linear-gradient(135deg, #c4f1df, #78d0b5);
  width: 42px;
  transform: translateY(-1px);
}

.hero__card {
  padding: 28px;
}

.hero__card h2 {
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  max-width: 12ch;
}

.hero__card p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.74);
}

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

.stat-card {
  padding: 22px 18px;
}

.stat-card strong {
  display: block;
  color: var(--brand);
  font-size: 2rem;
  line-height: 1;
}

.stat-card span {
  display: block;
  margin-top: 12px;
  color: #fff;
  font-weight: 700;
}

.stat-card small {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.64);
}

@keyframes heroPosterDrift {
  0% {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  100% {
    transform: scale(1.09) translate3d(-2%, 1.5%, 0);
  }
}

@keyframes heroContentReveal {
  0% {
    opacity: 0;
    transform: translate3d(-24px, 32px, 0);
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
  }
}

@keyframes heroActionsReveal {
  0% {
    opacity: 0;
    transform: translate3d(0, 24px, 0) scale(0.98);
    filter: blur(8px);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }
}

@keyframes heroChipReveal {
  0% {
    opacity: 0;
    transform: translate3d(0, 18px, 0) scale(0.96);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes heroPanelReveal {
  0% {
    opacity: 0;
    transform: translate3d(22px, 30px, 0) scale(0.97);
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }
}

@keyframes heroPanelFloat {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(0, -10px, 0);
  }
}

@keyframes heroSlideBreath {
  0% {
    transform: scale(1) translate3d(0, 0, 0);
    filter: saturate(1) brightness(1);
  }
  100% {
    transform: scale(1.04) translate3d(-1.2%, 0.6%, 0);
    filter: saturate(1.08) brightness(1.04);
  }
}

@keyframes heroCaptionFloat {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(0, -6px, 0);
  }
}
/* 03-components.css */
.section-shell {
  padding: 68px 0;
}

.section-shell--matrix {
  padding-top: 22px;
  padding-bottom: 20px;
}

.section-shell--matrix-next {
  padding-top: 24px;
}

.subnav-shell {
  position: relative;
  z-index: 4;
  margin-top: -26px;
  margin-bottom: 10px;
}

body:not(.page-en) .subnav-shell:not(.subnav-shell--page) {
  margin-top: -108px;
  margin-bottom: 12px;
}

body:not(.page-en) .subnav-shell:not(.subnav-shell--page) + .section-shell {
  padding-top: 56px;
}

body:not(.page-en) .hero__chips {
  margin-bottom: -14px;
}

body.page-en .subnav-shell:not(.subnav-shell--page) {
  margin-top: -84px;
  margin-bottom: 28px;
}

body.page-en .subnav-shell:not(.subnav-shell--page) + .section-shell {
  padding-top: 86px;
}

body.page-en .hero__chips {
  margin-bottom: 42px;
}

.subnav-shell--page {
  margin-top: -62px;
  margin-bottom: 34px;
}

.subnav-shell--page + .section-shell {
  padding-top: 56px;
}

.subnav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 12px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-md);
}

.subnav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  color: #46606f;
  font-size: 0.94rem;
  font-weight: 700;
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.subnav a:hover {
  color: #17384c;
  background: rgba(120, 208, 181, 0.12);
  transform: translateY(-1px);
}

.subnav a.is-current {
  color: #08131e;
  background: linear-gradient(135deg, #c4f1df, #78d0b5);
}

.section-shell--soft {
  background:
    radial-gradient(circle at right top, rgba(120, 208, 181, 0.1), transparent 24%),
    linear-gradient(180deg, #f6f9fa, #edf2f5);
}

.section-shell--dark {
  color: #fff;
  background:
    radial-gradient(circle at left center, rgba(120, 208, 181, 0.16), transparent 24%),
    linear-gradient(180deg, #0b1b27, #08131e);
}

.section-head {
  max-width: 760px;
  margin-bottom: 24px;
}

.section-head h2 {
  color: var(--heading);
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.section-shell--dark .section-head h2,
.section-shell--dark .section-head p {
  color: #fff;
}

.section-head p {
  margin: 16px 0 0;
  color: var(--text-soft);
}

.split-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 24px;
  align-items: end;
  max-width: none;
}

.info-grid,
.feature-grid,
.news-grid,
.value-grid,
.certificate-grid,
.contact-grid,
.product-grid,
.capability-grid,
.facility-grid,
.timeline,
.news-listing {
  display: grid;
  gap: 20px;
}

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

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

.feature-card,
.plain-card,
.news-card,
.facility-card,
.contact-card,
.value-card,
.cert-card {
  border-radius: 26px;
  background: var(--surface);
  box-shadow: var(--shadow-md);
}

.plain-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(19, 37, 49, 0.06);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 248, 251, 0.94));
}

.plain-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, rgba(120, 208, 181, 0.82), rgba(143, 189, 230, 0.58));
}

.feature-card {
  position: relative;
  padding: 26px;
  min-height: 268px;
  border: 1px solid rgba(19, 37, 49, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 250, 252, 0.96));
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, rgba(120, 208, 181, 0.85), rgba(143, 189, 230, 0.65));
}

.feature-card__media {
  margin-top: 16px;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(19, 37, 49, 0.08);
  background: rgba(237, 242, 245, 0.88);
  box-shadow: 0 16px 28px rgba(12, 28, 40, 0.08);
}

.feature-card__media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.feature-card__media + h3 {
  margin-top: 18px;
}

.feature-card__index {
  display: inline-flex;
  min-width: 44px;
  min-height: 30px;
  padding: 0 10px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(19, 37, 49, 0.06);
  color: #46606f;
  font-size: 0.76rem;
  font-weight: 800;
}

.feature-card__top,
.solution-card__top,
.capability-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.ui-icon-badge {
  display: inline-flex;
  width: 60px;
  height: 60px;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  color: #11384f;
  border: 1px solid rgba(120, 208, 181, 0.34);
  background: linear-gradient(135deg, rgba(202, 245, 227, 0.98), rgba(150, 209, 236, 0.94));
  box-shadow:
    0 18px 38px rgba(120, 208, 181, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.ui-icon-badge--soft {
  width: 48px;
  height: 48px;
  border-radius: 16px;
}

.ui-icon-badge img,
.capability-card__icon img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  filter: none;
}

.ui-card-kicker {
  color: #5f7788;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ui-card-kicker--dark {
  color: rgba(255, 255, 255, 0.68);
}

.feature-card h3,
.plain-card h3,
.news-card h3,
.facility-card h3,
.contact-card h3,
.value-card h3,
.cert-card h3 {
  margin: 18px 0 10px;
  color: var(--heading);
  font-size: 1.22rem;
}

.feature-card p,
.plain-card p,
.news-card p,
.facility-card p,
.contact-card p,
.value-card p,
.cert-card p {
  margin: 0;
  color: var(--text-soft);
}

.plain-card {
  display: flex;
  flex-direction: column;
  padding: 26px 26px 24px 30px;
}

.plain-card__media {
  margin: -26px -26px 18px -30px;
  overflow: hidden;
  border-bottom: 1px solid rgba(19, 37, 49, 0.08);
}

.plain-card__media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.plain-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
  padding-top: 18px;
}

.info-grid .plain-card {
  min-height: 170px;
}

.info-grid .plain-card h3 {
  min-height: 2.8em;
  line-height: 1.35;
}

.info-grid .plain-card p {
  min-height: 5.4em;
}

.material-note {
  display: none;
  margin: 24px 0 0;
  padding: 22px 24px;
  border: 1px dashed rgba(19, 37, 49, 0.18);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 32px rgba(9, 25, 37, 0.06);
}

.material-note h3 {
  margin: 0 0 10px;
  color: var(--heading);
  font-size: 1rem;
}

.material-note p {
  margin: 0;
  color: var(--text-soft);
}

.material-note ul {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.material-note li {
  position: relative;
  padding-left: 18px;
  color: var(--text-soft);
}

.material-note li::before {
  content: "";
  position: absolute;
  top: 0.78em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand-warm);
}

.section-shell--dark .material-note {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
}

.section-shell--dark .material-note h3,
.section-shell--dark .material-note p,
.section-shell--dark .material-note li {
  color: rgba(255, 255, 255, 0.82);
}

.material-note--compact {
  max-width: 620px;
  margin-top: 18px;
}

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

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

.solution-card {
  position: relative;
  height: 100%;
  padding: 26px 26px 24px;
  border-radius: 26px 26px 18px 26px;
  border: 1px solid rgba(19, 37, 49, 0.08);
  background: linear-gradient(180deg, #ffffff, #f8fbfc);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.solution-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #78d0b5, #8fbde6);
}

.solution-card:nth-child(1) .ui-icon-badge {
  background: linear-gradient(135deg, rgba(196, 241, 223, 0.96), rgba(120, 208, 181, 0.78));
}

.solution-card:nth-child(2) .ui-icon-badge {
  background: linear-gradient(135deg, rgba(222, 239, 255, 0.96), rgba(143, 189, 230, 0.82));
}

.solution-card:nth-child(3) .ui-icon-badge {
  background: linear-gradient(135deg, rgba(255, 241, 214, 0.96), rgba(240, 177, 92, 0.8));
}

.solution-card__media {
  margin-top: 16px;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(19, 37, 49, 0.08);
  box-shadow: 0 18px 34px rgba(12, 28, 40, 0.12);
}

.solution-card__media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.solution-card__media + h3 {
  margin-top: 18px;
}

.solution-card h3 {
  margin: 16px 0 10px;
  color: var(--heading);
  font-size: 1.22rem;
}

.solution-card p {
  margin: 0;
  color: var(--text-soft);
}

.solution-card ul {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.solution-card li {
  position: relative;
  padding-left: 18px;
  color: var(--text-soft);
}

.solution-card li::before {
  content: "";
  position: absolute;
  top: 0.78em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand-strong);
}

.matrix-card {
  padding: 28px 28px 24px;
  border-radius: 30px;
  border: 1px solid rgba(19, 37, 49, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 247, 250, 0.96));
  box-shadow: 0 24px 56px rgba(9, 25, 37, 0.12);
  overflow: hidden;
}

.matrix-card.is-paginating .matrix-pager__button {
  pointer-events: none;
}

.matrix-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, rgba(120, 208, 181, 0.82), rgba(143, 189, 230, 0.7));
}

#core-products > .container {
  width: min(calc(100% - 56px), 1360px);
}

.matrix-card__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
  gap: 20px;
  align-items: end;
  margin-bottom: 22px;
}

.matrix-card__head h3 {
  margin: 0;
  color: var(--heading);
  font-size: 1.36rem;
}

.matrix-card__head .eyebrow {
  margin: 0 0 10px;
}

.matrix-card__head p {
  margin: 0;
  color: var(--text-soft);
}

.table-scroll {
  overflow-x: auto;
  border-radius: 18px;
  border: 1px solid rgba(19, 37, 49, 0.08);
  background: #fff;
  transform-origin: center top;
  transition: min-height 220ms ease, box-shadow 220ms ease;
}

.matrix-card.is-paginating .table-scroll {
  box-shadow: inset 0 0 0 1px rgba(120, 208, 181, 0.16);
}

.product-matrix {
  width: 100%;
  min-width: 1180px;
  border-collapse: collapse;
  background: #fff;
  table-layout: fixed;
}

.product-matrix thead th {
  padding: 18px 18px;
  color: #17384c;
  background: linear-gradient(180deg, #edf5f2, #f8fbfc);
  font-size: 0.9rem;
  font-weight: 800;
  text-align: left;
  letter-spacing: 0.03em;
  border-bottom: 1px solid rgba(19, 37, 49, 0.08);
}

.product-matrix tbody td {
  padding: 18px 18px;
  color: var(--text-soft);
  font-size: 0.94rem;
  vertical-align: top;
  border-bottom: 1px solid rgba(19, 37, 49, 0.08);
  word-break: break-word;
  will-change: transform, opacity;
}

.product-matrix tbody tr:last-child td {
  border-bottom: none;
}

.product-matrix tbody tr {
  transition: background 160ms ease;
}

.product-matrix tbody tr:hover {
  background: rgba(120, 208, 181, 0.055);
}

/* visual polish layer */
.section-shell {
  position: relative;
}

.subnav {
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.9);
  box-shadow:
    0 22px 52px rgba(9, 25, 37, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.section-head h2 {
  letter-spacing: -0.02em;
}

.feature-card,
.plain-card,
.news-card,
.facility-card,
.contact-card,
.value-card,
.cert-card,
.solution-card,
.product-card,
.matrix-card,
.product-detail-card {
  transition:
    transform 220ms var(--ease-out),
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.feature-card:hover,
.plain-card:hover,
.news-card:hover,
.facility-card:hover,
.contact-card:hover,
.value-card:hover,
.cert-card:hover,
.solution-card:hover,
.product-card:hover,
.matrix-card:hover,
.product-detail-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 66px rgba(9, 25, 37, 0.14);
}

.feature-card::after,
.solution-card::after,
.plain-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.24), transparent 34%);
  opacity: 0;
  transition: opacity 220ms ease;
}

.feature-card:hover::after,
.solution-card:hover::after,
.plain-card:hover::after {
  opacity: 1;
}

.feature-card__media img,
.plain-card__media img,
.solution-card__media img,
.product-card img,
.mosaic__item img,
.facility-card img,
.news-card img {
  transition: transform 420ms var(--ease-out), filter 420ms ease;
}

.feature-card:hover .feature-card__media img,
.plain-card:hover .plain-card__media img,
.solution-card:hover .solution-card__media img,
.product-card:hover img,
.mosaic__item:hover img,
.facility-card:hover img,
.news-card:hover img {
  transform: scale(1.045);
  filter: saturate(1.04) contrast(1.02);
}

.product-matrix tbody tr[hidden] {
  display: none;
}

.product-matrix tbody td:first-child {
  color: var(--heading);
  font-weight: 700;
}

.product-matrix__link {
  color: var(--heading);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 180ms ease, border-color 180ms ease;
}

.product-matrix__link:hover,
.product-matrix__link:focus-visible {
  color: #1c6db7;
  border-color: rgba(28, 109, 183, 0.34);
}

.matrix-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
}

.matrix-card__summary {
  color: #6a8191;
  font-size: 0.92rem;
}

.matrix-pager {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.matrix-pager__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  min-width: 42px;
  padding: 0 16px;
  border: 1px solid rgba(19, 37, 49, 0.12);
  border-radius: 999px;
  background: #fff;
  color: #17384c;
  font-weight: 700;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.matrix-pager__button:hover:not(:disabled),
.matrix-pager__button.is-current {
  background: linear-gradient(135deg, #c4f1df, #78d0b5);
  border-color: transparent;
  color: #08131e;
}

.matrix-pager__button:disabled {
  opacity: 0.42;
  cursor: not-allowed;
}

.product-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow-md);
}

.product-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.product-showcase-shell {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.product-index-box {
  position: sticky;
  top: 116px;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(19, 37, 49, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 247, 250, 0.96));
  box-shadow: var(--shadow-md);
}

.product-index-box__title {
  margin: 0;
  color: var(--heading);
  font-size: 1.12rem;
}

.product-index-box__text {
  margin: 10px 0 0;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.product-index-box__nav {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.product-index-box__search {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.product-index-box__search-label {
  color: var(--heading);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-index-box__search input {
  width: 100%;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(19, 37, 49, 0.1);
  border-radius: 14px;
  background: #fff;
  color: #17384c;
  font-size: 0.92rem;
  outline: none;
}

.product-index-box__search input:focus {
  border-color: rgba(120, 208, 181, 0.6);
  box-shadow: 0 0 0 4px rgba(120, 208, 181, 0.14);
}

.product-index-box__button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(19, 37, 49, 0.08);
  border-radius: 18px;
  background: #fff;
  color: #17384c;
  font-size: 0.96rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.product-index-box__button:hover {
  transform: translateY(-1px);
  border-color: rgba(120, 208, 181, 0.4);
}

.product-index-box__button.is-active {
  color: #08131e;
  border-color: transparent;
  background: linear-gradient(135deg, #c4f1df, #78d0b5);
}

.product-index-box__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(19, 37, 49, 0.08);
  font-size: 0.82rem;
  font-weight: 800;
}

.product-index-box__button.is-active .product-index-box__count {
  background: rgba(8, 19, 30, 0.12);
}

.product-showcase-grid {
  display: grid;
  grid-template-columns: repeat(var(--product-showcase-columns, 4), minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.product-showcase-area {
  position: relative;
  min-width: 0;
}

.product-showcase-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: 100%;
  border-radius: 20px;
  border: 1px solid rgba(19, 37, 49, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(244, 248, 251, 0.96));
  box-shadow: var(--shadow-md);
  color: inherit;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.product-showcase-card[hidden] {
  display: none;
}

.product-showcase-card--link:hover,
.product-showcase-card--link:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(43, 111, 214, 0.22);
  box-shadow: 0 24px 40px rgba(18, 42, 62, 0.12);
}

.product-showcase-card__media {
  padding: 14px;
  background: linear-gradient(180deg, rgba(236, 244, 247, 0.8), rgba(246, 250, 252, 0.95));
}

.product-showcase-card__media img {
  width: 100%;
  aspect-ratio: 0.92 / 1;
  object-fit: contain;
}

.product-showcase-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 14px 16px 16px;
}

.product-showcase-card__tag {
  display: inline-flex;
  margin: 0 0 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(120, 208, 181, 0.12);
  color: #3f687c;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.product-showcase-card h3 {
  margin: 0;
  color: var(--heading);
  font-size: 1.02rem;
}

.product-showcase-card p {
  margin: 8px 0 0;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.product-showcase-empty {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  padding: 24px;
  border-radius: 20px;
  border: 1px dashed rgba(19, 37, 49, 0.16);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  color: var(--text-soft);
  font-weight: 700;
  text-align: center;
  z-index: 2;
}

.product-showcase-empty[hidden] {
  display: none !important;
}

.product-card__body {
  padding: 22px;
}

.product-tag,
.news-tag {
  margin: 0 0 10px;
  color: #6c8e9f;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-card ul,
.contact-list,
.stats-list,
.timeline-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.product-card li,
.contact-list li,
.stats-list li,
.timeline-list li {
  position: relative;
  padding-left: 18px;
}

.product-card li::before,
.contact-list li::before,
.stats-list li::before,
.timeline-list li::before {
  content: "";
  position: absolute;
  top: 0.78em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand-strong);
}

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

#quality-compliance .capability-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.capability-card {
  position: relative;
  padding: 26px 24px 24px;
  border-radius: 24px 24px 14px 24px;
  background: linear-gradient(180deg, rgba(22, 40, 56, 0.94), rgba(11, 25, 38, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 48px rgba(2, 10, 18, 0.24);
}

.capability-card__icon {
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  color: #b8f4df;
  background: linear-gradient(135deg, rgba(196, 241, 223, 0.2), rgba(143, 189, 230, 0.22));
  border: 1px solid rgba(120, 208, 181, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.capability-card__icon img {
  filter: brightness(0) saturate(100%) invert(79%) sepia(19%) saturate(484%) hue-rotate(109deg) brightness(99%) contrast(94%);
}

.capability-card h3 {
  margin: 16px 0 10px;
  color: #fff;
}

.capability-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.capability-card:nth-child(2) .capability-card__icon {
  color: #ffd28a;
  background: linear-gradient(135deg, rgba(255, 241, 214, 0.16), rgba(240, 177, 92, 0.18));
}

.capability-card:nth-child(3) .capability-card__icon {
  color: #98e4c5;
  background: linear-gradient(135deg, rgba(196, 241, 223, 0.14), rgba(120, 208, 181, 0.22));
}

.capability-card:nth-child(4) .capability-card__icon {
  color: #abd7ff;
  background: linear-gradient(135deg, rgba(222, 239, 255, 0.16), rgba(143, 189, 230, 0.18));
}

.gallery-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 36px;
  align-items: center;
}

#facility-highlights .gallery-grid {
  grid-template-columns: minmax(0, 0.68fr) minmax(0, 1.32fr);
  gap: 34px;
  align-items: stretch;
}

#facility-highlights > .container {
  width: min(calc(100% - 56px), 1360px);
}

.mosaic {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 14px;
}

#facility-highlights .mosaic {
  grid-template-columns: 1.16fr 0.84fr;
  grid-template-rows: 324px 324px;
  column-gap: 10px;
  row-gap: 22px;
}

.mosaic__item {
  overflow: hidden;
  border-radius: 26px;
  background: #dbe6eb;
  box-shadow: var(--shadow-md);
}

#facility-highlights .mosaic__item {
  height: 100%;
  border-radius: 30px;
}

.mosaic__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mosaic__item--tall {
  grid-column: 2 / 3;
  grid-row: 1 / 3;
}

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

.partner-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 104px;
  padding: 14px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
  text-align: center;
}

.partner-chip img {
  display: block;
  width: 100%;
  max-width: 148px;
  max-height: 72px;
  object-fit: contain;
  filter: grayscale(0.06) contrast(1.02);
}

.trust-stage {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 26px;
  align-items: stretch;
  padding: 30px;
  border-radius: 34px;
  border: 1px solid rgba(19, 37, 49, 0.06);
  background:
    radial-gradient(circle at top left, rgba(120, 208, 181, 0.14), transparent 28%),
    radial-gradient(circle at top right, rgba(143, 189, 230, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 247, 250, 0.95));
  box-shadow: var(--shadow-lg);
}

.trust-stage__brand,
.trust-stage__logos {
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(19, 37, 49, 0.06);
  backdrop-filter: blur(12px);
}

.trust-stage__brand {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 28px;
}

.trust-stage__eyebrow,
.trust-stage__label {
  margin: 0;
  color: #50748a;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-stage__brand h3 {
  margin: 0;
  color: var(--heading);
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1.08;
}

.trust-stage__text {
  margin: 0;
  max-width: 28ch;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.7;
}

.trust-stage__signature {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid rgba(19, 37, 49, 0.08);
}

.trust-stage__signature-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 132px;
  min-height: 88px;
  padding: 12px 16px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 248, 251, 0.94));
  border: 1px solid rgba(19, 37, 49, 0.06);
}

.trust-stage__signature-logo img {
  display: block;
  width: 100%;
  max-width: 110px;
  height: auto;
  object-fit: contain;
}

.trust-stage__signature-meta {
  display: grid;
  gap: 6px;
}

.trust-stage__signature-meta strong {
  color: var(--heading);
  font-size: 0.98rem;
  line-height: 1.45;
}

.trust-stage__signature-meta span {
  color: var(--text-soft);
  line-height: 1.5;
}

.trust-stage__logos {
  padding: 28px;
}

.partner-panel__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.partner-panel__head > div {
  max-width: 540px;
}

.partner-panel__head p:last-child,
.partner-panel__head > div > p:last-child {
  margin-bottom: 0;
}

.partner-panel__count {
  margin: 0;
  padding: 9px 15px;
  border-radius: 999px;
  background: rgba(120, 208, 181, 0.12);
  color: #1d4c43;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
}

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

.partner-chip--trust {
  min-height: 118px;
  padding: 16px 20px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(243,248,251,0.94));
  border: 1px solid rgba(19, 37, 49, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.74),
    0 8px 22px rgba(13, 31, 43, 0.04);
}

.partner-chip--trust img {
  max-width: 160px;
  max-height: 80px;
}

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

.news-card {
  padding: 26px;
}

.news-card--featured {
  background: linear-gradient(145deg, #14364c, #1f5877);
}

.news-card--featured h3,
.news-card--featured p,
.news-card--featured .news-tag {
  color: #fff;
}
/* 04-pages.css */
.page-hero {
  position: relative;
  display: flex;
  align-items: end;
  min-height: 332px;
  height: 332px;
  padding: 102px 0 74px;
  color: #fff;
}

.page-hero__backdrop {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.page-hero__backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82);
}

.page-hero__backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(7, 19, 30, 0.88) 12%, rgba(7, 19, 30, 0.54) 58%, rgba(7, 19, 30, 0.9) 100%),
    linear-gradient(180deg, rgba(7, 19, 30, 0.12), rgba(7, 19, 30, 0.86));
}

.page-hero__content h1 {
  font-size: clamp(2.8rem, 5vw, 4.8rem);
}

.page-hero__content {
  width: 100%;
  padding-left: 28px;
}

body.page-inner .page-hero__content,
body.page-en.page-inner .page-hero__content {
  padding-left: 132px;
}

body:not(.page-en) .hero {
  height: 736px;
  min-height: 736px;
  padding: 58px 0 156px;
}

body:not(.page-en) .hero__media {
  inset: 0;
  height: auto;
}

body:not(.page-en) .hero__grid {
  min-height: 100%;
}

body:not(.page-en) .hero-slider {
  min-height: 460px;
}

body:not(.page-en) .hero-slide__caption {
  bottom: 56px;
}

body.page-en .hero h1 {
  max-width: 18ch;
  font-size: clamp(2rem, 3.7vw, 3.4rem);
}

body.page-en .hero {
  height: 736px;
  min-height: 736px;
  padding: 58px 0 156px;
}

body.page-en .hero__media {
  inset: 0;
  height: auto;
}

body.page-en .hero__grid {
  min-height: 100%;
}

body.page-en .hero-slider {
  min-height: 460px;
}

body.page-en .hero-slide__caption {
  bottom: 56px;
}

body.page-en .hero__card h2 {
  max-width: 16ch;
  font-size: clamp(1.3rem, 1.7vw, 1.75rem);
}

body.page-en .page-hero__content h1 {
  font-size: clamp(2.4rem, 4.2vw, 4rem);
}

body.page-en.page-inner .page-hero {
  min-height: 352px;
  height: 352px;
  padding: 108px 0 84px;
}

body.page-en.page-inner .page-hero__lead {
  max-width: 52ch;
  font-size: 1rem;
}

#profile > .section-head {
  max-width: none;
  margin-bottom: 24px;
}

.detail-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  padding: 0 14px;
  min-height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(19, 37, 49, 0.08);
  background: rgba(255, 255, 255, 0.72);
  color: #17384c;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(17, 37, 52, 0.06);
}

.detail-back-link:hover,
.detail-back-link:focus-visible {
  color: #0d2231;
  border-color: rgba(45, 169, 133, 0.22);
  background: rgba(255, 255, 255, 0.9);
}

.detail-back-link::before {
  content: "\2190";
  font-size: 1rem;
  color: #2da985;
}

.product-detail-section {
  position: relative;
  overflow: hidden;
}

.product-detail-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at left top, rgba(120, 208, 181, 0.12), transparent 28%),
    radial-gradient(circle at right center, rgba(143, 189, 230, 0.12), transparent 26%);
  pointer-events: none;
}

.product-detail-hero-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 440px);
  gap: 56px;
  align-items: center;
  padding: 52px 56px;
  border: 1px solid rgba(19, 37, 49, 0.08);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(246, 250, 252, 0.96));
  box-shadow: var(--shadow-md);
}

.product-detail-hero__copy {
  display: flex;
  flex-direction: column;
}

.product-detail-category-pill {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  min-height: 34px;
  padding: 0 14px;
  margin-top: 14px;
  border-radius: 999px;
  background: rgba(120, 208, 181, 0.14);
  color: #2d6a61;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.product-detail-hero__copy h1 {
  margin: 18px 0 0;
  color: var(--heading);
  font-size: clamp(2.6rem, 4vw, 4rem);
  line-height: 1.08;
}

.product-detail-hero__lead {
  max-width: 48ch;
  margin: 24px 0 0;
  color: var(--text-soft);
  font-size: 1.1rem;
  line-height: 1.9;
}

.product-detail-hero-facts {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.product-detail-hero-fact {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 16px;
  align-items: baseline;
  padding: 0 0 14px;
  border-bottom: 1px solid rgba(19, 37, 49, 0.08);
}

.product-detail-hero-fact:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.product-detail-hero-fact span {
  display: block;
  color: #6a8191;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-detail-hero-fact strong {
  display: block;
  color: var(--heading);
  font-size: 1.05rem;
  line-height: 1.7;
}

.product-detail-chip-row {
  display: none;
}

.product-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.product-detail-visual {
  position: relative;
  margin: 0;
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 10px 0;
  background: transparent;
  box-shadow: none;
}

.product-detail-visual__label {
  position: absolute;
  left: 24px;
  top: 0;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #5a7485;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-detail-visual img {
  width: 100%;
  max-width: 340px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  filter: drop-shadow(0 18px 30px rgba(24, 59, 88, 0.1));
}

.product-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.7fr);
  gap: 34px;
  margin-top: 40px;
  align-items: start;
}

.product-detail-main {
  display: grid;
  gap: 28px;
}

.product-detail-side {
  position: sticky;
  top: 124px;
}

.product-detail-card {
  padding: 40px 40px 36px;
  border-radius: 30px;
  border: 1px solid rgba(19, 37, 49, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(245, 249, 252, 0.95));
  box-shadow: var(--shadow-md);
}

.product-detail-card p + p {
  margin-top: 10px;
}

.product-detail-card > p {
  margin: 20px 0 0;
  color: var(--text-soft);
  line-height: 1.8;
}

.product-detail-list {
  display: grid;
  gap: 14px;
  margin: 18px 0 0;
}

.product-detail-list--grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.product-detail-spec-item {
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(19, 37, 49, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(239, 245, 249, 0.88));
}

.product-detail-list dt {
  color: #6a8191;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-detail-list dd {
  margin: 6px 0 0;
  color: var(--heading);
  font-weight: 700;
}

.product-detail-note-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.product-detail-note-list p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.8;
}

.product-detail-delivery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.product-detail-delivery-item {
  padding: 18px 20px;
  border-radius: 22px;
  border: 1px solid rgba(19, 37, 49, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(240, 247, 250, 0.88));
}

.product-detail-delivery-item span {
  display: block;
  color: #6a8191;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-detail-delivery-item strong {
  display: block;
  margin-top: 8px;
  color: var(--heading);
  line-height: 1.7;
}

.product-detail-contact-card {
  padding: 36px 32px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(14, 30, 45, 0.99), rgba(8, 20, 32, 0.99));
  box-shadow: 0 28px 50px rgba(8, 20, 32, 0.16);
}

.product-detail-contact-card h3 {
  margin: 14px 0 0;
  color: #ffffff;
  font-size: 1.5rem;
}

.product-detail-contact-card .ui-card-kicker--dark {
  color: #9de3ca;
}

.product-detail-contact-card__phone {
  display: grid;
  gap: 8px;
  margin: 20px 0 0;
}

.product-detail-contact-card__phone span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-detail-contact-card__phone strong {
  color: #9de3ca;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  line-height: 1.1;
}

.product-detail-contact-list {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.product-detail-contact-list__row {
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.product-detail-contact-list__row:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.product-detail-contact-list dt {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-detail-contact-list dd {
  margin: 6px 0 0;
  display: block;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
}

.product-detail-contact-actions {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.product-detail-contact-actions .button {
  justify-content: center;
}

body.page-en .hero__lead {
  max-width: 54ch;
  font-size: 0.92rem;
}

body.page-en .hero__chips li {
  font-size: 0.82rem;
  padding: 9px 13px;
}

body.page-en .hero__card p,
body.page-en .stat-card small,
body.page-en .stat-card span {
  font-size: 0.92rem;
}

.gallery-grid .stats-list li {
  background: #ffffff;
  border: 1px solid rgba(19, 37, 49, 0.08);
  color: var(--text-soft);
}

#facility-highlights .stats-list {
  margin-top: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

#facility-highlights .stats-list li {
  min-height: 188px;
  padding: 26px 24px 26px 28px;
  border-radius: 24px;
}

#facility-highlights .stats-list li::before {
  top: 30px;
  left: 18px;
}

#facility-highlights .stats-list li:last-child {
  grid-column: 1 / -1;
}

.gallery-grid .stats-list strong {
  color: var(--heading);
}

#facility-highlights .stats-list strong {
  margin-bottom: 6px;
  font-size: 1.42rem;
}

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

.stats-list li {
  padding: 18px 18px 18px 34px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.82);
}

.stats-list strong {
  display: block;
  color: #fff;
  font-size: 1.25rem;
}

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

.profile-highlights-grid {
  margin-top: 12px;
  gap: 24px;
}

.company-stage {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.95fr);
  gap: 28px;
  align-items: center;
  margin-bottom: 18px;
}

.company-stage__copy {
  display: grid;
  gap: 16px;
}

.company-stage__copy p {
  margin: 0;
  color: var(--text-soft);
}

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

.company-stage__chips span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(120, 208, 181, 0.14);
  color: #245e71;
  font-size: 0.84rem;
  font-weight: 700;
}

.company-stage__visual {
  margin: 0;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(19, 37, 49, 0.08);
  box-shadow: var(--shadow-md);
}

.company-stage__visual img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.profile-highlights-grid .value-card {
  min-height: 258px;
  padding: 38px 40px;
}

.value-card {
  position: relative;
  padding: 26px 24px 24px;
  border: 1px solid rgba(19, 37, 49, 0.06);
  border-radius: 26px 26px 18px 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 252, 0.94));
  overflow: hidden;
}

.value-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, rgba(120, 208, 181, 0.75), rgba(143, 189, 230, 0.55));
}

.value-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

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

.timeline-item {
  position: relative;
  padding: 26px 26px 24px;
  border-radius: 24px 24px 14px 24px;
  border: 1px solid rgba(19, 37, 49, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 248, 251, 0.95));
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, rgba(120, 208, 181, 0.82), rgba(143, 189, 230, 0.58));
}

.timeline-item strong {
  display: block;
  color: var(--brand-strong);
  font-size: 0.84rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.timeline-item h3 {
  margin: 10px 0;
  font-size: 1.18rem;
}

.timeline-item p {
  margin: 0;
  color: var(--text-soft);
}

.timeline--milestones {
  position: relative;
  display: block;
  grid-template-columns: 1fr;
  gap: 0;
  width: 100%;
  padding: 10px 0 6px;
}

.timeline-snake {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.timeline-snake__path {
  fill: none;
  stroke: rgba(33, 201, 162, 0.62);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 8px 18px rgba(33, 201, 162, 0.14));
}

.timeline-grid--milestones {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(360px, 420px));
  gap: 18px 74px;
  width: 100%;
  justify-content: center;
  align-items: start;
}

.timeline-item--milestone {
  width: 100%;
  min-height: 154px;
  padding: 20px 22px 18px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(242, 247, 250, 0.96));
  box-shadow: 0 14px 28px rgba(12, 29, 43, 0.06);
}

.timeline-item--milestone::before {
  width: 4px;
  background: linear-gradient(180deg, rgba(120, 208, 181, 0.95), rgba(143, 189, 230, 0.6));
}

.timeline-item--milestone::after {
  content: "";
  position: absolute;
  top: 28px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #21c9a2;
  box-shadow:
    0 0 0 6px rgba(33, 201, 162, 0.12),
    0 8px 18px rgba(33, 201, 162, 0.16);
}

.timeline-item--milestone.timeline-item--left::after {
  right: -28px;
}

.timeline-item--milestone.timeline-item--right::after {
  left: -28px;
}

.timeline-item--milestone.timeline-item--left {
  justify-self: end;
  margin-right: 18px;
}

.timeline-item--milestone.timeline-item--right {
  justify-self: start;
  margin-left: 18px;
  margin-top: 26px;
}

.timeline-item--milestone strong {
  display: block;
  color: #21a585;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
}

.timeline-item--milestone h3 {
  margin: 10px 0 8px;
  min-height: 2.8em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 1.14rem;
  line-height: 1.4;
}

.timeline-item--milestone p {
  min-height: 3.44em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #5d7588;
  font-size: 0.95rem;
  line-height: 1.72;
}

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

.photo-gallery-grid {
  margin-top: 24px;
}

.cert-card {
  overflow: hidden;
  border: 1px solid rgba(19, 37, 49, 0.08);
  border-radius: 28px 28px 16px 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 251, 0.96));
}

.cert-card--interactive {
  position: relative;
  cursor: zoom-in;
}

.cert-card--interactive img {
  user-select: none;
  -webkit-user-drag: none;
}

.cert-card--interactive::after {
  content: "查看大图";
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(7, 19, 30, 0.72);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  opacity: 0;
  transition: opacity 180ms ease;
}

body.page-en .cert-card--interactive::after {
  content: "View";
}

.cert-card--interactive:hover::after,
.cert-card--interactive:focus-visible::after {
  opacity: 1;
}

.cert-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: #edf2f5;
}

.cert-card__body {
  padding: 18px 18px 22px;
}

.cert-lightbox[hidden] {
  display: none;
}

.cert-lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
}

.cert-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 14, 23, 0.84);
  backdrop-filter: blur(8px);
}

.cert-lightbox__dialog {
  position: absolute;
  inset: 50% auto auto 50%;
  width: min(calc(100% - 48px), 1100px);
  max-height: calc(100vh - 64px);
  transform: translate(-50%, -50%);
  padding: 18px 18px 16px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

.cert-lightbox__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  background: #10283b;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.cert-lightbox__image-wrap {
  position: relative;
  margin-top: 14px;
  padding: 18px;
  border-radius: 22px;
  background: #edf2f5;
}

.cert-lightbox__image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
}

.cert-lightbox__image {
  display: block;
  width: 100%;
  max-height: calc(100vh - 210px);
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
}

.cert-lightbox__hint {
  margin: 12px 0 0;
  color: #6a8191;
  font-size: 0.88rem;
}

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

.facility-card {
  overflow: hidden;
  border: 1px solid rgba(19, 37, 49, 0.08);
  border-radius: 28px 28px 16px 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 251, 0.96));
}

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

.facility-card__body {
  padding: 18px 18px 22px;
}

.facility-card--ops {
  background: linear-gradient(180deg, rgba(20, 40, 56, 0.98), rgba(12, 26, 39, 0.98));
  border-color: rgba(255, 255, 255, 0.08);
}

.facility-card--ops .facility-card__body {
  background: linear-gradient(180deg, rgba(17, 33, 48, 0.98), rgba(11, 25, 38, 0.98));
}

.facility-card--ops h3 {
  color: #ffffff;
}

.facility-card--ops p {
  color: rgba(255, 255, 255, 0.72);
}

.solution-card--teal::before {
  background: linear-gradient(90deg, rgba(120, 208, 181, 0.86), rgba(98, 193, 161, 0.72));
}

.solution-card--blue::before {
  background: linear-gradient(90deg, rgba(143, 189, 230, 0.82), rgba(103, 156, 214, 0.72));
}

.solution-card--gold::before {
  background: linear-gradient(90deg, rgba(240, 177, 92, 0.84), rgba(244, 205, 128, 0.7));
}

.solution-card--slate::before {
  background: linear-gradient(90deg, rgba(95, 119, 136, 0.82), rgba(132, 151, 165, 0.62));
}

.solution-card--green::before {
  background: linear-gradient(90deg, rgba(91, 182, 145, 0.86), rgba(120, 208, 181, 0.7));
}

.solution-card--teal .ui-icon-badge {
  background: linear-gradient(135deg, rgba(202, 245, 227, 0.98), rgba(120, 208, 181, 0.9));
}

.solution-card--blue .ui-icon-badge {
  background: linear-gradient(135deg, rgba(222, 239, 255, 0.98), rgba(143, 189, 230, 0.92));
}

.solution-card--gold .ui-icon-badge {
  color: #5a3714;
  background: linear-gradient(135deg, rgba(255, 241, 214, 0.98), rgba(240, 177, 92, 0.92));
}

.solution-card--slate .ui-icon-badge {
  color: #2b4255;
  background: linear-gradient(135deg, rgba(231, 238, 244, 0.98), rgba(132, 151, 165, 0.88));
}

.solution-card--green .ui-icon-badge {
  background: linear-gradient(135deg, rgba(208, 247, 233, 0.98), rgba(91, 182, 145, 0.9));
}

.feature-card--industry {
  border-radius: 30px 30px 18px 30px;
}

.feature-card--industry:nth-child(2)::before {
  background: linear-gradient(90deg, rgba(143, 189, 230, 0.85), rgba(120, 208, 181, 0.55));
}

.feature-card--industry:nth-child(3)::before {
  background: linear-gradient(90deg, rgba(240, 177, 92, 0.82), rgba(255, 214, 147, 0.56));
}

.feature-card--industry:nth-child(4)::before {
  background: linear-gradient(90deg, rgba(95, 119, 136, 0.84), rgba(143, 189, 230, 0.52));
}

.value-card--guide {
  border-radius: 28px 28px 16px 28px;
}

.value-card--guide:nth-child(2)::before {
  background: linear-gradient(90deg, rgba(143, 189, 230, 0.8), rgba(120, 208, 181, 0.55));
}

.value-card--guide:nth-child(3)::before {
  background: linear-gradient(90deg, rgba(240, 177, 92, 0.8), rgba(143, 189, 230, 0.5));
}

.value-card--profile {
  background:
    linear-gradient(180deg, rgba(241, 249, 246, 0.98), rgba(248, 252, 253, 0.95));
}

.value-card--profile:nth-child(2)::before {
  background: linear-gradient(90deg, rgba(143, 189, 230, 0.8), rgba(120, 208, 181, 0.52));
}

.value-card--profile:nth-child(3)::before {
  background: linear-gradient(90deg, rgba(95, 119, 136, 0.78), rgba(143, 189, 230, 0.5));
}

.value-card--pack {
  border-style: dashed;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(249, 251, 252, 0.95));
}

.value-card--pack:nth-child(2)::before {
  background: linear-gradient(90deg, rgba(143, 189, 230, 0.82), rgba(120, 208, 181, 0.55));
}

.value-card--pack:nth-child(3)::before {
  background: linear-gradient(90deg, rgba(240, 177, 92, 0.82), rgba(143, 189, 230, 0.48));
}

.value-card--culture {
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.98), rgba(247, 250, 252, 0.94));
}

.value-card--culture:nth-child(2)::before {
  background: linear-gradient(90deg, rgba(240, 177, 92, 0.82), rgba(120, 208, 181, 0.5));
}

.value-card--culture:nth-child(3)::before {
  background: linear-gradient(90deg, rgba(143, 189, 230, 0.82), rgba(240, 177, 92, 0.48));
}

.contact-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: stretch;
}

.contact-side-stack {
  display: grid;
  gap: 22px;
}

.contact-card {
  position: relative;
  padding: 34px 30px 30px;
  border: 1px solid rgba(19, 37, 49, 0.08);
  border-radius: 30px 30px 18px 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(245, 249, 252, 0.96));
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.contact-card--grouped {
  display: flex;
  flex-direction: column;
}

.contact-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, rgba(120, 208, 181, 0.82), rgba(143, 189, 230, 0.7));
}

.contact-card h2 {
  margin: 12px 0 0;
}

.contact-card .eyebrow {
  margin: 0;
}

.contact-people-grid {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.contact-person {
  padding: 18px 18px 16px;
  border-radius: 20px;
  border: 1px solid rgba(19, 37, 49, 0.06);
  background: rgba(246, 250, 252, 0.94);
}

.contact-person h3 {
  margin: 0;
  color: var(--heading);
  font-size: 1.06rem;
}

.contact-person p {
  margin: 10px 0 0;
  color: var(--heading);
  font-weight: 700;
}

.contact-person a {
  display: inline-block;
  margin-top: 8px;
  color: #2d6a85;
  font-weight: 700;
  word-break: break-all;
}

.contact-card__row {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(246, 250, 252, 0.92);
  border: 1px solid rgba(19, 37, 49, 0.06);
}

.contact-card__row + .contact-card__row {
  margin-top: 12px;
}

.contact-card__row span {
  display: block;
  color: #7991a1;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-card__row strong {
  display: block;
  margin-top: 8px;
  font-size: 1.05rem;
  color: var(--heading);
}

.contact-card .cta-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.contact-card .cta-actions .button {
  justify-content: center;
}

.contact-map {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  min-height: 100%;
  background:
    linear-gradient(180deg, rgba(8, 20, 32, 0.28), rgba(8, 20, 32, 0.52)),
    url("../../media/images/hero-campus.jpg") center / cover no-repeat;
  box-shadow: var(--shadow-md);
}

.contact-map--nav {
  min-height: 360px;
  background:
    radial-gradient(circle at 18% 24%, rgba(120, 208, 181, 0.12), transparent 20%),
    radial-gradient(circle at 76% 18%, rgba(143, 189, 230, 0.16), transparent 18%),
    linear-gradient(180deg, rgba(244, 248, 251, 0.98), rgba(234, 241, 246, 0.96));
}

.contact-map__surface {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.contact-map__roads {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 11%, rgba(86, 118, 140, 0.08) 11% 12%, transparent 12% 28%, rgba(86, 118, 140, 0.08) 28% 29%, transparent 29% 61%, rgba(86, 118, 140, 0.08) 61% 62%, transparent 62% 100%),
    linear-gradient(0deg, transparent 0 18%, rgba(86, 118, 140, 0.08) 18% 19%, transparent 19% 39%, rgba(86, 118, 140, 0.08) 39% 40%, transparent 40% 73%, rgba(86, 118, 140, 0.08) 73% 74%, transparent 74% 100%);
  opacity: 0.9;
}

.contact-map__pin {
  position: absolute;
  left: 52%;
  top: 38%;
  width: 28px;
  height: 28px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  background: #2da985;
  box-shadow: 0 16px 34px rgba(45, 169, 133, 0.28);
}

.contact-map__pin::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 7px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ffffff;
}

.contact-map__label {
  position: absolute;
  left: 14%;
  top: 18%;
  max-width: 300px;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 36px rgba(16, 35, 50, 0.08);
}

.contact-map__label strong {
  display: block;
  color: var(--heading);
  font-size: 1rem;
  font-weight: 800;
}

.contact-map__label span {
  display: block;
  margin-top: 8px;
  color: var(--text-soft);
}

.contact-map__overlay {
  position: absolute;
  inset: auto 24px 24px 24px;
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 20px 40px rgba(9, 25, 37, 0.12);
}

.contact-map__overlay h3 {
  margin: 0 0 10px;
}

.contact-map__overlay--full {
  inset: auto 24px 24px 24px;
}

.contact-map__overlay--full p {
  margin: 0;
  color: var(--text-soft);
}

.contact-map__meta {
  display: grid;
  gap: 6px;
  margin-top: 16px;
  color: var(--heading);
  font-weight: 700;
}

.contact-map__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.button--ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(19, 37, 49, 0.12);
  background: rgba(255, 255, 255, 0.82);
  color: var(--heading);
  font-weight: 700;
}

.contact-lead-card {
  padding: 28px 28px 26px;
  border-radius: 30px;
  border: 1px solid rgba(19, 37, 49, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(245, 249, 252, 0.96));
  box-shadow: var(--shadow-md);
}

.contact-lead-card h3 {
  margin: 12px 0 0;
  color: var(--heading);
  font-size: 1.42rem;
}

.contact-lead-card > p {
  margin: 12px 0 0;
  color: var(--text-soft);
}

.contact-lead-form {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.contact-lead-form label {
  display: grid;
  gap: 8px;
}

.contact-lead-form label span {
  color: #6f8798;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.contact-lead-form input,
.contact-lead-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(19, 37, 49, 0.1);
  border-radius: 16px;
  background: #ffffff;
  color: var(--heading);
  font: inherit;
}

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

.contact-lead-form__hint {
  margin: 4px 0 0;
  color: var(--text-soft);
  font-size: 0.9rem;
}

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

.news-listing__item {
  position: relative;
  padding: 26px 26px 24px;
  border-radius: 24px 24px 14px 24px;
  border: 1px solid rgba(19, 37, 49, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 251, 0.95));
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.news-listing__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, rgba(120, 208, 181, 0.82), rgba(143, 189, 230, 0.58));
}

.news-listing__item--interactive {
  position: relative;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
}

.news-listing__item--interactive::after {
  content: "点开查阅";
  position: absolute;
  right: 18px;
  top: 18px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(7, 19, 30, 0.7);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  opacity: 0;
  transition: opacity 180ms ease;
}

body.page-en .news-listing__item--interactive::after {
  content: "Open";
}

.news-listing__item--interactive:hover::after,
.news-listing__item--interactive:focus-visible::after {
  opacity: 1;
}

.news-listing__item time {
  color: #6a8a9b;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.news-listing__item h3 {
  margin: 10px 0;
  font-size: 1.2rem;
  line-height: 1.45;
}

.news-listing__item p {
  margin: 0;
  color: var(--text-soft);
}

.news-detail-modal[hidden] {
  display: none;
}

.news-detail-modal {
  position: fixed;
  inset: 0;
  z-index: 95;
}

.news-detail-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 14, 23, 0.84);
  backdrop-filter: blur(8px);
}

.news-detail-modal__dialog {
  position: absolute;
  inset: 50% auto auto 50%;
  width: min(calc(100% - 48px), 1100px);
  max-height: calc(100vh - 72px);
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  padding: 24px 24px 20px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(120, 208, 181, 0.12), transparent 24%),
    radial-gradient(circle at top left, rgba(143, 189, 230, 0.1), transparent 20%),
    rgba(255, 255, 255, 0.985);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

.news-detail-modal__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
}

.news-detail-modal__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  background: #10283b;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(16, 40, 59, 0.18);
}

.news-detail-modal__meta {
  margin: 0;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(120, 208, 181, 0.12);
  color: #4d6f83;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  user-select: none;
  -webkit-user-select: none;
}

.news-detail-modal__title {
  margin: 0;
  color: var(--heading);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.15;
  user-select: none;
  -webkit-user-select: none;
}

.news-detail-modal__content {
  max-height: calc(100vh - 230px);
  display: grid;
  gap: 18px;
  margin-top: 18px;
  padding: 4px 2px 0 0;
  overflow: auto;
  user-select: none;
  -webkit-user-select: none;
}

.news-detail-modal__section {
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(244,247,250,0.92));
  border: 1px solid rgba(19, 37, 49, 0.08);
  box-shadow: 0 12px 32px rgba(9, 25, 37, 0.06);
}

.news-detail-modal__section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.news-detail-modal__section-head span,
.news-detail-modal__section-head strong {
  color: #4d6f83;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.news-detail-modal__article {
  color: var(--text-soft);
  line-height: 1.95;
  font-size: 1rem;
}

.news-detail-modal__article p {
  margin: 0 0 14px;
}

.news-detail-modal__gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.news-detail-modal__figure {
  margin: 0;
  padding: 14px 14px 12px;
  border-radius: 22px;
  background: #f7fafc;
  border: 1px solid rgba(19, 37, 49, 0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}

.news-detail-modal__figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.news-detail-modal__figure-label {
  margin-top: 10px;
  color: #60798b;
  font-size: 0.84rem;
  font-weight: 700;
}

.news-detail-modal__hint {
  margin: 12px 0 0;
  color: #6a8191;
  font-size: 0.88rem;
}

@media (max-width: 800px) {
  .news-detail-modal__dialog {
    width: min(calc(100% - 24px), 1100px);
    max-height: calc(100vh - 24px);
    padding: 18px 18px 16px;
    border-radius: 24px;
  }

  .news-detail-modal__topbar {
    align-items: flex-start;
    flex-direction: column-reverse;
  }

  .news-detail-modal__gallery {
    grid-template-columns: 1fr;
  }

  .news-detail-modal__section {
    padding: 16px;
    border-radius: 18px;
  }
}

.download-panel {
  padding: 26px;
  border-radius: 28px;
  background: #10283b;
  color: #fff;
  box-shadow: var(--shadow-md);
}

.download-panel p {
  color: rgba(255, 255, 255, 0.74);
}
/* 05-effects.css */
.site-footer {
  padding: 34px 0 38px;
  background:
    linear-gradient(90deg, rgba(120, 208, 181, 0.08), transparent 32%),
    #08131e;
  color: rgba(255, 255, 255, 0.52);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(160px, 0.7fr) minmax(260px, 0.9fr);
  gap: 28px;
  align-items: start;
}

.site-footer__brand {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.site-footer__brand img {
  width: 60px;
  height: 60px;
  padding: 8px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
}

.site-footer__brand-copy strong {
  display: block;
  color: #fff;
  font-size: 1rem;
  line-height: 1.35;
}

.site-footer__brand-copy p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.72;
}

.site-footer__hint {
  font-size: 0.88rem;
}

.site-footer__links {
  display: grid;
  gap: 10px;
}

.site-footer__links a {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 700;
}

.site-footer__links a:hover,
.site-footer__record-link:hover {
  color: #9fe8d0;
}

.site-footer__legal {
  display: grid;
  gap: 10px;
}

.site-footer__line {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
}

.site-footer__line span {
  color: rgba(255, 255, 255, 0.48);
}

.site-footer__line strong,
.site-footer__record-link {
  color: #fff;
  font-weight: 700;
}

.site-footer__record-link {
  text-decoration: none;
}

.js-enabled [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  filter: blur(6px);
  transition:
    opacity 360ms ease,
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 360ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.js-enabled [data-reveal].is-visible {
  opacity: 1;
  transform: none;
  filter: none;
}

.js-enabled:not(.gsap-active) body:not(.page-ready) .hero .eyebrow,
.js-enabled:not(.gsap-active) body:not(.page-ready) .hero h1,
.js-enabled:not(.gsap-active) body:not(.page-ready) .hero__lead,
.js-enabled:not(.gsap-active) body:not(.page-ready) .hero__actions,
.js-enabled:not(.gsap-active) body:not(.page-ready) .hero__chips li,
.js-enabled:not(.gsap-active) body:not(.page-ready) .hero-slider,
.js-enabled:not(.gsap-active) body:not(.page-ready) .subnav-shell {
  opacity: 0;
  transform: translateY(24px);
}

.js-enabled:not(.gsap-active) body.page-ready .hero .eyebrow,
.js-enabled:not(.gsap-active) body.page-ready .hero h1,
.js-enabled:not(.gsap-active) body.page-ready .hero__lead,
.js-enabled:not(.gsap-active) body.page-ready .hero__actions,
.js-enabled:not(.gsap-active) body.page-ready .hero__chips li,
.js-enabled:not(.gsap-active) body.page-ready .hero-slider,
.js-enabled:not(.gsap-active) body.page-ready .subnav-shell {
  opacity: 1;
  transform: none;
}

.js-enabled:not(.gsap-active) body.page-ready .hero .eyebrow {
  transition: opacity 320ms ease, transform 320ms ease;
}

.js-enabled:not(.gsap-active) body.page-ready .hero h1 {
  transition: opacity 420ms cubic-bezier(0.22, 1, 0.36, 1), transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: 40ms;
}

.js-enabled:not(.gsap-active) body.page-ready .hero__lead {
  transition: opacity 420ms ease, transform 420ms ease;
  transition-delay: 80ms;
}

.js-enabled:not(.gsap-active) body.page-ready .hero__actions {
  transition: opacity 420ms ease, transform 420ms ease;
  transition-delay: 110ms;
}

.js-enabled:not(.gsap-active) body.page-ready .hero__chips li:nth-child(1) {
  transition: opacity 360ms ease, transform 360ms ease;
  transition-delay: 150ms;
}

.js-enabled:not(.gsap-active) body.page-ready .hero__chips li:nth-child(2) {
  transition: opacity 360ms ease, transform 360ms ease;
  transition-delay: 190ms;
}

.js-enabled:not(.gsap-active) body.page-ready .hero__chips li:nth-child(3) {
  transition: opacity 360ms ease, transform 360ms ease;
  transition-delay: 230ms;
}

.js-enabled:not(.gsap-active) body.page-ready .hero-slider {
  transition: opacity 520ms cubic-bezier(0.22, 1, 0.36, 1), transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: 120ms;
}

.js-enabled:not(.gsap-active) body.page-ready .subnav-shell {
  transition: opacity 420ms ease, transform 420ms ease;
  transition-delay: 180ms;
}

@keyframes heroOrbFloat {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(16px, -18px, 0) scale(1.08);
  }
}

@keyframes heroSweep {
  0%,
  18% {
    opacity: 0;
    transform: translate3d(-44%, 0, 0) rotate(8deg);
  }
  30%,
  56% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate3d(44%, 0, 0) rotate(8deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}
/* 06-responsive.css */
@media (max-width: 1100px) {
  .hero__grid,
  .gallery-grid,
  .split-head,
  .contact-grid,
  .contact-side-stack,
  .feature-grid,
  .product-grid,
  .solution-grid,
  .product-showcase-shell,
  .product-detail-hero-panel,
  .product-detail-layout,
  .company-stage,
  .capability-grid,
  .value-grid,
  .certificate-grid,
  .facility-grid,
  .news-grid,
  .news-listing,
  .timeline,
  .timeline-grid,
  .partner-grid,
  .info-grid,
  .stats-list {
    grid-template-columns: 1fr;
  }

  .profile-highlights-grid {
    gap: 20px;
  }

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

  .mosaic,
  #facility-highlights .mosaic,
  #facility-highlights .gallery-grid,
  #quality-compliance .capability-grid {
    grid-template-columns: 1fr;
  }

  .trust-stage {
    grid-template-columns: 1fr;
  }

  .timeline--milestones {
    padding: 0;
  }

  .timeline--milestones .timeline-snake {
    display: none;
  }

  .timeline-grid--milestones {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .timeline-item--milestone.timeline-item--left,
  .timeline-item--milestone.timeline-item--right {
    margin: 0;
  }

  .timeline-item--milestone.timeline-item--left::after,
  .timeline-item--milestone.timeline-item--right::after {
    left: auto;
    right: 22px;
  }

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

  #facility-highlights .mosaic {
    grid-template-rows: none;
    row-gap: 14px;
  }

  .mosaic__item--tall {
    grid-column: auto;
    grid-row: auto;
  }

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

  .product-index-box {
    position: static;
  }

  .product-detail-list--grid,
  .product-detail-delivery-grid {
    grid-template-columns: 1fr;
  }

  .product-detail-side {
    position: static;
  }

  .product-detail-hero-panel {
    padding: 34px 30px;
  }

  .contact-map__label {
    left: 24px;
    right: 24px;
    max-width: none;
  }
}

@media (max-width: 800px) {
  .site-header__inner {
    min-height: 72px;
    gap: 12px;
  }

  .brand {
    flex: 1;
    gap: 10px;
    min-width: 0;
  }

  .brand img {
    width: 44px;
    height: 44px;
    padding: 6px;
    border-radius: 12px;
    flex-shrink: 0;
  }

  .brand__text {
    min-width: 0;
  }

  .brand__text strong {
    font-size: 0.94rem;
    line-height: 1.28;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }

  .brand__text span {
    display: none;
  }

  .page-hero {
    min-height: auto;
    height: auto;
    padding: 92px 0 44px;
  }

  .subnav-shell--page {
    margin-top: -18px;
    margin-bottom: 26px;
  }

  .subnav-shell--page + .section-shell {
    padding-top: 86px;
  }

  .page-hero__content {
    padding-left: 0;
  }

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

  .site-header__actions {
    gap: 8px;
    margin-left: auto;
    flex-shrink: 0;
  }

  .lang-switch {
    order: -1;
    padding: 4px;
  }

  .lang-switch a {
    min-width: 44px;
    min-height: 32px;
    padding: 0 10px;
    font-size: 0.76rem;
    letter-spacing: 0.04em;
  }

  .menu-toggle {
    min-width: 42px;
    width: auto;
    height: 42px;
    padding: 0 12px;
    border-radius: 12px;
    font-size: 0.88rem;
  }

  .site-nav {
    position: absolute;
    top: 72px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    background: rgba(8, 20, 32, 0.94);
    box-shadow: var(--shadow-lg);
  }

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

  .site-nav a {
    padding: 12px 14px;
    border-radius: 14px;
  }

  .hero {
    min-height: auto;
    padding-top: 22px;
    padding-bottom: 52px;
  }

  .hero__media {
    height: 620px;
  }

  .hero__grid {
    gap: 18px;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(2.15rem, 11vw, 3.1rem);
    line-height: 1.02;
  }

  .hero__lead,
  .page-hero__lead {
    max-width: none;
    font-size: 0.94rem;
  }

  .hero__chips {
    gap: 10px;
    margin-top: 20px;
  }

  .hero__chips li {
    padding: 9px 12px;
    font-size: 0.82rem;
  }

  .hero-slider {
    min-height: 320px;
    border-radius: 24px;
  }

  .hero-slide__caption {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 14px 16px;
    border-radius: 18px;
  }

  .hero-slide__caption strong {
    font-size: 1.02rem;
  }

  .hero-slide__caption span {
    font-size: 0.88rem;
    line-height: 1.55;
  }

  .subnav-shell {
    margin-top: -20px;
  }

  .subnav {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    padding: 10px;
    border-radius: 22px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }

  .subnav a {
    flex: none;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    font-size: 0.88rem;
    text-align: center;
    white-space: nowrap;
    scroll-snap-align: start;
  }

  .container {
    width: min(calc(100% - 28px), var(--max-width));
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
  }

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

  .section-shell {
    padding: 40px 0;
  }

  body:not(.page-en) .subnav-shell:not(.subnav-shell--page) + .section-shell,
  body.page-en .subnav-shell:not(.subnav-shell--page) + .section-shell,
  .subnav-shell--page + .section-shell {
    padding-top: 40px;
  }

  .section-head {
    margin-bottom: 18px;
  }

  .section-head h2 {
    font-size: clamp(1.9rem, 9vw, 2.5rem);
    line-height: 1.08;
  }

  .solution-grid,
  #quality-compliance .capability-grid,
  .feature-grid,
  .value-grid,
  .facility-grid,
  .certificate-grid,
  #facility-highlights .gallery-grid,
  .timeline,
  .timeline-grid,
  .news-grid,
  .news-listing,
  .contact-grid,
  .contact-side-stack,
  .info-grid,
  .stats-list,
  .partner-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  #facility-highlights .mosaic,
  .mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 14px;
  }

  .mosaic__item,
  #facility-highlights .mosaic__item {
    min-height: 220px;
    border-radius: 22px;
  }

  .timeline-item--milestone {
    min-height: auto;
    padding: 20px 20px 18px;
    border-radius: 20px;
  }

  .timeline-item--milestone h3 {
    font-size: 1.12rem;
  }

  .trust-stage {
    padding: 18px;
    border-radius: 26px;
  }

  .trust-stage__brand,
  .trust-stage__logos {
    padding: 22px;
    border-radius: 22px;
  }

  .trust-stage__brand h3 {
    font-size: 1.84rem;
  }

  .trust-stage__signature {
    flex-direction: column;
    align-items: flex-start;
  }

  .trust-stage__signature-logo {
    width: 100%;
    max-width: 180px;
  }

  .partner-panel__head {
    align-items: flex-start;
    flex-direction: column;
  }

  .partner-panel__count {
    white-space: normal;
  }

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

  .matrix-card {
    padding: 20px 18px 18px;
    border-radius: 24px;
  }

  .matrix-card__head {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 16px;
  }

  .table-scroll {
    overflow: visible;
    border: none;
    background: transparent;
    min-height: 0 !important;
  }

  .product-matrix {
    min-width: 0;
    display: block;
    background: transparent;
  }

  .product-matrix thead {
    display: none;
  }

  .product-matrix tbody {
    display: grid;
    gap: 12px;
  }

  .product-matrix tbody tr {
    display: grid;
    gap: 0;
    border: 1px solid rgba(19, 37, 49, 0.08);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
  }

  .product-matrix tbody td {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    padding: 12px 14px;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(19, 37, 49, 0.07);
    background: transparent;
  }

  .product-matrix tbody td::before {
    content: attr(data-label);
    color: #587082;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .product-matrix tbody td:last-child {
    border-bottom: none;
  }

  .matrix-card__footer {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-top: 14px;
  }

  .matrix-pager {
    justify-content: space-between;
  }

  .matrix-pager__button {
    min-height: 40px;
    min-width: 40px;
    padding: 0 14px;
  }

  .solution-card,
  .capability-card,
  .value-card,
  .facility-card,
  .news-card,
  .cert-card,
  .contact-card,
  .contact-map,
  .contact-lead-card {
    border-radius: 22px;
  }

  .product-detail-hero-panel,
  .product-detail-card,
  .product-detail-contact-card {
    padding: 22px;
  }

  .product-detail-visual {
    padding: 24px;
  }

  .product-detail-hero-fact {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .contact-map__overlay--full {
    inset: auto 18px 18px 18px;
  }

  .feature-card:hover,
  .plain-card:hover,
  .news-card:hover,
  .facility-card:hover,
  .contact-card:hover,
  .value-card:hover,
  .cert-card:hover,
  .solution-card:hover,
  .product-card:hover,
  .matrix-card:hover,
  .product-detail-card:hover {
    transform: none;
  }
}
