* {
  box-sizing: border-box;
}

:root {
  --primary: #00287c;
  --secondary: #00287c;
  --support: #f3f6fa;
  --support-soft: #f3f6fa;
  --text: #182238;
  --muted: #667085;
  --bg: #ffffff;
  --white: #ffffff;
  --border: #dfe5ec;
  --footer: #071a36;
  --font-zh: "Microsoft YaHei UI", "Microsoft YaHei", "PingFang SC", "Noto Sans SC", "Source Han Sans SC", Arial, sans-serif;
  --font-en: Arial, "Helvetica Neue", Helvetica, sans-serif;
  --type-page-title: clamp(40px, 5.4vw, 64px);
  --type-section-title: clamp(32px, 3.8vw, 44px);
  --type-card-title: 24px;
  --type-body: 16px;
  --leading-body: 1.85;
  --container: 1200px;
  --page-gutter: 40px;
  --section-spacing: 96px;
  --layout-gap: clamp(36px, 5vw, 64px);
  --shadow: 0 18px 45px rgba(10, 34, 54, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-zh);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
}

.onepage-chapter {
  scroll-margin-top: 88px;
}

.onepage-chapter + .onepage-chapter {
  border-top: 1px solid rgba(0, 40, 124, 0.1);
}

h1,
h2,
h3,
h4,
h5,
h6,
button,
input,
select,
textarea {
  font-family: var(--font-zh);
}

:lang(en),
[lang="en"],
.hero-kicker,
.eyebrow,
.section-tag,
.about-hero-kicker,
.contact-page-kicker,
.feature-index,
.tab-button span,
.tab-panel-number,
.capability-label,
.product-feature-number,
.product-feature-label,
.region-number,
.metric-unit {
  font-family: var(--font-en);
}

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

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

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

.container {
  width: min(var(--container), calc(100% - var(--page-gutter)));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(0, 40, 124, 0.08);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0, 40, 124, 0.03);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: #fff;
  border-bottom-color: rgba(0, 40, 124, 0.18);
  box-shadow: 0 1px 0 rgba(0, 40, 124, 0.14), 0 10px 28px rgba(0, 40, 124, 0.1);
}

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

.brand {
  display: flex;
  align-items: center;
}

.brand img {
  height: 54px;
  width: auto;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.language-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding-left: 16px;
  border-left: 1px solid rgba(0, 40, 124, 0.14);
  color: #8a94a2;
  font-size: 12px;
  white-space: nowrap;
}

.language-status a {
  color: var(--muted);
  text-decoration: none;
  transition: color 180ms ease;
}

.language-status a:hover,
.language-status a.is-active {
  color: var(--primary);
}

.language-status a.is-active {
  font-weight: 700;
}

.language-status a:focus-visible {
  border-radius: 3px;
  outline: 3px solid rgba(0, 40, 124, 0.24);
  outline-offset: 3px;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(0, 40, 124, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--primary);
}

.nav-toggle span + span {
  margin-top: 5px;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
}

.main-nav a.active::after,
.main-nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--secondary);
}

.hero {
  position: relative;
  min-height: 640px;
  color: var(--white);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 34, 54, 0.36), rgba(10, 34, 54, 0.1));
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0;
  transform: scale(1.03);
  animation: hero-fade 12s infinite;
}

.hero-slide-1 {
  background-image: linear-gradient(rgba(8, 25, 39, 0.54), rgba(8, 25, 39, 0.5)), url("images/slider_01.jpg");
}

.hero-slide-2 {
  background-image: linear-gradient(rgba(8, 25, 39, 0.54), rgba(8, 25, 39, 0.5)), url("images/slider_02.jpg");
  animation-delay: 6s;
}

.hero-band {
  position: relative;
  width: 100%;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 40, 124, 0) 0%, rgba(0, 40, 124, 0.16) 18%, rgba(0, 40, 124, 0.42) 48%, rgba(0, 40, 124, 0.7) 100%);
}

.hero-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 25, 39, 0.18), rgba(8, 25, 39, 0.02) 38%, rgba(8, 25, 39, 0.12) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  max-width: 820px;
  padding: 132px 0 72px;
  z-index: 1;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 20px;
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
}

.hero h1 {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 0 0 18px;
  max-width: 760px;
  font-size: clamp(34px, 4.6vw, 54px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  text-wrap: balance;
  text-shadow: 0 10px 24px rgba(8, 25, 39, 0.24);
}

.hero h1 span:last-child {
  color: rgba(255, 255, 255, 0.94);
}

.hero p,
.hero-subtitle {
  margin: 0;
  max-width: 640px;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.84);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 28px;
}

.hero-actions .section-button {
  margin-top: 0;
}

.section-button-accent {
  background: var(--secondary);
  color: #fff;
  box-shadow: 0 14px 30px rgba(0, 40, 124, 0.24);
}

.section-button-accent:hover {
  background: var(--primary);
}

.text-link {
  color: #fff;
  font-weight: 600;
}

.text-link span,
.inline-cta span {
  margin-left: 6px;
  transition: margin-left 0.2s ease;
}

.text-link:hover span,
.inline-cta:hover span {
  margin-left: 10px;
}

.hero-subtitle {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.section {
  padding: 82px 0;
}

.section-about {
  padding-bottom: 52px;
}

.section-business,
.section-sales,
.section-offices {
  padding-top: 52px;
}

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

.section-head h2 {
  margin: 0 0 10px;
  color: var(--primary);
  font-size: 34px;
}

.section-head p {
  margin: 0;
  max-width: 760px;
  color: var(--muted);
  font-size: 16px;
}

.eyebrow-head .eyebrow {
  margin-bottom: 8px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border: 1px solid rgba(0, 40, 124, 0.08);
  border-radius: 999px;
  color: var(--primary);
  background: var(--support);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.light-eyebrow {
  color: var(--primary);
}

.inline-cta {
  display: inline-flex;
  margin-top: 28px;
  color: var(--primary);
  font-weight: 700;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(0, 40, 124, 0.08);
  color: var(--primary);
  font-size: 12px;
  border: 1px solid rgba(0, 40, 124, 0.08);
  font-weight: 800;
  letter-spacing: 0.12em;
}

.section-tag.light {
  background: #fff;
  color: var(--primary);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.8fr);
  gap: 26px;
  align-items: stretch;
}

.about-card {
  padding: 42px;
  background: var(--white);
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.about-main {
  background:
    linear-gradient(180deg, #ffffff, var(--support));
}

.about-main h3 {
  margin: 0 0 18px;
  color: var(--primary);
  font-size: 32px;
  line-height: 1.25;
}

.about-card p {
  margin: 0;
  font-size: 17px;
  color: #344054;
}

.section-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 28px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--primary);
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: 0 14px 28px rgba(0, 40, 124, 0.16);
}

.section-button:hover {
  background: #001f62;
  transform: translateY(-1px);
}

.section-button-light {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: none;
}

.section-button-light:hover {
  background: rgba(255, 255, 255, 0.2);
}

.about-side {
  display: grid;
  gap: 18px;
}

.about-metric {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 146px;
  padding: 28px 26px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--support);
  color: var(--text);
  box-shadow: none;
}

.about-metric strong {
  font-size: 42px;
  line-height: 1;
  color: var(--primary);
}

.about-metric sup {
  margin-left: 3px;
  color: var(--secondary);
  font-family: var(--font-zh);
  font-size: 18px;
  font-weight: 800;
}

.about-metric span {
  margin-top: 10px;
  font-size: 15px;
  color: var(--muted);
}

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

.feature-grid-refined {
  margin-top: 0;
}

.feature-card {
  padding: 30px 28px;
  background: linear-gradient(180deg, #ffffff, var(--support-soft));
  border: 1px solid rgba(0, 40, 124, 0.18);
  border-radius: 22px;
  box-shadow: 0 12px 30px rgba(0, 40, 124, 0.08);
}

.feature-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: rgba(0, 40, 124, 0.08);
  color: var(--secondary);
  font-size: 13px;
  font-weight: 700;
}

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

.feature-card p {
  margin: 0;
  color: #475467;
}

.feature-card-import {
  border-top: 3px solid var(--primary);
}

.feature-card-retail {
  border-top: 3px solid var(--primary);
}

.feature-card-ecommerce {
  border-top: 3px solid var(--primary);
}

.channel-stack {
  display: grid;
  gap: 28px;
}

.channel-card,
.office-card {
  padding: 34px;
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.channel-card {
  display: flex;
  flex-direction: column;
  background: var(--support);
  color: var(--text);
}

.office-card {
  display: flex;
  flex-direction: column;
}

.stack-card {
  width: 100%;
}

.card-topline {
  margin-bottom: 16px;
}

.card-intro {
  max-width: 760px;
  margin-bottom: 28px;
}

.card-intro h3,
.office-copy h3 {
  margin: 0 0 12px;
  font-size: 30px;
  line-height: 1.25;
}

.card-intro h3 {
  color: var(--primary);
}

.card-intro p,
.office-copy p {
  margin: 0;
}

.card-intro p {
  color: #596170;
}

.channel-card .section-tag.light,
.certification-section .section-tag.light {
  color: var(--primary);
  border-color: #fff;
  background: #fff;
}

.channel-card .section-button-light {
  color: #fff;
  border-color: var(--primary);
  background: var(--primary);
}

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

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 136px;
  padding: 24px 28px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: inset 0 0 0 1px rgba(0, 40, 124, 0.06);
}

.logo-item img {
  max-height: 74px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
}

.office-card {
  border: 1px solid var(--border);
}

.office-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 28px;
  align-items: center;
}

.office-copy h3 {
  color: var(--primary);
}

