:root {
  --safe-top: env(safe-area-inset-top, 0px);
  --header-height: 74px;
  --font-body: "Noto Sans SC", "PingFang SC", "Hiragino Sans GB", "Source Han Sans SC", "Microsoft YaHei", sans-serif;
  --font-heading: "Noto Serif SC", "Songti SC", "SimSun", "STSong", serif;
  --heading-weight: 700;
  --heading-track-xl: -0.035em;
  --heading-track-lg: -0.03em;
  --heading-track-md: -0.02em;
  --heading-leading-xl: 1.08;
  --heading-leading-lg: 1.18;
  --heading-leading-md: 1.3;
  --brand-800: #124d69;
  --brand-700: #185f7d;
  --brand-600: #1f7ea1;
  --brand-500: #2d96b7;
  --teal-500: #49a78f;
  --ink-950: #09111d;
  --ink-900: #111923;
  --ink-700: #33475d;
  --ink-500: #5d6f82;
  --line-400: #c9d6e2;
  --line-300: #d6dfe8;
  --surface-100: #f4f8fc;
  --surface-200: #edf2f7;
  --surface-300: #e6eef6;
  --white: #ffffff;
  --success: #1f9960;
  --danger: #b34a4a;
  --shadow-sm: 0 8px 24px rgba(8, 34, 56, 0.08);
  --shadow: 0 18px 40px rgba(8, 34, 56, 0.12);
  --shadow-lg: 0 28px 64px rgba(6, 23, 38, 0.2);
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --container: min(1140px, calc(100% - 2.5rem));
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink-900);
  background:
    radial-gradient(circle at right top, rgba(28, 117, 151, 0.08), transparent 32%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 220px);
  line-height: 1.65;
}

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

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

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

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

.section {
  padding: 72px 0;
  position: relative;
  z-index: 1;
}

.section-tight {
  padding: 56px 0;
  position: relative;
  z-index: 1;
}

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

.kicker {
  margin: 0 0 8px;
  color: var(--brand-600);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

h1,
h2,
h3,
h4,
.hero-title-block {
  font-family: var(--font-heading);
  font-weight: var(--heading-weight);
}

h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: var(--heading-leading-xl);
  letter-spacing: var(--heading-track-xl);
}

h2 {
  font-size: clamp(1.55rem, 2.3vw, 2.2rem);
  line-height: var(--heading-leading-lg);
  letter-spacing: var(--heading-track-lg);
}

h3 {
  font-size: clamp(1.12rem, 1.8vw, 1.35rem);
  line-height: var(--heading-leading-md);
  letter-spacing: var(--heading-track-md);
}

h4 {
  line-height: var(--heading-leading-md);
  letter-spacing: var(--heading-track-md);
}

.lead {
  margin-top: 16px;
  color: var(--ink-700);
  font-size: 1.05rem;
  max-width: 62ch;
}

.copy {
  color: var(--ink-700);
}

.muted {
  color: var(--ink-500);
}

.grid {
  display: grid;
  gap: 20px;
}

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

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

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

.card {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  border: 1px solid var(--line-400);
  border-radius: var(--radius-md);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, rgba(45, 150, 183, 0.4), rgba(73, 167, 143, 0.1));
  pointer-events: none;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: #b9cedf;
}

.card-soft {
  position: relative;
  background: linear-gradient(160deg, #eef5fb 0%, #f9fcff 100%);
  border: 1px solid #cfdeeb;
  border-radius: var(--radius-md);
  padding: 22px;
  box-shadow: var(--shadow-sm);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--brand-700);
  background: #e6f2f8;
  border-radius: 100px;
  padding: 6px 12px;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  font-weight: 700;
  padding: 12px 20px;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand-600), var(--teal-500));
  color: var(--white);
  box-shadow: 0 10px 24px rgba(25, 110, 141, 0.34);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(25, 110, 141, 0.36);
}

.btn-ghost {
  border-color: var(--line-400);
  color: var(--ink-700);
  background: rgba(255, 255, 255, 0.95);
}

.btn-ghost:hover {
  border-color: var(--brand-600);
  color: var(--brand-700);
}

.hero .btn-ghost,
.page-hero .btn-ghost {
  border-color: rgba(255, 255, 255, 0.52);
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.hero .btn-ghost:hover,
.page-hero .btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.8);
  color: var(--white);
  background: rgba(255, 255, 255, 0.2);
}

.icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding-top: var(--safe-top);
  background: rgba(248, 252, 255, 0.84);
  border-bottom: 1px solid rgba(182, 204, 220, 0.8);
}

.nav-wrap {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

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

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

.nav-toggle {
  display: none;
  border: 1px solid var(--line-300);
  background: var(--white);
  width: 42px;
  height: 42px;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
}

.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 22px;
  align-items: center;
}

.nav-link {
  position: relative;
  color: #274359;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 6px 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(135deg, var(--brand-600), var(--teal-500));
  transition: transform 0.2s ease;
}

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

.nav-link.active {
  color: var(--ink-900);
}

.header-cta {
  font-size: 0.9rem;
  padding: 10px 16px;
}

.hero {
  position: relative;
  overflow: hidden;
  background: url("../images/banner.png") center/cover no-repeat;
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(5, 18, 29, 0.44);
  pointer-events: none;
}

.hero::after {
  content: none;
}

.hero .container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 680px;
  padding: 98px 0 86px;
}

.hero-content {
  max-width: 820px;
}

.hero .lead,
.hero .copy {
  color: rgba(255, 255, 255, 0.92);
}

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

.hero-stat {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.12);
  padding: 14px;
}

.hero-stat b {
  display: block;
  font-size: 1.3rem;
  letter-spacing: 0.01em;
}

.hero-stat span {
  display: block;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.82rem;
  margin-top: 2px;
}

/* New Hero Styles */
.hero.full-screen-hero {
  min-height: calc(100vh - 74px);
  display: flex;
}

.hero.full-screen-hero .container {
  min-height: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 0 48px;
}

.hero-content-center {
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0 0 0;
  width: 100%;
  max-width: 720px;
}

.hero-tagline {
  font-size: 0.95rem;
  color: #63d1e8;
  letter-spacing: 0.2em;
  margin-bottom: 24px;
}

.hero-title-block {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 24px;
  width: auto;
}

.title-line {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 18px;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.base-text {
  color: #ffffff;
  font-weight: 700;
}

.highlight-text {
  position: relative;
  padding: 0 4px 6px;
  font-weight: 700;
  color: #ffffff;
}

.highlight-text::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #63d1e8, #49a78f);
  border-radius: 2px;
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 680px;
  margin: 0;
  line-height: 1.8;
}

.justify-center {
  justify-content: center;
}

.hero-stats-bottom {
  display: flex;
  justify-content: center;
  gap: 100px;
  margin-top: 140px;
}

.hero-stat-item {
  text-align: center;
  position: relative;
}

.hero-stat-item b {
  display: block;
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
  font-family: var(--font-body);
  line-height: 1;
}

.hero-stat-item b span {
  font-size: 1.2rem;
  margin-left: 2px;
  font-weight: 600;
  color: #63d1e8;
}

