@import url("https://at.alicdn.com/t/c/font_5160042_th3sz5i7wpg.css");

:root {
  /* 全站正文：仅使用微软雅黑（图标仍由 .iconfont / CDN 字体控制） */
  --font-body: "Microsoft YaHei", "微软雅黑", sans-serif;
  --primary-blue: #ad8950;
  --brand-gold: #ad8950;
  --brand-gold-soft: #c6a676;
  --brand-navy: #13202c;
  --brand-navy-soft: #20313f;
  --brand-navy-deep: #0d1721;
  --surface-warm: #f4efe6;
  --surface-warm-2: #faf7f1;
  --text-dark: #1f2a35;
  --text-gray: #5f6871;
  --text-light: #8f979f;
  --bg-light: #f8f6f1;
  --border-color: rgba(19, 32, 44, 0.12);
  --container-width: 1660px;
  --ratio-product-media: 4 / 3;
  --ratio-case-media: 4 / 3;
  --ratio-news-media: 16 / 9;
  --transition: all 0.3s ease-in-out;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-dark);
}

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

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

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

.c-section--full {
  width: 100%;
}

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

.c-button {
  border: 1px solid transparent;
  background: #ffffff;
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition);
}

.c-button--primary {
  background: var(--brand-gold);
  color: #ffffff;
  border-color: var(--brand-gold);
}

.c-button--primary .iconfont,
.c-button--primary .icon-inline-arrow {
  color: inherit;
}

.c-button--ghost {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.65);
}

.c-card {
  transition: var(--transition);
}

.c-button.is-hovered,
.c-card.is-hovered {
  transform: translateY(-4px);
}

.iconfont {
  line-height: 1;
}

.icon-arrow,
.icon-inline-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon-arrow {
  font-size: 18px;
}

.icon-inline-arrow {
  font-size: 14px;
}

.header__icon-btn .iconfont,
.header__lang .iconfont {
  font-size: 18px;
}

.hero__control .iconfont,
.overview__next .iconfont,
.product-showcase__arrow .iconfont,
.media__pager .iconfont,
.events__control .iconfont,
.news-page__feat-arrow .iconfont,
.news-page__row-go .iconfont {
  font-size: 20px;
}

.overview__scroll .iconfont {
  font-size: 18px;
}

.overview__play .iconfont {
  font-size: 54px;
}

.data-counter__icon .iconfont {
  font-size: 52px;
}

.business__tab-icon .iconfont {
  font-size: 28px;
  line-height: 1;
  font-weight: normal;
}

.events__date .iconfont {
  font-size: 14px;
}

.news-page__feat-more-icon .iconfont {
  font-size: 14px;
}

/* Section: Header */
.header {
  position: sticky;
  top: 0;
  z-index: 200;
  width: 100%;
  transition: box-shadow 0.35s ease, background 0.35s ease;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(19, 32, 44, 0.06);
  box-shadow: 0 1px 0 rgba(173, 137, 80, 0.14), 0 8px 28px rgba(16, 24, 32, 0.05);
}

.header--scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 1px 0 rgba(173, 137, 80, 0.18), 0 6px 22px rgba(16, 24, 32, 0.07);
}

.header__inner {
  min-height: 76px;
  display: grid;
  grid-template-columns: minmax(160px, 1fr) auto minmax(160px, 1fr);
  align-items: center;
  gap: 20px;
}

.header__brand {
  justify-self: start;
  flex-shrink: 0;
}

.header__logo {
  width: 186px;
  height: auto;
}

.header__nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.6vw, 42px);
}

.header__nav-backdrop {
  display: none;
}

.header__nav-link {
  position: relative;
  padding: 6px 0;
  color: var(--brand-navy-deep);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.12em;
  transition: color 0.25s ease;
}

.header__nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: 0;
  height: 2px;
  border-radius: 1px;
  background: linear-gradient(90deg, var(--brand-gold-soft), var(--brand-gold));
  transform: translateX(-50%);
  transition: width 0.28s ease;
}

.header--scrolled .header__nav-link {
  color: var(--brand-navy-deep);
}

.header__nav-link:hover {
  color: var(--primary-blue);
}

.header__nav-link:hover::after {
  width: 100%;
}

.header__actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 0;
}

/* PC 端不显示汉堡菜单，移动端再显示 */
.header__icon-btn.header__menu-btn {
  display: none;
}

.header__tools {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header__icon-btn,
.header__lang {
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  color: var(--brand-navy-deep);
  display: grid;
  place-items: center;
  cursor: pointer;
  border-radius: 0;
  transition: color 0.2s ease, background 0.2s ease;
}

.header__icon-btn:hover,
.header__lang:hover {
  background: rgba(173, 137, 80, 0.1);
  color: var(--primary-blue);
}

.header__lang {
  width: 40px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.header--scrolled .header__icon-btn,
.header--scrolled .header__lang {
  color: var(--brand-navy-deep);
}

/* Section 1: Hero */
.hero {
  position: relative;
  min-height: clamp(720px, 46vw, 980px);
  overflow: hidden;
  background: var(--brand-navy-deep);
}

.hero__slides {
  position: absolute;
  inset: 0;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1.02);
  transform-origin: center center;
  animation: heroZoom 12s ease-in-out forwards;
  opacity: 0;
  transition: opacity 0.9s ease-in-out;
}

.hero__bg--active {
  opacity: 1;
  z-index: 1;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(13, 23, 33, 0.72), rgba(19, 32, 44, 0.32) 42%, rgba(13, 23, 33, 0.44) 100%),
    linear-gradient(to bottom, rgba(13, 23, 33, 0.2), rgba(13, 23, 33, 0.54) 100%);
}

@keyframes heroZoom {
  0% {
    transform: scale(1.02);
  }

  100% {
    transform: scale(1.1);
  }
}

.hero__container {
  position: relative;
  z-index: 1;
  min-height: clamp(720px, 46vw, 980px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: clamp(40px, 3vw, 64px);
  padding-bottom: clamp(110px, 8vw, 140px);
}

.hero__content {
  max-width: none;
  width: 100%;
  color: #ffffff;
  margin-left: 0;
}

.hero__title {
  margin: 0;
  font-weight: 700;
  font-size: clamp(42px, 3.2vw, 64px);
  letter-spacing: 1px;
  line-height: 1.2;
  white-space: nowrap;
}

.hero__actions {
  margin-top: 44px;
  display: flex;
  gap: 12px;
}

.hero__actions .c-button {
  padding: 15px 30px;
  border-radius: 0;
  font-size: 16px;
}

.hero__bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: clamp(28px, 2.6vw, 44px);
  display: flex;
  justify-content: space-between;
  align-items: end;
}

.hero__controls {
  display: flex;
  gap: 10px;
}

.hero__control {
  width: 56px;
  height: 56px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(13, 23, 33, 0.28);
  color: rgba(255, 255, 255, 0.85);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: var(--transition);
}

.hero__control:hover {
  background: var(--brand-gold);
  border-color: var(--brand-gold);
  color: var(--brand-gold);
}

.hero__control:hover svg rect {
  fill: var(--brand-gold);
  stroke: var(--brand-gold);
}

.hero__control:hover svg path {
  stroke: var(--brand-navy-deep);
}

.hero__pager {
  color: #ffffff;
  font-size: 21px;
  letter-spacing: 0.5px;
}

.hero__pager-current {
  font-size: 58px;
  font-weight: 700;
}

.hero__pager-split {
  margin: 0 4px;
}

/* Section 2: Overview */
.overview {
  position: relative;
  padding: 0;
  background:
    linear-gradient(90deg, #e7e0d5 0, #e7e0d5 74.5%, #f8f5ef 74.5%, #f8f5ef 100%);
}

.overview__stage {
  position: relative;
  width: 100%;
  height: 700px;
}

.overview__media {
  position: relative;
  overflow: hidden;
  width: 74.5%;
  height: 700px;
}

.overview__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: brightness(0.78);
  transition: transform 0.8s ease;
}

.overview__media:hover img {
  transform: scale(1.05);
}

.overview__media-copy {
  position: absolute;
  top: 92px;
  left: 112px;
  color: #ffffff;
  z-index: 2;
}

.overview__english {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.8px;
}

.overview__cn-title {
  margin: 12px 0 0;
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 30px;
  font-weight: 400;
}

.overview__line {
  display: inline-block;
  width: 74px;
  height: 2px;
  background: rgba(255, 255, 255, 0.72);
}

.overview__scroll {
  position: absolute;
  left: 46px;
  bottom: 48px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(255, 255, 255, 0.88);
  z-index: 2;
}

.overview__scroll span {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 16px;
  letter-spacing: 2px;
}

.overview__play {
  position: absolute;
  left: 320px;
  top: 330px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 120px;
  min-height: 120px;
  padding: 14px;
  border: 2px solid rgba(255, 255, 255, 0.92);
  background: rgba(0, 0, 0, 0.14);
  cursor: pointer;
  animation: pulse 2.2s infinite;
  color: #ffffff;
  z-index: 2;
}

.overview__play svg {
  flex-shrink: 0;
}

.overview__play span {
  font-size: 17px;
  letter-spacing: 0.4px;
  text-align: center;
}

@keyframes pulse {
  0%, 100% { filter: drop-shadow(0 0 0 rgba(173, 137, 80, 0)); }
  50% { filter: drop-shadow(0 0 14px rgba(173, 137, 80, 0.45)); }
}

.overview__card {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 58.5%;
  min-height: 500px;
  background: #ffffff;
  box-shadow: 0 14px 42px rgba(31, 54, 84, 0.08);
  display: grid;
  grid-template-columns: 1fr 116px;
  overflow: hidden;
  z-index: 3;
}

.overview__map {
  position: absolute;
  inset: 0 116px 0 0;
  background-image:
    radial-gradient(circle at 14px 14px, rgba(173, 137, 80, 0.07) 0 2.2px, transparent 2.3px),
    radial-gradient(circle at 50% 28%, rgba(173, 137, 80, 0.055) 0 2.4px, transparent 2.5px),
    radial-gradient(circle at 75% 68%, rgba(173, 137, 80, 0.05) 0 2.4px, transparent 2.5px);
  background-size: 18px 18px, 20px 20px, 22px 22px;
  opacity: 0.55;
  mask-image: radial-gradient(circle at 18% 46%, black 0 22%, transparent 22.5%), radial-gradient(circle at 52% 42%, black 0 19%, transparent 19.5%), radial-gradient(circle at 78% 40%, black 0 18%, transparent 18.5%), radial-gradient(circle at 70% 72%, black 0 14%, transparent 14.5%);
  mask-composite: add;
  pointer-events: none;
}

.overview__content {
  position: relative;
  padding: 84px 78px 70px 80px;
  z-index: 1;
}

.overview__title {
  margin: 0;
  color: var(--primary-blue);
  font-size: 26px;
  line-height: 1.6;
  font-weight: 700;
}

.overview__text {
  margin: 20px 0 0;
  color: #6a6a6a;
  font-size: 15px;
  line-height: 2.2;
}

.overview__next {
  margin-top: 26px;
  width: 58px;
  height: 58px;
  border-radius: 0;
  border: 1px solid rgba(51, 51, 51, 0.24);
  background: #ffffff;
  color: #5a5a5a;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: var(--transition);
}

.overview__next:hover {
  color: var(--primary-blue);
  border-color: var(--primary-blue);
}

.overview__vertical {
  position: relative;
  border-left: 1px solid rgba(0, 0, 0, 0.06);
  display: grid;
  place-items: center;
  font-size: 64px;
  font-weight: 700;
  color: rgba(51, 51, 51, 0.14);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  letter-spacing: 2px;
}

/* Section 3: Data Counter */
.data-counter {
  padding: 34px 0 26px;
  background: var(--surface-warm-2);
}

.data-counter__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  width: 100%;
}

.data-counter__item {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 152px;
  padding: 26px 34px;
  border-right: 1px solid rgba(0, 0, 0, 0.12);
  background: transparent;
}

.data-counter__item--last {
  border-right: 0;
}

.data-counter__icon {
  flex: 0 0 66px;
  display: grid;
  place-items: center;
  color: #7c7c7c;
}

.data-counter__meta {
  min-width: 0;
}

.data-counter__value {
  margin: 0;
  font-weight: 700;
  font-size: 44px;
  line-height: 1;
  color: #111111;
}

.data-counter__number {
  display: inline-block;
  min-width: 88px;
}

.data-counter__suffix {
  font-size: 24px;
  margin-left: 6px;
  vertical-align: top;
}

.data-counter__label {
  margin: 12px 0 0;
  font-size: 15px;
  color: #555555;
  line-height: 1.6;
}

/* Section 4: Product Showcase */
.product-showcase {
  position: relative;
  background: #ffffff;
  padding: 0 0 24px;
  overflow: hidden;
}

.product-showcase__bg {
  position: absolute;
  inset: 0;
  background: #ffffff;
  pointer-events: none;
}

.product-showcase__layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(420px, 0.92fr) minmax(0, 1.18fr);
  gap: 44px;
  padding: 66px 0 40px;
  z-index: 1;
}

.product-showcase__side {
  padding-top: 18px;
}

.product-showcase__section-title {
  margin: 0;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.6px;
  color: #111111;
}

.product-showcase__section-subtitle {
  margin: 10px 0 0;
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 22px;
  font-weight: 400;
  color: #2d2d2d;
}

.product-showcase__section-subtitle span {
  display: inline-block;
  width: 44px;
  height: 3px;
  background: var(--brand-gold);
}

.product-showcase__section-lead {
  margin: 18px 0 44px;
  color: #3c3c3c;
  font-size: 16px;
  line-height: 1.9;
}

.product-showcase__copy {
  min-height: 210px;
}

.product-showcase__name {
  margin: 0 0 24px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
  color: #1a1a1a;
}

.product-showcase__features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-bottom: 46px;
}

.product-showcase__description {
  margin: 0 0 36px;
  color: #6a6a6a;
  font-size: 15px;
  line-height: 2.05;
}

.product-showcase__feature {
  position: relative;
  color: #5c5c5c;
  font-size: 14px;
  line-height: 1.9;
}

.product-showcase__feature::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.16);
}

.product-showcase__button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 0;
  font-size: 15px;
}

.product-showcase__viewer {
  position: relative;
}

.product-showcase__slides {
  position: relative;
  min-height: 580px;
}

.product-showcase__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.45s ease, transform 0.45s ease;
  pointer-events: none;
}

.product-showcase__slide.is-active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.product-showcase__slide img {
  width: 100%;
  height: 580px;
  object-fit: contain;
  object-position: center center;
  display: block;
  background: #ffffff;
}

.product-showcase__caption {
  position: absolute;
  top: 116px;
  left: 86px;
  color: #ffffff;
}

.product-showcase__caption p {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 600;
}

.product-showcase__caption span {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.78);
}

.product-showcase__controls {
  position: absolute;
  right: 22px;
  top: 50%;
  bottom: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 2;
  transform: translateY(-50%);
}

.product-showcase__arrow {
  width: 52px;
  height: 52px;
  border-radius: 0;
  border: 0;
  background: #ffffff;
  color: var(--brand-navy-soft);
  box-shadow: 0 14px 28px rgba(19, 32, 44, 0.16);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: var(--transition);
}

.product-showcase__arrow--prev {
  background: var(--brand-gold);
  color: var(--brand-navy-deep);
}

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

/* 首页大板块标题统一（与案例区同款：英文水印 + 主标题 + 副标题 + 品牌金短划 +「更多」） */
.home-section-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 40px;
}

.home-section-head__titles {
  position: relative;
  max-width: min(100%, 640px);
}