.office-copy p {
  color: #475467;
}

.office-image {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(0, 40, 124, 0.08);
  min-height: 320px;
}

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

.section-products-preview {
  color: var(--text);
  background: var(--support);
}

.split-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 72px;
  align-items: center;
}

.split-copy h2,
.story-grid h2,
.contact-copy h2 {
  margin: 8px 0 18px;
  color: var(--primary);
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.22;
}

.section-products-preview .split-copy h2 {
  color: var(--primary);
}

.split-copy p {
  margin: 0;
  color: #566273;
}

.section-products-preview .split-copy p {
  color: #505866;
}

.category-list,
.value-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.category-list span,
.value-points span {
  display: flex;
  align-items: center;
  min-height: 96px;
  padding: 20px;
  border: 1px solid rgba(0, 40, 124, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--primary);
  font-weight: 700;
}

.value-points span {
  border-color: rgba(0, 40, 124, 0.1);
  background: #fff;
  color: var(--primary);
  box-shadow: 0 8px 24px rgba(0, 40, 124, 0.08);
}

.section-partners {
  background: var(--support-soft);
}

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

.contact-cta {
  padding: 68px 0;
  color: var(--text);
  background: var(--support);
}

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

.contact-cta h2 {
  margin: 8px 0 8px;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.2;
  color: var(--primary);
}

.contact-cta p {
  margin: 0;
  color: #596170;
}

.contact-cta .light-eyebrow {
  color: var(--primary);
}

.contact-cta .section-button {
  flex: 0 0 auto;
  margin-top: 0;
}

.page-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 390px;
  padding: 80px 0 68px;
  color: #fff;
  background-position: center;
  background-size: cover;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 27, 42, 0.88), rgba(0, 40, 124, 0.42));
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  margin: 8px 0 12px;
  font-size: clamp(38px, 6vw, 60px);
  line-height: 1.1;
}

.page-hero p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
}

.page-hero-about,
.page-hero-partners {
  background-image: url("images/slider_02.jpg");
}

.page-hero-business,
.page-hero-products,
.page-hero-contact {
  background-image: url("images/slider_01.jpg");
}

.about-hero {
  position: relative;
  min-height: 570px;
  display: flex;
  align-items: flex-end;
  padding: 110px 0 84px;
  overflow: hidden;
  color: #fff;
  background: url("images/slider_02.jpg") center 48% / cover no-repeat;
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 20, 34, 0.94) 0%, rgba(9, 38, 61, 0.76) 42%, rgba(9, 38, 61, 0.08) 76%),
    linear-gradient(0deg, rgba(4, 20, 34, 0.42), transparent 55%);
}

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

.about-hero-kicker {
  display: block;
  margin-bottom: 20px;
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.about-hero h1 {
  margin: 0;
  font-family: var(--font-en);
  font-size: clamp(18px, 4.45vw, 56px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.03;
  white-space: nowrap;
}

.about-hero h1 span {
  color: #fff;
}

.about-hero p {
  margin: 28px 0 0;
  padding-left: 52px;
  position: relative;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.about-hero p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 36px;
  height: 2px;
  background: var(--white);
}

.about-intro-section {
  padding: 110px 0 96px;
  background: #fff;
}

.about-intro-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.76fr) minmax(0, 1.24fr);
  gap: 90px;
}

.about-intro-heading h2 {
  margin: 20px 0 4px;
  color: var(--primary);
  font-size: clamp(38px, 5vw, 56px);
  line-height: 1.15;
}

.about-lead {
  margin: 0 0 30px;
  color: var(--secondary);
  font-size: 16px;
  font-weight: 700;
}

.about-intro-heading h3 {
  max-width: 420px;
  margin: 0;
  color: #172b3c;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.35;
}

.about-intro-copy p:last-of-type {
  margin-bottom: 0;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 78px;
}

.about-stats div {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 14px;
  padding: 30px 20px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--support);
}

.about-stats div + div {
  border-left: 1px solid var(--border);
}

.about-stats strong {
  color: var(--primary);
  font-family: var(--font-en);
  font-size: 48px;
  line-height: 1;
}

.about-stats sup {
  color: var(--secondary);
  font-family: var(--font-en);
  font-size: 20px;
}

.about-stats span {
  color: #667085;
  font-size: 15px;
}

.certification-section {
  padding: 78px 0;
  background: var(--support);
}

.certification-card {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: 70px;
}

.certification-copy h2 {
  margin: 18px 0 12px;
  color: var(--primary);
  font-size: clamp(30px, 4vw, 44px);
}

.certification-copy p {
  max-width: 490px;
  margin: 0;
  color: #596170;
}

.certification-logos {
  padding: 28px 34px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(3, 18, 30, 0.25);
}

.certification-logos img {
  width: 100%;
  max-height: 170px;
  object-fit: contain;
  image-rendering: auto;
}

.responsibility-section {
  padding: 110px 0 120px;
  background: #fff;
}

.responsibility-heading {
  max-width: 760px;
  margin-bottom: 46px;
}

.responsibility-heading .section-tag {
  margin-bottom: 15px;
}

.responsibility-heading h2 {
  font-size: clamp(36px, 5vw, 52px);
}

.responsibility-tabs {
  display: grid;
  grid-template-columns: minmax(270px, 0.36fr) minmax(0, 0.64fr);
  min-height: 520px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: 0 16px 46px rgba(10, 34, 54, 0.08);
}

.tab-list {
  padding: 18px 0;
  border-right: 1px solid var(--border);
  background: #fff;
}

.tab-button {
  width: 100%;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 10px;
  align-items: center;
  padding: 20px 30px;
  border: 0;
  border-left: 4px solid transparent;
  color: #4e5c70;
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: 0.2s ease;
}

.tab-button span {
  color: var(--secondary);
  font-family: var(--font-en);
  font-size: 13px;
}

.tab-button:hover,
.tab-button:focus-visible,
.tab-button.is-active {
  color: var(--primary);
  border-left-color: var(--secondary);
  background: var(--support);
  outline: none;
}

.tab-panels {
  position: relative;
  padding: 58px 64px 64px;
  background: #fff;
}

.tab-panel[hidden] {
  display: none;
}

.tab-panel {
  animation: about-panel-in 0.32s ease;
}

.tab-panel-number {
  color: var(--secondary);
  font-family: var(--font-en);
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
}

.tab-panel h3 {
  margin: 8px 0 26px;
  color: var(--primary);
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.2;
}

.tab-panel h4 {
  margin: 26px 0 8px;
  color: var(--primary);
  font-size: 18px;
}

.tab-panel p {
  margin: 0 0 18px;
  color: #4f5d6b;
  font-size: 16px;
  line-height: 1.95;
}

.tab-panel p:last-child {
  margin-bottom: 0;
}

@keyframes about-panel-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 80px;
}

.story-grid h2 {
  margin-top: 8px;
}

.prose p {
  margin: 0 0 18px;
  color: #475467;
  font-size: 17px;
}

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

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

.value-grid article {
  padding: 28px;
  border-radius: 20px;
  background: #fff;
}

.value-grid span {
  color: var(--secondary);
  font-size: 13px;
  font-weight: 800;
}

.value-grid h3 {
  margin: 22px 0 10px;
  color: var(--primary);
}

.value-grid p {
  margin: 0;
  color: #667085;
}

.large-logos .logo-item {
  border: 1px solid rgba(0, 40, 124, 0.08);
}

.business-steps {
  display: grid;
  gap: 20px;
}

.business-steps article {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 26px;
  padding: 32px;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 40, 124, 0.07);
}

.business-steps article > span {
  color: var(--secondary);
  font-size: 28px;
  font-weight: 800;
}

.business-steps h3 {
  margin: 0 0 8px;
  color: var(--primary);
  font-size: 24px;
}

.business-steps p {
  margin: 0;
  color: #5b6574;
}

.channel-section {
  color: var(--text);
  background: var(--support);
}

.channel-section .section-head h2 {
  color: var(--primary);
}

.channel-section .section-head p {
  color: #596170;
}

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

.channel-grid article {
  padding: 28px;
  border: 1px solid rgba(0, 40, 124, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.62);
}

.channel-grid strong {
  color: var(--secondary);
  font-size: 13px;
}

.channel-grid h3 {
  margin: 30px 0 10px;
  font-size: 21px;
  color: var(--primary);
}

.channel-grid p {
  margin: 0;
  color: #596170;
}

/* Business & Channels page */
.business-capabilities {
  background: var(--bg);
}

.business-section-heading {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(380px, 1.15fr);
  column-gap: 64px;
  align-items: end;
  margin-bottom: 46px;
}

.business-section-heading .section-tag {
  grid-column: 1 / -1;
  justify-self: start;
  width: max-content;
}

.business-section-heading h2,
.business-section-heading p {
  margin-bottom: 0;
}

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

.business-capability-card {
  position: relative;
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 24px;
  min-height: 330px;
  padding: 40px;
  overflow: hidden;
  border: 1px solid rgba(0, 40, 124, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 42px rgba(0, 40, 124, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.business-capability-card::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -80px;
  width: 190px;
  height: 190px;
  border: 30px solid rgba(0, 40, 124, 0.06);
  border-radius: 50%;
}

.business-capability-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 40, 124, 0.32);
  box-shadow: 0 24px 52px rgba(0, 40, 124, 0.13);
}

.capability-letter {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  color: #fff;
  background: var(--primary);
  box-shadow: 8px 8px 0 rgba(0, 40, 124, 0.2);
  font-family: var(--font-en);
  font-size: 30px;
  line-height: 1;
}