.hero-stat-item > span {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Platform Features */
.platform-features {
  background: linear-gradient(180deg, #ffffff 0%, #f6faff 100%);
  overflow: hidden;
}

.platform-visual {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.platform-bg-img {
  width: 100%;
  height: auto;
  display: block;
}

.bubble {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
  cursor: default;
  z-index: 2;
}

.bubble-label {
  font-size: 1.05rem;
  line-height: 1.2;
}

.bubble-en {
  font-size: 0.62rem;
  font-weight: 500;
  opacity: 0.85;
  margin-top: 1px;
}

.bubble-tech {
  background: linear-gradient(135deg, #4fc3f7, #29b6f6);
  top: 28%;
  left: 8%;
  animation: bubbleFloat1 4s ease-in-out infinite;
}

.bubble-service {
  background: linear-gradient(135deg, #ce93d8, #ab47bc);
  top: 12%;
  right: 24%;
  width: 96px;
  height: 96px;
  animation: bubbleFloat2 5s ease-in-out infinite;
}

.bubble-wisdom {
  background: linear-gradient(135deg, #42a5f5, #1e88e5);
  bottom: 18%;
  left: 22%;
  width: 82px;
  height: 82px;
  animation: bubbleFloat3 4.5s ease-in-out infinite;
}

.bubble-eco {
  background: linear-gradient(135deg, #f06292, #e91e63);
  bottom: 14%;
  right: 10%;
  width: 80px;
  height: 80px;
  animation: bubbleFloat4 5.5s ease-in-out infinite;
}

@keyframes bubbleFloat1 {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(8px, -12px); }
  50% { transform: translate(-4px, -18px); }
  75% { transform: translate(10px, -6px); }
}

@keyframes bubbleFloat2 {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(-10px, 8px); }
  50% { transform: translate(6px, 14px); }
  75% { transform: translate(-8px, -4px); }
}

@keyframes bubbleFloat3 {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(12px, 6px); }
  50% { transform: translate(-6px, -10px); }
  75% { transform: translate(-12px, 8px); }
}

@keyframes bubbleFloat4 {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(-8px, -14px); }
  50% { transform: translate(10px, -8px); }
  75% { transform: translate(4px, 10px); }
}

@media (max-width: 860px) {
  .bubble {
    width: 68px;
    height: 68px;
  }
  .bubble-label { font-size: 0.9rem; }
  .bubble-en { font-size: 0.54rem; }
  .bubble-service { width: 74px; height: 74px; }
  .bubble-wisdom { width: 64px; height: 64px; }
  .bubble-eco { width: 62px; height: 62px; }
}

@media (max-width: 560px) {
  .bubble {
    width: 54px;
    height: 54px;
  }
  .bubble-label { font-size: 0.78rem; }
  .bubble-en { display: none; }
  .bubble-service { width: 60px; height: 60px; }
  .bubble-wisdom { width: 52px; height: 52px; }
  .bubble-eco { width: 50px; height: 50px; }
}

.metrics {
  background: transparent;
  border-bottom: 1px solid #d8e5ef;
  margin-top: 0;
  padding-top: 20px;
  z-index: 2;
}

.metric-item {
  padding: 22px 20px;
  border: 1px solid #c5d8e8;
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(244, 250, 255, 0.96)),
    var(--white);
  box-shadow: 0 16px 30px rgba(9, 40, 63, 0.12);
}

.metric-item b {
  display: block;
  font-size: 1.68rem;
  color: var(--brand-700);
  margin-bottom: 4px;
}

.expert-network {
  background: linear-gradient(180deg, #f7fbff 0%, #edf4fb 100%);
}

.expert-panels {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 48px;
}

.expert-card {
  border: none;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.expert-card h3 {
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line-300);
}

.expert-card.metric-showcase {
  background: transparent;
  border: none;
  color: var(--ink-900);
  padding: 0;
}

.expert-card.metric-showcase h3 {
  color: var(--ink-900);
  margin-bottom: 8px;
}

.metric-stack {
  display: grid;
}

.metric-stack-item {
  padding: 18px 0;
  border-bottom: 1px solid var(--line-300);
}

.metric-stack-item:last-child {
  border-bottom: 0;
  padding-bottom: 6px;
}

.metric-big {
  margin: 0;
  font-size: 3.5rem;
  line-height: 0.95;
  letter-spacing: -0.02em;
  font-weight: 800;
  color: var(--brand-700);
}

.metric-big span {
  font-size: 0.5em;
  font-weight: 700;
  margin-left: 2px;
}

.metric-title {
  margin-top: 8px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink-900);
}

.metric-note {
  margin-top: 4px;
  font-size: 0.87rem;
  color: var(--ink-700);
}

.donut-wrap {
  display: grid;
  gap: 14px;
}

.donut-chart {
  width: 204px;
  height: 204px;
  border-radius: 50%;
  margin: 4px auto 0;
  background:
    radial-gradient(circle at center, #ffffff 0 43%, transparent 44%),
    conic-gradient(
      #cfd7dd 0 45%,
      #7ec0d0 45% 80%,
      #56b3c6 80% 90%,
      #139fb5 90% 98%,
      #0d7a90 98% 100%
    );
  border: 1px solid #c0d4e3;
}

.donut-legend {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.donut-legend li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  color: var(--ink-700);
}

.donut-legend span {
  width: 11px;
  height: 11px;
  border-radius: 3px;
  background: var(--c);
  flex: 0 0 auto;
}

.industry-bars {
  display: grid;
  gap: 8px;
}

.industry-row {
  display: grid;
  grid-template-columns: 110px 1fr 34px;
  gap: 10px;
  align-items: center;
}

.industry-row span {
  color: var(--ink-700);
  font-size: 0.85rem;
}

.industry-row b {
  color: var(--ink-700);
  font-size: 0.85rem;
  text-align: right;
}

.industry-track {
  width: 100%;
  height: 12px;
  border-radius: 999px;
  background: #dde8f1;
  overflow: hidden;
}

.industry-track i {
  display: block;
  width: var(--w);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #2c9fba 0%, #69b6c8 100%);
}

.strategic-partners {
  position: relative;
  background: url("../images/partner-bg.png") center/cover no-repeat;
  overflow: hidden;
}

.strategic-partners::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20, 30, 52, 0.96) 0%, rgba(20, 30, 52, 0.9) 35%, rgba(20, 30, 52, 0.5) 56%, rgba(20, 30, 52, 0.16) 100%);
}

.partner-showcase {
  position: relative;
  z-index: 1;
  min-height: 620px;
  padding: 22px 0 26px;
}

.partner-showcase .section-head {
  margin-bottom: 26px;
  max-width: 580px;
}

.partner-group-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 700px;
}

.partner-group {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #cad7e3;
  border-radius: 12px;
  overflow: hidden;
}

.partner-logo-img {
  width: 100%;
  height: auto;
  display: block;
}

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

.partner-logo-slot {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #d8e2eb;
  border-bottom: 1px solid #d8e2eb;
  color: #90a2b3;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(246, 250, 253, 0.94));
}

.partner-logo-slot:nth-child(2n) {
  border-right: 0;
}

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

.partner-group p {
  margin: 0;
  padding: 10px 14px;
  text-align: center;
  font-size: 1.02rem;
  font-weight: 700;
  color: #1f2f44;
  background: #ffffff;
  border-top: 1px solid #d4dee7;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 250px;
  border-radius: 16px;
}

.service-card p {
  color: var(--ink-700);
  font-size: 0.95rem;
}

.service-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.service-list li {
  display: flex;
  gap: 10px;
  color: var(--ink-700);
  font-size: 0.9rem;
}

.service-list li::before {
  content: "";
  margin-top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--brand-600), var(--teal-500));
  flex: 0 0 auto;
}

.icon-badge {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(145deg, #ebf4fb, #dcecf8);
  color: var(--brand-700);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 0 1px rgba(22, 94, 122, 0.12);
}

.timeline {
  border-left: 2px solid #b8d2e1;
  padding-left: 18px;
  display: grid;
  gap: 18px;
}

.timeline-item {
  position: relative;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -25px;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brand-600);
}

.timeline-item .year {
  color: var(--brand-700);
  font-weight: 800;
  font-size: 0.92rem;
}