.home-section-head__ghost {
  position: absolute;
  left: 0;
  top: -0.42em;
  margin: 0;
  font-size: clamp(52px, 7vw, 104px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  color: rgba(19, 32, 44, 0.06);
  text-transform: uppercase;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.home-section-head__title {
  position: relative;
  margin: 0;
  font-size: clamp(32px, 3.2vw, 44px);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #111111;
  line-height: 1.2;
}

.home-section-head__lead {
  position: relative;
  margin: 14px 0 0;
  font-size: 16px;
  color: #555555;
  line-height: 1.6;
}

.home-section-head__accent {
  display: block;
  width: 48px;
  height: 4px;
  margin-top: 16px;
  background: var(--brand-gold);
}

.home-section-head__more {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  font-size: 16px;
  font-weight: 600;
  color: #111111;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.home-section-head__more .icon-inline-arrow {
  font-size: 14px;
  transition: transform 0.2s ease;
}

.home-section-head__more:hover {
  color: var(--brand-gold);
}

.home-section-head__more:hover .icon-inline-arrow {
  transform: translateX(4px);
}

.home-section-head__map-bg {
  position: absolute;
  left: 50%;
  top: -12px;
  transform: translateX(-50%);
  width: min(1100px, 100%);
  height: 200px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
  background-image: radial-gradient(circle at 1px 1px, rgba(26, 31, 38, 0.11) 1px, transparent 0);
  background-size: 18px 18px;
  mask-image: radial-gradient(ellipse 85% 90% at 50% 0%, #000 0%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse 85% 90% at 50% 0%, #000 0%, transparent 72%);
}

/* Section 5: Core Business */
.business {
  position: relative;
  min-height: 760px;
  padding: 0;
  overflow: hidden;
}

.business__backgrounds,
.business__overlay,
.business__stage {
  position: absolute;
  inset: 0;
}

.business__bg {
  position: absolute;
  inset: 0;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.5s ease, transform 1.6s ease;
}

.business__bg--active {
  opacity: 1;
  transform: scale(1);
}

.business__overlay {
  background:
    linear-gradient(90deg, rgba(13, 23, 33, 0.72), rgba(19, 32, 44, 0.3) 28%, rgba(13, 23, 33, 0.56) 100%),
    linear-gradient(180deg, rgba(19, 32, 44, 0.18), rgba(13, 23, 33, 0.6));
}

.business__stage {
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.business__upper {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 56px;
  padding-bottom: 24px;
}

.business__hero-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: 48px 72px;
  align-items: start;
  color: #ffffff;
}

.business__intro {
  position: relative;
  margin: 0;
  padding-top: 8px;
}

.business__ghost {
  position: absolute;
  left: 0;
  top: -0.35em;
  margin: 0;
  font-size: clamp(56px, 7vw, 112px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.06);
  text-transform: uppercase;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.business__title {
  position: relative;
  margin: 0;
  font-size: clamp(36px, 3.6vw, 52px);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.business__lead {
  position: relative;
  margin: 18px 0 0;
  max-width: 320px;
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.88);
}

.business__accent {
  display: block;
  width: 48px;
  height: 4px;
  margin-top: 22px;
  background: var(--brand-gold);
}

.business__panels {
  position: relative;
  min-height: clamp(280px, 28vw, 360px);
  padding-top: 4px;
  padding-bottom: 8px;
}

.business__detail {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: 0;
  max-width: 560px;
  margin-left: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.45s ease, transform 0.45s ease, visibility 0.45s;
  pointer-events: none;
}

.business__detail.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.business__detail-title {
  margin: 0;
  font-size: clamp(26px, 2.4vw, 34px);
  font-weight: 700;
  line-height: 1.35;
}

.business__detail-en {
  margin: 10px 0 0;
  font-size: 14px;
  letter-spacing: 0.55px;
  color: rgba(255, 255, 255, 0.78);
  text-transform: uppercase;
}

.business__detail-desc {
  margin: 22px 0 0;
  font-size: 17px;
  line-height: 1.95;
  color: rgba(255, 255, 255, 0.92);
}

.business__detail-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  padding: 10px 26px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  background: transparent;
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.business__detail-cta .icon-inline-arrow {
  font-size: 13px;
}

.business__detail-cta:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--brand-gold-soft);
  color: #ffffff;
}

.business__tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: 100%;
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.business__tab {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 88px;
  padding: 18px 32px;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(10, 16, 22, 0.55);
  color: rgba(255, 255, 255, 0.82);
  font: inherit;
  font-size: 17px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.business__tab:last-child {
  border-right: 0;
}

.business__tab:hover:not(.is-active) {
  background: rgba(10, 16, 22, 0.72);
  color: #ffffff;
}

.business__tab.is-active {
  color: #ffffff;
  background: linear-gradient(90deg, #7a5a32 0%, var(--brand-gold) 42%, var(--brand-gold-soft) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.business__tab:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: -4px;
  z-index: 1;
}

.business__tab-icon {
  flex-shrink: 0;
  color: inherit;
  opacity: 0.95;
}

.business__tab-label {
  line-height: 1.35;
}

/* Section 6: News & Media */
.news-media {
  background: #ffffff;
  padding: 64px 0 72px;
}

.news-media__grid {
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  gap: 92px;
}

.news__head,
.media__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 42px;
}

.news__title,
.media__title {
  margin: 0;
  font-size: 30px;
  letter-spacing: 0.6px;
}

.news__subtitle,
.media__subtitle {
  margin: 10px 0 0;
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 22px;
  color: #2d2d2d;
}

.news__subtitle span,
.media__subtitle span {
  display: inline-block;
  width: 44px;
  height: 3px;
  background: var(--brand-gold);
}

.news__more {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid #1a1a1a;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.8px;
  color: #1a1a1a;
}

.news__featured {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 42px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.news__featured img {
  width: 100%;
  aspect-ratio: 4 / 2.3;
  object-fit: cover;
}

.news__featured-date {
  display: inline-block;
  margin-bottom: 14px;
  color: #b1b1b1;
  font-size: 15px;
}

.news__featured-content h3 {
  margin: 0;
  font-size: 31px;
  line-height: 1.6;
  color: #1e1e1e;
}

.news__featured-content p {
  margin: 26px 0 0;
  color: #7a7a7a;
  font-size: 16px;
  line-height: 2.2;
}

.news__featured-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 54px;
  color: var(--brand-gold);
  font-size: 16px;
  letter-spacing: 0.6px;
}

.news__featured-link span {
  color: #d0d0d0;
}

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

.news__item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.news__bullet {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #cfcfcf;
  flex: 0 0 auto;
}

.news__item-title {
  flex: 1;
  color: #535353;
  font-size: 16px;
  line-height: 1.7;
}

.news__item time {
  color: #b3b3b3;
  font-size: 15px;
  white-space: nowrap;
}

.media__controls {
  display: flex;
  gap: 14px;
  margin-top: 18px;
}

.media__pager {
  width: 52px;
  height: 52px;
  border-radius: 0;
  border: 0;
  background: #f1f1f1;
  color: #5d5d5d;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: var(--transition);
}

.media__pager--next {
  background: var(--brand-gold);
  color: var(--brand-navy-deep);
}

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

.media__card {
  position: relative;
  overflow: hidden;
  background: #ffffff;
}

.media__slides {
  position: relative;
  min-height: 560px;
}

.media__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.45s ease;
}

.media__slide.is-active {
  opacity: 1;
}

.media__slide img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.media__overlay {
  position: absolute;
  left: 44px;
  right: 44px;
  bottom: 52px;
  color: #ffffff;
}

.media__overlay-date {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.82);
}

.media__overlay p,
.media__overlay-text {
  margin: 0;
  max-width: 510px;
  font-size: 28px;
  line-height: 1.7;
}

.media__action {
  position: absolute;
  right: 0;
  bottom: 0;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 22px 36px;
  background: var(--brand-gold);
  color: var(--brand-navy-deep);
  font-size: 18px;
  letter-spacing: 0.8px;
  z-index: 2;
}

.media__action span {
  color: rgba(19, 32, 44, 0.52);
}

/* 首页：新闻动态（左头条 + 右列表，参考稿） */
.news-media.news-media--home {
  padding: 56px 0 72px;
  background: #ffffff;
}

.news-home {
  position: relative;
}

.news-media--home .home-section-head {
  margin-bottom: 28px;
}

.news-home__panel {
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.news-home__body {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 36px 44px;
  align-items: start;
}

.news-home__feat {
  margin: 0;
  min-width: 0;
}

.news-home__feat-hit {
  display: block;
  color: inherit;
  text-decoration: none;
}

.news-home__feat-media {
  overflow: hidden;
  background: #e4e8ee;
}

.news-home__feat-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.news-home__feat-hit:hover .news-home__feat-media img {
  transform: scale(1.02);
}

.news-home__feat-body {
  padding-top: 18px;
}

.news-home__feat-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.news-home__feat-title {
  margin: 0;
  flex: 1;
  min-width: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  color: #1a1f26;
  transition: color 0.2s ease;
}

.news-home__feat-hit:hover .news-home__feat-title {
  color: var(--brand-gold);
}

.news-home__feat-time {
  flex-shrink: 0;
  margin: 4px 0 0;
  font-size: 13px;
  color: #9aa3b0;
}

.news-home__feat-desc {
  margin: 14px 0 0;
  font-size: 14px;
  line-height: 1.85;
  color: #6b7280;
}

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

.news-home__row {
  margin: 0;
  border-bottom: 1px solid #e4e8ee;
}

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

.news-home__row-hit {
  display: flex;
  gap: 22px;
  padding: 22px 0;
  color: inherit;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.news-home__row-hit:hover {
  background: rgba(173, 137, 80, 0.08);
}

.news-home__row-date {
  flex: 0 0 auto;
  width: 52px;
  text-align: center;
  padding-top: 2px;
}

.news-home__row-day {
  display: block;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  color: var(--brand-navy-deep);
}

.news-home__row-ym {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: #9aa3b0;
  letter-spacing: 0.02em;
}

.news-home__row-main {
  flex: 1;
  min-width: 0;
}

.news-home__row-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.news-home__row-title {
  margin: 0;
  flex: 1;
  min-width: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  color: #1a1f26;
  transition: color 0.2s ease;
}

.news-home__row-hit:hover .news-home__row-title {
  color: var(--brand-gold);
}

.news-home__row-time {
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 12px;
  color: #9aa3b0;
  white-space: nowrap;
}

.news-home__row-excerpt {
  margin: 10px 0 0;
  font-size: 13px;
  line-height: 1.8;
  color: #7a8494;
}

/* Section 7: Events */
.events {
  background: #f5f6f8;
  padding: 34px 0 78px;
}

.events__shell {
  display: grid;
  grid-template-columns: 430px 1fr;
  min-height: 680px;
  align-items: stretch;
}

.events__aside {
  position: relative;
  padding: 110px 46px 56px;
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(26, 40, 54, 0.82), rgba(13, 23, 33, 0.92)),
    linear-gradient(0deg, rgba(173, 137, 80, 0.16), rgba(173, 137, 80, 0.16)),
    url("../assets/images/hero-aviation.jpg"),
    linear-gradient(180deg, #20313f, #0d1721);
  background-size: cover;
  background-position: center center;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.events__title {
  margin: 0;
  font-size: 28px;
  letter-spacing: 0.8px;
}

.events__subtitle {
  margin: 12px 0 0;
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 22px;
}

.events__subtitle span {
  display: inline-block;
  width: 42px;
  height: 3px;
  background: rgba(255, 255, 255, 0.78);
}

.events__controls {
  display: flex;
  gap: 14px;
  margin-top: 56px;
}

.events__control {
  width: 52px;
  height: 52px;
  border-radius: 0;
  border: 0;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.22);
  color: #ffffff;
}

.events__control--next {
  background: #ffffff;
  color: var(--brand-gold);
}

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

.events__aside-more {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.8);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.8px;
}

.events__track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: 114px 0 30px 0;
  margin-left: -96px;
  position: relative;
  z-index: 2;
}

.events__card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 16px 34px rgba(22, 43, 73, 0.06);
}

.events__img-wrap {
  aspect-ratio: 1.45 / 1;
  overflow: hidden;
}

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

.events__body {
  padding: 24px 26px 18px;
}

.events__body h3 {
  margin: 0;
  font-size: 19px;
  line-height: 1.65;
  color: #2b2b2b;
}

.events__body p {
  margin: 20px 0 0;
  font-size: 15px;
  color: #8a8a8a;
  line-height: 2;
}

.events__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 26px 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.events__date {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #333333;
  font-size: 15px;
  font-weight: 600;
}

.events__more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #b6b6b6;
  font-size: 15px;
  letter-spacing: 0.6px;
}

.events__more span {
  color: #d0d0d0;
}

.events__more svg {
  transition: var(--transition);
}

.events__more:hover svg {
  transform: translateX(5px);
}

/* Homepage: 案例展示（参考稿：顶栏标题 + 三列卡片） */
.events.events--home {
  background: #ffffff;
  padding: 56px 0 72px;
}

.events-home {
  position: relative;
  z-index: 0;
}

.partners__shell {
  position: relative;
}

.partners .home-section-head {
  margin-bottom: 28px;
}

.events-home__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.events-home__card {
  margin: 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.events-home__card-hit {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 100%;
  color: inherit;
  text-decoration: none;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(22, 43, 73, 0.05);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.events-home__card-hit:hover {
  box-shadow: 0 16px 40px rgba(22, 43, 73, 0.1);
  transform: translateY(-3px);
}

.events-home__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #e8e8e8;
}

.events-home__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.45s ease;
}

.events-home__card-hit:hover .events-home__media img {
  transform: scale(1.04);
}

.events-home__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 22px 22px 24px;
  background: #f7f7f7;
}

.events-home__card-title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.45;
  color: #111111;
}

.events-home__card-desc {
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.85;
  color: #777777;
}

/* Section 8: Partners */
.partners {
  background: #ffffff;
  padding: 48px 0 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

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

.partners__item {
  min-height: 92px;
  display: grid;
  place-items: center;
  padding: 10px 16px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: var(--transition);
}

.partners__item img {
  display: block;
  width: 100%;
  max-width: 160px;
  max-height: 64px;
  object-fit: contain;
  filter: saturate(0.96);
}

.partners__item:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(19, 44, 89, 0.08);
}

/* Section 9: Contact CTA（暂隐藏，恢复时去掉下一行） */
.contact-cta {
  display: none;
  background:
    linear-gradient(135deg, rgba(173, 137, 80, 0.12), transparent 40%),
    linear-gradient(315deg, rgba(19, 32, 44, 0.08), transparent 38%),
    #f4efe6;
  border-top: 2px solid var(--brand-gold);
  border-bottom: 2px solid var(--brand-gold);
}

.contact-cta__inner {
  padding: 26px 0 28px;
  text-align: center;
}

.contact-cta__eyebrow {
  margin: 0;
  color: #7f8ea6;
  font-size: 14px;
  letter-spacing: 0.04em;
}

.contact-cta__title {
  margin: 8px auto 0;
  max-width: 860px;
  color: #2d2d2d;
  font-size: 32px;
  line-height: 1.35;
  font-weight: 700;
}

.contact-cta__actions {
  margin-top: 16px;
}

.contact-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 168px;
  padding: 12px 26px;
  background: var(--brand-gold);
  color: var(--brand-navy-deep);
  font-size: 16px;
  font-weight: 600;
  border-radius: 0;
}