.capability-label {
  color: var(--secondary);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.business-capability-card h3 {
  margin: 10px 0 16px;
  color: var(--primary);
  font-size: clamp(22px, 2.1vw, 28px);
  line-height: 1.35;
}

.business-capability-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #596475;
  line-height: 1.85;
}

.business-scale-section {
  color: var(--text);
  background: var(--support);
}

.business-scale-heading {
  margin-bottom: 46px;
}

.business-scale-heading h2 {
  color: var(--primary);
}

.business-scale-heading p {
  color: var(--muted);
}

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

.business-metric-card {
  position: relative;
  min-width: 0;
  min-height: 286px;
  padding: 30px 26px 26px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: #fff;
  transition: color 220ms ease, background 220ms ease, transform 220ms ease, border-color 220ms ease;
}

.metric-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 18px;
  color: var(--primary);
  background: var(--support);
  cursor: help;
  transition: color 220ms ease, background 220ms ease, border-color 220ms ease;
}

.metric-icon svg {
  width: 34px;
  height: 34px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.metric-tooltip {
  position: absolute;
  z-index: 4;
  left: 0;
  bottom: calc(100% + 12px);
  width: max-content;
  max-width: min(260px, 75vw);
  padding: 9px 12px;
  border-radius: 9px;
  color: #fff;
  background: #071d2e;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
  text-align: left;
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.metric-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 23px;
  border: 6px solid transparent;
  border-top-color: #071d2e;
}

@media (min-width: 641px) {
  .business-metric-card:last-child .metric-tooltip {
    right: 0;
    left: auto;
  }

  .business-metric-card:last-child .metric-tooltip::after {
    right: 23px;
    left: auto;
  }
}

.business-metric-card:hover .metric-tooltip,
.business-metric-card:focus-within .metric-tooltip {
  opacity: 1;
  transform: translateY(0);
}

.business-metric-card:hover,
.business-metric-card:focus-within {
  color: var(--primary);
  border-color: rgba(0, 40, 124, 0.24);
  background: #fff;
  transform: translateY(-6px);
}

.business-metric-card:hover .metric-icon,
.business-metric-card:focus-within .metric-icon {
  color: #fff;
  border-color: var(--primary);
  background: var(--primary);
}

.business-metric-card strong {
  display: inline-block;
  margin-top: 36px;
  color: var(--primary);
  font-family: var(--font-en);
  font-size: clamp(36px, 3.5vw, 52px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1;
  transition: color 220ms ease;
}

.business-metric-card:nth-child(3) strong {
  font-size: clamp(29px, 2.65vw, 42px);
}

.metric-unit {
  margin-left: 5px;
  color: var(--secondary);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  transition: color 220ms ease;
}

.business-metric-card p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  transition: color 220ms ease;
}

.business-metric-card:hover strong,
.business-metric-card:focus-within strong,
.business-metric-card:hover p,
.business-metric-card:focus-within p {
  color: var(--primary);
}

.business-metric-card:hover .metric-unit,
.business-metric-card:focus-within .metric-unit {
  color: var(--secondary);
}

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

.product-card {
  overflow: hidden;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(0, 40, 124, 0.09);
}

.product-image {
  height: 250px;
  padding: 16px;
  background: var(--support-soft);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-card > div:last-child {
  padding: 24px;
}

.product-card span {
  color: var(--secondary);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.product-card h3 {
  margin: 7px 0 8px;
  color: var(--primary);
  font-size: 23px;
}

.product-card p {
  margin: 0;
  color: #667085;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: 72px;
  align-items: start;
}

.contact-copy > p {
  color: #667085;
}

.contact-note {
  display: grid;
  gap: 6px;
  margin-top: 32px;
  padding: 24px;
  border-left: 4px solid var(--secondary);
  background: #fff;
  color: #667085;
}

.contact-note strong {
  color: var(--primary);
  font-size: 18px;
}

.contact-form {
  padding: 34px;
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow);
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d9dde3;
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--text);
  background: #fff;
  outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 40, 124, 0.08);
}

.contact-form textarea {
  resize: vertical;
}

.form-submit {
  border: 0;
  cursor: pointer;
}

.form-status {
  margin: 10px 0 0;
  color: #84909e;
  font-size: 12px;
}

.empty-page {
  padding: 120px 0 150px;
}

.empty-box {
  min-height: 320px;
  border: 1px dashed rgba(0, 40, 124, 0.2);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
}

/* Products page */
.products-page-hero {
  padding-bottom: 88px;
}

.products-showcase {
  padding: 98px 0 112px;
  background: var(--white);
}

.products-showcase-sourcing {
  background: var(--support);
}

.products-showcase.products-showcase-sourcing .section-tag {
  background: var(--white);
}

/* Product catalog page */
.product-catalog-section {
  background: var(--white);
}

.product-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  padding: 0 0 22px;
  border-bottom: 1px solid rgba(0, 40, 124, 0.14);
}

.product-filter-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 8px 1px 6px;
  border: 0;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  transition: color 180ms ease, border-color 180ms ease;
}

.product-filter-button span {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.035em;
  line-height: 1.25;
}

.product-filter-button small {
  color: #7b8798;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.25;
}

.product-filter-button:hover,
.product-filter-button.is-active {
  border-color: var(--primary);
  color: var(--primary);
}

.product-filter-button:hover small,
.product-filter-button.is-active small {
  color: var(--primary);
}

.product-filter-button:focus-visible {
  outline: 3px solid rgba(0, 40, 124, 0.28);
  outline-offset: 3px;
}

.product-result-status {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.product-category-list {
  margin-top: 46px;
}

.product-category-panel {
  scroll-margin-top: 112px;
  padding: 52px 0 64px;
  border-top: 1px solid rgba(0, 40, 124, 0.14);
}

.product-category-panel:first-child {
  padding-top: 0;
  border-top: 0;
}

.product-category-panel[hidden] {
  display: none;
}

.product-category-heading {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  align-items: start;
  gap: 18px;
  margin-bottom: 28px;
}

.product-category-heading > span {
  padding-top: 7px;
  color: rgba(0, 40, 124, 0.5);
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.product-category-heading h3 {
  margin: 0;
  color: var(--primary);
  font-family: var(--font-en);
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.product-category-heading p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 15px;
}

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

.product-catalog-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(0, 40, 124, 0.1);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(10, 34, 54, 0.06);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.product-catalog-card:hover {
  border-color: rgba(0, 40, 124, 0.22);
  box-shadow: 0 16px 34px rgba(10, 34, 54, 0.1);
  transform: translateY(-1px);
}

.product-catalog-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  padding: 14px;
  object-fit: contain;
  background: #f8fafc;
}

.product-catalog-card > div {
  min-height: 108px;
  padding: 18px 18px 20px;
  border-top: 1px solid rgba(0, 40, 124, 0.08);
}

.product-catalog-card h4 {
  margin: 0;
  color: var(--text);
  font-size: 18px;
  line-height: 1.45;
}

.product-catalog-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.025em;
  line-height: 1.5;
}

html[lang="en"] .product-catalog-card h4 {
  font-family: var(--font-en);
  font-size: 16px;
  line-height: 1.4;
}

html[lang="en"] .product-filter-button span {
  letter-spacing: 0.025em;
}

.product-subcategory + .product-subcategory {
  margin-top: 54px;
}

.product-subcategory-heading {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 0 0 20px 70px;
}

.product-subcategory-heading span {
  color: var(--primary);
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.product-subcategory-heading strong {
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 1100px) {
  .product-catalog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .product-filter {
    gap: 6px 20px;
  }

  .product-category-list {
    margin-top: 40px;
  }

  .product-category-panel {
    padding: 42px 0 52px;
  }

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

  .product-subcategory-heading {
    margin-left: 0;
  }
}

@media (max-width: 520px) {
  .product-catalog-page-hero h1 {
    font-size: 40px;
  }

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

  .product-filter-button {
    width: 100%;
    text-align: left;
  }

  .product-category-heading {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 10px;
  }

  .product-category-heading h3 {
    font-size: 23px;
  }

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

  .product-catalog-card > div {
    min-height: 0;
  }
}

/* English section labels use one contrast rule across all pages. */
.certification-section .section-tag,
.business-scale-section .eyebrow,
.processing-center-section .section-tag,
.core-partners-section .section-tag,
.global-offices-section .eyebrow,
.channel-section .section-tag,
.section-products-preview .eyebrow,
.section-partners .eyebrow,
.contact-cta .eyebrow,
.channel-card .section-tag,
.about-main .section-tag {
  color: var(--primary);
  border-color: #fff;
  background: #fff;
  box-shadow: 0 5px 16px rgba(0, 40, 124, 0.06);
}

.about-intro-section .section-tag,
.responsibility-section .section-tag,
.business-capabilities .section-tag,
.products-showcase .section-tag,
.global-map-section .eyebrow,
.office-card .section-tag {
  color: var(--primary);
  border-color: rgba(0, 40, 124, 0.08);
  background: var(--support);
  box-shadow: none;
}

.products-showcase-heading {
  max-width: 760px;
  margin-bottom: 46px;
}

.products-showcase-heading h2 {
  margin: 14px 0 14px;
  color: var(--primary);
  font-size: clamp(34px, 4.5vw, 52px);
  line-height: 1.15;
}

.products-showcase-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

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

.products-showcase-action {
  display: flex;
  justify-content: center;
  margin-top: 44px;
}

.products-showcase-action .tab-read-more {
  margin-top: 0;
}

.product-feature-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border-radius: 8px;
  background: #003264;
  box-shadow: 0 24px 54px rgba(6, 27, 53, 0.16);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.product-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 64px rgba(6, 27, 53, 0.22);
}