.highlight-panel {
  background: radial-gradient(circle at right top, #dff0fb 0%, #f5faff 52%, #ffffff 100%);
  border: 1px solid #c6dbea;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
}

.capability-showcase {
  background:
    linear-gradient(180deg, #f8fbfd 0%, #eef5f9 100%);
}

.capability-board {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.7fr);
  gap: 30px;
  align-items: start;
}

.capability-intro {
  position: sticky;
  top: calc(var(--header-height) + var(--safe-top) + 24px);
  padding: 24px 24px 0 0;
}

.capability-intro-label {
  margin: 0 0 14px;
  color: var(--brand-700);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.capability-intro-copy {
  margin: 0;
  max-width: 24ch;
  color: var(--ink-600);
  font-size: 1rem;
  line-height: 1.9;
}

.capability-rail {
  display: grid;
  gap: 14px;
}

.capability-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 20px;
  padding: 22px 24px;
  border-radius: 24px;
  border: 1px solid rgba(116, 149, 171, 0.2);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(247, 251, 254, 0.9) 100%);
  box-shadow: 0 10px 30px rgba(12, 33, 52, 0.04);
}

.capability-index {
  margin: 0;
  align-self: start;
  color: rgba(19, 70, 101, 0.22);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
}

.capability-body {
  display: grid;
  gap: 14px;
}

.capability-body h3 {
  margin: 0;
}

.capability-body .service-list {
  gap: 10px;
}

.capability-body .service-list li {
  font-size: 0.94rem;
}

.case-card {
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid #c8d9e8;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.case-media {
  position: relative;
}

.case-media img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.case-body {
  padding: 18px;
}

.case-body p {
  color: var(--ink-700);
  font-size: 0.95rem;
  margin-top: 8px;
}

.consulting-case-grid {
  counter-reset: consulting-case;
  gap: 18px;
}

.consulting-case-card {
  counter-increment: consulting-case;
  border-radius: 22px;
  border: 1px solid #cfdeea;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 251, 255, 0.96) 100%);
  box-shadow: 0 16px 34px rgba(9, 34, 56, 0.07);
  padding: 26px 24px 22px;
}

.consulting-case-card.card::before {
  display: none;
}

.consulting-case-card::before {
  content: counter(consulting-case, decimal-leading-zero);
  position: absolute;
  right: 18px;
  top: 14px;
  color: rgba(31, 126, 161, 0.12);
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
}

.consulting-case-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(44, 150, 183, 0.08), transparent 28%),
    radial-gradient(circle at right top, rgba(73, 167, 143, 0.08), transparent 24%);
  pointer-events: none;
}

.consulting-case-card h3,
.consulting-case-card p,
.consulting-case-card ul {
  position: relative;
  z-index: 1;
}

.consulting-case-card h3 {
  max-width: calc(100% - 72px);
  margin-bottom: 2px;
  font-size: 1.22rem;
  line-height: 1.42;
}

.consulting-case-card .copy {
  max-width: 56ch;
}

.consulting-case-card .service-list {
  margin-top: 14px !important;
  padding-top: 12px;
  border-top: 1px solid rgba(198, 214, 228, 0.9);
}

.consulting-case-card .service-list li {
  font-size: 0.94rem;
}

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

.partner-chip {
  border: 1px solid #c9dae8;
  border-radius: 12px;
  padding: 14px;
  text-align: center;
  color: #26465d;
  background: linear-gradient(180deg, #ffffff, #f7fbff);
  font-size: 0.92rem;
}

.page-hero {
  position: relative;
  overflow: hidden;
  background-color: #0a2b40;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--white);
  padding: 80px 0 72px;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(6, 22, 35, 0.46);
  pointer-events: none;
}

.about-hero {
  background-image: url("../images/about-bg.png");
}

.services-hero {
  background-image: url("../images/service-bg.png");
}

.cases-hero {
  background-image: url("../images/customer-bg.png");
}

.contact-hero {
  background-image: url("../images/contact-bg.png");
  background-position: center 38%;
}

.contact-hero h1 {
  font-family: "Noto Serif SC", "Songti SC", "SimSun", "STSong", serif;
  letter-spacing: -0.03em;
}

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

.page-hero p {
  margin-top: 14px;
  max-width: 70ch;
  color: rgba(255, 255, 255, 0.93);
}

.about-intro-hero {
  padding: 92px 0 86px;
}

.about-intro-hero::before {
  background:
    linear-gradient(100deg, rgba(8, 31, 48, 0.8) 0%, rgba(8, 38, 58, 0.66) 52%, rgba(8, 38, 58, 0.34) 100%);
}

.about-intro-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr minmax(380px, 0.86fr);
  gap: 34px;
  align-items: start;
}

.about-intro-left {
  max-width: 760px;
  align-self: start;
  transform: translateY(-14px);
}

.about-intro-left p {
  margin-top: 16px;
  max-width: 29ch;
  font-size: 1.06rem;
  color: rgba(239, 248, 252, 0.94);
}

.about-intro-left strong {
  color: #47c0db;
  font-weight: 700;
}

.about-intro-panel {
  border-radius: 4px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  border: 1px solid #c6d8e8;
  padding: 36px;
  color: #253548;
  box-shadow: var(--shadow-lg);
  margin-top: 58px;
  align-self: end;
}

.about-intro-panel h3 {
  font-size: 2.2rem;
  line-height: 1.15;
}

.about-intro-panel .about-intro-sub {
  margin-top: 8px;
  color: #4d6f88;
  font-size: 1.3rem;
  font-weight: 500;
}

.about-intro-panel > p.about-intro-copy {
  margin-top: 14px;
  font-size: 0.95rem;
  line-height: 1.75;
  color: #4b5d71;
}

.about-intro-panel .about-intro-label {
  color: #61758a;
  margin-top: 22px;
  font-weight: 700;
  color: #1a2c3f;
}