/* Section: Footer */
.footer {
  background: linear-gradient(180deg, #172432, #0d1721);
  color: #ffffff;
}

.footer__follow {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__follow-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding: 30px 0 24px;
}

.footer__follow-copy h3 {
  margin: 0;
  font-size: 34px;
  line-height: 1.4;
}

.footer__follow-copy p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
}

.footer__qrs {
  display: flex;
  gap: 16px;
}

.footer__qr {
  position: relative;
  text-align: center;
  outline: none;
}

.footer__qr-media {
  position: relative;
}

.footer__qr-img {
  width: 112px;
  height: 112px;
  object-fit: cover;
  background: #ffffff;
  padding: 6px;
}

.footer__qr-title {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.4;
}

.footer__qr-pop {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 12px);
  z-index: 5;
  width: 220px;
  padding: 10px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(8px) scale(0.96);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer__qr-pop::after {
  position: absolute;
  left: 50%;
  bottom: -7px;
  width: 14px;
  height: 14px;
  background: #ffffff;
  content: "";
  transform: translateX(-50%) rotate(45deg);
}

.footer__qr-pop img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.footer__qr:last-child .footer__qr-pop {
  right: 0;
  left: auto;
  transform: translateY(8px) scale(0.96);
}

.footer__qr:last-child .footer__qr-pop::after {
  right: 48px;
  left: auto;
  transform: rotate(45deg);
}

.footer__qr:hover .footer__qr-pop,
.footer__qr:focus-visible .footer__qr-pop {
  opacity: 1;
  transform: translateX(-50%) translateY(0) scale(1);
}

.footer__qr:last-child:hover .footer__qr-pop,
.footer__qr:last-child:focus-visible .footer__qr-pop {
  transform: translateY(0) scale(1);
}

.footer__main {
  padding: 36px 0 30px;
}

.footer__grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.05fr) minmax(0, 1.45fr);
  gap: 70px;
}

.footer__logo {
  width: 260px;
  margin-bottom: 20px;
}

.footer__brand p {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.8;
}

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

.footer__column h4 {
  margin: 0 0 18px;
  font-size: 16px;
  color: var(--brand-gold-soft);
}

.footer__column a {
  display: block;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 16px 0 18px;
}

.footer__bottom-inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 13px;
}

.footer__bottom-links {
  display: flex;
  gap: 18px;
}

.footer__bottom-links a {
  color: rgba(255, 255, 255, 0.52);
  font-size: 13px;
}

/* Responsive */
@media (max-width: 1200px) {
  :root {
    --container-width: 100%;
  }

  .hero__title {
    font-size: 52px;
  }

  .hero__sub-title {
    font-size: 34px;
  }

  .news-media__grid {
    gap: 16px;
  }

  .business {
    min-height: 660px;
  }

  .business__upper {
    padding-top: 44px;
  }

  .business__hero-grid {
    gap: 36px 40px;
  }

  .business__panels {
    min-height: 260px;
  }

  .business__detail-desc {
    font-size: 15px;
  }

  .business__tab {
    min-height: 76px;
    padding: 14px 20px;
    font-size: 15px;
  }

  .business__tab-icon .iconfont {
    font-size: 24px;
    font-weight: normal;
  }

  .overview__card {
    margin-right: 40px;
    width: 64%;
  }

  .overview__content {
    padding: 92px 60px 82px 68px;
  }

  .product-showcase__layout {
    grid-template-columns: minmax(340px, 0.9fr) minmax(0, 1.1fr);
    gap: 30px;
  }

  .product-showcase__slide img {
    height: 430px;
  }

  .data-counter__item {
    padding: 22px 20px;
    gap: 18px;
  }

  .events__shell {
    grid-template-columns: 340px 1fr;
    min-height: 600px;
  }

  .events__aside {
    padding: 82px 30px 36px;
  }

  .events__track {
    gap: 18px;
    padding: 82px 0 24px 0;
    margin-left: -72px;
  }

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

  .contact-cta__title {
    font-size: 26px;
  }

  .footer__follow-copy h3 {
    font-size: 28px;
  }

  .header__inner {
    gap: 16px;
    min-height: 72px;
  }

  .header__logo {
    width: 168px;
  }

  .header__nav {
    gap: 18px;
  }

  .header__nav-link {
    font-size: 16px;
    letter-spacing: 0.1em;
  }
}

@media (max-width: 992px) {
  html,
  body {
    overflow-x: hidden;
  }

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

  .header__logo {
    width: min(200px, 52vw);
  }

  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 320;
    width: 80vw;
    height: 100vh;
    display: grid;
    align-content: start;
    gap: 0;
    padding: 86px 0 24px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: -18px 0 46px rgba(16, 24, 32, 0.18);
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.28s ease;
  }

  .header__nav.is-open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }

  .header__nav .header__nav-link {
    padding: 16px 24px;
    border-bottom: 1px solid rgba(19, 32, 44, 0.08);
    font-size: 16px;
    letter-spacing: 0.08em;
  }

  .header__nav .header__nav-link::after {
    display: none;
  }

  .header__nav-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 310;
    width: 20vw;
    height: 100vh;
    display: block;
    border: 0;
    padding: 0;
    background: rgba(13, 23, 33, 0.48);
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease;
  }

  .header__nav-backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  body.is-mobile-nav-open {
    overflow: hidden;
  }

  .header__actions {
    flex-shrink: 0;
    gap: 8px;
  }

  .header__icon-btn.header__menu-btn {
    display: grid;
  }

  .header__icon-btn,
  .header__lang {
    width: 38px;
    height: 38px;
  }

  .hero {
    min-height: 720px;
  }

  .hero__container {
    min-height: 720px;
    padding-top: 64px;
  }

  .news-media__grid,
  .footer__grid {
    grid-template-columns: 1fr;
    display: grid;
  }

  .news-home__body {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .news-home__panel {
    padding: 0;
  }

  .overview {
    background: #edf1f4;
    padding-bottom: 36px;
  }

  .overview__stage {
    min-height: auto;
  }

  .overview__media {
    width: 100%;
    min-height: 460px;
  }

  .overview__media-copy {
    left: 36px;
    top: 42px;
  }

  .overview__scroll {
    display: none;
  }

  .overview__play {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .overview__card {
    width: calc(100% - 40px);
    margin: -56px 0 0 auto;
    grid-template-columns: 1fr 86px;
    min-height: auto;
  }

  .overview__map {
    inset: 0 86px 0 0;
  }

  .overview__content {
    padding: 56px 38px 56px 40px;
  }

  .overview__vertical {
    font-size: 42px;
  }

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

  .data-counter__grid {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }

  .data-counter__item:nth-child(2) {
    border-right: 0;
  }

  .data-counter__item:nth-child(-n+2) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  }

  .product-showcase__layout {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 44px;
  }

  .product-showcase__side {
    max-width: 640px;
  }

  .product-showcase__slides {
    min-height: 400px;
  }

  .product-showcase__slide img {
    height: 400px;
  }

  .product-showcase__caption {
    top: 42px;
    left: 34px;
  }

  .business {
    min-height: 640px;
  }

  .business__hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .business__panels {
    min-height: 240px;
    margin-left: 0;
    max-width: none;
  }

  .business__detail {
    margin-left: 0;
    max-width: none;
  }

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

  .business__tab:nth-child(2n) {
    border-right: 0;
  }

  .business__tab:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .events__shell {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .events__aside {
    padding: 42px 28px 26px;
  }

  .events__controls {
    margin-top: 24px;
  }

  .events__track {
    grid-template-columns: repeat(2, 1fr);
    padding: 24px 0 0;
  }

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

  .events-home .home-section-head {
    margin-bottom: 32px;
  }

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

  .contact-cta__inner {
    padding: 22px 0 24px;
  }

  .contact-cta__title {
    font-size: 21px;
  }

  .footer__follow-inner,
  .footer__bottom-inner,
  .footer__grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .footer__qrs {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

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

@media (max-width: 768px) {
  .hero__title {
    font-size: 34px;
    letter-spacing: 1px;
  }

  .hero__sub-title {
    font-size: 24px;
  }

  .hero__sub-en {
    font-size: 13px;
  }

  .hero__actions {
    flex-wrap: wrap;
  }

  .overview__media {
    min-height: 380px;
  }

  .overview__english {
    font-size: 18px;
  }

  .overview__cn-title {
    font-size: 24px;
    gap: 12px;
  }

  .overview__line {
    width: 42px;
  }

  .overview__card {
    width: calc(100% - 24px);
    margin-top: -28px;
    grid-template-columns: 1fr;
  }

  .overview__map {
    inset: 0;
  }

  .overview__content {
    padding: 34px 22px 34px;
  }

  .overview__title {
    font-size: 22px;
    line-height: 1.6;
  }

  .overview__text {
    font-size: 14px;
    line-height: 2;
  }

  .overview__vertical {
    display: none;
  }

  .product-showcase {
    padding-bottom: 16px;
  }

  .product-showcase__section-title {
    font-size: 22px;
    letter-spacing: 0.4px;
  }

  .product-showcase__section-subtitle {
    font-size: 18px;
    gap: 14px;
  }

  .product-showcase__section-subtitle span {
    width: 36px;
  }

  .product-showcase__section-lead {
    margin: 14px 0 28px;
    font-size: 15px;
  }

  .product-showcase__name {
    font-size: 20px;
  }

  .product-showcase__features {
    gap: 10px 18px;
    margin-bottom: 30px;
  }

  .product-showcase__slides {
    min-height: 280px;
  }

  .product-showcase__slide img {
    height: 280px;
  }

  .product-showcase__caption p {
    font-size: 16px;
  }

  .product-showcase__caption span {
    font-size: 12px;
  }

  .product-showcase__controls {
    right: 12px;
    bottom: -18px;
  }

  .business {
    min-height: auto;
    padding-bottom: 0;
  }

  .business__upper {
    padding-top: 36px;
    padding-bottom: 20px;
  }

  .business__ghost {
    font-size: 48px;
  }

  .business__title {
    font-size: 28px;
  }

  .business__lead {
    font-size: 15px;
  }

  .business__panels {
    min-height: 220px;
  }

  .business__detail-title {
    font-size: 22px;
  }

  .business__detail-en {
    font-size: 12px;
  }

  .business__detail-desc {
    font-size: 14px;
    line-height: 1.85;
  }

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

  .business__tab {
    min-height: 64px;
    padding: 12px 18px;
    font-size: 14px;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .business__tab:nth-child(2n) {
    border-right: 0;
  }

  .business__tab:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .news-media.news-media--home {
    padding: 42px 0 52px;
  }

  .news-home__panel {
    padding: 0;
  }

  .news-media--home .home-section-head {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-bottom: 18px;
  }

  .news-media--home .home-section-head__more {
    align-self: flex-start;
  }

  .news-home__row-day {
    font-size: 24px;
  }

  .news-home__row-hit {
    gap: 14px;
    padding: 16px 0;
  }

  .events {
    padding-bottom: 44px;
  }

  .events.events--home {
    padding: 44px 0 52px;
  }

  .events-home .home-section-head {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-bottom: 26px;
  }

  .events-home .home-section-head__more {
    align-self: flex-end;
    margin-top: 0;
  }

  .events-home__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .events-home .home-section-head__map-bg {
    height: 160px;
    opacity: 0.4;
  }

  .events-home__text {
    min-height: 0;
  }

  .events__aside {
    padding: 30px 18px 20px;
  }

  .events__title {
    font-size: 24px;
  }

  .events__subtitle {
    font-size: 18px;
  }

  .events__controls {
    margin-top: 18px;
  }

  .events__control {
    width: 44px;
    height: 44px;
  }

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

  .events__body {
    padding: 18px 18px 14px;
  }

  .events__body h3 {
    font-size: 17px;
  }

  .events__body p,
  .events__date,
  .events__more {
    font-size: 13px;
  }

  .events__footer {
    padding: 14px 18px 16px;
  }

  .data-counter__grid {
    grid-template-columns: 1fr;
  }

  .data-counter__item {
    border-right: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    min-height: 118px;
  }

  .data-counter__item:last-child {
    border-bottom: 0;
  }

  .data-counter__value {
    font-size: 34px;
  }

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

  .partners {
    padding: 20px 0;
  }

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

  .partners__item {
    min-height: 60px;
    font-size: 18px;
  }

  .contact-cta__title {
    font-size: 18px;
  }

  .contact-cta__button {
    min-width: 140px;
    padding: 11px 20px;
  }

  .footer__follow-copy h3 {
    font-size: 24px;
  }

  .footer__follow-copy p,
  .footer__brand p,
  .footer__column a {
    font-size: 13px;
  }

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

  .footer__qr-img {
    width: 96px;
    height: 96px;
  }

  .footer__qr-pop {
    left: 0;
    right: auto;
    width: 190px;
    transform: translateY(8px) scale(0.96);
  }

  .footer__qr:last-child .footer__qr-pop {
    right: auto;
    left: 0;
    transform: translateY(8px) scale(0.96);
  }

  .footer__qr-pop::after {
    left: 48px;
    right: auto;
  }

  .footer__qr:last-child .footer__qr-pop::after {
    right: auto;
    left: 48px;
    transform: translateX(-50%) rotate(45deg);
  }

  .footer__qr:hover .footer__qr-pop,
  .footer__qr:focus-visible .footer__qr-pop,
  .footer__qr:last-child:hover .footer__qr-pop,
  .footer__qr:last-child:focus-visible .footer__qr-pop {
    transform: translateY(0) scale(1);
  }
}

/* 内页统一 hero：深色底图 + 深蓝蒙版，标题与正文白色（与 .home-section-head_* 并存时一并覆盖） */
.page-hero {
  position: relative;
  overflow: hidden;
  min-height: clamp(220px, 26vh, 320px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #ffffff;
}

.page-hero__bg {
  position: absolute;
  inset: -12px;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  filter: blur(8px) saturate(0.72) brightness(0.52);
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    165deg,
    rgba(4, 14, 34, 0.94) 0%,
    rgba(8, 28, 58, 0.9) 48%,
    rgba(4, 16, 38, 0.95) 100%
  );
  pointer-events: none;
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: min(var(--container-width), calc(100% - 40px));
  margin: 0 auto;
  text-align: left;
  padding: 56px 0 60px;
}

.page-hero__titles {
  max-width: min(var(--container-width), calc(100% - 40px));
  position: relative;
}

.page-hero .home-section-head__ghost,
.page-hero__ghost {
  color: rgba(255, 255, 255, 0.12);
}

.page-hero .home-section-head__title,
.page-hero__title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(32px, 3.2vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.page-hero .home-section-head__lead,
.page-hero__desc {
  margin: 14px 0 0;
  max-width: min(100%, 680px);
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0.02em;
}

.page-hero__accent {
  display: block;
  width: 48px;
  height: 4px;
  margin-top: 16px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.95), rgba(198, 166, 118, 0.95));
}

@media (max-width: 768px) {
  .page-hero {
    min-height: clamp(200px, 24vh, 280px);
  }

  .page-hero__inner {
    padding: 40px 16px 44px;
  }

  .page-hero .home-section-head__title,
  .page-hero__title {
    font-size: 28px;
  }

  .page-hero .home-section-head__lead,
  .page-hero__desc {
    font-size: 15px;
  }
}

/* —— 新闻中心页 news.html（内容区与全站 .c-container 同宽，与顶栏对齐） —— */
.page-news {
  --news-blue: #ad8950;
  --news-blue-hover: #8c6d3f;
  --news-gray-panel: #fbfaf7;
  --news-page-bg: #ffffff;
  --news-line: rgba(19, 32, 44, 0.1);
  --news-text: #102030;
  --news-muted: #66707b;
}

.page-news .news-page {
  background: var(--news-page-bg);
}

.news-page__featured-section {
  padding: 56px 0 0;
  background: var(--news-page-bg);
}

.news-page__shell + .news-page__shell {
  margin-top: 0;
}

.news-page__section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px 36px;
  margin-bottom: 28px;
}

.news-page__section-en {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(173, 137, 80, 0.88);
}

.news-page__section-title {
  margin: 0;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--news-text);
}

.news-page__section-desc {
  max-width: 540px;
  margin: 0;
  font-size: 14px;
  line-height: 1.85;
  color: var(--news-muted);
  text-align: right;
}

/* 内边距约 40px，浅灰底 #f7f8fa */
.news-page__featured {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #fbfaf7 100%);
  padding: 34px 34px 42px;
  border: 1px solid rgba(19, 32, 44, 0.08);
  box-shadow: 0 18px 42px rgba(16, 32, 48, 0.05);
}

.news-page__featured-slides {
  position: relative;
  min-height: 1px;
}

/* 左图略窄于 50%：约 46% / 54% */
.news-page__feat {
  display: none;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 36px;
  align-items: stretch;
}

.news-page__feat.is-active {
  display: grid;
}

.news-page__feat-media {
  overflow: hidden;
  background: #eceff3;
  min-height: 100%;
}

.news-page__feat-media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  max-height: 360px;
  object-fit: cover;
  display: block;
}