.product-feature-visual {
  position: relative;
  height: 270px;
  overflow: hidden;
  background: linear-gradient(145deg, #f3f6fa, #dce7ee);
}

.product-feature-visual::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 35%;
  background: linear-gradient(transparent, rgba(2, 34, 62, 0.28));
  pointer-events: none;
}

.product-feature-visual img {
  width: 100%;
  height: 100%;
  padding: 22px;
  object-fit: contain;
  transition: transform 450ms ease;
}

.product-feature-visual-photo img {
  padding: 0;
  object-fit: cover;
}

.product-feature-card:hover .product-feature-visual img {
  transform: scale(1.045);
}

.product-feature-visual-meat {
  background: linear-gradient(145deg, #edf3fb, #d7e1e8);
}

.product-feature-visual-surimi {
  background: linear-gradient(145deg, #edf5f4, #c9dde3);
}

.product-feature-visual-produce {
  background: #dbe8d9;
}

.product-feature-visual-produce img {
  padding: 0;
  object-fit: cover;
}

.product-feature-visual > span {
  position: absolute;
  z-index: 1;
  left: 22px;
  bottom: 17px;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.product-feature-body {
  position: relative;
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 34px 30px 30px;
  color: rgba(255, 255, 255, 0.76);
}

.product-feature-number {
  position: absolute;
  top: 18px;
  right: 24px;
  color: rgba(255, 255, 255, 0.09);
  font-family: var(--font-en);
  font-size: 58px;
  line-height: 1;
}

.product-feature-body h3 {
  position: relative;
  z-index: 1;
  min-height: 66px;
  margin: 0 38px 22px 0;
  color: #fff;
  font-family: var(--font-zh);
  font-size: 25px;
  line-height: 1.3;
}

.product-feature-body h3::after {
  content: "";
  display: block;
  width: 34px;
  height: 2px;
  margin-top: 16px;
  background: var(--white);
}

.product-feature-copy {
  display: grid;
  gap: 20px;
  margin-bottom: 30px;
}

.product-feature-copy section {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.product-feature-copy h4 {
  margin: 0 0 7px;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.04em;
}

.product-feature-copy h4 span {
  color: var(--white);
  font-size: 9px;
}

.product-feature-copy p {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
}

/* Contact page */
.contact-page-hero {
  position: relative;
  overflow: hidden;
  padding: 104px 0 96px;
  color: #fff;
  background:
    radial-gradient(circle at 78% 24%, rgba(255, 255, 255, 0.08), transparent 22%),
    linear-gradient(112deg, #061b35 0%, var(--primary) 68%, #0c4c8a 100%);
}

.contact-page-hero::after {
  content: "";
  position: absolute;
  top: -46%;
  right: -8%;
  width: 560px;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  box-shadow:
    0 0 0 76px rgba(255, 255, 255, 0.025),
    0 0 0 154px rgba(255, 255, 255, 0.018);
}

.contact-page-hero-inner {
  position: relative;
  z-index: 1;
}

.contact-page-kicker {
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.24em;
}

.contact-page-hero h1 {
  margin: 18px 0 20px;
  font-size: clamp(42px, 6vw, 70px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.contact-page-hero p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
}

.global-map-section {
  padding: 92px 0 104px;
  background: #fff;
}

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

.contact-section-heading h2,
.offices-title-block h2 {
  margin: 8px 0 0;
  color: var(--primary);
  font-size: clamp(34px, 4.5vw, 50px);
  line-height: 1.18;
}

.contact-section-heading > p {
  margin: 0 0 7px;
  color: #8a94a2;
  font-family: var(--font-en);
  font-size: 19px;
}

.global-map-frame {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(0, 40, 124, 0.1);
  border-radius: 8px;
  background: var(--support);
  box-shadow: 0 28px 70px rgba(7, 26, 54, 0.13);
}

.global-map-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.42);
  pointer-events: none;
}

.global-map-frame img {
  width: 100%;
  height: auto;
}

.global-offices-section {
  padding: 106px 0 124px;
  background: var(--support);
}

.offices-title-block {
  max-width: 760px;
  margin-bottom: 62px;
}

.region-list {
  border-top: 1px solid rgba(0, 40, 124, 0.16);
}

.region-block {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 58px;
  padding: 46px 0;
  border-bottom: 1px solid rgba(0, 40, 124, 0.16);
}

.region-heading {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  align-content: start;
}

.region-number {
  padding-top: 5px;
  color: var(--secondary);
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 700;
}

.region-heading h3 {
  margin: 0;
  color: var(--primary);
  font-size: 25px;
  line-height: 1.28;
}

.region-heading p {
  margin: 6px 0 0;
  color: #7a8797;
  font-family: var(--font-en);
  font-size: 15px;
  line-height: 1.4;
}

.office-list {
  display: grid;
  gap: 18px;
}

.office-contact {
  display: grid;
  grid-template-columns: minmax(210px, 0.9fr) minmax(260px, 1.1fr);
  gap: 36px;
  align-items: center;
  min-height: 138px;
  padding: 28px 30px;
  border-left: 3px solid var(--secondary);
  background: #fff;
  box-shadow: 0 12px 30px rgba(0, 40, 124, 0.055);
}

.office-name h4 {
  margin: 0;
  color: #172b3c;
  font-size: 20px;
  line-height: 1.35;
}

.office-name p {
  margin: 6px 0 0;
  color: #7a8797;
  font-size: 13px;
  line-height: 1.45;
}

.office-details {
  display: grid;
  gap: 9px;
  margin: 0;
}

.office-details div {
  display: grid;
  grid-template-columns: 116px 1fr;
  align-items: baseline;
  min-height: 30px;
  border-bottom: 1px solid #e8ecf1;
}

.office-details dt {
  color: #536174;
  font-size: 13px;
  font-weight: 700;
}

.office-details dt span {
  margin-left: 5px;
  color: #9aa3af;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.office-details dd {
  margin: 0;
  color: #a3acb8;
  text-align: right;
}

.office-details dd a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.office-details dd a:hover,
.office-details dd a:focus-visible {
  color: var(--primary);
}

.site-footer {
  background: var(--footer);
  color: rgba(255, 255, 255, 0.88);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(140px, 0.56fr) minmax(200px, 0.76fr) minmax(300px, 1.08fr);
  align-items: start;
  justify-content: space-between;
  gap: clamp(28px, 3.4vw, 52px);
  padding: 64px 0 30px;
}

.footer-brand img {
  height: 46px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.footer-brand p {
  margin: 0;
}

.footer-brand .footer-slogan {
  max-width: 460px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--font-zh);
  font-size: clamp(14px, 1.2vw, 16px);
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.65;
  white-space: nowrap;
}

.footer-menu {
  padding-top: 8px;
}

.footer-column-heading {
  margin-bottom: 20px;
}

.footer-column-heading p {
  margin: 7px 0 0;
  color: var(--white);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
}

.footer-column-kicker {
  color: rgba(255, 255, 255, 0.52);
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1;
}

.footer-nav {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.82);
}

.footer-nav a:hover {
  color: var(--white);
}

.footer-nav a:focus-visible {
  color: var(--white);
  outline-color: rgba(255, 255, 255, 0.9);
}

.footer-social {
  min-width: 0;
  padding-top: 8px;
}

.footer-social-links {
  display: grid;
  gap: 10px;
}

.footer-wechat-card,
.footer-linkedin-link {
  border: 0;
  border-radius: 0;
  background: transparent;
}

.footer-wechat-card {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  margin: 0;
  padding: 0;
}

.footer-qr-frame {
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  padding: 5px;
  border-radius: 8px;
  background: var(--white);
}

.footer-qr-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-wechat-card figcaption {
  min-width: 0;
}

.footer-wechat-card strong,
.footer-wechat-card figcaption span {
  display: block;
}

.footer-wechat-card strong {
  color: var(--white);
  font-size: 15px;
  line-height: 1.45;
}

.footer-wechat-card figcaption span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  line-height: 1.5;
}

.footer-linkedin-link {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) 20px;
  align-items: center;
  gap: 12px;
  min-height: 66px;
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.9);
  transition: color 180ms ease, transform 180ms ease;
}

.footer-linkedin-link:hover,
.footer-linkedin-link:focus-visible {
  color: var(--white);
  background: transparent;
  transform: translateX(2px);
}

.footer-linkedin-link:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
}

.footer-linkedin-icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  color: var(--footer);
  background: var(--white);
}

.footer-linkedin-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-linkedin-copy,
.footer-linkedin-copy strong,
.footer-linkedin-copy span {
  display: block;
  min-width: 0;
}

.footer-linkedin-copy strong {
  font-family: var(--font-en);
  font-size: 15px;
  line-height: 1.35;
}

.footer-linkedin-copy span {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  line-height: 1.4;
}

.footer-external-icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-inner .copyright {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 10px;
  margin-top: 18px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
}

.copyright-divider {
  color: rgba(255, 255, 255, 0.28);
}

.footer-statement-link {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.28);
  text-underline-offset: 4px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.footer-statement-link:hover,
.footer-statement-link:focus-visible,
.footer-statement-link[aria-current="page"] {
  color: var(--white);
  text-decoration-color: currentColor;
}

.footer-terms {
  min-width: 0;
  padding-top: 8px;
}

.footer-conditions-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-conditions-list a {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: rgba(255, 255, 255, 0.8);
  background: transparent;
  font-family: var(--font-en);
  font-size: 14px;
  line-height: 1.6;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-conditions-list a:hover,
.footer-conditions-list a:focus-visible,
.footer-conditions-list a[aria-current="page"] {
  color: var(--white);
  background: transparent;
  transform: translateX(2px);
}

.footer-conditions-list a:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
}