.about-pill-row {
  margin-top: 14px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.about-pill {
  min-width: 110px;
  text-align: center;
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 12px 18px;
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 28px;
}

.about-pill-tool {
  background: linear-gradient(135deg, #36c2db, #249db8);
}

.about-pill-service {
  background: linear-gradient(135deg, #2c3f55, #1f2f44);
}

.about-pill-platform {
  background: linear-gradient(135deg, #2c85de, #2468c2);
}

.about-mv-section {
  background: #ffffff;
}

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

.mv-card {
  position: relative;
  min-height: 318px;
  border-radius: 0;
  overflow: hidden;
  border: 1px solid #98abbd;
  box-shadow: var(--shadow-sm);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-position: center;
  background-size: cover;
  color: #ffffff;
}

.mv-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: none;
}

.mv-card > * {
  position: relative;
  z-index: 1;
}

.mv-card-consult {
  background-image: url("../images/consult.png");
}

.mv-card-research {
  background-image: url("../images/investment-research.png");
}

.mv-card-institute {
  background-image: url("../images/research-institute.png");
}

.mv-kicker {
  margin: 0;
  color: #d0edf8;
  font-size: 0.94rem;
  font-weight: 700;
}

.mv-kicker::before {
  content: "";
  width: 4px;
  height: 22px;
  border-radius: 3px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  margin-top: -2px;
  background: linear-gradient(180deg, #2fd4ea, #27abc7);
}

.mv-card h3 {
  margin-top: 10px;
  font-size: clamp(1.08rem, 1.35vw, 1.55rem);
  line-height: 1.28;
  text-wrap: balance;
}

.mv-card p:last-child {
  margin-top: 8px;
  color: rgba(239, 248, 252, 0.9);
  font-size: 0.88rem;
  line-height: 1.55;
}

.mv-card-research h3 {
  font-size: clamp(1rem, 1.18vw, 1.38rem);
}

.about-compliance-plain {
  background: #e8edf3;
}

.compliance-plain-layout {
  max-width: 1220px;
}

.compliance-plain-layout .section-head {
  margin-bottom: 22px;
}

.compliance-plain-layout .copy {
  color: #4f6073;
  font-size: 1.02rem;
  line-height: 1.78;
  max-width: none;
  margin-bottom: 18px;
}

.compliance-subtitle {
  margin: 28px 0 16px;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.35;
}

.compliance-list {
  max-width: 360px;
  margin-bottom: 30px;
}

.compliance-list li {
  font-size: 1.02rem;
}

.about-compliance-plain a {
  color: #2b6bd8;
  font-weight: 700;
}

.about-certs-section {
  position: relative;
  padding-top: 84px;
  background: linear-gradient(180deg, #f9fcff 0%, #f2f7fc 100%);
}

.certs-trust-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: start;
}

.certs-trust-copy {
  order: 2;
  padding-top: 10px;
}

.certs-proof-panel {
  order: 1;
}

.certs-trust-copy .section-head {
  margin-bottom: 24px;
}

.certs-trust-copy .section-head p {
  margin-top: 12px;
  max-width: 34ch;
  color: #44576a;
  font-size: 1.05rem;
  line-height: 1.8;
}

.certs-lead {
  margin: 0 0 22px;
  max-width: 60ch;
  color: #4f6073;
  font-size: 1rem;
  line-height: 1.85;
}

.cert-trust-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
  max-width: 640px;
}

.cert-trust-list li {
  position: relative;
  padding-left: 22px;
  color: #29425b;
  font-size: 0.98rem;
  line-height: 1.72;
}

.cert-trust-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #1d6ad9 0%, #4ea2ff 100%);
  box-shadow: 0 0 0 5px rgba(29, 106, 217, 0.1);
}

.certs-proof-panel {
  border: 1px solid rgba(156, 185, 212, 0.7);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 22px 48px rgba(29, 57, 82, 0.08);
  backdrop-filter: blur(8px);
  padding: 28px;
  display: grid;
  gap: 16px;
  width: 100%;
  max-width: 520px;
  justify-self: start;
}

.cert-proof-item {
  padding: 20px 0;
  border-bottom: 1px solid rgba(160, 183, 204, 0.45);
}

.cert-proof-item:first-child {
  padding-top: 0;
}

.cert-proof-item:last-of-type {
  padding-bottom: 0;
  border-bottom: none;
}

.cert-proof-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin: 0 0 14px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(28, 104, 211, 0.1);
  color: #1b5bb5;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cert-proof-item h3 {
  margin-bottom: 10px;
  font-size: 1.28rem;
  line-height: 1.35;
}

.cert-proof-item p:last-child {
  margin: 0;
  color: #4e6175;
  font-size: 0.96rem;
  line-height: 1.75;
}

.cert-proof-note {
  margin: 4px 0 0;
  color: #698095;
  font-size: 0.88rem;
  line-height: 1.65;
}

.about-office-network {
  position: relative;
  overflow: hidden;
  background: url("../images/banner.png") center/cover no-repeat;
}

.about-office-network::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(17, 30, 48, 0.86) 0%, rgba(17, 30, 48, 0.8) 42%, rgba(17, 30, 48, 0.62) 100%);
}

.about-office-network .container {
  position: relative;
  z-index: 1;
}

.about-office-network .kicker {
  color: #9fd6eb;
}

.about-office-network h2 {
  color: #ffffff;
}

.about-office-network .section-head p {
  margin-top: 12px;
  color: rgba(235, 246, 252, 0.9);
}

.office-network-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 14px;
  align-items: center;
}

.office-side {
  display: grid;
  gap: 14px;
}

.office-card {
  border-radius: 14px;
  border: 1px solid rgba(176, 210, 229, 0.56);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(2px);
  padding: 18px;
  color: #ffffff;
  min-height: 118px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.office-card h3 {
  margin-bottom: 6px;
}

.office-card p {
  margin: 0;
  color: rgba(229, 242, 252, 0.9);
}

.office-card-center {
  min-height: 252px;
  border-color: rgba(99, 219, 238, 0.84);
  background:
    radial-gradient(circle at right top, rgba(80, 177, 212, 0.2), transparent 54%),
    rgba(7, 32, 50, 0.76);
  text-align: center;
  align-items: center;
  box-shadow: 0 24px 46px rgba(3, 15, 26, 0.44);
}

.office-card-center h3 {
  font-size: 2rem;
  margin-bottom: 6px;
}

.office-tag {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #12384d;
  background: #7ae0f2;
  border-radius: 999px;
  padding: 5px 10px;
  font-weight: 700;
}

.section-surface {
  background: linear-gradient(180deg, #f3f8fd 0%, #f8fbff 100%);
}

.section-divider {
  border-top: 1px solid #d5e2ed;
}

.section-dark {
  background:
    radial-gradient(circle at right top, rgba(62, 153, 181, 0.2), transparent 48%),
    linear-gradient(130deg, #0a2539 0%, #10334b 100%);
  color: var(--white);
}

.section-dark .kicker {
  color: #8ed3e8;
}

.section-dark .copy,
.section-dark .muted,
.section-dark p {
  color: rgba(232, 244, 252, 0.88);
}

.section-dark h2,
.section-dark h3,
.section-dark strong,
.section-dark b {
  color: var(--white);
}

.section-dark .card,
.section-dark .card-soft,
.section-dark .highlight-panel {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(180, 220, 241, 0.4);
  color: var(--white);
  box-shadow: 0 20px 36px rgba(2, 15, 28, 0.4);
}

.section-dark .service-list li,
.section-dark .timeline-item .year {
  color: rgba(235, 246, 252, 0.94);
}

.section-dark .case-card {
  background: #ffffff;
  border-color: #c8d9e8;
}

.section-dark .case-body {
  background: #ffffff;
}

.section-dark .case-body h3 {
  color: var(--ink-900);
}

.section-dark .case-body p {
  color: var(--ink-700);
}

.section-dark .case-body .badge {
  color: var(--brand-700);
  background: #e6f2f8;
}

.service-module {
  position: relative;
}

.service-module .section-head {
  position: relative;
  padding-left: 18px;
}

.service-module .section-head::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 4px;
  height: calc(100% - 10px);
  border-radius: 4px;
  background: linear-gradient(180deg, var(--brand-600), var(--teal-500));
}

.module-label {
  margin: 0 0 10px;
  color: var(--brand-700);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-module-consult .grid.grid-3 {
  gap: 20px;
}

.service-module-invest .section-head,
.service-module-research .section-head,
.service-module-hr .section-head,
.service-module-capital .section-head,
.service-module-brand .section-head {
  margin-bottom: 26px;
}

.invest-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.95fr;
  gap: 24px;
  align-items: stretch;
}

.invest-panel {
  border: 1px solid rgba(189, 208, 223, 0.9);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(245, 250, 255, 0.88));
  padding: 26px 24px;
}

.invest-panel-structure h3 {
  margin-bottom: 14px;
  font-size: 1.45rem;
}

.invest-panel-structure .service-list {
  margin-top: 0;
}

.invest-value-list {
  display: grid;
  gap: 12px;
}

.invest-value-item {
  padding: 0 0 14px;
  border-bottom: 1px solid rgba(192, 209, 224, 0.8);
}

.invest-value-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.invest-value-item strong {
  display: block;
  color: var(--ink-900);
  font-size: 1rem;
}

.invest-value-item p {
  margin: 6px 0 0;
  color: var(--ink-700);
  line-height: 1.65;
}

.research-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 28px;
  align-items: start;
}

.research-framework-list {
  display: grid;
  gap: 14px;
}

.research-framework-item {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid rgba(191, 208, 222, 0.8);
}

.research-framework-item:first-child {
  padding-top: 0;
  border-top: none;
}

.research-framework-item h3 {
  font-size: 1rem;
  line-height: 1.4;
}

.research-framework-item p {
  margin: 0;
  color: var(--ink-700);
  line-height: 1.7;
}

.research-projects {
  border-left: 1px solid rgba(191, 208, 222, 0.8);
  padding-left: 26px;
}