.news-page__feat-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.news-page__feat-tag {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  min-height: 30px;
  padding: 0 12px;
  margin-bottom: 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--news-blue);
  background: rgba(173, 137, 80, 0.12);
}

.news-page__feat-date {
  display: block;
  margin-bottom: 14px;
  font-size: 14px;
  line-height: 1;
  color: var(--news-muted);
}

.news-page__feat-title {
  margin: 0;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--news-text);
}

.news-page__feat-excerpt {
  margin: 16px 0 0;
  font-size: 15px;
  line-height: 1.9;
  color: var(--news-muted);
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-page__feat-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 26px;
  font-size: 14px;
  font-weight: 600;
  color: var(--news-text);
  letter-spacing: 0;
  transition: color 0.2s ease;
}

.news-page__feat-more:hover {
  color: var(--news-blue);
}

/* 设计稿：蓝色圆标 + 白箭头 */
.news-page__feat-more-icon {
  display: flex;
  color: var(--news-blue);
  transition: color 0.2s ease;
}

.news-page__feat-more:hover .news-page__feat-more-icon {
  color: var(--news-blue-hover);
}

.news-page__feat-arrows {
  position: absolute;
  right: 34px;
  bottom: 30px;
  display: flex;
  gap: 10px;
}

.news-page__feat-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.news-page__feat-arrow--prev {
  border: 1px solid rgba(19, 32, 44, 0.12);
  background: rgba(255, 255, 255, 0.86);
  color: #6f7781;
}

.news-page__feat-arrow--prev:hover {
  border-color: rgba(19, 32, 44, 0.2);
  color: #36404b;
}

.news-page__feat-arrow--next {
  border: 1px solid var(--news-blue);
  background: var(--news-blue);
  color: #ffffff;
}

.news-page__feat-arrow--next:hover {
  background: var(--news-blue-hover);
  border-color: var(--news-blue-hover);
}

/* 与头条区块间距 */
.news-page__list-section {
  padding: 44px 0 96px;
  background: var(--news-page-bg);
}

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

.news-page__row {
  margin: 0;
}

.news-page__row-hit {
  display: grid;
  grid-template-columns: minmax(0, 180px) minmax(0, 1fr);
  align-items: stretch;
  height: 100%;
  background: linear-gradient(180deg, #ffffff 0%, #fbfaf7 100%);
  border: 1px solid rgba(19, 32, 44, 0.08);
  box-shadow: 0 14px 30px rgba(16, 32, 48, 0.05);
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.news-page__row-hit:hover {
  transform: translateY(-3px);
  border-color: rgba(173, 137, 80, 0.24);
  box-shadow: 0 18px 36px rgba(16, 32, 48, 0.08);
}

.news-page__row-media {
  position: relative;
  overflow: hidden;
  min-height: 100%;
}

.news-page__row-media img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.news-page__row-hit:hover .news-page__row-media img {
  transform: scale(1.04);
}

.news-page__row-main {
  padding: 22px 24px 24px;
  min-width: 0;
}

.news-page__row-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.news-page__row-tag {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  font-size: 12px;
  font-weight: 700;
  color: var(--news-blue);
  background: rgba(173, 137, 80, 0.1);
}

.news-page__row-time {
  flex-shrink: 0;
  font-size: 12px;
  color: #9aa2ab;
}

.news-page__row-title {
  display: block;
  margin-top: 16px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.45;
  color: var(--news-text);
  transition: color 0.2s ease;
}

.news-page__row-hit:hover .news-page__row-title {
  color: var(--news-blue);
}

.news-page__row-excerpt {
  display: block;
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.85;
  color: var(--news-muted);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-page__row-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-size: 14px;
  font-weight: 600;
  color: #102030;
  transition: color 0.2s ease;
}

.news-page__row-hit:hover .news-page__row-more {
  color: var(--news-blue);
}

.header__nav-link[aria-current="page"] {
  color: var(--primary-blue);
}

.header__nav-link[aria-current="page"]::after {
  width: 100%;
}

@media (max-width: 992px) {
  .news-page__section-head {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 22px;
  }

  .news-page__section-desc {
    max-width: none;
    text-align: left;
  }

  .news-page__featured {
    padding: 24px 24px 52px;
  }

  .news-page__feat.is-active {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .news-page__feat-media img {
    max-height: 260px;
    min-height: 220px;
  }

  .news-page__feat-arrows {
    position: static;
    justify-content: flex-end;
    margin-top: 24px;
    padding-right: 0;
  }

  .news-page__row {
    grid-template-columns: 80px minmax(0, 1fr) 44px;
    column-gap: 24px;
    padding: 24px 0;
  }

  .news-page__row-date {
    width: 80px;
  }

  .news-page__row-md {
    font-size: 24px;
  }

  .news-page__row-title {
    font-size: 17px;
  }

  .news-page__row-excerpt {
    -webkit-line-clamp: 3;
  }

}

@media (max-width: 560px) {
  .news-page__featured-section {
    padding-top: 36px;
  }

  .news-page__section-title {
    font-size: 24px;
  }

  .news-page__featured {
    padding: 18px 18px 46px;
  }

  .news-page__feat-tag {
    margin-bottom: 14px;
  }

  .news-page__feat-title {
    font-size: 24px;
  }

  .news-page__row {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "date go"
      "main main";
    column-gap: 16px;
    padding: 24px 0;
  }

  .news-page__row-date {
    grid-area: date;
    width: auto;
  }

  .news-page__row-go {
    grid-area: go;
  }

  .news-page__row-main {
    grid-area: main;
  }

  .news-page__row-tag {
    margin-top: 10px;
  }
}

/* —— 新闻详情页 news-detail.html —— */
.page-news-detail {
  --news-detail-bg: #ffffff;
  --news-detail-line: rgba(19, 32, 44, 0.1);
  --news-detail-text: #102030;
  --news-detail-muted: #66707b;
}

.page-news-detail .news-detail {
  background: var(--news-detail-bg);
}

/* —— 案例详情页 case-detail.html（版式与新闻详情共用 .news-detail__*） —— */
.page-case-detail {
  --news-detail-bg: #ffffff;
  --news-detail-line: rgba(19, 32, 44, 0.1);
  --news-detail-text: #102030;
  --news-detail-muted: #66707b;
}

.page-case-detail .news-detail {
  background: var(--news-detail-bg);
}

.news-detail__section {
  padding: 56px 0 96px;
}

.news-detail__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px 24px;
  margin-bottom: 26px;
}

.news-detail__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--news-detail-muted);
  transition: color 0.2s ease;
}

.news-detail__back:hover {
  color: var(--brand-gold);
}

.news-detail__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--news-detail-muted);
}

.news-detail__tag,
.news-detail__card-tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--brand-gold);
  background: rgba(173, 137, 80, 0.12);
}

.news-detail__article {
  min-width: 0;
  padding: 34px 34px 38px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfaf7 100%);
  border: 1px solid rgba(19, 32, 44, 0.08);
  box-shadow: 0 18px 42px rgba(16, 32, 48, 0.05);
}

.news-detail__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 44px;
  align-items: start;
}

.news-detail__header {
  margin-bottom: 28px;
}

.news-detail__title {
  margin: 0;
  font-size: clamp(30px, 3.6vw, 44px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--news-detail-text);
}

.news-detail__lead {
  max-width: 840px;
  margin: 18px 0 0;
  font-size: 16px;
  line-height: 1.95;
  color: var(--news-detail-muted);
}

.news-detail__hero {
  margin: 0 0 34px;
  overflow: hidden;
  background: #f3efe6;
}

.news-detail__hero img {
  width: 100%;
  height: auto;
  min-height: 340px;
  max-height: 520px;
  object-fit: cover;
  display: block;
}

.news-detail__content {
  font-size: 16px;
  line-height: 2;
  color: var(--news-detail-muted);
}

.news-detail__content h2 {
  margin: 34px 0 14px;
  font-size: 26px;
  line-height: 1.35;
  color: var(--news-detail-text);
}

.news-detail__content p {
  margin: 0 0 18px;
}

.news-detail__more {
  position: sticky;
  top: 96px;
  align-self: start;
}

.news-detail__more-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.news-detail__more-en {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(173, 137, 80, 0.88);
}

.news-detail__more-title {
  margin: 0;
  font-size: 28px;
  line-height: 1.2;
  color: var(--news-detail-text);
}

.news-detail__more-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--brand-gold);
  transition: color 0.2s ease;
}

.news-detail__more-link:hover {
  color: var(--brand-gold-soft);
}

.news-detail__more-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.news-detail__card {
  display: block;
  background: linear-gradient(180deg, #ffffff 0%, #fbfaf7 100%);
  border: 1px solid rgba(19, 32, 44, 0.08);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.news-detail__card:hover {
  transform: translateY(-2px);
  border-color: rgba(173, 137, 80, 0.24);
  box-shadow: 0 10px 24px rgba(17, 24, 32, 0.05);
}

.news-detail__card-media {
  display: block;
  overflow: hidden;
  background: #f3efe6;
}

.news-detail__card-media img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.news-detail__card:hover .news-detail__card-media img {
  transform: scale(1.04);
}

.news-detail__card-body {
  display: block;
  padding: 22px 22px 20px;
}

.news-detail__card h3 {
  margin: 14px 0 10px;
  font-size: 20px;
  line-height: 1.45;
  color: var(--news-detail-text);
}

.news-detail__card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--news-detail-muted);
}

.news-detail__card time {
  display: block;
  margin-top: 16px;
  font-size: 13px;
  color: #9aa2ab;
}

@media (max-width: 992px) {
  .news-detail__section {
    padding: 40px 0 72px;
  }

  .news-detail__layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .news-detail__topbar,
  .news-detail__more-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .news-detail__more {
    position: static;
    padding-top: 0;
  }

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

  .news-page__row-hit {
    grid-template-columns: minmax(0, 220px) minmax(0, 1fr);
  }
}

@media (max-width: 560px) {
  .news-page__row-hit {
    grid-template-columns: 1fr;
  }

  .news-page__row-main,
  .news-detail__article {
    padding: 22px 20px 24px;
  }

  .news-page__row-media img,
  .news-detail__card-media img {
    min-height: 200px;
    height: 200px;
  }

  .news-detail__hero img {
    min-height: 220px;
  }

  .news-detail__title {
    font-size: 28px;
  }

  .news-detail__lead,
  .news-detail__content {
    font-size: 15px;
  }

  .news-detail__content h2 {
    font-size: 22px;
  }

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

/* —— 应用领域页 applications.html —— */
.page-applications {
  --app-page-bg: #ffffff;
  --app-border: rgba(19, 32, 44, 0.1);
  --app-title: #102030;
  --app-text: #5f6973;
  --app-chip-bg: rgba(175, 137, 80, 0.12);
  --app-chip-text: #8a6938;
}

.page-applications .app-page {
  background: var(--app-page-bg);
  padding: 0 0 64px;
}

.app-overview {
  padding: 46px 0 36px;
}

.app-page-head {
  max-width: 1040px;
  margin: 0 auto 36px;
  text-align: center;
}

.app-page-head h1,
.app-section-head h2 {
  margin: 0;
  color: #071b34;
  font-size: 30px;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: 0;
}

.app-page-head p {
  margin: 14px auto 0;
  max-width: 860px;
  color: #5f6973;
  font-size: 15px;
  line-height: 1.8;
}

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

.app-card {
  min-width: 0;
  border: 1px solid rgba(19, 32, 44, 0.1);
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(16, 32, 48, 0.08);
  overflow: hidden;
}

.app-card__media {
  height: 220px;
  overflow: hidden;
  background: #e8eef4;
}

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

.app-card__body {
  position: relative;
  padding: 54px 36px 32px;
}

.app-card__icon {
  position: absolute;
  left: 34px;
  top: -36px;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border: 4px solid #ffffff;
  border-radius: 50%;
  color: #ffffff;
  background: #18304a;
  box-shadow: 0 10px 24px rgba(16, 32, 48, 0.18);
}

.app-card__icon .iconfont {
  font-size: 34px;
}

.app-card__title {
  margin: 8px 0 0;
  color: var(--app-title);
  font-size: 28px;
  line-height: 1.25;
  font-weight: 700;
}

.app-story__eyebrow {
  margin: 0;
  color: rgba(138, 105, 56, 0.78);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.app-story__lead {
  margin: 16px 0 0;
  color: #263544;
  font-size: 17px;
  line-height: 1.65;
}

.app-story__desc {
  margin: 12px 0 0;
  color: var(--app-text);
  font-size: 14px;
  line-height: 1.85;
}

.app-story__points {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.app-story__points li {
  position: relative;
  padding-left: 18px;
  color: var(--app-text);
  font-size: 13px;
  line-height: 1.75;
}

.app-story__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.82em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand-gold);
  transform: translateY(-50%);
}

.app-story__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.app-story__tags span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  color: var(--app-text);
  background: #f2f5f8;
  font-size: 12px;
  line-height: 1;
}

.app-advantages {
  padding: 36px 0 42px;
  background: linear-gradient(180deg, #f5f8fb 0%, #ffffff 100%);
}

.app-section-head {
  text-align: center;
}

.app-section-head span {
  display: block;
  width: 44px;
  height: 4px;
  margin: 13px auto 0;
  background: var(--brand-gold);
}

.app-advantage-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 30px;
}

.app-advantage {
  min-width: 0;
  padding: 0 32px;
  text-align: center;
  border-right: 1px solid rgba(7, 28, 53, 0.14);
}

.app-advantage:last-child {
  border-right: 0;
}

.app-advantage .iconfont {
  color: #18304a;
  font-size: 42px;
}

.app-advantage h3 {
  margin: 16px 0 0;
  color: #102030;
  font-size: 17px;
  line-height: 1.35;
  font-weight: 700;
}

.app-advantage p {
  margin: 8px auto 0;
  max-width: 230px;
  color: #687586;
  font-size: 13px;
  line-height: 1.65;
}

.app-cases {
  padding: 36px 0 0;
  background: #ffffff;
}

.app-case-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 28px;
}

.app-case-card {
  min-width: 0;
  background: #10243a;
  overflow: hidden;
}

.app-case-card a {
  display: block;
  color: #ffffff;
}

.app-case-card img {
  width: 100%;
  height: 165px;
  object-fit: cover;
}