.footer-conditions-list span {
  min-width: 0;
}

.copyright {
  margin: 0;
  text-align: right;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.6;
  white-space: nowrap;
}

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

  .footer-social-links {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-linkedin-link {
    min-height: 66px;
  }
}

/* Unified typography scale */
.hero h1,
.page-hero h1,
.about-hero h1,
.contact-page-hero h1 {
  font-size: var(--type-page-title);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.section-head h2,
.about-intro-heading h2,
.certification-copy h2,
.products-showcase-heading h2,
.contact-section-heading h2,
.offices-title-block h2,
.split-copy h2,
.story-grid h2,
.contact-copy h2 {
  font-size: var(--type-section-title);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.feature-card h3,
.about-main h3,
.card-intro h3,
.office-copy h3,
.about-intro-heading h3,
.tab-panel h3,
.business-steps h3,
.business-capability-card h3,
.channel-grid h3,
.product-card h3,
.product-feature-body h3,
.region-heading h3 {
  font-size: var(--type-card-title);
  font-weight: 700;
  line-height: 1.35;
}

.section-head p,
.about-card p,
.about-intro-copy p,
.certification-copy p,
.responsibility-heading p,
.tab-panel p,
.story-grid p,
.split-copy p,
.business-section-heading p,
.business-capability-card p,
.products-showcase-heading p,
.contact-page-hero p {
  font-size: var(--type-body);
  line-height: var(--leading-body);
  letter-spacing: 0.012em;
}

.about-intro-copy,
.tab-panel {
  max-width: 72ch;
}

.about-intro-copy p,
.tab-panel p {
  margin-top: 0;
  margin-bottom: 1.25em;
}

.about-intro-copy p:last-of-type,
.tab-panel p:last-child {
  margin-bottom: 0;
}

.tab-panel h4 {
  margin-top: 32px;
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 1.45;
}

.section-head,
.products-showcase-heading {
  margin-bottom: 38px;
}

@keyframes hero-fade {
  0% {
    opacity: 0;
    transform: scale(1.03);
  }

  8% {
    opacity: 1;
  }

  42% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 0;
    transform: scale(1);
  }
}

@media (max-width: 960px) {
  .header-inner {
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    min-height: auto;
    padding: 18px 0;
  }

  .nav-toggle {
    display: inline-block;
    order: 2;
  }

  .header-actions {
    flex: 1;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .language-status {
    order: 1;
  }

  .main-nav {
    display: none;
    order: 3;
    flex-basis: 100%;
    width: 100%;
    padding-top: 10px;
  }

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

  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 0;
    border: 1px solid rgba(0, 40, 124, 0.08);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 16px 36px rgba(0, 40, 124, 0.1);
  }

  .main-nav li + li {
    border-top: 1px solid rgba(0, 40, 124, 0.06);
  }

  .main-nav a {
    display: block;
    padding: 14px 18px;
  }

  .main-nav a.active::after,
  .main-nav a:hover::after {
    display: none;
  }

  .about-layout,
  .feature-grid,
  .office-layout {
    grid-template-columns: 1fr;
  }

  .business-section-heading {
    grid-template-columns: 1fr;
    gap: 14px;
  }

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

  .about-intro-grid,
  .certification-card {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .about-intro-heading h3 {
    max-width: 100%;
  }

  .certification-logos {
    max-width: 640px;
  }

  .responsibility-tabs {
    grid-template-columns: 1fr;
  }

  .tab-list {
    display: flex;
    padding: 0;
    border-right: 0;
    border-bottom: 1px solid var(--border);
    overflow-x: auto;
    scrollbar-width: thin;
  }

  .tab-button {
    width: auto;
    min-width: max-content;
    grid-template-columns: 30px 1fr;
    padding: 18px 22px;
    border-left: 0;
    border-bottom: 3px solid transparent;
  }

  .tab-button:hover,
  .tab-button:focus-visible,
  .tab-button.is-active {
    border-left-color: transparent;
    border-bottom-color: var(--secondary);
  }

  .hero {
    min-height: 540px;
  }

  .region-block {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

/* Certification showcase */
.certification-section {
  background: var(--white);
}

.certification-card {
  display: block;
}

.certification-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: var(--layout-gap);
  align-items: end;
  margin-bottom: 42px;
  padding-bottom: 0;
  border-bottom: 0;
}

.certification-copy h2 {
  max-width: 12em;
  margin-bottom: 0;
}

.certification-intro {
  max-width: 590px;
  justify-self: end;
}

.certification-note {
  margin-top: 10px !important;
  color: var(--muted) !important;
  font-size: 14px;
}

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

.certification-item {
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid rgba(0, 40, 124, 0.12);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(0, 40, 124, 0.07);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.certification-item:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 40, 124, 0.28);
  box-shadow: 0 20px 42px rgba(0, 40, 124, 0.11);
}

.certification-mark {
  display: grid;
  min-height: 210px;
  padding: 28px;
  place-items: center;
  background: var(--white);
}

.certification-mark img {
  width: 100%;
  height: 126px;
  object-fit: contain;
}

@media (max-width: 960px) {
  .certification-copy {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .certification-intro {
    max-width: 680px;
    justify-self: start;
  }

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

@media (max-width: 620px) {
  .certification-copy {
    margin-bottom: 28px;
    padding-bottom: 26px;
  }

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

  .certification-mark {
    min-height: 170px;
  }
}

/* About hero slider */
.about-hero {
  min-height: 620px;
  isolation: isolate;
  background: #061b35;
}

.about-hero-slides,
.about-hero-slide {
  position: absolute;
  inset: 0;
}

.about-hero-slides {
  z-index: -2;
}

.about-hero-slide {
  opacity: 0;
  transform: scale(1.045);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: opacity 900ms ease, transform 7000ms ease;
}

.about-hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.about-hero-slide-1 {
  background-image: url("images/slider_01.jpg");
  background-position: center 54%;
}

.about-hero-slide-2 {
  background-image: url("images/p21-hesse-meat-b-20140824.jpg");
  background-position: center 48%;
}

.about-hero-slide-3 {
  background-image: url("images/slider_02.jpg");
  background-position: center 48%;
}

.about-hero::before {
  z-index: -1;
  pointer-events: none;
}

.about-slider-ui {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  transform: translateX(-50%);
}

.about-slider-dots {
  display: flex;
  align-items: center;
  gap: 9px;
}

.about-slider-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  transition: width 180ms ease, background 180ms ease;
}

.about-slider-dots button.is-active {
  width: 34px;
  background: var(--white);
}

.about-slider-dots button:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.48);
  outline-offset: 3px;
}

.about-slider-progress {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.18);
}

.about-slider-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform-origin: left center;
  background: var(--white);
  animation: about-slider-progress 6000ms linear infinite;
}

.about-hero.is-paused .about-slider-progress span {
  animation-play-state: paused;
}