.research-project-quote {
  margin-bottom: 18px;
  padding: 18px 18px 18px 20px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(20, 59, 90, 0.94), rgba(28, 103, 144, 0.82));
  box-shadow: var(--shadow-sm);
}

.research-project-quote p {
  margin: 0;
  color: #ffffff;
  font-size: 1.08rem;
  line-height: 1.75;
}

.hr-layout {
  display: grid;
  gap: 24px;
}

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

.hr-capability-item {
  min-height: 168px;
  padding: 18px 16px;
  border-radius: 18px;
  border: 1px solid rgba(194, 209, 221, 0.82);
  background: rgba(255, 255, 255, 0.84);
}

.hr-capability-item strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink-900);
  font-size: 1.15rem;
  line-height: 1.35;
}

.hr-capability-item p {
  margin: 0;
  color: var(--ink-700);
  line-height: 1.65;
}

.hr-process-board {
  padding-top: 6px;
}

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

.hr-process-step {
  position: relative;
  padding: 16px 16px 18px;
  border-top: 3px solid rgba(44, 103, 177, 0.32);
  background: rgba(255, 255, 255, 0.62);
}

.hr-process-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: #dbeaf6;
  color: var(--brand-700);
  font-size: 0.82rem;
  font-weight: 800;
}

.hr-process-step strong {
  display: block;
  color: var(--ink-900);
  line-height: 1.45;
}

.hr-process-step p {
  margin: 8px 0 0;
  color: var(--ink-700);
  line-height: 1.65;
}

.capital-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 0.9fr;
  gap: 28px;
  align-items: start;
}

.capital-list {
  margin-top: 0;
}

.capital-cases {
  padding: 4px 0 0;
}

.capital-chip-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-content: flex-start;
}

.capital-chip-cloud span {
  display: inline-flex;
  align-items: center;
  min-height: 58px;
  padding: 12px 16px;
  border-radius: 18px;
  border: 1px solid rgba(194, 209, 221, 0.84);
  background: linear-gradient(180deg, #ffffff 0%, #f5faff 100%);
  color: var(--ink-900);
  line-height: 1.55;
  box-shadow: var(--shadow-sm);
}

.brand-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: start;
}

.brand-core-list {
  margin-top: 0;
}

.brand-framework {
  padding-left: 12px;
}

.brand-framework-stages {
  display: grid;
  gap: 12px;
}

.brand-framework-stage {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 16px;
  align-items: start;
  padding: 16px 0;
  border-top: 1px solid rgba(191, 208, 222, 0.82);
}

.brand-framework-stage:first-child {
  padding-top: 0;
  border-top: none;
}

.brand-framework-stage span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-700), var(--brand-500));
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
}

.brand-framework-stage p {
  margin: 0;
  color: var(--ink-700);
  line-height: 1.72;
}

.service-plain-grid {
  gap: 0;
  border-top: 1px solid rgba(121, 146, 170, 0.24);
}

.service-plain-block {
  padding: 22px 0 0;
}

.service-plain-grid > *:first-child {
  padding-right: 22px;
  border-right: 1px solid rgba(121, 146, 170, 0.18);
}

.service-plain-grid > *:last-child {
  padding-left: 22px;
}

.service-plain-block h3 {
  font-size: 1.12rem;
  line-height: 1.4;
}

.service-plain-block .service-list {
  margin-top: 2px;
}

.service-plain-block .service-list li {
  padding-left: 16px;
  color: var(--ink-700);
  font-size: 0.98rem;
}

.service-plain-block .service-list li::before {
  width: 5px;
  height: 5px;
  top: 0.78em;
  background: var(--brand-500);
  box-shadow: none;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.audience-zone {
  background:
    radial-gradient(circle at right top, rgba(166, 196, 216, 0.22), transparent 44%),
    linear-gradient(180deg, #eef3f8 0%, #e7eef5 100%);
}

.audience-head {
  max-width: 900px;
}

.audience-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 24px;
}

.audience-panel,
.delivery-panel {
  border-radius: 16px;
  border: 1px solid #c0d1e0;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow-sm);
  padding: 24px;
}

.audience-panel h3,
.delivery-panel h3 {
  margin-bottom: 14px;
}

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

.audience-tag {
  border-radius: 12px;
  border: 1px solid #c8d8e6;
  background: linear-gradient(180deg, #ffffff, #f6faff);
  padding: 12px 14px;
}

.audience-tag b {
  display: block;
  font-size: 0.96rem;
  color: var(--ink-900);
}

.audience-tag span {
  display: block;
  margin-top: 5px;
  color: var(--ink-700);
  font-size: 0.86rem;
  line-height: 1.55;
}

.delivery-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.delivery-list li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 10px;
  align-items: flex-start;
  border-radius: 10px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid #ccdae7;
}

.delivery-list li span {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #dbeaf6;
  color: var(--brand-700);
  font-size: 0.8rem;
  font-weight: 800;
}

.delivery-list li p {
  margin: 1px 0 0;
  color: var(--ink-700);
  line-height: 1.55;
}

.testimonials-zone {
  background:
    radial-gradient(circle at right top, rgba(73, 151, 183, 0.18), transparent 48%),
    linear-gradient(135deg, #152b42 0%, #1f3a52 100%);
}

.testimonials-zone .kicker {
  color: #9ad2e8;
}

.testimonials-zone h2 {
  color: #ffffff;
}

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

.testimonial-card {
  border-radius: 14px;
  border: 1px solid #c4d3e0;
  background: #ffffff;
  padding: 18px;
  box-shadow: var(--shadow-sm);
}

.testimonial-tag {
  display: inline-flex;
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-700);
  font-weight: 700;
  background: #e7f2f9;
  border-radius: 999px;
  padding: 4px 10px;
}

.testimonial-text {
  margin-top: 12px;
  color: var(--ink-700);
  font-size: 0.92rem;
  line-height: 1.75;
  font-style: italic;
}

.testimonial-author {
  margin-top: 12px;
  color: #2b4a61;
  font-size: 0.86rem;
  font-weight: 700;
}

.contact-box {
  border: 1px solid #c7d9e8;
  border-radius: var(--radius-md);
  padding: 24px 24px 26px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: var(--shadow-sm);
}

.contact-list {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--ink-700);
}

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

.qr-item {
  border: 1px solid #ccdaea;
  border-radius: 12px;
  padding: 12px;
  background: linear-gradient(180deg, #f8fbff 0%, #eff6fc 100%);
}

.qr-item img {
  width: 100%;
  max-width: 180px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line-300);
  background: var(--white);
}

.qr-item b {
  display: block;
  margin-top: 10px;
  font-size: 0.92rem;
}

.qr-item span {
  display: block;
  color: var(--ink-500);
  font-size: 0.82rem;
  margin-top: 3px;
}

.contact-rebuild {
  background: transparent;
}

.contact-hero {
  padding: 72px 0 58px;
}

.contact-hero-inner {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 760px;
}

.contact-hero-inner p:not(.kicker) {
  max-width: 36ch;
  font-size: 1.05rem;
}

.contact-hero .btn-row {
  margin-top: 20px;
}

.contact-pathways {
  position: relative;
  padding: 50px 0 44px;
  background:
    radial-gradient(circle at left top, rgba(83, 179, 212, 0.08), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f5faff 100%);
  overflow: hidden;
}

.contact-pathways::before {
  content: none;
}

.pathways-head {
  max-width: 560px;
  margin-bottom: 22px;
}

.pathway-stack {
  display: grid;
  gap: 10px;
}

.pathway-band {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr) 250px;
  gap: 28px;
  align-items: start;
  padding: 22px 0;
  border-top: 1px solid #d5e2ed;
}

.pathway-band:last-child {
  border-bottom: 1px solid #d5e2ed;
}

.pathway-meta {
  position: relative;
  padding-top: 8px;
}