.app-case-card div {
  min-height: 76px;
  padding: 15px 18px;
  background: linear-gradient(180deg, rgba(11, 28, 46, 0.82) 0%, #10243a 100%);
}

.app-case-card h3 {
  margin: 0;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 700;
}

.app-case-card p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  line-height: 1.5;
}

.app-cases__more {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

.app-cases__more a {
  min-width: 220px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1px solid #17273b;
  color: #17273b;
  font-size: 14px;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.app-cases__more a:hover {
  color: #ffffff;
  border-color: #071c35;
  background: #071c35;
}

@media (max-width: 1200px) {
  .app-card-grid,
  .app-case-grid {
    gap: 22px;
  }

  .app-card__body {
    padding: 50px 28px 30px;
  }
}

@media (max-width: 992px) {
  .app-card-grid,
  .app-advantage-grid,
  .app-case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .app-advantage:nth-child(2) {
    border-right: 0;
  }

  .app-advantage:nth-child(n + 3) {
    margin-top: 28px;
  }
}

@media (max-width: 640px) {
  .app-overview {
    padding: 34px 0 28px;
  }

  .app-card-grid,
  .app-advantage-grid,
  .app-case-grid {
    grid-template-columns: 1fr;
  }

  .app-page-head h1,
  .app-section-head h2 {
    font-size: 26px;
  }

  .app-card__media {
    height: 190px;
  }

  .app-card__body {
    padding: 48px 22px 28px;
  }

  .app-card__title {
    font-size: 25px;
  }

  .app-advantage {
    border-right: 0;
    padding: 0;
  }

  .app-advantage + .app-advantage {
    margin-top: 28px;
  }
}

/* —— 案例展示页 cases.html（仅卡片栅格，无左侧栏） —— */
.page-cases .events.events--page {
  padding: 28px 0 80px;
}

.page-cases .events--page .events__cases-wrap {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 8px 0 24px 0;
  min-width: 0;
}

.page-cases .events--page .events__track {
  margin-left: 0;
  padding: 0;
}

.page-case-category .case-category-page__section {
  padding: 56px 0 78px;
  background: linear-gradient(180deg, #f5f8fb 0%, #ffffff 100%);
}

.page-case-category .case-category-page__intro {
  margin-top: 22px;
}

.page-case-category .case-category-page__groups {
  display: grid;
  gap: 54px;
  margin-top: 34px;
}

.page-case-category .case-category-page__group {
  min-width: 0;
}

.page-case-category .case-category-page__group-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(7, 28, 53, 0.1);
}

.page-case-category .case-category-page__group-head h3 {
  margin: 0;
  color: #071b34;
  font-size: 24px;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: 0;
}

.page-case-category .case-category-page__group-head p {
  margin: 8px 0 0;
  color: #697586;
  font-size: 14px;
  line-height: 1.6;
}

.page-case-category .case-category-page__more {
  min-width: 118px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid #17273b;
  color: #17273b;
  font-size: 14px;
  line-height: 1;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.page-case-category .case-category-page__more:hover {
  color: #ffffff;
  border-color: #071c35;
  background: #071c35;
}

.page-case-category .case-category-page__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.page-case-category .events-home__card,
.page-case-category .hy-case-card--placeholder {
  min-width: 0;
}

@media (max-width: 1200px) {
  .page-case-category .case-category-page__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 992px) {
  .page-cases .events--page .events__cases-wrap {
    gap: 24px;
  }

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

@media (max-width: 640px) {
  .page-case-category .case-category-page__section {
    padding: 40px 0 56px;
  }

  .page-case-category .case-category-page__groups {
    gap: 42px;
  }

  .page-case-category .case-category-page__group-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .page-case-category .case-category-page__group-head h3 {
    font-size: 21px;
  }

  .page-case-category .case-category-page__grid {
    grid-template-columns: 1fr;
  }
}

/* —— 关于我们页 about.html —— */
.page-about {
  --about-blue: #ad8950;
  --about-blue-deep: #8f6a33;
  --about-blue-soft: #f6efe3;
  --about-text: #1e2430;
  --about-muted: #687283;
  --about-line: rgba(173, 137, 80, 0.14);
  background: #ffffff;
}

.about-page {
  overflow: hidden;
}

.about-section__eyebrow {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--about-blue);
  text-transform: uppercase;
}

.about-section__title {
  margin: 18px 0 0;
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.2;
  color: var(--about-text);
}

.about-section__underline {
  width: 62px;
  height: 4px;
  margin-top: 18px;
  background: linear-gradient(90deg, var(--about-blue), #c6a676);
}

.about-intro {
  padding: 74px 0 70px;
  background: #ffffff;
}

.about-intro__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
  gap: 66px;
  align-items: center;
}

.about-intro__lead,
.about-intro__text {
  color: var(--about-muted);
  line-height: 2;
}

.about-intro__lead {
  margin: 26px 0 0;
  font-size: 17px;
}

.about-intro__text {
  margin: 18px 0 0;
  font-size: 15px;
}

.about-intro__media {
  position: relative;
  min-height: 0;
}

.about-intro__frame {
  position: relative;
  width: 100%;
  background: #ffffff;
  box-shadow: 0 28px 56px rgba(15, 29, 77, 0.12);
  border: 1px solid rgba(173, 137, 80, 0.08);
  overflow: hidden;
}

.about-intro__frame img {
  width: 100%;
  aspect-ratio: 1.18 / 0.82;
  object-fit: cover;
}

.about-stats {
  padding: 26px 0 36px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfaf6 100%);
  border-top: 1px solid rgba(17, 31, 79, 0.05);
  border-bottom: 1px solid rgba(17, 31, 79, 0.05);
}

.about-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.about-stats__item {
  padding: 12px 24px;
  text-align: center;
  border-right: 1px solid rgba(173, 137, 80, 0.12);
}

.about-stats__item:last-child {
  border-right: 0;
}

.about-stats__value {
  margin: 0;
  font-size: clamp(42px, 4vw, 58px);
  line-height: 1;
  font-weight: 700;
  color: var(--about-text);
}

.about-stats__value span {
  margin-left: 4px;
  font-size: 18px;
  color: var(--about-blue);
}

.about-stats__label {
  margin: 14px 0 0;
  font-size: 14px;
  color: var(--about-muted);
}

.about-culture {
  padding: 86px 0 94px;
  background: #ffffff;
}

.about-culture__grid {
  display: grid;
  gap: 24px;
}

.about-culture-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "content media";
  min-height: 360px;
  background: #ffffff;
  border: 1px solid rgba(173, 137, 80, 0.1);
  box-shadow: 0 20px 44px rgba(19, 32, 44, 0.06);
  overflow: hidden;
}

.about-culture-card--reverse {
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "media content";
}

.about-culture-card__media {
  grid-area: media;
  position: relative;
  min-height: 100%;
  overflow: hidden;
}

.about-culture-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 18, 28, 0.08) 10%, rgba(12, 18, 28, 0.28) 100%);
}

.about-culture-card__media img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  display: block;
}

.about-culture-card__content {
  grid-area: content;
  padding: 54px 56px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-culture-card__eyebrow {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--about-blue);
  text-transform: uppercase;
}

.about-culture-card__title {
  margin: 18px 0 0;
  font-size: clamp(28px, 2.4vw, 38px);
  line-height: 1.28;
  color: var(--about-text);
}

.about-culture-card__text {
  margin: 18px 0 0;
  max-width: 44ch;
  font-size: 15px;
  line-height: 1.95;
  color: var(--about-muted);
}

.about-culture-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.about-culture-card__chips span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  font-size: 13px;
  font-weight: 600;
  color: #8a6938;
  background: #f6efe3;
}

.about-factory {
  padding: 84px 0 92px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfaf6 100%);
}

.about-factory__head {
  text-align: center;
}

.about-factory__head .about-section__underline {
  margin-left: auto;
  margin-right: auto;
}

.about-factory__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 40px;
}

.about-factory-card {
  background: #ffffff;
  border: 1px solid rgba(173, 137, 80, 0.1);
  box-shadow: 0 20px 44px rgba(19, 32, 44, 0.06);
  overflow: hidden;
}

.about-factory-card__media {
  aspect-ratio: 1.12 / 0.84;
  overflow: hidden;
  background: #f4efe3;
}

.about-factory-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-factory-card__caption {
  margin: 0;
  padding: 16px 18px 18px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--about-text);
}

.about-timeline {
  position: relative;
  padding: 84px 0 92px;
  overflow: hidden;
  background: #0a1830;
  color: #ffffff;
}

.about-timeline::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      165deg,
      rgba(6, 22, 52, 0.88) 0%,
      rgba(10, 36, 78, 0.9) 42%,
      rgba(4, 16, 40, 0.93) 100%
    ),
    url("../assets/images/overview-building.jpg");
  background-size: cover;
  background-position: center;
  pointer-events: none;
}

.about-timeline__pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 88% 24%, rgba(255, 255, 255, 0.05), transparent 20%),
    radial-gradient(circle at 18% 88%, rgba(198, 166, 118, 0.07), transparent 28%);
  pointer-events: none;
}

.about-timeline__inner {
  position: relative;
  z-index: 1;
}

.about-timeline__head {
  text-align: center;
}

.about-timeline__head .about-section__underline {
  margin-left: auto;
  margin-right: auto;
}

.about-timeline .about-section__eyebrow {
  color: rgba(255, 255, 255, 0.82);
}

.about-timeline .about-section__title {
  color: #ffffff;
}

.about-timeline .about-section__underline {
  background: linear-gradient(90deg, #ffffff, rgba(198, 166, 118, 0.95));
}

.about-timeline__stage {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  margin-top: 48px;
  padding: 28px 0 20px;
  min-height: 360px;
  transition: opacity 0.28s ease, transform 0.34s ease;
  will-change: opacity, transform;
}

.about-timeline__stage.is-switching-prev {
  opacity: 0.18;
  transform: translateX(22px);
}

.about-timeline__stage.is-switching-next {
  opacity: 0.18;
  transform: translateX(-22px);
}

.about-timeline__year {
  font-size: clamp(66px, 8vw, 112px);
  line-height: 1;
  font-weight: 300;
  color: #ffffff;
  transition: opacity 0.24s ease, transform 0.28s ease;
}

.about-timeline__body {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  min-height: 220px;
}

.about-timeline__thumb {
  width: 100%;
  aspect-ratio: 1.1 / 0.82;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.35);
}

.about-timeline__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-timeline__events {
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
  transition: opacity 0.24s ease, transform 0.28s ease;
}

.about-timeline__events li {
  position: relative;
  margin: 0 0 20px;
  padding-left: 24px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
  line-height: 1.9;
}

.about-timeline__events li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  background: #ffffff;
  border-radius: 50%;
}

.about-timeline__rail-wrap {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  align-items: center;
  margin-top: 12px;
  gap: 12px;
}

.about-timeline__nav {
  width: 48px;
  height: 48px;
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.about-timeline__nav:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.2);
}

.about-timeline__nav:disabled {
  opacity: 0.38;
  cursor: not-allowed;
  transform: none;
}

.about-timeline__rail {
  display: flex;
  gap: 22px;
  padding: 24px 20px 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  justify-content: flex-start;
}

.about-timeline__rail::-webkit-scrollbar {
  display: none;
}

.about-timeline__rail button {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0 22px;
  margin: 0;
  position: relative;
  flex: 0 0 auto;
  min-width: max-content;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  text-align: center;
  cursor: pointer;
  font: inherit;
}

.about-timeline__rail button:hover:not(.is-active) {
  color: rgba(255, 255, 255, 0.88);
}

.about-timeline__rail button:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.55);
  outline-offset: 4px;
}

.about-timeline__rail button.is-active {
  color: #ffffff;
  font-weight: 700;
}

.about-timeline__rail button.is-active::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -28px;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  background: #ffffff;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}

.about-honors {
  position: relative;
  padding: 82px 0 100px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfaf6 100%);
}

.about-honors__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 26%, rgba(173, 137, 80, 0.06), transparent 22%),
    radial-gradient(circle at 88% 70%, rgba(173, 137, 80, 0.06), transparent 22%);
  pointer-events: none;
}

.about-honors__inner {
  position: relative;
  z-index: 1;
}

.about-honors__head {
  text-align: center;
}

.about-honors__head .about-section__underline {
  margin-left: auto;
  margin-right: auto;
}

.about-honors__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 26px;
  margin-top: 38px;
}

.about-honor-card {
  min-width: 0;
}

.about-honor-card__sheet {
  padding: 18px;
  background: #ffffff;
  border: 1px solid rgba(173, 137, 80, 0.08);
  box-shadow: 0 18px 34px rgba(16, 38, 96, 0.12);
}

.about-honor-card__sheet img {
  width: 100%;
  aspect-ratio: 1.42 / 1;
  object-fit: contain;
  background: #ffffff;
}

.about-honor-card__caption {
  margin: 18px 0 0;
  text-align: center;
  color: #6a7180;
  font-size: 14px;
}

@media (max-width: 1200px) {
  .about-intro__inner {
    grid-template-columns: 1fr;
  }

  .about-intro__media {
    max-width: 760px;
  }

  .about-honors__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .about-intro,
  .about-culture,
  .about-factory,
  .about-timeline,
  .about-honors {
    padding-top: 64px;
    padding-bottom: 72px;
  }

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

  .about-stats__item:nth-child(2n) {
    border-right: 0;
  }

  .about-stats__item:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(173, 137, 80, 0.12);
  }

  .about-timeline__stage {
    grid-template-columns: 1fr;
    gap: 22px;
    min-height: 0;
  }

  .about-timeline__year {
    font-size: 72px;
  }

  .about-timeline__body {
    min-height: 0;
    grid-template-columns: 220px minmax(0, 1fr);
  }

  .about-culture-card {
    grid-template-columns: 1fr;
    grid-template-areas:
      "media"
      "content";
  }

  .about-culture-card--reverse {
    grid-template-columns: 1fr;
    grid-template-areas:
      "media"
      "content";
  }

  .about-culture-card__content {
    padding: 32px 28px 34px;
  }

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

  .about-timeline__rail-wrap {
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    gap: 10px;
  }

  .about-timeline__nav {
    width: 42px;
    height: 42px;
  }

  .about-timeline__rail button {
    padding: 0 18px;
  }
}

@media (max-width: 768px) {
  .about-intro__media {
    min-height: 0;
  }

  .about-stats__grid {
    grid-template-columns: 1fr;
  }

  .about-timeline__rail {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
  }

  .about-timeline__rail button {
    flex: 0 0 auto;
    min-width: max-content;
  }

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

  .about-stats__item {
    border-right: 0;
    border-bottom: 1px solid rgba(173, 137, 80, 0.12);
  }

  .about-stats__item:last-child {
    border-bottom: 0;
  }

  .about-timeline__year {
    font-size: 54px;
  }

  .about-timeline__body {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .about-timeline__thumb {
    max-width: 320px;
  }

  .about-timeline__rail {
    gap: 10px;
  }

  .about-timeline__rail button {
    text-align: center;
  }

  .about-timeline__rail button.is-active::before {
    left: 50%;
    top: -24px;
    transform: translateX(-50%);
    clip-path: polygon(50% 100%, 0 0, 100% 0);
    border-radius: 0;
  }

  .about-honor-card__sheet {
    padding: 14px;
  }

  .about-culture {
    padding-top: 56px;
    padding-bottom: 60px;
  }

  .about-culture__grid {
    margin-top: 30px;
    gap: 18px;
  }

  .about-culture-card__content {
    padding: 26px 20px 28px;
  }

  .about-culture-card__title {
    font-size: 24px;
  }

  .about-factory__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .about-factory {
    padding-top: 56px;
    padding-bottom: 60px;
  }

  .about-factory__grid {
    margin-top: 30px;
  }

  .about-factory-card__caption {
    padding: 14px 16px 16px;
  }

  .about-timeline__rail-wrap {
    grid-template-columns: 36px minmax(0, 1fr) 36px;
  }

  .about-timeline__nav {
    width: 36px;
    height: 36px;
  }

  .about-timeline__rail {
    gap: 14px;
    padding-top: 18px;
  }

  .about-timeline__rail button {
    padding: 0 16px;
  }
}

.products-page {
  background: #f5f7fb;
}

.products-toolbar {
  margin-top: -42px;
  position: relative;
  z-index: 2;
}

.products-toolbar__crumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: #697387;
  font-size: 13px;
}