@keyframes about-slider-progress {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

/* Core partners visual separation */
.core-partners-section {
  background: #edf5ff;
}

.core-partner-card {
  background: rgba(255, 255, 255, 0.92);
}

/* Global network map redesign */
.global-map-frame {
  border-color: rgba(0, 40, 124, 0.14);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 24px 64px rgba(0, 40, 124, 0.12);
}

.global-map-frame::after {
  display: none;
}

.global-map-visual {
  overflow: hidden;
  background: #f4f8ff;
}

.global-map-canvas {
  position: relative;
  width: 100%;
  aspect-ratio: 2.5 / 1;
}

.global-map-canvas > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.global-map-points {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.global-map-point {
  position: absolute;
  width: 16px;
  height: 16px;
  transform: translate(-50%, -50%);
  border: 3px solid var(--white);
  border-radius: 50%;
  background: #f28c28;
  box-shadow: 0 0 0 2px rgba(242, 140, 40, 0.42), 0 6px 16px rgba(7, 26, 54, 0.18);
}

.global-map-label {
  position: absolute;
  top: 50%;
  left: 22px;
  width: max-content;
  padding: 5px 8px;
  transform: translateY(-50%);
  border: 1px solid rgba(0, 40, 124, 0.12);
  border-radius: 4px;
  color: var(--primary);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 5px 14px rgba(7, 26, 54, 0.12);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

.global-map-point-qingdao {
  left: 74.2%;
  top: 39.2%;
}

.global-map-point-qingdao .global-map-label {
  top: -30px;
  transform: none;
}

.global-map-point-netherlands {
  left: 49.3%;
  top: 28.5%;
}

.global-map-point-vietnam {
  left: 73.1%;
  top: 51.3%;
}

.global-map-point-vietnam .global-map-label,
.global-map-point-singapore .global-map-label {
  right: 22px;
  left: auto;
}

.global-map-point-new-zealand {
  left: 86.5%;
  top: 85.2%;
}

.global-map-point-new-zealand .global-map-label {
  right: 22px;
  left: auto;
}

.global-map-point-singapore {
  left: 70.2%;
  top: 61.2%;
}

.global-map-point-hong-kong {
  left: 74%;
  top: 47.8%;
}

.global-map-point-hong-kong .global-map-label {
  top: 14px;
  transform: none;
}

.map-location-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border-top: 1px solid rgba(0, 40, 124, 0.12);
  background: var(--white);
}

.map-location-strip > span {
  min-width: 0;
  padding: 19px 18px 20px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.map-location-strip > span + span {
  border-left: 1px solid rgba(0, 40, 124, 0.1);
}

.map-location-strip strong {
  display: block;
  margin-bottom: 4px;
  color: var(--primary);
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.08em;
}

@media (max-width: 960px) {
  .map-location-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .map-location-strip > span:nth-child(4) {
    border-left: 0;
  }

  .map-location-strip > span:nth-child(n + 4) {
    border-top: 1px solid rgba(0, 40, 124, 0.1);
  }
}

@media (max-width: 620px) {
  .about-hero {
    min-height: 540px;
  }

  .about-slider-ui {
    bottom: 22px;
  }

  .global-map-point {
    width: 10px;
    height: 10px;
    border-width: 2px;
  }

  .global-map-label {
    left: 12px;
    max-width: 68px;
    padding: 2px 4px;
    border-radius: 3px;
    font-size: 8px;
    text-align: center;
    white-space: normal;
  }

  .global-map-point-qingdao .global-map-label {
    top: -20px;
  }

  .global-map-point-vietnam .global-map-label,
  .global-map-point-singapore .global-map-label,
  .global-map-point-new-zealand .global-map-label {
    right: 12px;
    left: auto;
  }

  .global-map-point-hong-kong .global-map-label {
    top: 9px;
  }

  .global-map-point-singapore .global-map-label {
    top: 11px;
    transform: none;
  }

  .map-location-strip {
    grid-template-columns: 1fr;
  }

  .map-location-strip > span + span {
    border-left: 0;
    border-top: 1px solid rgba(0, 40, 124, 0.1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-hero-slide,
  .about-slider-dots button {
    transition: none;
  }

  .about-slider-progress span {
    animation: none;
  }
}

/* Strategic partners page */
.partners-page {
  overflow: hidden;
  background: #fff;
}

.linking-fresh-section {
  position: relative;
  color: var(--text);
  background: #fff;
}

.linking-fresh-section::after {
  display: none;
}

.linking-fresh-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(480px, 1.08fr);
  gap: clamp(56px, 8vw, 112px);
  align-items: center;
}

.linking-fresh-brand {
  display: inline-flex;
  align-items: center;
  width: 280px;
  height: 126px;
  margin-bottom: 32px;
  overflow: hidden;
  border-radius: 12px;
  background: #fff;
}

.linking-fresh-brand img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.linking-fresh-copy h2 {
  margin: 15px 0 24px;
  color: var(--primary);
  font-size: clamp(38px, 4.6vw, 60px);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.linking-fresh-copy > p {
  max-width: 58ch;
  margin: 0;
  color: var(--muted);
  line-height: 1.95;
}

.linking-capabilities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.linking-capabilities span {
  padding: 8px 13px;
  border: 1px solid rgba(0,40,124,0.14);
  border-radius: 999px;
  color: var(--primary);
  background: var(--support);
  font-size: 13px;
}

.data-intro {
  max-width: 45ch;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

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

.linking-metric {
  min-height: 180px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--support);
}

.linking-metric-wide {
  grid-column: 1 / -1;
  min-height: 210px;
}

.linking-metric > span,
.processing-metrics article > span {
  display: block;
  color: var(--secondary);
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.linking-metric > span {
  color: var(--primary);
}

.linking-metric strong {
  display: block;
  margin: 18px 0 4px;
  color: var(--primary);
  font-family: var(--font-en);
  font-size: clamp(42px, 5vw, 66px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.linking-metric strong sup {
  color: var(--secondary);
  font-size: 0.45em;
}

.linking-metric strong small {
  margin-left: 12px;
  color: var(--secondary);
  font-size: 0.28em;
  letter-spacing: 0;
}

.linking-metric p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.processing-center-section {
  background: var(--support);
}

.processing-center-heading,
.partners-section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 64px;
  margin-bottom: 48px;
}

.processing-center-heading h2,
.partners-section-heading h2 {
  margin: 15px 0 0;
  color: var(--primary);
  font-size: var(--type-section-title);
  line-height: 1.18;
  letter-spacing: -0.025em;
}

.processing-subtitle {
  width: 100%;
  max-width: 590px;
  margin: 0;
  justify-self: start;
  color: var(--muted);
  font-size: var(--type-body);
  line-height: var(--leading-body);
  letter-spacing: 0.012em;
  text-align: left;
}

.processing-center-card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  min-height: 380px;
  overflow: hidden;
  border-radius: 18px 18px 0 0;
  color: #fff;
  background: linear-gradient(120deg, #00287c, #064b91);
  box-shadow: 0 24px 60px rgba(0,40,124,0.16);
}

.processing-center-copy {
  padding: clamp(42px, 6vw, 72px);
}

.processing-location {
  color: var(--white);
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.processing-center-copy h3 {
  max-width: 15em;
  margin: 18px 0 22px;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.25;
}

.processing-center-copy p {
  max-width: 60ch;
  margin: 0;
  color: rgba(255,255,255,0.74);
  line-height: 1.9;
}

.processing-route {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 300px;
  background:
    radial-gradient(circle at center, rgba(255,255,255,0.1), transparent 42%),
    linear-gradient(135deg, rgba(255,255,255,0.04), rgba(6,29,59,0.45));
}

.processing-route::before,
.processing-route::after {
  content: "";
  position: absolute;
  width: 75%;
  height: 1px;
  background: rgba(255,255,255,0.1);
  transform: rotate(35deg);
}

.processing-route::after {
  transform: rotate(-35deg);
}

.route-port {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  border: 1px solid rgba(255,255,255,0.62);
  border-radius: 50%;
  color: var(--white);
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  background: #07346b;
  box-shadow: 0 0 0 18px rgba(255,255,255,0.06), 0 0 50px rgba(255,255,255,0.14);
}

.route-line {
  width: 34px;
  height: 1px;
  background: var(--white);
}

.route-label {
  position: relative;
  z-index: 1;
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  white-space: nowrap;
}

.processing-metrics {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-top: 0;
  border-radius: 0 0 18px 18px;
  background: var(--border);
}

.processing-metrics article {
  min-width: 0;
  min-height: 180px;
  padding: 30px 24px;
  background: #fff;
}

.processing-metrics article + article {
  border-left: 0;
}

.processing-metrics article > span {
  color: var(--primary);
}

.processing-metrics strong {
  display: block;
  margin: 15px 0 8px;
  color: var(--primary);
  font-family: var(--font-en);
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1;
}

.processing-metrics strong small {
  margin-left: 5px;
  color: var(--primary);
  font-size: 0.34em;
}

.processing-metrics p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.global-partners-section {
  background: #fff;
}

.partners-section-heading > p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
}

.global-logo-wall {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid #e1e7ef;
  border-radius: 18px;
  background: #e1e7ef;
  box-shadow: 0 20px 50px rgba(10,34,54,0.08);
}

.global-logo {
  display: grid;
  place-items: center;
  aspect-ratio: 1.18;
  padding: 18px;
  background: #fff;
  transition: background 180ms ease, transform 180ms ease;
}

.global-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: saturate(0.78);
  transition: filter 180ms ease, transform 180ms ease;
}

.global-logo-inset img {
  width: 82%;
  height: 82%;
}

.global-logo:hover {
  position: relative;
  z-index: 1;
  background: #fafdff;
}

.global-logo:hover img {
  filter: saturate(1);
  transform: scale(1.06);
}

.core-partners-section {
  background: #edf5ff;
}

.core-heading {
  align-items: flex-end;
}

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

.core-partner-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 300px;
  padding: 34px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  background: #fff;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.core-partner-card::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -44px;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(0,40,124,0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 22px rgba(0,40,124,0.025);
}

.core-partner-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0,40,124,0.28);
  box-shadow: 0 18px 42px rgba(10,34,54,0.1);
}

.core-partner-logo {
  position: relative;
  z-index: 1;
  display: flex;
  height: 78px;
  margin: 14px 0 0;
  padding: 12px 18px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
}

.core-partner-logo img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 54px;
  object-fit: contain;
}

.core-partner-logo-square img {
  max-height: 68px;
}

.core-partner-logo-wide {
  padding: 14px 16px;
}

.core-partner-logo-wide img {
  width: 100%;
  max-height: 48px;
}

.core-partner-logo-canvas-crop {
  padding-block: 0;
}

.core-partner-logo-canvas-crop img {
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: none;
}

.core-partner-logo-pair {
  gap: 22px;
  padding: 12px 22px;
}

.core-partner-logo-pair img {
  flex: 0 1 43%;
  width: 43%;
  max-width: 132px;
  max-height: 46px;
}

.partner-type {
  display: inline-block;
  padding: 5px 9px;
  border-radius: 4px;
  color: var(--primary);
  background: var(--support);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.core-partner-card h3 {
  margin: 22px 0 13px;
  color: #072247;
  font-size: 25px;
  line-height: 1.25;
}

.core-partner-card h3 small {
  display: block;
  margin-top: 3px;
  color: #58708f;
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.core-partner-card > p {
  min-width: 0;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.partner-tags {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: auto;
  padding-top: 22px;
}

.partner-tags span {
  max-width: 100%;
  padding: 5px 9px;
  border: 1px solid rgba(0,40,124,0.12);
  border-radius: 999px;
  color: var(--primary);
  background: var(--support);
  font-size: 11px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

@media (max-width: 1100px) {
  .linking-fresh-layout {
    grid-template-columns: 1fr;
  }

  .linking-fresh-copy > p {
    max-width: 72ch;
  }

  .data-intro {
    max-width: 60ch;
  }

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

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

@media (max-width: 960px) {
  .processing-center-heading,
  .partners-section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 26px;
  }

  .processing-subtitle {
    width: 100%;
    max-width: 48ch;
    margin: 0;
    text-align: left;
  }

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

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

  .processing-route {
    min-height: 260px;
  }

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

@media (max-width: 640px) {
  .linking-fresh-brand img {
    width: 100%;
  }

  .linking-fresh-brand {
    width: 230px;
    height: 104px;
  }

  .linking-metrics,
  .processing-metrics,
  .core-partner-grid {
    grid-template-columns: 1fr;
  }

  .linking-metric-wide {
    grid-column: auto;
  }

  .linking-metric,
  .linking-metric-wide {
    min-height: 160px;
    padding: 24px;
  }

  .processing-center-copy {
    padding: 36px 24px;
  }

  .processing-route {
    padding: 24px 14px;
  }

  .route-line {
    width: 18px;
  }

  .route-port {
    width: 78px;
    height: 78px;
  }

  .processing-metrics article {
    min-height: 160px;
    padding: 28px 24px;
  }

  .processing-metrics article + article {
    border-left: 0;
  }

  .global-logo-wall {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-radius: 12px;
  }

  .global-logo {
    padding: 10px;
  }

  .core-partner-card {
    min-height: 290px;
    padding: 28px 24px;
  }

  .partner-tags {
    padding-top: 18px;
  }
}

@media (max-width: 640px) {
  :root {
    --page-gutter: 28px;
    --section-spacing: 68px;
  }

  .container {
    width: min(var(--container), calc(100% - var(--page-gutter)));
  }

  .hero-content {
    padding: 104px 0 56px;
  }

  .about-hero {
    min-height: 500px;
    padding: 90px 0 60px;
    background-position: 61% center;
  }

  .about-hero::before {
    background: linear-gradient(90deg, rgba(4, 20, 34, 0.94), rgba(9, 38, 61, 0.56));
  }

  .about-hero h1 {
    font-size: clamp(16px, 4.7vw, 30px);
  }

  .about-hero p {
    padding-left: 0;
    line-height: 1.6;
  }

  .about-hero p::before {
    display: none;
  }

  .about-intro-section,
  .responsibility-section {
    padding: 72px 0;
  }

  .about-stats {
    grid-template-columns: 1fr;
    margin-top: 50px;
  }

  .business-capability-grid,
  .business-metrics {
    grid-template-columns: 1fr;
  }

  .business-capability-card {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 30px 24px;
  }

  .business-capability-card h3 {
    font-size: 23px;
  }

  .business-metric-card {
    min-height: 255px;
  }

  .about-stats div {
    justify-content: flex-start;
    padding: 24px 20px;
  }

  .about-stats div + div {
    border-left: 1px solid var(--border);
  }

  .about-stats strong {
    font-size: 42px;
  }

  .certification-section {
    padding: 64px 0;
  }

  .certification-logos {
    padding: 18px;
  }

  .responsibility-heading {
    margin-bottom: 32px;
  }

  .responsibility-tabs {
    border-radius: 16px;
  }

  .tab-panels {
    padding: 40px 24px 44px;
  }

  .tab-panel-number {
    font-size: 38px;
  }

  .tab-panel h3 {
    margin-top: 8px;
  }

  .hero p,
  .about-card p {
    font-size: 16px;
  }

  .hero h1 {
    max-width: 100%;
    gap: 2px;
    font-size: clamp(30px, 8vw, 42px);
  }

  .hero-subtitle {
    max-width: 100%;
  }

  .about-main h3,
  .card-intro h3,
  .office-copy h3 {
    font-size: 26px;
  }

  .about-card,
  .feature-card,
  .channel-card,
  .office-card {
    padding: 24px;
  }

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

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 48px 0 28px;
  }

  .footer-social {
    grid-column: auto;
  }

  .footer-social-links {
    grid-template-columns: 1fr;
  }

  .footer-linkedin-link {
    min-height: 66px;
  }

  .copyright {
    text-align: left;
    white-space: normal;
  }

  .section-about {
    padding-bottom: 40px;
  }

  .section-business,
  .section-sales,
  .section-offices {
    padding-top: 40px;
  }

  .contact-page-hero {
    padding: 76px 0 70px;
  }

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

  .products-showcase {
    padding: 68px 0 76px;
  }

  .products-showcase-heading {
    margin-bottom: 32px;
  }

  .products-showcase-heading p {
    font-size: 15px;
  }

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

  .product-feature-visual {
    height: 240px;
  }

  .product-feature-body {
    padding: 30px 24px 26px;
  }

  .product-feature-body h3 {
    min-height: 0;
    font-size: 24px;
  }

  .global-map-section,
  .global-offices-section {
    padding: 68px 0 76px;
  }

  .contact-section-heading {
    display: block;
    margin-bottom: 24px;
  }

  .contact-section-heading > p {
    margin-top: 8px;
  }

  .global-map-frame {
    width: 100%;
    margin-left: 0;
    border-radius: 8px;
  }

  .offices-title-block {
    margin-bottom: 42px;
  }

  .region-block {
    padding: 36px 0;
  }

  .region-heading {
    grid-template-columns: 34px 1fr;
    gap: 10px;
  }

  .region-heading h3 {
    font-size: 22px;
  }

  .office-contact {
    grid-template-columns: 1fr;
    gap: 22px;
    min-height: 0;
    padding: 24px 20px;
  }

  .office-details div {
    grid-template-columns: 108px 1fr;
  }
}

/* Unified page-width and spacing system */
main > .section,
.onepage-chapter > .section,
.products-showcase,
.global-map-section,
.global-offices-section {
  padding-top: var(--section-spacing);
  padding-bottom: var(--section-spacing);
}

/* Keep the product filters visually connected to the catalog hero. */
main > .product-catalog-section {
  padding-top: 40px;
}

@media (max-width: 640px) {
  main > .product-catalog-section {
    padding-top: 28px;
  }
}

.about-intro-grid,
.certification-card,
.business-section-heading {
  column-gap: var(--layout-gap);
}

.about-intro-grid,
.business-section-heading {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

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

@media (max-width: 960px) {
  .about-intro-grid,
  .certification-card,
  .business-section-heading {
    grid-template-columns: 1fr;
    row-gap: 44px;
  }
}

/* Unified spacing between section labels and titles */
.heading-label {
  margin-bottom: 0;
}

.heading-label + h2 {
  margin-top: 14px;
}

/* Unified editorial section heading layout */
.editorial-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  column-gap: var(--layout-gap);
  align-items: end;
  max-width: none;
  margin-bottom: 46px;
}

.editorial-section-heading > div {
  min-width: 0;
}

.editorial-section-heading > p,
.editorial-section-heading > .certification-intro {
  width: 100%;
  max-width: 590px;
  margin: 0;
  justify-self: start;
}

@media (max-width: 960px) {
  .editorial-section-heading {
    grid-template-columns: 1fr;
    row-gap: 20px;
    align-items: start;
    margin-bottom: 34px;
  }
}

/* Back to top */
.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 18;
  display: grid;
  width: 52px;
  height: 52px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  color: var(--white);
  background: var(--primary);
  box-shadow: 0 12px 30px rgba(0, 40, 124, 0.28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  cursor: pointer;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease, visibility 180ms ease;
}

.back-to-top span {
  font-family: var(--font-en);
  font-size: 25px;
  font-weight: 400;
  line-height: 1;
  transform: translateY(-1px);
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  background: #001e5c;
}

.back-to-top:focus-visible {
  outline: 3px solid rgba(0, 40, 124, 0.28);
  outline-offset: 4px;
}

@media (max-width: 620px) {
  .back-to-top {
    right: 18px;
    bottom: 18px;
    width: 46px;
    height: 46px;
  }
}

/* Team culture */
.tab-read-more {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
  padding: 11px 20px;
  border: 1px solid rgba(0, 40, 124, 0.36);
  border-radius: 999px;
  color: var(--primary);
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.tab-read-more:hover,
.tab-read-more:focus-visible {
  border-color: var(--primary);
  color: var(--white);
  background: var(--primary);
}

.tab-read-more:focus-visible {
  outline: 3px solid rgba(0, 40, 124, 0.22);
  outline-offset: 4px;
}

.tab-read-more span {
  font-size: 18px;
  line-height: 1;
}

.team-page-hero {
  padding-bottom: 88px;
}

.team-brand-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: clamp(38px, 5vw, 60px);
}

.team-brand-card {
  display: flex;
  min-width: 0;
  min-height: 272px;
  padding: 14px 14px 18px;
  flex-direction: column;
  color: var(--text);
  text-decoration: none;
  border: 1px solid rgba(0, 40, 124, 0.1);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(10, 34, 54, 0.08);
}

.team-brand-mark {
  display: flex;
  height: 148px;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border: 1px solid rgba(0, 40, 124, 0.06);
  border-radius: 8px;
  background: var(--white);
}

.team-brand-mark img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 82px;
  object-fit: contain;
}

.team-brand-mark .team-brand-logo-square {
  max-height: 112px;
}

.team-brand-mark-co-creation {
  padding: 0 18px;
}

.team-brand-mark .team-brand-logo-co-creation {
  width: min(100%, 210px);
  max-width: none;
  max-height: none;
  transform: translateY(-22%);
}

.team-brand-name {
  display: flex;
  min-height: 70px;
  padding: 17px 4px 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  text-align: center;
}

.team-brand-name strong {
  color: var(--primary);
  font-size: 18px;
  line-height: 1.35;
}

.team-brand-name-en {
  display: none;
}

.locale-en .team-brand-name-zh {
  display: none;
}

.locale-en .team-brand-name-en {
  display: block;
}

.team-brand-name-link {
  display: inline-flex;
  align-self: center;
  color: var(--primary);
  text-decoration: none;
  text-underline-offset: 4px;
}

.team-brand-name-link:hover {
  text-decoration: underline;
}

.team-brand-name-link:focus-visible {
  outline: 3px solid rgba(0, 40, 124, 0.28);
  outline-offset: 3px;
  border-radius: 2px;
}

.team-culture-section {
  padding: var(--section-spacing) 0;
  background: var(--white);
}

.team-culture-intro h2 {
  margin: 14px 0 0;
  color: var(--primary);
  font-size: var(--type-section-title);
  line-height: 1.18;
}

.team-culture-intro > p {
  color: var(--muted);
  font-size: var(--type-body);
  line-height: var(--leading-body);
}

.team-culture-gallery {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(220px, 1fr));
  gap: 22px;
}

.team-culture-photo {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--support);
  box-shadow: 0 18px 44px rgba(6, 27, 53, 0.14);
}

.team-culture-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: inherit;
  pointer-events: none;
}

.team-culture-photo-main {
  grid-column: 1 / 5;
  grid-row: 1 / 3;
}

.team-culture-photo-side {
  grid-column: 5 / 7;
}

.team-culture-photo-feature {
  grid-column: span 3;
  aspect-ratio: 4 / 3;
}

.team-culture-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.team-culture-photo-main img {
  object-position: center;
}

.team-culture-photo:hover img {
  transform: scale(1.025);
}

.team-culture-stat {
  position: absolute;
  right: 0;
  bottom: 28px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 272px;
  padding: 22px 28px;
  color: var(--white);
  background: var(--primary);
  box-shadow: 0 18px 40px rgba(0, 40, 124, 0.28);
}

.team-culture-stat strong {
  font-family: var(--font-en);
  font-size: 48px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.team-culture-stat sup {
  margin-left: 2px;
  font-size: 18px;
  vertical-align: top;
}

.team-culture-stat span {
  padding-left: 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.34);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.6;
}

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

  .team-culture-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
  }

  .team-culture-photo-main {
    grid-column: 1 / 3;
    grid-row: auto;
    aspect-ratio: 16 / 9;
  }

  .team-culture-photo-side,
  .team-culture-photo-feature {
    grid-column: auto;
    aspect-ratio: 4 / 3;
  }

}