.pathway-meta::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 54px;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-600), #78c9e5);
}

.pathway-meta .kicker {
  margin-bottom: 8px;
}

.pathway-meta h3 {
  margin: 0;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
}

.pathway-main .copy {
  margin: 0;
  max-width: 40ch;
  font-size: 0.98rem;
  line-height: 1.65;
}

.pathway-inline {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}

.pathway-inline li {
  position: relative;
  padding-left: 16px;
  color: #35536a;
  font-size: 0.9rem;
  font-weight: 700;
}

.pathway-inline li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 1px;
  background: var(--brand-600);
}

.pathway-side {
  display: grid;
  gap: 14px;
  align-content: start;
}

.pathway-side .pathway-link {
  justify-self: start;
}

.pathway-process {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px 12px;
}

.pathway-process li {
  position: relative;
  padding: 0 0 6px 14px;
  color: #2d4b62;
  font-size: 0.84rem;
  font-weight: 700;
  border-bottom: 1px dashed #d6e1ea;
}

.pathway-process li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 1px;
  background: var(--brand-600);
}

.pathway-link {
  display: inline-flex;
  color: var(--brand-700);
  font-weight: 700;
  border-bottom: 1px solid rgba(26, 97, 125, 0.4);
  padding-bottom: 2px;
}

.pathway-link:hover {
  color: var(--brand-600);
  border-bottom-color: var(--brand-600);
}

.contact-hub {
  padding: 50px 0 52px;
  background:
    radial-gradient(circle at right top, rgba(88, 183, 216, 0.16), transparent 44%),
    linear-gradient(135deg, #122d45 0%, #173a56 100%);
}

.contact-hub-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 24px;
  align-items: start;
}

.contact-hub .kicker {
  color: #9ed8ec;
}

.contact-hub h2 {
  color: #ffffff;
}

.contact-hub .lead {
  color: rgba(230, 246, 252, 0.88);
  max-width: 34ch;
}

.contact-line-list {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  border-top: 1px solid #c9d9e7;
}

.contact-line-list li {
  margin: 0;
  padding: 10px 0;
  border-bottom: 1px solid #c9d9e7;
  color: var(--ink-700);
  line-height: 1.55;
}

.contact-line-list li b {
  color: var(--ink-900);
}

.contact-line-list a {
  color: var(--brand-700);
}

.contact-hub-list {
  border-top-color: rgba(172, 214, 233, 0.32);
  max-width: 860px;
}

.contact-hub-list li {
  border-bottom-color: rgba(172, 214, 233, 0.32);
  color: rgba(236, 248, 253, 0.94);
}

.contact-hub-list li b {
  color: #ffffff;
}

.contact-hub-list a {
  color: #9dd8ec;
}

.contact-qr-strip {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 14px;
}

.contact-qr-strip figure {
  margin: 0;
}

.contact-qr-strip img {
  width: 100%;
  max-width: 180px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 1px solid rgba(165, 210, 231, 0.42);
  background: #ffffff;
}

.contact-qr-strip figcaption {
  margin-top: 10px;
  color: rgba(230, 246, 252, 0.92);
  font-size: 0.9rem;
}