.products-toolbar__crumbs a {
  color: inherit;
}

.products-toolbar__crumbs--standalone {
  margin-bottom: 30px;
}

.products-toolbar__panel {
  padding: 30px 34px;
  background: #ffffff;
  border: 1px solid rgba(18, 39, 93, 0.08);
  box-shadow: 0 22px 40px rgba(14, 31, 79, 0.08);
}

.products-toolbar__row {
  display: flex;
  align-items: center;
  gap: 26px;
}

.products-toolbar__row + .products-toolbar__row {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(18, 39, 93, 0.08);
}

.products-toolbar__label {
  flex: 0 0 88px;
  color: #1f2e4f;
  font-size: 15px;
  font-weight: 700;
}

.products-toolbar__tabs,
.products-toolbar__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.products-filter-chip,
.products-chip {
  height: 44px;
  padding: 0 22px;
  border: 1px solid #d9dfec;
  background: #ffffff;
  color: #556177;
  font-size: 14px;
  transition: all 0.2s ease;
}

.products-filter-chip.is-active,
.products-chip.is-active,
.products-filter-chip:hover,
.products-chip:hover {
  border-color: #1a46c7;
  background: #1a46c7;
  color: #ffffff;
}

.products-toolbar__search {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 44px;
  padding: 0 24px;
  border: 1px solid #1a46c7;
  background: #1a46c7;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
}

.products-display {
  padding: 36px 0 74px;
}

.products-display__stack {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.product-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
  background: linear-gradient(180deg, #ffffff 0%, #fbfaf7 100%);
  border: 1px solid rgba(19, 32, 44, 0.08);
  box-shadow: 0 18px 42px rgba(16, 32, 48, 0.06);
  overflow: hidden;
}

.product-feature--reverse .product-feature__visual {
  order: 2;
}

.product-feature--reverse .product-feature__body {
  order: 1;
}

.product-feature__visual {
  position: relative;
  min-height: 440px;
  background:
    radial-gradient(circle at 50% 35%, rgba(175, 137, 80, 0.16), transparent 40%),
    linear-gradient(180deg, #ffffff 0%, #f7f4ed 100%);
}

.product-feature__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(19, 32, 44, 0.02) 0%, rgba(19, 32, 44, 0.08) 100%);
}

.product-feature__visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 48px;
}

.product-feature__body {
  position: relative;
  padding: 56px 54px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-feature__body::before {
  content: "";
  position: absolute;
  right: 26px;
  top: 20px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(175, 137, 80, 0.08) 0%, rgba(175, 137, 80, 0) 72%);
  pointer-events: none;
}

.product-feature__tag {
  margin: 0;
  color: rgba(138, 105, 56, 0.82);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.product-feature__title {
  margin: 0;
  color: #102030;
  font-size: clamp(30px, 3vw, 40px);
  line-height: 1.2;
  font-weight: 700;
}

.product-feature__lead {
  margin: 16px 0 0;
  max-width: 560px;
  color: #263544;
  font-size: 20px;
  line-height: 1.6;
}

.product-feature__desc {
  margin: 18px 0 0;
  max-width: 600px;
  color: #606a74;
  font-size: 15px;
  line-height: 1.9;
}

.product-feature__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.product-feature__chips span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 16px;
  font-size: 13px;
  font-weight: 600;
  color: #8a6938;
  background: rgba(175, 137, 80, 0.12);
  border: 1px solid rgba(175, 137, 80, 0.14);
}

.product-feature__points {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.product-feature__points li {
  position: relative;
  padding-left: 18px;
  color: #606a74;
  font-size: 15px;
  line-height: 1.8;
}

.product-feature__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.8em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-gold);
  transform: translateY(-50%);
}

.product-feature__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 24px;
  margin-top: 26px;
}

.product-feature__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #102030;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.product-feature__link:hover {
  color: var(--brand-gold);
}

.product-feature__link--secondary {
  color: #6a737d;
  font-weight: 600;
}

.product-feature__link--secondary:hover {
  color: #102030;
}

@media (max-width: 1200px) {
  .product-feature__body {
    padding: 42px 36px;
  }
}

@media (max-width: 992px) {
  .products-toolbar {
    margin-top: -28px;
  }

  .product-feature,
  .product-feature--reverse {
    grid-template-columns: 1fr;
  }

  .product-feature--reverse .product-feature__visual,
  .product-feature--reverse .product-feature__body {
    order: initial;
  }
}

@media (max-width: 768px) {
  .product-feature__visual {
    min-height: 280px;
  }

  .product-feature__visual img {
    padding: 24px;
  }

  .product-feature__body {
    padding: 30px 20px 32px;
  }

  .product-feature__title {
    font-size: 28px;
  }

  .product-feature__lead {
    font-size: 17px;
  }

  .product-feature__desc,
  .product-feature__points li {
    font-size: 14px;
  }
}

.contact-page {
  background: #ffffff;
  color: #101926;
}

.contact-hero-layout {
  padding: 50px 0 0;
  background: #ffffff;
}

.contact-hero-layout__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  align-items: stretch;
  min-height: 405px;
}

.contact-info-panel {
  padding: 0 72px 56px 0;
}

.contact-block-head h1,
.contact-block-head h2 {
  margin: 0;
  color: #071b34;
  font-size: 28px;
  line-height: 1.28;
  font-weight: 700;
}

.contact-block-head span {
  display: block;
  width: 36px;
  height: 3px;
  margin-top: 14px;
  background: var(--brand-gold);
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 38px;
  border-top: 1px solid rgba(16, 25, 38, 0.1);
  border-left: 1px solid rgba(16, 25, 38, 0.1);
}

.contact-info-item {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 18px;
  min-height: 128px;
  padding: 30px 28px;
  border-right: 1px solid rgba(16, 25, 38, 0.1);
  border-bottom: 1px solid rgba(16, 25, 38, 0.1);
}

.contact-info-item__icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(173, 137, 80, 0.72);
  border-radius: 50%;
  color: var(--brand-gold);
  font-size: 22px;
}

.contact-info-item h2 {
  margin: 0;
  color: #071b34;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 700;
}

.contact-info-item p {
  margin: 9px 0 0;
  color: #4b5968;
  font-size: 14px;
  line-height: 1.7;
}

.contact-hero-layout__image {
  position: relative;
  min-height: 405px;
  overflow: hidden;
  background: #dce5ee;
}

.contact-hero-layout__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-map__canvas {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 405px;
  border: 0;
}

#mapbox img {
  max-width: none;
}

.contact-map__fallback {
  position: absolute;
  inset: 0;
  display: none;
  flex-direction: column;
  justify-content: center;
  padding: 42px;
  background:
    linear-gradient(135deg, rgba(7, 27, 52, 0.92), rgba(16, 40, 65, 0.82)),
    url('/static/default/assets/images/about-service.jpg') center / cover;
  color: #ffffff;
}

.contact-map--fallback .contact-map__canvas {
  display: none;
}

.contact-map--fallback .contact-map__fallback {
  display: flex;
}

.contact-map__fallback strong {
  font-size: 22px;
  line-height: 1.35;
}

.contact-map__fallback p {
  max-width: 360px;
  margin: 16px 0 0;
  font-size: 15px;
  line-height: 1.8;
}

.contact-map__fallback span {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.contact-map__link {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  background: #071b34;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(7, 27, 52, 0.2);
  transition: background 180ms ease;
}

.contact-map__link:hover {
  background: #102841;
  color: #ffffff;
}

.contact-map-info {
  max-width: 260px;
  color: #1d2836;
  font-size: 13px;
  line-height: 1.7;
}

.contact-map-info strong {
  color: #071b34;
  font-size: 14px;
}

.contact-map-info ul {
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.contact-map-info li + li {
  margin-top: 4px;
}

.contact-message-section {
  padding: 70px 0 80px;
  background: linear-gradient(180deg, #f6f8fb 0%, #ffffff 100%);
}

.contact-message-section__inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: 72px;
  align-items: start;
}

.contact-message-copy p {
  margin: 28px 0 0;
  max-width: 310px;
  color: #626c78;
  font-size: 14px;
  line-height: 1.85;
}

.contact-form {
  margin-top: 0;
}

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

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(16, 25, 38, 0.1);
  background: #ffffff;
  color: #101926;
  font-size: 14px;
  padding: 0 18px;
  transition: border-color 180ms ease, background-color 180ms ease;
}

.contact-form input {
  height: 48px;
}

.contact-form textarea {
  height: 108px;
  margin-top: 16px;
  padding-top: 14px;
  resize: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(16, 25, 38, 0.24);
  background: #ffffff;
}

.contact-form input.is-invalid,
.contact-form textarea.is-invalid {
  border-color: #c0392b;
  background: #fff8f7;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #98a1ad;
}

.contact-form__submit {
  margin-top: 16px;
  min-width: 150px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 28px;
  border: 0;
  background: #071b34;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: background 180ms ease;
}

.contact-form__submit:hover {
  background: #102841;
}

.contact-form__submit:disabled {
  cursor: not-allowed;
  opacity: 0.72;
}

@media (max-width: 1100px) {
  .contact-hero-layout__inner {
    grid-template-columns: 1fr;
  }

  .contact-info-panel {
    padding-right: 0;
  }

  .contact-hero-layout__image {
    min-height: 320px;
  }

  .contact-map__canvas {
    min-height: 320px;
  }

  .contact-message-section__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-message-copy p {
    max-width: 560px;
  }
}

@media (max-width: 768px) {
  .contact-hero-layout {
    padding-top: 34px;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .contact-info-item {
    grid-template-columns: 52px minmax(0, 1fr);
    padding: 24px 18px;
  }

  .contact-form__grid {
    grid-template-columns: 1fr;
  }

  .contact-message-section {
    padding: 48px 0 58px;
  }

  .contact-block-head h1,
  .contact-block-head h2 {
    font-size: 25px;
  }

  .contact-hero-layout__image {
    min-height: 240px;
  }

  .contact-map__canvas {
    min-height: 240px;
  }

  .contact-map__fallback {
    padding: 28px 22px;
  }
}

/* Homepage overview refactor */
.overview {
  position: relative;
  padding: 88px 0 110px;
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  overflow: hidden;
}

.overview__shell {
  position: relative;
  min-height: 640px;
  padding-top: 30px;
}

.overview__intro {
  position: relative;
  z-index: 2;
  max-width: 520px;
  padding: 30px 0 0;
}

.overview__dots {
  width: 260px;
  height: 140px;
  margin-bottom: -66px;
  background-image: radial-gradient(circle, rgba(26, 70, 199, 0.16) 1.6px, transparent 1.7px);
  background-size: 16px 16px;
}

.overview__eyebrow {
  position: relative;
  margin: 0;
  color: #1358b5;
  font-size: clamp(42px, 5vw, 58px);
  line-height: 0.95;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.overview__headline {
  margin: 10px 0 0;
  color: #0f1521;
  font-size: 34px;
  line-height: 1.15;
  font-weight: 500;
}

.overview__summary {
  max-width: 560px;
  margin: 28px 0 0;
  color: #6f7889;
  font-size: 15px;
  line-height: 2;
}

.overview__more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 42px;
  min-width: 128px;
  height: 44px;
  padding: 0 22px;
  border: 1px solid #1a67d1;
  color: #1a67d1;
  background: #ffffff;
  font-size: 14px;
  font-weight: 600;
}

.overview__visual {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.overview__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.9) 24%, rgba(255, 255, 255, 0.58) 42%, rgba(255, 255, 255, 0.08) 64%, rgba(255, 255, 255, 0) 100%);
}

.overview__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  filter: saturate(0.92) brightness(1.05);
}

.overview__stats {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr 1fr;
  gap: 0;
  margin-top: 170px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  align-items: end;
}

.overview__stat {
  position: relative;
  min-height: 156px;
  padding: 30px 26px 22px;
  background: #ffffff;
  border-top: 1px solid rgba(19, 88, 181, 0.08);
  border-bottom: 1px solid rgba(19, 88, 181, 0.08);
  border-right: 1px solid rgba(19, 88, 181, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.overview__stat:first-child {
  border-left: 1px solid rgba(19, 88, 181, 0.08);
}

.overview__stat--primary {
  background: #125ca7;
  color: #ffffff;
}

.overview__stat-icon {
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 12px 0 0;
  background: transparent;
  color: #1358b5;
  font-size: 28px;
}

.overview__stat--primary .overview__stat-icon {
  color: #ffffff;
}

.overview__stat-value {
  margin: 0;
  color: #05070c;
  font-size: clamp(38px, 4vw, 52px);
  line-height: 1;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overview__stat-suffix {
  margin-left: 4px;
  font-size: 0.44em;
}

.overview__stat--primary .overview__stat-value,
.overview__stat--primary .overview__stat-label {
  color: #ffffff;
}

.overview__stat-label {
  margin: 12px 0 0;
  color: #59647a;
  font-size: 14px;
  line-height: 1.5;
}

@media (max-width: 1200px) {
  .overview__intro {
    max-width: 760px;
  }

  .overview__visual {
    inset: 0;
  }

  .overview__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 120px;
  }
}

@media (max-width: 768px) {
  .overview {
    padding: 64px 0 74px;
  }

  .overview__dots {
    width: 180px;
    height: 92px;
    margin-bottom: -36px;
  }

  .overview__headline {
    font-size: 28px;
  }

  .overview__summary {
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.9;
  }

  .overview__more {
    margin-top: 28px;
  }

  .overview__visual {
    position: relative;
    left: 50%;
    width: 100vw;
    height: 320px;
    margin-top: 28px;
    transform: translateX(-50%);
  }

  .overview__visual::after {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.04) 100%);
  }

  .overview__stats {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 18px;
  }

  .overview__stat {
    min-height: 136px;
    padding: 24px 20px 18px;
  }

  .overview__stat-icon {
    font-size: 28px;
  }

  .overview__stat-value {
    font-size: 40px;
  }
}

/* Homepage product/about override */
.product-showcase {
  padding: 72px 0 84px;
  background: #ffffff;
  overflow-x: hidden;
}

.product-showcase__bg,
.product-showcase__layout,
.product-showcase__side,
.product-showcase__viewer,
.product-showcase__slides,
.product-showcase__controls {
  display: none;
}

.product-showcase__shell {
  position: relative;
  max-width: 100%;
  overflow: visible;
}

.product-showcase__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  min-width: 0;
}

.product-showcase .home-section-head__titles {
  max-width: none;
  overflow: visible;
}

.product-showcase .home-section-head__ghost {
  top: -0.28em;
  font-size: clamp(44px, 6vw, 86px);
  letter-spacing: 0;
}

.product-showcase__head-aside {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 18px;
  padding-top: 4px;
  min-width: 0;
}

.product-showcase__title-group {
  position: relative;
}