@media (max-width: 620px) {
  .team-page-hero {
    padding-bottom: 70px;
  }

  .team-culture-section {
    padding: 68px 0 76px;
  }

  .team-brand-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
    margin-top: 34px;
  }

  .team-brand-card {
    min-height: 252px;
  }

  .team-brand-mark {
    height: 138px;
  }

  .team-culture-gallery {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .team-culture-photo,
  .team-culture-photo-main {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .team-culture-stat {
    right: 0;
    bottom: 16px;
    min-width: 0;
    margin: 0;
    padding: 18px 20px;
  }

  .team-culture-stat strong {
    font-size: 42px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .team-culture-photo img {
    transition: none;
  }
}

/* About ecosystem and investment brand wall */
.about-ecosystem {
  margin-top: 0;
  padding: var(--section-spacing) 0;
  border-top: 0;
  background: rgba(0, 40, 124, 0.045);
}

.about-ecosystem-heading {
  align-items: start;
  margin-bottom: 32px;
}

.about-ecosystem .section-tag {
  border-color: rgba(0, 40, 124, 0.08);
  background: var(--white);
  box-shadow: none;
}

.certification-section .section-tag.light {
  border-color: rgba(0, 40, 124, 0.08);
  background: rgba(0, 40, 124, 0.045);
  box-shadow: none;
}

.about-ecosystem-heading h2 {
  margin: 14px 0 0;
  color: var(--primary);
  font-size: var(--type-section-title);
  line-height: 1.18;
}

.about-ecosystem-copy {
  width: 100%;
  max-width: 590px;
  justify-self: start;
}

.about-ecosystem-copy p {
  margin: 0;
  color: var(--muted);
  font-size: var(--type-body);
  line-height: var(--leading-body);
}

.about-ecosystem-copy p + p {
  margin-top: 16px;
}

.about-brand-wall {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--border);
  box-shadow: 0 14px 34px rgba(10, 34, 54, 0.08);
}

.about-brand-wall .team-brand-card {
  min-height: 190px;
  padding: 16px 16px 14px;
  border: 0;
  border-radius: 0;
  background: var(--white);
  box-shadow: none;
}

.about-brand-wall .team-brand-mark {
  height: 124px;
  padding: 16px;
  border: 0;
  border-radius: 0;
}

.about-brand-wall .team-brand-mark img {
  max-height: 72px;
}

.about-brand-wall .team-brand-mark .team-brand-logo-square {
  max-height: 92px;
}

.about-brand-wall .team-brand-logo-viefood {
  transform: scale(1.24);
}

.about-brand-wall .team-brand-mark-co-creation {
  padding: 0 14px;
}

.about-brand-wall .team-brand-mark .team-brand-logo-co-creation {
  width: min(100%, 180px);
  max-height: none;
}

.about-brand-wall .team-brand-name {
  min-height: 40px;
  padding: 8px 2px 0;
}

.about-brand-wall .team-brand-name strong {
  font-size: 15px;
}

@media (max-width: 960px) {
  .about-ecosystem-heading {
    margin-bottom: 28px;
  }

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

@media (max-width: 620px) {
  .about-ecosystem {
    margin-top: 0;
    padding: 68px 0 76px;
  }

  .about-brand-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    margin-top: 0;
    border-radius: 8px;
  }

  .about-brand-wall .team-brand-card {
    min-height: 158px;
    padding: 10px 10px 8px;
  }

  .about-brand-wall .team-brand-mark {
    height: 108px;
    padding: 10px;
  }

  .about-brand-wall .team-brand-mark img {
    max-height: 64px;
  }

  .about-brand-wall .team-brand-mark .team-brand-logo-square {
    max-height: 78px;
  }

  .about-brand-wall .team-brand-logo-viefood {
    transform: scale(1.32);
  }

  .about-brand-wall .team-brand-mark .team-brand-logo-co-creation {
    width: min(100%, 142px);
    max-height: none;
    transform: translateY(-32%);
  }

  .about-brand-wall .team-brand-name {
    min-height: 32px;
    padding-top: 5px;
  }

  .about-brand-wall .team-brand-name strong {
    font-size: 13.5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .back-to-top {
    transition: none;
  }
}

/* Global partners gallery */
.partner-gallery-page-hero {
  padding-bottom: 88px;
}

.partner-gallery-section {
  padding: var(--section-spacing) 0;
  background:
    linear-gradient(180deg, rgba(243, 246, 250, 0.72), rgba(255, 255, 255, 0) 42%),
    var(--white);
}

.partner-gallery-intro h2 {
  margin: 14px 0 0;
  color: var(--primary);
  font-size: var(--type-section-title);
  line-height: 1.18;
}

.partner-gallery-intro > p {
  color: var(--muted);
  font-size: var(--type-body);
  line-height: var(--leading-body);
}

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

.partner-photo-card {
  position: relative;
  aspect-ratio: 4 / 3;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--support);
  box-shadow: 0 18px 44px rgba(6, 27, 53, 0.14);
}

.partner-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: inherit;
  pointer-events: none;
}