.form-field {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

label {
  font-size: 0.92rem;
  color: var(--ink-700);
  font-weight: 600;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line-300);
  border-radius: 10px;
  padding: 11px 12px;
  font: inherit;
  color: var(--ink-900);
  background: var(--white);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus,
button:focus,
a:focus-visible {
  outline: 2px solid #72b8d3;
  outline-offset: 1px;
}

.site-footer {
  border-top: 1px solid #bfd2e2;
  background:
    radial-gradient(circle at left top, rgba(48, 138, 172, 0.13), transparent 42%),
    #f4f9fd;
}

.footer-main {
  padding: 30px 0;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 20px;
}

.footer-brand img {
  height: 40px;
  width: auto;
}

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

.footer-links a {
  color: var(--ink-700);
  font-size: 0.94rem;
}

.footer-bottom {
  border-top: 1px solid var(--line-300);
  padding: 14px 0;
  color: var(--ink-500);
  font-size: 0.86rem;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
}

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

.icp-img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.footer-social a,
.copyright-icp-text {
  color: var(--ink-500);
}

.footer-social a:hover,
.copyright-icp-text:hover {
  color: var(--brand-700);
}

.notice {
  font-size: 0.84rem;
  color: var(--ink-500);
}

.page-section-nav {
  position: fixed;
  top: 50%;
  right: 22px;
  z-index: 30;
  transform: translateY(-50%);
  padding: 6px 0;
}

.page-section-nav-list {
  display: grid;
  gap: 12px;
}

.page-section-nav-link {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(13, 28, 42, 0.22);
  opacity: 0.9;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    opacity 0.2s ease;
}

.page-section-nav-link:hover {
  transform: scale(1.15);
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(13, 28, 42, 0.32);
  opacity: 1;
}

.page-section-nav-link.is-active {
  transform: scale(1.45);
  background: #35bdd9;
  border-color: rgba(8, 64, 93, 0.24);
  outline: 2px solid rgba(255, 255, 255, 0.72);
  outline-offset: 2px;
  opacity: 1;
}

@media (max-width: 1100px) {
  .hero .container {
    min-height: 600px;
    padding: 78px 0 72px;
  }

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

  .expert-panels {
    grid-template-columns: 1fr 1fr;
  }

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

.contact-hero {
    padding: 60px 0 46px;
  }

  .contact-hero-inner {
    min-height: 220px;
  }

  .contact-hub-grid {
    gap: 20px;
  }

  .pathway-band {
    grid-template-columns: 180px minmax(0, 1fr) 220px;
    gap: 22px;
  }

  .pathway-process {
    grid-template-columns: 1fr 1fr;
  }

  .expert-card:last-child {
    grid-column: span 2;
  }

  .about-intro-layout {
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: start;
  }

  .about-intro-left p {
    max-width: 46ch;
  }

  .about-intro-left {
    transform: none;
  }

  .about-intro-panel {
    max-width: 720px;
    margin-top: 8px;
  }

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

  .certs-trust-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .office-network-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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

  .office-card-center {
    order: -1;
  }

  .partner-group-grid {
    max-width: 620px;
  }

  .metrics {
    margin-top: 0;
  }

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

@media (max-width: 860px) {
  .page-section-nav {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-menu {
    display: block;
    position: fixed;
    inset: calc(var(--header-height) + var(--safe-top)) 0 auto 0;
    background: rgba(251, 254, 255, 0.98);
    border-bottom: 1px solid var(--line-300);
    box-shadow: 0 10px 30px rgba(16, 37, 56, 0.12);
    transform: translateY(-125%);
    transition: transform 0.25s ease;
    padding: 18px 20px 24px;
  }

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

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .nav-link::after {
    bottom: -8px;
    left: 0;
    right: 0;
    width: auto;
    transform-origin: center center;
  }

  .header-cta {
    width: 100%;
    justify-content: center;
    margin-top: 18px;
  }

  .grid-3,
  .grid-2,
  .expert-panels,
  .partner-group-grid,
  .testimonial-grid,
  .split,
  .audience-layout,
  .audience-tags,
  .partner-strip,
  .footer-main,
  .qr-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats, .hero-stats-bottom {
    flex-wrap: wrap;
    gap: 30px 40px;
  }
  .hero-stat-item:not(:last-child)::after {
    display: none;
  }
  .hero.full-screen-hero .container {
    padding-top: 40px;
  }

  .expert-card:last-child {
    grid-column: auto;
  }

  .donut-chart {
    width: 178px;
    height: 178px;
  }

  .metric-big {
    font-size: 3rem;
  }

  .industry-row {
    grid-template-columns: 92px 1fr 32px;
  }

  .about-intro-hero {
    padding: 72px 0 64px;
  }

  .about-intro-left {
    transform: none;
  }

  .about-intro-panel {
    padding: 24px 20px;
    margin-top: 0;
  }

  .about-intro-panel h3 {
    font-size: 1.75rem;
  }

  .invest-layout,
  .research-layout,
  .capital-layout,
  .brand-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .research-projects,
  .brand-framework {
    padding-left: 0;
    border-left: none;
  }

  .research-framework-item,
  .brand-framework-stage {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hr-capability-list,
  .hr-process-steps {
    grid-template-columns: 1fr 1fr;
  }

  .service-plain-grid {
    gap: 18px;
    border-top: none;
  }

  .service-plain-grid > *:first-child {
    padding-right: 0;
    border-right: none;
  }

  .service-plain-grid > *:last-child {
    padding-left: 0;
  }

  .service-plain-block {
    padding-top: 0;
    border-top: 1px solid rgba(121, 146, 170, 0.2);
  }

  .contact-hero {
    padding: 48px 0 36px;
  }

  .contact-hero-inner {
    min-height: 170px;
  }

  .pathway-band {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px 0;
  }

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

  .contact-qr-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .contact-qr-strip img {
    max-width: 100%;
  }

  .about-pill {
    min-width: 96px;
    font-size: 0.95rem;
    padding: 10px 14px;
  }

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

  .mv-card {
    min-height: 260px;
    padding: 24px 20px;
  }

  .certs-proof-panel {
    padding: 24px 20px;
  }

  .cert-proof-item h3 {
    font-size: 1.15rem;
  }

  .office-side {
    grid-template-columns: 1fr;
  }

  .office-card-center h3 {
    font-size: 1.7rem;
  }

  .partner-showcase {
    min-height: auto;
    padding: 12px 0 4px;
  }

  .capability-board {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .capability-intro {
    position: static;
    padding: 0;
  }

  .capability-intro-copy {
    max-width: 100%;
  }

  .strategic-partners::before {
    background: linear-gradient(180deg, rgba(20, 30, 52, 0.9) 0%, rgba(20, 30, 52, 0.78) 100%);
  }

  .section {
    padding: 60px 0;
  }

  .metrics {
    margin-top: 0;
    padding-top: 20px;
  }
}

@media (max-width: 560px) {
  .contact-hero {
    padding: 38px 0 28px;
  }

  .contact-hero-inner {
    min-height: 130px;
  }

  .pathway-inline {
    gap: 6px 12px;
  }

  .pathway-process {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .contact-qr-strip {
    grid-template-columns: 1fr 1fr;
  }

  :root {
    --container: min(1140px, calc(100% - 1.25rem));
    --header-height: 52px;
  }

  .site-header {
    background: rgba(248, 252, 255, 0.96);
  }

  .nav-wrap {
    min-height: var(--header-height);
  }

  .brand img {
    height: 32px;
  }

  .nav-toggle {
    width: 34px;
    height: 34px;
    border-radius: 9px;
  }

  .hero .container {
    min-height: 540px;
    padding: 62px 0 58px;
  }

  .hero-stats-bottom {
    flex-direction: column;
    gap: 20px;
  }

  .capability-item {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 20px 18px;
  }

  .capability-index {
    font-size: 1.6rem;
  }

  .hero-stat-item::after {
    display: none !important;
  }

  .hr-capability-list,
  .hr-process-steps {
    grid-template-columns: 1fr;
  }

  .capital-chip-cloud span {
    width: 100%;
  }
  .hero-title {
    font-size: 2.2rem;
  }

  .metric-big {
    font-size: 2.6rem;
  }

  .partner-logo-slot {
    min-height: 70px;
    font-size: 0.78rem;
  }

  .partner-group p {
    font-size: 0.95rem;
  }

  .case-media img {
    height: 180px;
  }
}

/* About page visual refresh */
.about-hero {
  background-position: center center;
}

.about-intro-hero {
  overflow: hidden;
  padding: 104px 0 110px;
}

.about-intro-hero::before {
  background: linear-gradient(115deg, rgba(5, 19, 31, 0.92) 0%, rgba(8, 35, 53, 0.78) 46%, rgba(8, 38, 58, 0.36) 100%);
}

.about-intro-hero::after {
  content: "";
  position: absolute;
  inset: auto auto -130px 52%;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(97, 210, 236, 0.18) 0%, rgba(97, 210, 236, 0.07) 28%, transparent 62%);
  filter: blur(8px);
  pointer-events: none;
}

.about-intro-layout {
  grid-template-columns: minmax(0, 1.12fr) minmax(390px, 0.88fr);
  gap: 42px;
  align-items: end;
}

.about-intro-left {
  position: relative;
  transform: translateY(-6px);
  padding-top: 34px;
}

.about-intro-left::before {
  content: "ABOUT UVISION";
  position: absolute;
  top: 0;
  left: 0;
  color: rgba(150, 222, 241, 0.82);
  font-size: 0.8rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.about-intro-left h1,
.about-mv-section h2,
.compliance-subtitle,
.certs-trust-copy h2,
.cert-proof-item h3,
.about-office-network h2,
.office-card-center h3 {
  font-family: "Noto Serif SC", "Songti SC", "SimSun", "STSong", serif;
}

.about-intro-left h1 {
  max-width: 9ch;
  line-height: var(--heading-leading-xl);
  letter-spacing: var(--heading-track-xl);
  text-wrap: balance;
}

.about-intro-left p {
  margin-top: 22px;
  max-width: 31ch;
  font-size: 1.08rem;
  line-height: 1.92;
  color: rgba(239, 248, 252, 0.92);
  text-shadow: 0 1px 0 rgba(7, 16, 26, 0.22);
}

.about-intro-left strong {
  color: #74def2;
}

.about-intro-panel {
  position: relative;
  border-radius: 28px 28px 28px 6px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 249, 255, 0.94) 100%);
  border: 1px solid rgba(205, 223, 237, 0.92);
  padding: 38px 38px 34px;
  box-shadow: 0 32px 72px rgba(5, 23, 38, 0.3);
  margin-top: 48px;
  overflow: hidden;
}

.about-intro-panel::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(63, 176, 220, 0.18), transparent 68%);
  pointer-events: none;
}

.about-intro-panel h3 {
  font-size: 2.45rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.about-intro-sub {
  margin-top: 10px;
  color: #53758e;
  font-size: 1.16rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-intro-panel > p.about-intro-copy {
  margin-top: 18px;
  font-size: 0.98rem;
  line-height: 1.92;
  color: #4b5d71;
}

.about-intro-label {
  margin-top: 24px;
  letter-spacing: 0.06em;
}

.about-pill {
  font-size: 1rem;
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24), 0 14px 24px rgba(19, 47, 72, 0.16);
}

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

.about-mv-section .section-head,
.about-compliance-plain .section-head,
.about-certs-section .section-head,
.about-office-network .section-head {
  margin-bottom: 30px;
}

.mv-card-grid {
  gap: 22px;
}

.mv-card {
  min-height: 340px;
  border-radius: 26px 26px 26px 8px;
  border: 1px solid rgba(121, 145, 164, 0.7);
  box-shadow: 0 22px 46px rgba(12, 30, 48, 0.12);
  padding: 28px;
  isolation: isolate;
}

.mv-card::before {
  background: linear-gradient(180deg, rgba(7, 20, 32, 0.06) 0%, rgba(6, 17, 30, 0.78) 100%);
}

.mv-card::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  pointer-events: none;
}

.mv-kicker {
  color: #d8f2fb;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mv-kicker::before {
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, #9de8f6, #35bdd9);
}

.mv-card h3 {
  margin-top: 14px;
  font-size: clamp(1.2rem, 1.55vw, 1.82rem);
  line-height: 1.24;
}

.mv-card p:last-child {
  margin-top: 10px;
  font-size: 0.92rem;
  line-height: 1.65;
}

.about-compliance-plain {
  background: linear-gradient(180deg, #e7eef5 0%, #eef4fa 100%);
}

.compliance-plain-layout {
  position: relative;
  padding: 42px 48px;
  border: 1px solid rgba(188, 204, 220, 0.78);
  border-radius: 30px 30px 30px 10px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(247, 250, 254, 0.88));
  box-shadow: 0 22px 44px rgba(14, 37, 58, 0.08);
  overflow: hidden;
}

.compliance-plain-layout::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 8px;
  background: linear-gradient(180deg, #21486c 0%, #4a9ebe 100%);
}

.compliance-plain-layout::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(89, 174, 205, 0.14), transparent 68%);
  pointer-events: none;
}