.product-showcase__ghost {
  position: absolute;
  left: 0;
  top: -10px;
  margin: 0;
  font-size: clamp(48px, 5vw, 78px);
  line-height: 1;
  font-weight: 700;
  color: rgba(17, 32, 74, 0.05);
  letter-spacing: 0.02em;
  pointer-events: none;
}

.product-showcase__section-title {
  position: relative;
  margin: 0;
  font-size: 42px;
  line-height: 1.05;
  font-weight: 700;
  color: #111111;
}

.product-showcase__section-lead {
  position: relative;
  margin: 10px 0 0;
  color: #313131;
  font-size: 18px;
  line-height: 1.6;
}

.product-showcase__accent {
  display: block;
  width: 32px;
  height: 3px;
  margin-top: 22px;
  background: var(--brand-gold);
}

.product-showcase__tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 28px;
  padding-top: 0;
  color: #555555;
  font-size: 15px;
}

.product-showcase__tabs span,
.product-showcase__tabs a {
  position: relative;
  padding-bottom: 10px;
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease;
}

.product-showcase__tabs span.is-active::after,
.product-showcase__tabs a.is-active::after,
.product-showcase__tabs a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--brand-gold);
}

.product-showcase__tabs a:hover {
  color: var(--brand-gold);
}

.product-showcase__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.product-card-ref {
  border: 1px solid #e8e8e8;
  background: #ffffff;
  overflow: hidden;
  transition: border-color 0.28s ease, box-shadow 0.28s ease, transform 0.28s ease;
}

.product-card-ref a {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.product-card-ref__image {
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 26px;
  background: #ffffff;
  overflow: hidden;
}

.product-card-ref__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.32s ease, filter 0.32s ease;
}

.product-card-ref__body {
  position: relative;
  min-height: 132px;
  padding: 16px 16px 18px;
  background: #f7f7f7;
  border-top: 1px solid #ececec;
  transition: background 0.28s ease, border-color 0.28s ease;
}

.product-card-ref__series {
  margin: 0;
  color: #7f7f7f;
  font-size: 12px;
}

.product-card-ref h3 {
  margin: 10px 0 0;
  color: #0f1521;
  font-size: 24px;
  line-height: 1.35;
  transition: color 0.28s ease;
}

.product-card-ref p:last-child {
  margin: 10px 0 0;
  color: #666666;
  font-size: 14px;
  line-height: 1.85;
}

.product-card-ref:hover {
  transform: translateY(-8px);
  border-color: rgba(173, 137, 80, 0.62);
  box-shadow: 0 18px 42px rgba(17, 32, 74, 0.13);
}

.product-card-ref:hover .product-card-ref__image img {
  transform: scale(1.06);
  filter: drop-shadow(0 18px 26px rgba(17, 32, 74, 0.16));
}

.product-card-ref:hover .product-card-ref__body {
  background: linear-gradient(180deg, #ffffff 0%, #f8f3ea 100%);
  border-top-color: rgba(173, 137, 80, 0.32);
}

.product-card-ref:hover h3 {
  color: var(--brand-gold);
}

.overview {
  padding: 86px 0 76px;
  background: #f7f7f7;
}

.overview__shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  min-height: unset;
  padding-top: 0;
}

.overview__visual {
  position: relative;
  left: auto;
  width: auto;
  transform: none;
  z-index: 1;
  overflow: hidden;
  margin-top: 0;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.overview__visual::after {
  display: none;
}

.overview__visual img {
  width: 100%;
  flex: 1 1 auto;
  min-height: 420px;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: none;
}

.overview__panel {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  min-height: 0;
  margin: 0 0 0 -24px;
  padding: 34px 42px 36px;
  background: #ffffff;
  border: 1px solid #ececec;
}

.overview__panel::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-top: 18px solid var(--brand-gold);
  border-left: 18px solid transparent;
}

.overview__panel .home-section-head__titles {
  margin-bottom: 6px;
}

.overview__panel .home-section-head__ghost {
  color: rgba(19, 32, 44, 0.06);
}

.overview__summary {
  position: relative;
  max-width: none;
  margin: 18px 0 0;
  color: #666666;
  font-size: 14px;
  line-height: 2;
}

.overview__dots,
.overview__eyebrow,
.overview__more {
  display: none;
}

.overview__actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.overview__action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: #4f5562;
  font-size: 14px;
}

.overview__action .iconfont {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid #d9d9d9;
  color: #7a7a7a;
  font-size: 24px;
}

.overview__action.is-active .iconfont {
  border-color: var(--brand-gold);
  color: var(--brand-gold);
}

.overview__stats {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  width: 100%;
  margin: 26px 0 0;
}

.overview__stat {
  min-height: auto;
  padding: 0 16px;
  background: transparent;
  border: 0;
  box-shadow: none;
  text-align: center;
}

.overview__stat + .overview__stat {
  border-left: 1px solid rgba(173, 137, 80, 0.22);
}

.overview__stat-icon {
  display: none;
}

.overview__stat--primary {
  background: transparent;
  color: inherit;
}

.overview__stat-value,
.overview__stat--primary .overview__stat-value {
  color: var(--brand-gold);
  background: linear-gradient(90deg, #7a5a32 0%, var(--brand-gold) 48%, var(--brand-gold-soft) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: clamp(46px, 5vw, 60px);
  justify-content: center;
}

.overview__stat-suffix {
  margin-left: 4px;
  font-size: 0.38em;
  color: var(--brand-gold);
  -webkit-text-fill-color: var(--brand-gold);
}

.overview__stat-label,
.overview__stat--primary .overview__stat-label {
  margin-top: 8px;
  color: #5f5647;
  font-size: 14px;
}

@media (max-width: 1200px) {
  .product-showcase__head,
  .overview__shell {
    grid-template-columns: 1fr;
    display: block;
  }

  .product-showcase__head-aside {
    align-items: flex-start;
    margin-top: 12px;
  }

  .product-showcase__tabs {
    justify-content: flex-start;
    margin-top: 10px;
    padding-top: 0;
  }

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

  .overview__panel {
    margin: 0;
  }
}

@media (max-width: 768px) {
  .product-showcase {
    padding: 56px 0 64px;
  }

  .product-showcase .home-section-head__title {
    font-size: 30px;
  }

  .product-showcase__cards,
  .overview__actions,
  .overview__stats {
    grid-template-columns: 1fr;
  }

  .overview__visual img {
    height: 280px;
  }

  .overview__panel {
    padding: 24px 20px 26px;
  }

  .overview__stat + .overview__stat {
    border-left: 0;
    border-top: 1px solid rgba(17, 32, 74, 0.12);
    padding-top: 18px;
    margin-top: 18px;
  }
}

/* Product center page: reference layout */
.page-products {
  background: #ffffff;
}

.page-products .products-page {
  background: #ffffff;
}

.hy-products-filter {
  padding: 34px 0 28px;
  background: #ffffff;
  border-bottom: 1px solid #eef2f6;
}

.hy-products-filter__panel {
  display: grid;
  gap: 22px;
}

.hy-products-filter__row {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  align-items: center;
  gap: 28px;
  min-height: 38px;
}

.hy-products-filter__label {
  color: #243244;
  font-size: 14px;
  line-height: 1;
  white-space: nowrap;
}

.hy-products-filter__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 54px;
  min-width: 0;
}

.hy-products-filter__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  color: #4f5f70;
  font-size: 14px;
  line-height: 1.2;
  white-space: nowrap;
  transition: color 0.2s ease, background 0.2s ease;
}

.hy-products-filter__item:hover {
  color: #071c35;
}

.hy-products-filter__item.is-active {
  min-width: 86px;
  padding: 0 18px;
  color: #ffffff;
  background: #061c35;
}

.hy-product-list {
  padding: 35px 0 70px;
  background: #ffffff;
}

.hy-products-section-head h2 {
  position: relative;
  margin: 0;
  padding-bottom: 15px;
  color: #071b34;
  font-size: 26px;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: 0;
}

.hy-products-section-head h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 42px;
  height: 3px;
  background: #ad8950;
}

.hy-products-section-head p {
  margin: 10px 0 0;
  color: #4c5a69;
  font-size: 14px;
  line-height: 1.65;
}

.hy-product-list__items {
  display: grid;
  gap: 8px;
  margin-top: 22px;
}

.hy-product-row {
  min-height: 196px;
  display: grid;
  grid-template-columns: 350px minmax(0, 1fr) 178px;
  align-items: stretch;
  border: 1px solid #e1e7ee;
  background: #ffffff;
}

.hy-product-row__media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 20px 42px;
  background: #f8fafc;
  overflow: hidden;
}

.hy-product-row__media img {
  width: 100%;
  height: 154px;
  object-fit: contain;
  transition: transform 0.25s ease;
}

.hy-product-row:hover .hy-product-row__media img {
  transform: scale(1.035);
}

.hy-product-row:nth-child(n+4) .hy-product-row__media img {
  object-fit: cover;
  transform: scale(1.34);
}

.hy-product-row:nth-child(n+4):hover .hy-product-row__media img {
  transform: scale(1.4);
}

.hy-product-row__body {
  min-width: 0;
  padding: 36px 24px 30px 32px;
}

.hy-product-row__title {
  margin: 0;
  color: #071b34;
  font-size: 22px;
  line-height: 1.28;
  font-weight: 700;
  letter-spacing: 0;
}

.hy-product-row__desc {
  max-width: 640px;
  margin: 17px 0 0;
  color: #627082;
  font-size: 14px;
  line-height: 1.85;
}

.hy-product-row__action {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px 0 0;
}