.partner-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.partner-photo-card:hover img {
  transform: scale(1.025);
}

@media (max-width: 620px) {
  .partner-gallery-page-hero {
    padding-bottom: 70px;
  }

  .partner-gallery-section {
    padding: 68px 0 76px;
  }

  .partner-photo-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .partner-photo-card img {
    transition: none;
  }
}

/* Website statement */
.statement-page-hero {
  padding-bottom: 88px;
}

.statement-section {
  padding: var(--section-spacing) 0;
  background:
    linear-gradient(180deg, rgba(243, 246, 250, 0.82), rgba(255, 255, 255, 0) 260px),
    var(--white);
}

.statement-content {
  max-width: 1080px;
}

.statement-block {
  display: grid;
  grid-template-columns: minmax(190px, 0.34fr) minmax(0, 1fr);
  gap: var(--layout-gap);
  padding: 48px 0 54px;
  border-top: 1px solid var(--border);
}

.statement-block:first-child {
  padding-top: 0;
  border-top: 0;
}

.statement-block:last-child {
  padding-bottom: 0;
}

.statement-block header {
  min-width: 0;
}

.statement-block .heading-label {
  display: block;
  margin-bottom: 12px;
  color: var(--primary);
}

.statement-block h2 {
  margin: 0;
  color: var(--primary);
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.25;
}

.statement-copy {
  min-width: 0;
  max-width: 72ch;
}

.statement-copy p {
  margin: 0 0 1.25em;
  color: var(--text);
  font-size: var(--type-body);
  line-height: var(--leading-body);
  letter-spacing: 0.012em;
}

.statement-copy p:last-child {
  margin-bottom: 0;
}

.statement-trademark {
  display: flex;
  align-items: center;
  min-height: 112px;
  margin-top: 28px;
  padding: 24px 30px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--support);
}

.statement-trademark img {
  width: auto;
  max-width: min(100%, 260px);
  max-height: 54px;
  object-fit: contain;
}

@media (max-width: 960px) {
  .statement-block {
    grid-template-columns: minmax(160px, 0.3fr) minmax(0, 1fr);
    gap: 36px;
  }
}

@media (max-width: 620px) {
  .statement-page-hero {
    padding-bottom: 70px;
  }

  .statement-section {
    padding: 68px 0 76px;
  }

  .statement-block {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
    padding: 38px 0 42px;
  }

  .statement-trademark {
    min-height: 96px;
    padding: 20px 22px;
  }

  .copyright-divider {
    display: none;
  }

  .footer-statement-link {
    flex-basis: 100%;
  }
}