.compliance-plain-layout .copy {
  color: #425569;
  line-height: 1.86;
}

.compliance-subtitle {
  margin: 30px 0 16px;
  font-size: clamp(1.45rem, 2.2vw, 2.05rem);
  line-height: 1.3;
}

.compliance-list {
  max-width: 420px;
  margin-bottom: 28px;
  gap: 10px;
}

.compliance-list li {
  padding-block: 8px;
}

.about-certs-section {
  background: linear-gradient(180deg, #f8fbff 0%, #f0f6fb 100%);
}

.about-certs-section::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 140px;
  background: none;
  pointer-events: none;
}

.certs-trust-layout {
  grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1.12fr);
  gap: 52px;
}

.certs-trust-copy {
  padding-top: 14px;
}

.certs-trust-copy .section-head p,
.certs-lead {
  color: #415568;
  line-height: 1.9;
}

.cert-trust-list li {
  padding-left: 24px;
  line-height: 1.78;
}

.certs-proof-panel {
  position: relative;
  border: 1px solid rgba(159, 184, 206, 0.78);
  border-radius: 30px 30px 30px 10px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(244, 248, 253, 0.88) 100%);
  box-shadow: 0 28px 56px rgba(16, 41, 62, 0.1);
  padding: 30px;
  gap: 18px;
  overflow: hidden;
  max-width: 530px;
}

.certs-proof-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(25, 91, 181, 0.54), rgba(25, 91, 181, 0));
}

.certs-proof-panel::after {
  content: "";
  position: absolute;
  right: -56px;
  bottom: -56px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(57, 159, 203, 0.14), transparent 68%);
  pointer-events: none;
}

.cert-proof-item {
  padding: 22px 0;
}

.cert-proof-badge {
  background: rgba(28, 104, 211, 0.08);
  letter-spacing: 0.12em;
}

.cert-proof-item h3 {
  font-size: 1.36rem;
  line-height: 1.32;
}

.cert-proof-note {
  margin-top: 6px;
}

.about-office-network::before {
  background: linear-gradient(108deg, rgba(8, 18, 32, 0.92) 0%, rgba(12, 28, 45, 0.88) 42%, rgba(17, 30, 48, 0.72) 100%);
}

.about-office-network::after {
  content: "";
  position: absolute;
  top: -120px;
  right: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(106, 220, 241, 0.16), transparent 68%);
  pointer-events: none;
}

.office-network-grid {
  gap: 18px;
}

.office-side {
  gap: 18px;
}

.office-card {
  border-radius: 20px;
  border: 1px solid rgba(176, 210, 229, 0.5);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 22px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.office-card-center {
  border-color: rgba(120, 226, 243, 0.78);
  background: radial-gradient(circle at right top, rgba(110, 215, 235, 0.22), transparent 54%), rgba(7, 32, 50, 0.76);
  box-shadow: 0 30px 56px rgba(3, 15, 26, 0.46);
}

@media (max-width: 1100px) {
  .about-intro-hero {
    padding: 92px 0 88px;
  }

  .about-intro-layout {
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
  }

  .about-intro-left p {
    max-width: 46ch;
  }

  .about-intro-panel {
    max-width: 760px;
    margin-top: 10px;
  }

  .certs-trust-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .certs-trust-copy,
  .certs-proof-panel {
    order: initial;
  }

  .certs-trust-copy {
    padding-top: 0;
  }

  .certs-proof-panel {
    max-width: none;
  }
}

@media (max-width: 860px) {
  .about-intro-hero {
    padding: 76px 0 68px;
  }

  .about-intro-left {
    padding-top: 28px;
  }

  .about-intro-left::before {
    font-size: 0.72rem;
    letter-spacing: 0.24em;
  }

  .about-intro-left h1 {
    max-width: none;
    font-size: clamp(2.3rem, 9vw, 3.4rem);
  }

  .about-intro-left p {
    max-width: none;
    font-size: 1rem;
    line-height: 1.82;
  }

  .about-intro-panel {
    padding: 24px 20px;
    border-radius: 24px 24px 24px 6px;
  }

  .about-intro-panel h3 {
    font-size: 1.95rem;
  }

  .mv-card {
    min-height: 280px;
    padding: 24px 20px;
  }

  .compliance-plain-layout {
    padding: 28px 22px 28px 24px;
    border-radius: 24px 24px 24px 8px;
  }

  .compliance-plain-layout::before {
    width: 6px;
  }

  .certs-proof-panel {
    padding: 24px 20px;
    border-radius: 24px 24px 24px 8px;
  }

  .about-certs-section {
    padding-top: 68px;
  }

  .cert-proof-item h3 {
    font-size: 1.18rem;
  }

  .office-card,
  .office-card-center {
    border-radius: 18px;
  }
}

@media (max-width: 560px) {
  .about-intro-hero::after {
    width: 320px;
    height: 320px;
    left: auto;
    right: -80px;
    bottom: -80px;
  }

  .about-mv-section .section-head,
  .about-compliance-plain .section-head,
  .about-certs-section .section-head,
  .about-office-network .section-head {
    margin-bottom: 24px;
  }

  .mv-card::after {
    inset: 12px;
  }
}

/* Section nav polish */
.page-section-nav {
  isolation: isolate;
}

.page-section-nav::before {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 50%;
  width: 1px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(121, 145, 164, 0.08), rgba(121, 145, 164, 0.26) 18%, rgba(121, 145, 164, 0.26) 82%, rgba(121, 145, 164, 0.08));
  pointer-events: none;
  z-index: -1;
}

.page-section-nav.is-dense .page-section-nav-list {
  gap: 9px;
}

.page-section-nav-link {
  position: relative;
  transition:
    transform 0.24s ease,
    background-color 0.24s ease,
    border-color 0.24s ease,
    opacity 0.24s ease;
}

.page-section-nav-link.is-active {
  transform: scale(1.38);
}

@media (max-width: 1100px) {
  .page-section-nav::before {
    top: 8px;
    bottom: 8px;
  }
}

/* Intro panel text contrast fix */
.about-intro-panel .about-intro-sub {
  color: #53758e;
}

.about-intro-panel > p.about-intro-copy {
  color: #4b5d71;
}

.about-intro-panel .about-intro-label {
  color: #61758a;
}

/* Global title refinement */
.title-line {
  line-height: 1.08;
  letter-spacing: 0.01em;
  font-weight: var(--heading-weight);
}

.base-text,
.highlight-text {
  font-weight: var(--heading-weight);
}

.about-intro-panel h3 {
  line-height: 1.12;
  letter-spacing: var(--heading-track-lg);
}

.mv-card h3 {
  line-height: 1.22;
  letter-spacing: var(--heading-track-md);
}

.consulting-case-card h3 {
  line-height: 1.3;
  letter-spacing: var(--heading-track-md);
}

.office-card-center h3,
.pathway-meta h3,
.delivery-panel h3,
.audience-panel h3,
.research-framework-item h3,
.invest-panel-structure h3,
.service-plain-block h3,
.cert-proof-item h3 {
  line-height: var(--heading-leading-md);
  letter-spacing: var(--heading-track-md);
}