.hy-product-row__link {
  width: 140px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 1px solid #17273b;
  color: #17273b;
  font-size: 14px;
  line-height: 1;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.hy-product-row__link .iconfont {
  font-size: 14px;
}

.hy-product-row__link:hover {
  color: #ffffff;
  border-color: #071c35;
  background: #071c35;
}

.hy-products-pager {
  display: flex;
  justify-content: center;
  margin-top: 28px;
  min-height: 38px;
}

.hy-products-pager:empty {
  display: none;
}

.hy-products-pager ul,
.hy-products-pager .pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hy-products-pager li {
  list-style: none;
}

.hy-products-pager a,
.hy-products-pager span {
  min-width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #dfe5eb;
  color: #405064;
  background: #ffffff;
  font-size: 13px;
  line-height: 1;
}

.hy-products-pager .active a,
.hy-products-pager .active span,
.hy-products-pager li.active a,
.hy-products-pager li.active span {
  color: #ffffff;
  border-color: #061c35;
  background: #061c35;
}

.hy-products-pager .disabled a,
.hy-products-pager .disabled span {
  color: #9da8b5;
  background: #f7f9fb;
}

.hy-case-showcase {
  padding: 35px 0 70px;
  background: linear-gradient(180deg, #f4f8fc 0%, #ffffff 100%);
}

.hy-products-section-head--cases h2 {
  padding-bottom: 0;
}

.hy-products-section-head--cases h2::after {
  display: none;
}

.hy-case-tabs {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 0;
  margin-top: 25px;
}

.hy-case-tabs a {
  position: relative;
  min-width: 112px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  color: #344457;
  font-size: 15px;
  transition: color 0.2s ease, background 0.2s ease;
}

.hy-case-tabs a.is-active {
  color: #ffffff;
  background: #061c35;
}

.hy-case-tabs a.is-active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #061c35;
  transform: translateX(-50%);
}

.hy-case-tabs a:not(.is-active):hover {
  color: #071c35;
}

.hy-case-panel {
  display: none;
}

.hy-case-panel.is-active {
  display: block;
}

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

.hy-case-card a {
  display: block;
  color: inherit;
}

.hy-case-card__media {
  height: 170px;
  background: #eaf0f5;
  overflow: hidden;
}

.hy-case-card__placeholder-media {
  height: 170px;
  display: grid;
  place-items: center;
  color: rgba(7, 28, 53, 0.32);
  background:
    linear-gradient(135deg, rgba(7, 28, 53, 0.08) 0%, rgba(173, 137, 80, 0.08) 100%),
    #edf2f6;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: 0;
}

.hy-case-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hy-case-card h3 {
  margin: 16px 0 0;
  color: #071b34;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 700;
  letter-spacing: 0;
}

.hy-case-card p {
  margin: 6px 0 0;
  color: #697586;
  font-size: 13px;
  line-height: 1.65;
}

.hy-case-card--placeholder h3,
.hy-case-card--placeholder p {
  color: #7b8795;
}

.hy-case-showcase__more {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.hy-case-showcase__more a {
  width: 260px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border: 1px solid #17273b;
  color: #17273b;
  font-size: 14px;
  line-height: 1;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.hy-case-showcase__more a:hover {
  color: #ffffff;
  border-color: #071c35;
  background: #071c35;
}

@media (max-width: 1200px) {
  .hy-products-filter__nav {
    gap: 12px 28px;
  }

  .hy-product-row {
    grid-template-columns: 300px minmax(0, 1fr) 158px;
  }

  .hy-product-row__media {
    padding: 20px 30px;
  }

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

@media (max-width: 992px) {
  .hy-products-filter__row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hy-product-row {
    grid-template-columns: 240px minmax(0, 1fr);
  }

  .hy-product-row__action {
    grid-column: 2;
    justify-content: flex-start;
    padding: 0 24px 26px 32px;
  }

  .hy-product-row__body {
    padding-bottom: 18px;
  }
}

@media (max-width: 768px) {
  .hy-products-filter__nav,
  .hy-case-tabs {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 6px;
  }

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

  .hy-product-row__media {
    min-height: 190px;
  }

  .hy-product-row__body {
    padding: 24px 20px 16px;
  }

  .hy-product-row__action {
    grid-column: auto;
    padding: 0 20px 24px;
  }

  .hy-product-row__link,
  .hy-case-showcase__more a {
    width: 100%;
  }

  .hy-case-grid {
    grid-template-columns: 1fr;
  }

  .hy-case-card__media {
    height: 210px;
  }
}

/* Unified media ratios: products, cases and news */
.product-card-ref__image,
.hy-product-row__media,
.pd-gallery__main-wrap {
  aspect-ratio: var(--ratio-product-media);
}

.product-card-ref__image,
.hy-product-row__media {
  height: auto;
}

.product-card-ref__image img,
.hy-product-row__media img,
.hy-product-row:nth-child(n+4) .hy-product-row__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: none;
}

.product-card-ref:hover .product-card-ref__image img,
.hy-product-row:hover .hy-product-row__media img,
.hy-product-row:nth-child(n+4):hover .hy-product-row__media img {
  transform: scale(1.035);
}

.events-home__media,
.events__img-wrap,
.hy-case-card__media,
.hy-case-card__placeholder-media {
  aspect-ratio: var(--ratio-case-media);
  height: auto;
}

.events-home__media img,
.events__img-wrap img,
.hy-case-card__media img,
.app-case-card img {
  width: 100%;
  height: 100%;
  aspect-ratio: var(--ratio-case-media);
  object-fit: cover;
}

.app-case-card img {
  display: block;
  height: auto;
}

.news-home__feat-media,
.news-page__feat-media,
.news-page__row-media,
.news-detail__card-media {
  aspect-ratio: var(--ratio-news-media);
  min-height: 0;
  height: auto;
}

.news-home__feat-media img,
.news-page__feat-media img,
.news-page__row-media img,
.news-detail__card-media img {
  width: 100%;
  height: 100%;
  min-height: 0;
  max-height: none;
  aspect-ratio: var(--ratio-news-media);
  object-fit: cover;
}

.news-page__row-hit {
  align-items: start;
}

/* News list page: category tabs + vertical list + sidebar */
.news-page__board {
  padding: 52px 0 88px;
  background: #ffffff;
}

.news-page__tabs {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 28px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.news-page__tab {
  min-width: 108px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  color: #172434;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: color 0.2s ease, background 0.2s ease;
}

.news-page__tab:hover,
.news-page__tab.is-active {
  color: #ffffff;
  background: #071c35;
}

.news-page__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 44px;
  align-items: start;
}

.news-page__content {
  min-width: 0;
}

.news-page__list {
  display: block;
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(17, 33, 50, 0.1);
  background: #ffffff;
}

.news-page__item {
  margin: 0;
  border-bottom: 1px solid rgba(17, 33, 50, 0.1);
}

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

.news-page__item-link {
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr) 96px;
  gap: 26px;
  align-items: center;
  min-height: 190px;
  padding: 18px 26px 18px 0;
  color: inherit;
  text-decoration: none;
  transition: background 0.2s ease;
}

.news-page__item-link:hover {
  background: #fbfaf7;
}

.news-page__item-media {
  display: block;
  overflow: hidden;
  background: #eef1f4;
  aspect-ratio: var(--ratio-news-media);
}

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

.news-page__item-link:hover .news-page__item-media img {
  transform: scale(1.04);
}

.news-page__item-body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.news-page__item-tag {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  margin-bottom: 12px;
  border: 1px solid rgba(173, 137, 80, 0.28);
  color: #ad8950;
  background: rgba(173, 137, 80, 0.08);
  font-size: 12px;
  font-weight: 700;
}

.news-page__item-title {
  display: block;
  color: #102030;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 700;
  transition: color 0.2s ease;
}

.news-page__item-link:hover .news-page__item-title {
  color: #ad8950;
}

.news-page__item-desc {
  display: -webkit-box;
  margin-top: 10px;
  color: #66707b;
  font-size: 14px;
  line-height: 1.8;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-page__item-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  color: #102030;
  font-size: 14px;
  font-weight: 700;
}

.news-page__item-date {
  justify-self: end;
  align-self: start;
  padding-top: 8px;
  color: #87919d;
  font-style: normal;
  text-align: center;
}

.news-page__item-date span {
  display: block;
  color: #7a8490;
  font-size: 42px;
  line-height: 1;
  font-weight: 300;
}

.news-page__item-date em {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  font-style: normal;
}

.news-page__pager {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.news-page__pager ul,
.hy-products-pager ul {
  display: flex;
  align-items: center;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.news-page__pager li,
.hy-products-pager li {
  margin: 0;
}

.news-page__pager a,
.news-page__pager span,
.hy-products-pager a,
.hy-products-pager span {
  min-width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(17, 33, 50, 0.12);
  color: #4f5b68;
  background: #ffffff;
  font-size: 14px;
}

.news-page__pager .active span,
.hy-products-pager .active span {
  color: #ffffff;
  border-color: #071c35;
  background: #071c35;
}

.news-page__aside {
  display: grid;
  gap: 28px;
}

.news-page__search {
  height: 48px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 48px;
  border: 1px solid rgba(17, 33, 50, 0.12);
  background: #ffffff;
}

.news-page__search input {
  width: 100%;
  min-width: 0;
  border: 0;
  padding: 0 18px;
  color: #102030;
  font-size: 14px;
  outline: none;
}

.news-page__search button {
  border: 0;
  background: transparent;
  color: #66707b;
  cursor: pointer;
}

.news-page__search button:hover {
  color: #ad8950;
}

.news-page__side-card {
  padding: 36px 34px;
  border: 1px solid rgba(17, 33, 50, 0.12);
  background: #ffffff;
}

.news-page__side-card h2 {
  margin: 0 0 28px;
  color: #102030;
  font-size: 20px;
  line-height: 1.3;
}

.news-page__side-nav {
  display: grid;
  gap: 4px;
}

.news-page__side-nav a {
  position: relative;
  min-height: 42px;
  display: flex;
  align-items: center;
  color: #263446;
  font-size: 14px;
  font-weight: 600;
}

.news-page__side-nav a::after {
  content: "";
  width: 22px;
  height: 2px;
  margin-left: auto;
  background: transparent;
}

.news-page__side-nav a:hover,
.news-page__side-nav a.is-active {
  color: #ad8950;
}

.news-page__side-nav a.is-active::after {
  background: #ad8950;
}

.news-page__contact {
  min-height: 300px;
  padding: 38px 34px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(7, 28, 53, 0.96), rgba(13, 50, 82, 0.94)),
    url("/static/default/assets/images/media-main.png") center / cover;
}

.news-page__contact p {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.news-page__contact h2 {
  max-width: 210px;
  margin: 0;
  color: #ffffff;
  font-size: 24px;
  line-height: 1.4;
}

.news-page__contact a {
  min-width: 136px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 32px;
  color: #ffffff;
  background: #ad8950;
  font-size: 14px;
  font-weight: 700;
}

.news-page__contact a:hover {
  background: #c39d60;
}

/* Search page */
.search-page {
  background: #f4f7fb;
}

.search-page__panel {
  padding: 42px 0 72px;
}

.search-page__form {
  padding: 24px;
  background: #ffffff;
  border: 1px solid rgba(17, 33, 50, 0.08);
}

.search-page__fields {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) 132px;
  gap: 12px;
}

.search-page__fields select,
.search-page__fields input {
  width: 100%;
  height: 48px;
  border: 1px solid #dbe3eb;
  background: #ffffff;
  color: #172432;
  font-size: 15px;
  padding: 0 16px;
  outline: none;
}

.search-page__fields select:focus,
.search-page__fields input:focus {
  border-color: #ad8950;
}

.search-page__fields button {
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  background: #071c35;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}

.search-page__fields button:hover {
  background: #ad8950;
}

.search-page__history {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  color: #6d7782;
  font-size: 14px;
}

.search-page__history span {
  color: #172432;
  font-weight: 700;
}

.search-page__history a {
  padding: 7px 12px;
  border: 1px solid #dde5ed;
  background: #ffffff;
  color: #405064;
}

.search-page__history a:hover {
  color: #ffffff;
  border-color: #071c35;
  background: #071c35;
}

.search-page__history--result {
  margin-top: 30px;
}

.search-page__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin: 34px 0 20px;
}

.search-page__head h2 {
  margin: 0;
  color: #172432;
  font-size: 26px;
  line-height: 1.35;
}

.search-page__head p {
  margin: 0;
  color: #6d7782;
  font-size: 14px;
}

.search-page__empty {
  padding: 56px 28px;
  text-align: center;
  background: #ffffff;
  border: 1px solid rgba(17, 33, 50, 0.08);
}

.search-page__empty h2 {
  margin: 0;
  color: #172432;
  font-size: 22px;
}

.search-page__empty p {
  margin: 12px 0 0;
  color: #6d7782;
  font-size: 15px;
}

.search-page__list {
  display: grid;
  gap: 16px;
}

.search-result {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 24px;
  padding: 20px;
  background: #ffffff;
  border: 1px solid rgba(17, 33, 50, 0.08);
}

.search-result--plain {
  grid-template-columns: 1fr;
}

.search-result__media {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #edf2f7;
}

.search-result__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.search-result:hover .search-result__media img {
  transform: scale(1.04);
}

.search-result__body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.search-result__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  color: #7a8490;
  font-size: 13px;
}

.search-result__meta span {
  color: #ad8950;
  font-weight: 700;
}

.search-result h3 {
  margin: 10px 0 0;
  font-size: 22px;
  line-height: 1.35;
}

.search-result h3 a {
  color: #172432;
}

.search-result h3 a:hover {
  color: #ad8950;
}

.search-result p {
  margin: 12px 0 0;
  color: #5c6976;
  font-size: 15px;
  line-height: 1.8;
}

.search-result__more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 18px;
  color: #071c35;
  font-size: 14px;
  font-weight: 700;
}

.search-result__more:hover {
  color: #ad8950;
}

.search-page__pager {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.search-page__pager ul,
.search-page__pager .pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.search-page__pager li {
  list-style: none;
}

.search-page__pager a,
.search-page__pager span {
  min-width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(17, 33, 50, 0.12);
  color: #4f5b68;
  background: #ffffff;
  font-size: 14px;
}

.search-page__pager .active a,
.search-page__pager .active span,
.search-page__pager li.active a,
.search-page__pager li.active span {
  color: #ffffff;
  border-color: #071c35;
  background: #071c35;
}

@media (max-width: 1100px) {
  .news-page__layout {
    grid-template-columns: 1fr;
  }

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

  .news-page__search {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .search-page__panel {
    padding: 32px 0 56px;
  }

  .search-page__form {
    padding: 16px;
  }

  .search-page__fields {
    grid-template-columns: 1fr;
  }

  .search-page__head {
    display: block;
  }

  .search-page__head h2 {
    font-size: 21px;
  }

  .search-page__head p {
    margin-top: 8px;
  }

  .search-result {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 16px;
  }

  .search-result h3 {
    font-size: 19px;
  }

  .news-page__board {
    padding: 36px 0 64px;
  }

  .news-page__tabs {
    gap: 12px;
  }

  .news-page__tab {
    min-width: 96px;
  }

  .news-page__item-link {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0 0 22px;
  }

  .news-page__item-body {
    padding: 0 18px;
  }

  .news-page__item-date {
    justify-self: start;
    padding: 0 18px;
    text-align: left;
  }

  .news-page__item-date span {
    display: inline;
    font-size: 28px;
  }

  .news-page__item-date em {
    display: inline;
    margin: 0 0 0 8px;
  }

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

/* Homepage mobile responsive polish */
@media (max-width: 768px) {
  .c-container {
    width: min(100% - 32px, var(--container-width));
  }

  .header__inner {
    min-height: 72px;
  }

  .header__logo {
    width: min(188px, 50vw);
  }

  .header__nav {
    width: min(84vw, 340px);
    height: 100dvh;
    padding-top: 82px;
  }

  .header__nav-backdrop {
    right: min(84vw, 340px);
    width: auto;
    height: 100dvh;
  }

  .hero,
  .hero__container {
    min-height: min(660px, calc(100dvh - 72px));
  }

  .hero__bg {
    background-position: 58% center;
  }

  .hero__overlay {
    background:
      linear-gradient(180deg, rgba(13, 23, 33, 0.12) 0%, rgba(13, 23, 33, 0.34) 34%, rgba(13, 23, 33, 0.72) 100%),
      linear-gradient(90deg, rgba(13, 23, 33, 0.62), rgba(13, 23, 33, 0.2) 54%, rgba(13, 23, 33, 0.52));
  }

  .hero__container {
    justify-content: flex-end;
    padding-top: 42px;
    padding-bottom: 126px;
  }

  .hero__title {
    max-width: 11.5em;
    font-size: clamp(30px, 8.2vw, 36px);
    line-height: 1.22;
    letter-spacing: 0;
    white-space: normal;
    text-wrap: balance;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 26px;
  }

  .hero__actions .c-button {
    min-height: 48px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    line-height: 1.2;
    text-align: center;
  }

  .hero__bottom {
    bottom: 28px;
    align-items: center;
  }

  .hero__controls {
    gap: 8px;
  }

  .hero__control {
    width: 48px;
    height: 48px;
  }

  .hero__pager {
    font-size: 16px;
  }

  .hero__pager-current {
    font-size: 46px;
  }

  .home-section-head,
  .product-showcase__head {
    gap: 14px;
  }

  .home-section-head__ghost,
  .product-showcase .home-section-head__ghost,
  .overview__panel .home-section-head__ghost {
    max-width: 100%;
    overflow: hidden;
    font-size: clamp(40px, 13vw, 58px);
  }

  .home-section-head__title,
  .product-showcase .home-section-head__title {
    font-size: 28px;
  }

  .home-section-head__lead {
    margin-top: 10px;
    font-size: 14px;
  }

  .product-showcase,
  .events.events--home,
  .partners,
  .overview,
  .news-media.news-media--home {
    padding-top: 42px;
    padding-bottom: 48px;
  }

  .product-showcase__head-aside {
    width: 100%;
    gap: 12px;
  }

  .product-showcase__tabs {
    width: 100%;
    flex-wrap: nowrap;
    gap: 10px;
    overflow-x: auto;
    padding: 2px 0 8px;
    scrollbar-width: none;
  }

  .product-showcase__tabs::-webkit-scrollbar {
    display: none;
  }

  .product-showcase__tabs a {
    flex: 0 0 auto;
    min-height: 40px;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(19, 32, 44, 0.12);
    background: #ffffff;
    color: #4f5562;
    white-space: nowrap;
  }

  .product-showcase__tabs a.is-active,
  .product-showcase__tabs a:hover {
    border-color: var(--brand-gold);
    color: #ffffff;
    background: var(--brand-gold);
  }

  .product-showcase__tabs a.is-active::after,
  .product-showcase__tabs a:hover::after {
    display: none;
  }

  .product-showcase__cards {
    gap: 18px;
    margin-top: 22px;
  }

  .product-card-ref__image {
    padding: 20px;
  }

  .product-card-ref__body {
    min-height: auto;
    padding: 16px 16px 18px;
  }

  .product-card-ref h3 {
    font-size: 20px;
  }

  .business__upper {
    padding-top: 42px;
    padding-bottom: 22px;
  }

  .business__hero-grid {
    gap: 24px;
  }

  .business__ghost {
    max-width: 100%;
    overflow: hidden;
    font-size: clamp(42px, 13vw, 58px);
  }

  .business__title {
    font-size: 28px;
  }

  .business__panels {
    min-height: 250px;
  }

  .business__detail {
    max-width: 100%;
  }

  .business__detail-cta {
    min-height: 44px;
  }

  .business__tab {
    min-height: 66px;
    padding: 12px 14px;
    gap: 10px;
  }

  .business__tab-icon .iconfont {
    font-size: 22px;
  }

  .events-home__grid {
    gap: 18px;
  }

  .events-home__text {
    padding: 16px 16px 18px;
  }

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

  .partners__item {
    min-height: 72px;
    padding: 10px 12px;
  }

  .partners__item img {
    max-height: 48px;
  }

  .overview__visual img {
    min-height: 0;
    height: 240px;
  }

  .overview__panel {
    padding: 22px 18px 24px;
  }

  .overview__summary {
    margin-top: 14px;
    line-height: 1.85;
  }

  .overview__actions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 20px;
  }

  .overview__action {
    gap: 8px;
    font-size: 13px;
  }

  .overview__action .iconfont {
    width: 44px;
    height: 44px;
    font-size: 20px;
  }

  .overview__stats {
    gap: 1px;
    padding: 14px 0 0;
    background: transparent;
  }

  .overview__stat {
    padding: 12px 10px 14px;
    background: #ffffff;
  }

  .overview__stat + .overview__stat {
    margin-top: 0;
    padding-top: 12px;
  }

  .overview__stat-value,
  .overview__stat--primary .overview__stat-value {
    font-size: 36px;
  }

  .news-home__feat-body,
  .news-home__row-hit {
    padding-left: 0;
    padding-right: 0;
  }

  .news-home__row-top {
    display: block;
  }

  .news-home__row-time {
    display: block;
    margin-top: 6px;
  }
}

@media (max-width: 420px) {
  .c-container {
    width: calc(100% - 28px);
  }

  .header__logo {
    width: min(176px, 48vw);
  }

  .header__lang {
    width: 34px;
  }

  .header__icon-btn {
    width: 38px;
  }

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

  .hero__actions .c-button {
    min-height: 46px;
  }

  .hero__title {
    max-width: 10.5em;
    font-size: clamp(28px, 8.4vw, 32px);
  }

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